blob: 252e9ca5963dc1a721fb9e9ebc3b3c98fd1ef66e [file] [log] [blame]
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001//===- lib/MC/MCAssembler.cpp - Assembler Backend Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Daniel Dunbar0adcd352009-08-25 21:10:45 +000010#define DEBUG_TYPE "assembler"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000011#include "llvm/MC/MCAssembler.h"
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +000012#include "llvm/MC/MCAsmLayout.h"
Daniel Dunbarb36052f2010-03-19 10:43:23 +000013#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbar1253a6f2009-10-16 01:58:03 +000014#include "llvm/MC/MCExpr.h"
Daniel Dunbar53b23382010-03-19 09:28:59 +000015#include "llvm/MC/MCObjectWriter.h"
Daniel Dunbar1253a6f2009-10-16 01:58:03 +000016#include "llvm/MC/MCSymbol.h"
17#include "llvm/MC/MCValue.h"
Daniel Dunbar1a9158c2010-03-19 10:43:26 +000018#include "llvm/ADT/OwningPtr.h"
Daniel Dunbar0adcd352009-08-25 21:10:45 +000019#include "llvm/ADT/Statistic.h"
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +000020#include "llvm/ADT/StringExtras.h"
Daniel Dunbard6f761e2009-08-21 23:07:38 +000021#include "llvm/ADT/Twine.h"
Daniel Dunbarac2884a2010-03-25 22:49:09 +000022#include "llvm/Support/Debug.h"
Daniel Dunbar0705fbf2009-08-21 18:29:01 +000023#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000024#include "llvm/Support/raw_ostream.h"
Daniel Dunbaree0d8922010-03-13 22:10:17 +000025#include "llvm/Target/TargetRegistry.h"
Daniel Dunbardf3c8f22010-03-12 21:00:49 +000026#include "llvm/Target/TargetAsmBackend.h"
Daniel Dunbarf6346762010-02-13 09:29:02 +000027
Chris Lattner23132b12009-08-24 03:52:50 +000028#include <vector>
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000029using namespace llvm;
30
Daniel Dunbarff547842010-03-23 23:47:14 +000031namespace {
32namespace stats {
Daniel Dunbar0adcd352009-08-25 21:10:45 +000033STATISTIC(EmittedFragments, "Number of emitted assembler fragments");
Daniel Dunbarff547842010-03-23 23:47:14 +000034STATISTIC(EvaluateFixup, "Number of evaluated fixups");
Daniel Dunbarac2884a2010-03-25 22:49:09 +000035STATISTIC(FragmentLayouts, "Number of fragment layouts");
Daniel Dunbarff547842010-03-23 23:47:14 +000036STATISTIC(ObjectBytes, "Number of emitted object file bytes");
Daniel Dunbarac2884a2010-03-25 22:49:09 +000037STATISTIC(RelaxationSteps, "Number of assembler layout and relaxation steps");
38STATISTIC(RelaxedInstructions, "Number of relaxed instructions");
39STATISTIC(SectionLayouts, "Number of section layouts");
Daniel Dunbarff547842010-03-23 23:47:14 +000040}
41}
Daniel Dunbar0adcd352009-08-25 21:10:45 +000042
Daniel Dunbar8f4d1462009-08-28 07:08:35 +000043// FIXME FIXME FIXME: There are number of places in this file where we convert
44// what is a 64-bit assembler value used for computation into a value in the
45// object file, which may truncate it. We should detect that truncation where
46// invalid and report errors back.
47
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000048/* *** */
49
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000050void MCAsmLayout::UpdateForSlide(MCFragment *F, int SlideAmount) {
51 // We shouldn't have to do anything special to support negative slides, and it
52 // is a perfectly valid thing to do as long as other parts of the system are
53 // can guarantee convergence.
54 assert(SlideAmount >= 0 && "Negative slides not yet supported");
55
56 // Update the layout by simply recomputing the layout for the entire
57 // file. This is trivially correct, but very slow.
58 //
59 // FIXME-PERF: This is O(N^2), but will be eliminated once we get smarter.
60
61 // Layout the concrete sections and fragments.
62 MCAssembler &Asm = getAssembler();
63 uint64_t Address = 0;
64 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
65 // Skip virtual sections.
66 if (Asm.getBackend().isVirtualSection(it->getSection()))
67 continue;
68
69 // Layout the section fragments and its size.
70 Address = Asm.LayoutSection(*it, *this, Address);
71 }
72
73 // Layout the virtual sections.
74 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
75 if (!Asm.getBackend().isVirtualSection(it->getSection()))
76 continue;
77
78 // Layout the section fragments and its size.
79 Address = Asm.LayoutSection(*it, *this, Address);
80 }
81}
82
Daniel Dunbar207e06e2010-03-24 03:43:40 +000083uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000084 assert(F->getParent() && "Missing section()!");
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000085 return getSectionAddress(F->getParent()) + getFragmentOffset(F);
86}
87
88uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const {
89 assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!");
90 return F->EffectiveSize;
91}
92
93void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) {
94 F->EffectiveSize = Value;
95}
96
97uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
98 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
99 return F->Offset;
100}
101
102void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) {
103 F->Offset = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000104}
105
106uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000107 assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!");
108 return getFragmentAddress(SD->getFragment()) + SD->getOffset();
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000109}
110
111uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000112 assert(SD->Address != ~UINT64_C(0) && "Address not set!");
113 return SD->Address;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000114}
115
116void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000117 SD->Address = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000118}
119
Daniel Dunbar5d428512010-03-25 02:00:07 +0000120uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
121 assert(SD->Size != ~UINT64_C(0) && "File size not set!");
122 return SD->Size;
123}
124void MCAsmLayout::setSectionSize(MCSectionData *SD, uint64_t Value) {
125 SD->Size = Value;
126}
127
128uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
129 assert(SD->FileSize != ~UINT64_C(0) && "File size not set!");
130 return SD->FileSize;
131}
132void MCAsmLayout::setSectionFileSize(MCSectionData *SD, uint64_t Value) {
133 SD->FileSize = Value;
134}
135
136 /// @}
137
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000138/* *** */
139
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000140MCFragment::MCFragment() : Kind(FragmentType(~0)) {
141}
142
Daniel Dunbar5e835962009-08-26 02:48:04 +0000143MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000144 : Kind(_Kind),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000145 Parent(_Parent),
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000146 EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000147{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000148 if (Parent)
149 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000150}
151
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000152MCFragment::~MCFragment() {
153}
154
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000155/* *** */
156
Daniel Dunbar81e40002009-08-27 00:38:04 +0000157MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000158
159MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000160 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000161 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000162 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000163 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000164 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000165 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000166{
167 if (A)
168 A->getSectionList().push_back(this);
169}
170
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000171/* *** */
172
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000173MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000174
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000175MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000176 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000177 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000178 IsExternal(false), IsPrivateExtern(false),
179 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000180{
181 if (A)
182 A->getSymbolList().push_back(this);
183}
184
185/* *** */
186
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000187MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000188 MCCodeEmitter &_Emitter, raw_ostream &_OS)
189 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000190 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000191{
192}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000193
194MCAssembler::~MCAssembler() {
195}
196
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000197static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
198 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000199 const MCValue Target,
200 const MCSection *BaseSection) {
201 // The effective fixup address is
202 // addr(atom(A)) + offset(A)
203 // - addr(atom(B)) - offset(B)
204 // - addr(<base symbol>) + <fixup offset from base symbol>
205 // and the offsets are not relocatable, so the fixup is fully resolved when
206 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
207 //
208 // The simple (Darwin, except on x86_64) way of dealing with this was to
209 // assume that any reference to a temporary symbol *must* be a temporary
210 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
211 // relocation to a temporary symbol (in the same section) is fully
212 // resolved. This also works in conjunction with absolutized .set, which
213 // requires the compiler to use .set to absolutize the differences between
214 // symbols which the compiler knows to be assembly time constants, so we don't
215 // need to worry about consider symbol differences fully resolved.
216
217 // Non-relative fixups are only resolved if constant.
218 if (!BaseSection)
219 return Target.isAbsolute();
220
221 // Otherwise, relative fixups are only resolved if not a difference and the
222 // target is a temporary in the same section.
223 if (Target.isAbsolute() || Target.getSymB())
224 return false;
225
226 const MCSymbol *A = &Target.getSymA()->getSymbol();
227 if (!A->isTemporary() || !A->isInSection() ||
228 &A->getSection() != BaseSection)
229 return false;
230
231 return true;
232}
233
Daniel Dunbar034843a2010-03-19 03:18:18 +0000234static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000235 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000236 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000237 const MCValue Target,
238 const MCSymbolData *BaseSymbol) {
239 // The effective fixup address is
240 // addr(atom(A)) + offset(A)
241 // - addr(atom(B)) - offset(B)
242 // - addr(BaseSymbol) + <fixup offset from base symbol>
243 // and the offsets are not relocatable, so the fixup is fully resolved when
244 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
245 //
246 // Note that "false" is almost always conservatively correct (it means we emit
247 // a relocation which is unnecessary), except when it would force us to emit a
248 // relocation which the target cannot encode.
249
250 const MCSymbolData *A_Base = 0, *B_Base = 0;
251 if (const MCSymbolRefExpr *A = Target.getSymA()) {
252 // Modified symbol references cannot be resolved.
253 if (A->getKind() != MCSymbolRefExpr::VK_None)
254 return false;
255
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000256 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000257 if (!A_Base)
258 return false;
259 }
260
261 if (const MCSymbolRefExpr *B = Target.getSymB()) {
262 // Modified symbol references cannot be resolved.
263 if (B->getKind() != MCSymbolRefExpr::VK_None)
264 return false;
265
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000266 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000267 if (!B_Base)
268 return false;
269 }
270
271 // If there is no base, A and B have to be the same atom for this fixup to be
272 // fully resolved.
273 if (!BaseSymbol)
274 return A_Base == B_Base;
275
276 // Otherwise, B must be missing and A must be the base.
277 return !B_Base && BaseSymbol == A_Base;
278}
279
Daniel Dunbar23869852010-03-19 03:18:09 +0000280bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
281 // Non-temporary labels should always be visible to the linker.
282 if (!SD->getSymbol().isTemporary())
283 return true;
284
285 // Absolute temporary labels are never visible.
286 if (!SD->getFragment())
287 return false;
288
289 // Otherwise, check if the section requires symbols even for temporary labels.
290 return getBackend().doesSectionRequireSymbols(
291 SD->getFragment()->getParent()->getSection());
292}
293
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000294// FIXME-PERF: This routine is really slow.
295const MCSymbolData *MCAssembler::getAtomForAddress(const MCAsmLayout &Layout,
296 const MCSectionData *Section,
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000297 uint64_t Address) const {
298 const MCSymbolData *Best = 0;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000299 uint64_t BestAddress = 0;
300
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000301 for (MCAssembler::const_symbol_iterator it = symbol_begin(),
302 ie = symbol_end(); it != ie; ++it) {
303 // Ignore non-linker visible symbols.
304 if (!isSymbolLinkerVisible(it))
305 continue;
306
307 // Ignore symbols not in the same section.
308 if (!it->getFragment() || it->getFragment()->getParent() != Section)
309 continue;
310
311 // Otherwise, find the closest symbol preceding this address (ties are
312 // resolved in favor of the last defined symbol).
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000313 uint64_t SymbolAddress = Layout.getSymbolAddress(it);
314 if (SymbolAddress <= Address && (!Best || SymbolAddress >= BestAddress)) {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000315 Best = it;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000316 BestAddress = SymbolAddress;
317 }
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000318 }
319
320 return Best;
321}
322
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000323// FIXME-PERF: This routine is really slow.
324const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
325 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000326 // Linker visible symbols define atoms.
327 if (isSymbolLinkerVisible(SD))
328 return SD;
329
330 // Absolute and undefined symbols have no defining atom.
331 if (!SD->getFragment())
332 return 0;
333
334 // Otherwise, search by address.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000335 return getAtomForAddress(Layout, SD->getFragment()->getParent(),
336 Layout.getSymbolAddress(SD));
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000337}
338
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000339bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
340 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000341 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000342 ++stats::EvaluateFixup;
343
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000344 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000345 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000346
347 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
348 // doesn't support small relocations, but then under what criteria does the
349 // assembler allow symbol differences?
350
351 Value = Target.getConstant();
352
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000353 bool IsPCRel =
354 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
355 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000356 if (const MCSymbolRefExpr *A = Target.getSymA()) {
357 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000358 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000359 else
360 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000361 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000362 if (const MCSymbolRefExpr *B = Target.getSymB()) {
363 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000364 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000365 else
366 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000367 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000368
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000369 // If we are using scattered symbols, determine whether this value is actually
370 // resolved; scattering may cause atoms to move.
371 if (IsResolved && getBackend().hasScatteredSymbols()) {
372 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000373 // If this is a PCrel relocation, find the base atom (identified by its
374 // symbol) that the fixup value is relative to.
375 const MCSymbolData *BaseSymbol = 0;
376 if (IsPCRel) {
377 BaseSymbol = getAtomForAddress(
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000378 Layout, DF->getParent(), Layout.getFragmentAddress(DF)+Fixup.Offset);
Daniel Dunbar034843a2010-03-19 03:18:18 +0000379 if (!BaseSymbol)
380 IsResolved = false;
381 }
382
383 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000384 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000385 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000386 } else {
387 const MCSection *BaseSection = 0;
388 if (IsPCRel)
389 BaseSection = &DF->getParent()->getSection();
390
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000391 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000392 BaseSection);
393 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000394 }
395
396 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000397 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000398
399 return IsResolved;
400}
401
Daniel Dunbarf476b002010-03-25 18:16:42 +0000402uint64_t MCAssembler::LayoutSection(MCSectionData &SD,
403 MCAsmLayout &Layout,
404 uint64_t StartAddress) {
405 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
406
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000407 ++stats::SectionLayouts;
408
Daniel Dunbarf476b002010-03-25 18:16:42 +0000409 // Align this section if necessary by adding padding bytes to the previous
410 // section. It is safe to adjust this out-of-band, because no symbol or
411 // fragment is allowed to point past the end of the section at any time.
412 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
413 // Unless this section is virtual (where we are allowed to adjust the offset
414 // freely), the padding goes in the previous section.
415 if (!IsVirtual) {
416 // Find the previous non-virtual section.
417 iterator it = &SD;
418 assert(it != begin() && "Invalid initial section address!");
419 for (--it; getBackend().isVirtualSection(it->getSection()); --it) ;
420 Layout.setSectionFileSize(&*it, Layout.getSectionFileSize(&*it) + Pad);
421 }
422
423 StartAddress += Pad;
424 }
425
426 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000427 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000428
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000429 uint64_t Address = StartAddress;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000430 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
431 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000432
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000433 ++stats::FragmentLayouts;
434
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000435 uint64_t FragmentOffset = Address - StartAddress;
436 Layout.setFragmentOffset(&F, FragmentOffset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000437
438 // Evaluate fragment size.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000439 uint64_t EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000440 switch (F.getKind()) {
441 case MCFragment::FT_Align: {
442 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000443
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000444 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
445 if (EffectiveSize > AF.getMaxBytesToEmit())
446 EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000447 break;
448 }
449
450 case MCFragment::FT_Data:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000451 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000452 break;
453
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000454 case MCFragment::FT_Fill: {
455 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000456 EffectiveSize = FF.getValueSize() * FF.getCount();
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000457 break;
458 }
459
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000460 case MCFragment::FT_Inst:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000461 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000462 break;
463
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000464 case MCFragment::FT_Org: {
465 MCOrgFragment &OF = cast<MCOrgFragment>(F);
466
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000467 int64_t TargetLocation;
468 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000469 report_fatal_error("expected assembly-time absolute expression");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000470
471 // FIXME: We need a way to communicate this error.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000472 int64_t Offset = TargetLocation - FragmentOffset;
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000473 if (Offset < 0)
Chris Lattner75361b62010-04-07 22:58:41 +0000474 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000475 "' (at offset '" + Twine(FragmentOffset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000476
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000477 EffectiveSize = Offset;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000478 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000479 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000480
481 case MCFragment::FT_ZeroFill: {
482 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
483
484 // Align the fragment offset; it is safe to adjust the offset freely since
485 // this is only in virtual sections.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000486 //
487 // FIXME: We shouldn't be doing this here.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +0000488 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000489 Layout.setFragmentOffset(&F, Address - StartAddress);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000490
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000491 EffectiveSize = ZFF.getSize();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000492 break;
493 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000494 }
495
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000496 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
497 Address += EffectiveSize;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000498 }
499
Daniel Dunbar6742e342009-08-26 04:13:32 +0000500 // Set the section sizes.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000501 Layout.setSectionSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000502 if (IsVirtual)
Daniel Dunbar5d428512010-03-25 02:00:07 +0000503 Layout.setSectionFileSize(&SD, 0);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000504 else
Daniel Dunbar5d428512010-03-25 02:00:07 +0000505 Layout.setSectionFileSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000506
507 return Address;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000508}
509
Daniel Dunbar53b23382010-03-19 09:28:59 +0000510/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000511static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
512 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000513 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000514 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000515
Daniel Dunbarff547842010-03-23 23:47:14 +0000516 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000517
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000518 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000519 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000520 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000521 case MCFragment::FT_Align: {
522 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000523 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000524
525 // FIXME: This error shouldn't actually occur (the front end should emit
526 // multiple .align directives to enforce the semantics it wants), but is
527 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000528 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000529 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000530 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000531 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000532 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000533
Kevin Enderby6e720482010-02-23 18:26:34 +0000534 // See if we are aligning with nops, and if so do that first to try to fill
535 // the Count bytes. Then if that did not fill any bytes or there are any
536 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000537 // If we are aligning with nops, ask that target to emit the right data.
Kevin Enderby6e720482010-02-23 18:26:34 +0000538 if (AF.getEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000539 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000540 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000541 Twine(Count) + " bytes");
542 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000543 }
544
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000545 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000546 for (uint64_t i = 0; i != Count; ++i) {
547 switch (AF.getValueSize()) {
548 default:
549 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000550 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
551 case 2: OW->Write16(uint16_t(AF.getValue())); break;
552 case 4: OW->Write32(uint32_t(AF.getValue())); break;
553 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000554 }
555 }
556 break;
557 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000558
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000559 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000560 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000561 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000562 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000563 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000564 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000565
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000566 case MCFragment::FT_Fill: {
567 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000568 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
569 switch (FF.getValueSize()) {
570 default:
571 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000572 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
573 case 2: OW->Write16(uint16_t(FF.getValue())); break;
574 case 4: OW->Write32(uint32_t(FF.getValue())); break;
575 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000576 }
577 }
578 break;
579 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000580
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000581 case MCFragment::FT_Inst:
582 llvm_unreachable("unexpected inst fragment after lowering");
583 break;
584
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000585 case MCFragment::FT_Org: {
586 MCOrgFragment &OF = cast<MCOrgFragment>(F);
587
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000588 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000589 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000590
591 break;
592 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000593
594 case MCFragment::FT_ZeroFill: {
595 assert(0 && "Invalid zero fill fragment in concrete section!");
596 break;
597 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000598 }
599
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000600 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000601}
602
Daniel Dunbar53b23382010-03-19 09:28:59 +0000603void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000604 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000605 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000606 uint64_t SectionSize = Layout.getSectionSize(SD);
607 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
608
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000609 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000610 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000611 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000612 return;
613 }
614
Daniel Dunbar53b23382010-03-19 09:28:59 +0000615 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000616 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000617
Daniel Dunbar53b23382010-03-19 09:28:59 +0000618 for (MCSectionData::const_iterator it = SD->begin(),
619 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000620 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000621
Daniel Dunbar6742e342009-08-26 04:13:32 +0000622 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000623 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
624 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000625
Daniel Dunbar5d428512010-03-25 02:00:07 +0000626 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000627}
628
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000629void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000630 DEBUG_WITH_TYPE("mc-dump", {
631 llvm::errs() << "assembler backend - pre-layout\n--\n";
632 dump(); });
633
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000634 // Assign section and fragment ordinals, all subsequent backend code is
635 // responsible for updating these in place.
636 unsigned SectionIndex = 0;
637 unsigned FragmentIndex = 0;
638 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
639 it->setOrdinal(SectionIndex++);
640
641 for (MCSectionData::iterator it2 = it->begin(),
642 ie2 = it->end(); it2 != ie2; ++it2)
643 it2->setOrdinal(FragmentIndex++);
644 }
645
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000646 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000647 MCAsmLayout Layout(*this);
648 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000649 continue;
650
651 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000652 llvm::errs() << "assembler backend - post-relaxation\n--\n";
653 dump(); });
654
655 // Finalize the layout, including fragment lowering.
656 FinishLayout(Layout);
657
658 DEBUG_WITH_TYPE("mc-dump", {
659 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000660 dump(); });
661
Daniel Dunbarff547842010-03-23 23:47:14 +0000662 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000663 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
664 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000665 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000666
667 // Allow the object writer a chance to perform post-layout binding (for
668 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000669 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000670
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000671 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000672 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
673 for (MCSectionData::iterator it2 = it->begin(),
674 ie2 = it->end(); it2 != ie2; ++it2) {
675 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
676 if (!DF)
677 continue;
678
679 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
680 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
681 MCAsmFixup &Fixup = *it3;
682
683 // Evaluate the fixup.
684 MCValue Target;
685 uint64_t FixedValue;
686 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
687 // The fixup was unresolved, we need a relocation. Inform the object
688 // writer of the relocation, and give it an opportunity to adjust the
689 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000690 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000691 }
692
Daniel Dunbar87190c42010-03-19 09:28:12 +0000693 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000694 }
695 }
696 }
697
Daniel Dunbarbacba992010-03-19 07:09:33 +0000698 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000699 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000700 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000701
702 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000703}
704
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000705bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
706 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000707 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000708 if (getRelaxAll())
709 return true;
710
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000711 // If we cannot resolve the fixup value, it requires relaxation.
712 MCValue Target;
713 uint64_t Value;
714 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
715 return true;
716
717 // Otherwise, relax if the value is too big for a (signed) i8.
718 return int64_t(Value) != int64_t(int8_t(Value));
719}
720
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000721bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
722 const MCAsmLayout &Layout) const {
723 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
724 // are intentionally pushing out inst fragments, or because we relaxed a
725 // previous instruction to one that doesn't need relaxation.
726 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
727 return false;
728
729 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
730 ie = IF->fixup_end(); it != ie; ++it)
731 if (FixupNeedsRelaxation(*it, IF, Layout))
732 return true;
733
734 return false;
735}
736
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000737bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000738 ++stats::RelaxationSteps;
739
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000740 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000741 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000742 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000743 // Skip virtual sections.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000744 if (getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000745 continue;
746
Daniel Dunbar6742e342009-08-26 04:13:32 +0000747 // Layout the section fragments and its size.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000748 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000749 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000750
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000751 // Layout the virtual sections.
752 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbarf476b002010-03-25 18:16:42 +0000753 if (!getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000754 continue;
755
Daniel Dunbarf476b002010-03-25 18:16:42 +0000756 // Layout the section fragments and its size.
757 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000758 }
759
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000760 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000761 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000762 for (iterator it = begin(), ie = end(); it != ie; ++it) {
763 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000764
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000765 for (MCSectionData::iterator it2 = SD.begin(),
766 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000767 // Check if this is an instruction fragment that needs relaxation.
768 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
769 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000770 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000771
Daniel Dunbarff547842010-03-23 23:47:14 +0000772 ++stats::RelaxedInstructions;
773
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000774 // FIXME-PERF: We could immediately lower out instructions if we can tell
775 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000776
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000777 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000778
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000779 MCInst Relaxed;
780 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000781
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000782 // Encode the new instruction.
783 //
784 // FIXME-PERF: If it matters, we could let the target do this. It can
785 // probably do so more efficiently in many cases.
786 SmallVector<MCFixup, 4> Fixups;
787 SmallString<256> Code;
788 raw_svector_ostream VecOS(Code);
789 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
790 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000791
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000792 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000793 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000794 IF->setInst(Relaxed);
795 IF->getCode() = Code;
796 IF->getFixups().clear();
797 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
798 MCFixup &F = Fixups[i];
799 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
800 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000801 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000802
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000803 // Update the layout, and remember that we relaxed. If we are relaxing
804 // everything, we can skip this step since nothing will depend on updating
805 // the values.
806 if (!getRelaxAll())
807 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000808 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000809 }
810 }
811
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000812 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000813}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000814
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000815void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
816 // Lower out any instruction fragments, to simplify the fixup application and
817 // output.
818 //
819 // FIXME-PERF: We don't have to do this, but the assumption is that it is
820 // cheap (we will mostly end up eliminating fragments and appending on to data
821 // fragments), so the extra complexity downstream isn't worth it. Evaluate
822 // this assumption.
823 for (iterator it = begin(), ie = end(); it != ie; ++it) {
824 MCSectionData &SD = *it;
825
826 for (MCSectionData::iterator it2 = SD.begin(),
827 ie2 = SD.end(); it2 != ie2; ++it2) {
828 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
829 if (!IF)
830 continue;
831
832 // Create a new data fragment for the instruction.
833 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000834 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000835 MCDataFragment *DF = new MCDataFragment();
836 SD.getFragmentList().insert(it2, DF);
837
838 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000839 //
840 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000841 DF->setParent(IF->getParent());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000842 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000843 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
844 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000845
Daniel Dunbar9799de92010-03-23 01:39:05 +0000846 // Copy in the data and the fixups.
847 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
848 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
849 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000850
851 // Delete the instruction fragment and update the iterator.
852 SD.getFragmentList().erase(IF);
853 it2 = DF;
854 }
855 }
856}
857
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000858// Debugging methods
859
860namespace llvm {
861
862raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000863 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
864 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000865 return OS;
866}
867
868}
869
870void MCFragment::dump() {
871 raw_ostream &OS = llvm::errs();
872
873 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000874 << " EffectiveSize:" << EffectiveSize;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000875
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000876 OS << ">";
877}
878
879void MCAlignFragment::dump() {
880 raw_ostream &OS = llvm::errs();
881
882 OS << "<MCAlignFragment ";
883 this->MCFragment::dump();
884 OS << "\n ";
885 OS << " Alignment:" << getAlignment()
886 << " Value:" << getValue() << " ValueSize:" << getValueSize()
887 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
888}
889
890void MCDataFragment::dump() {
891 raw_ostream &OS = llvm::errs();
892
893 OS << "<MCDataFragment ";
894 this->MCFragment::dump();
895 OS << "\n ";
896 OS << " Contents:[";
897 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
898 if (i) OS << ",";
899 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
900 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000901 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000902
903 if (!getFixups().empty()) {
904 OS << ",\n ";
905 OS << " Fixups:[";
906 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000907 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000908 OS << *it;
909 }
910 OS << "]";
911 }
912
913 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000914}
915
916void MCFillFragment::dump() {
917 raw_ostream &OS = llvm::errs();
918
919 OS << "<MCFillFragment ";
920 this->MCFragment::dump();
921 OS << "\n ";
922 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
923 << " Count:" << getCount() << ">";
924}
925
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000926void MCInstFragment::dump() {
927 raw_ostream &OS = llvm::errs();
928
929 OS << "<MCInstFragment ";
930 this->MCFragment::dump();
931 OS << "\n ";
932 OS << " Inst:";
933 getInst().dump_pretty(OS);
934 OS << ">";
935}
936
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000937void MCOrgFragment::dump() {
938 raw_ostream &OS = llvm::errs();
939
940 OS << "<MCOrgFragment ";
941 this->MCFragment::dump();
942 OS << "\n ";
943 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
944}
945
946void MCZeroFillFragment::dump() {
947 raw_ostream &OS = llvm::errs();
948
949 OS << "<MCZeroFillFragment ";
950 this->MCFragment::dump();
951 OS << "\n ";
952 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
953}
954
955void MCSectionData::dump() {
956 raw_ostream &OS = llvm::errs();
957
958 OS << "<MCSectionData";
959 OS << " Alignment:" << getAlignment() << " Address:" << Address
960 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000961 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000962 for (iterator it = begin(), ie = end(); it != ie; ++it) {
963 if (it != begin()) OS << ",\n ";
964 it->dump();
965 }
966 OS << "]>";
967}
968
969void MCSymbolData::dump() {
970 raw_ostream &OS = llvm::errs();
971
972 OS << "<MCSymbolData Symbol:" << getSymbol()
973 << " Fragment:" << getFragment() << " Offset:" << getOffset()
974 << " Flags:" << getFlags() << " Index:" << getIndex();
975 if (isCommon())
976 OS << " (common, size:" << getCommonSize()
977 << " align: " << getCommonAlignment() << ")";
978 if (isExternal())
979 OS << " (external)";
980 if (isPrivateExtern())
981 OS << " (private extern)";
982 OS << ">";
983}
984
985void MCAssembler::dump() {
986 raw_ostream &OS = llvm::errs();
987
988 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000989 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000990 for (iterator it = begin(), ie = end(); it != ie; ++it) {
991 if (it != begin()) OS << ",\n ";
992 it->dump();
993 }
994 OS << "],\n";
995 OS << " Symbols:[";
996
997 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000998 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000999 it->dump();
1000 }
1001 OS << "]>\n";
1002}