blob: 5c2bf7879ac124a42d64e3d14c7e5a606721acef [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
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000136/* *** */
137
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000138MCFragment::MCFragment() : Kind(FragmentType(~0)) {
139}
140
Daniel Dunbar5e835962009-08-26 02:48:04 +0000141MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000142 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000143{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000144 if (Parent)
145 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000146}
147
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000148MCFragment::~MCFragment() {
149}
150
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000151/* *** */
152
Daniel Dunbar81e40002009-08-27 00:38:04 +0000153MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000154
155MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000156 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000157 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000158 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000159 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000160 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000161 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000162{
163 if (A)
164 A->getSectionList().push_back(this);
165}
166
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000167/* *** */
168
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000169MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000170
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000171MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000172 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000173 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000174 IsExternal(false), IsPrivateExtern(false),
175 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000176{
177 if (A)
178 A->getSymbolList().push_back(this);
179}
180
181/* *** */
182
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000183MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000184 MCCodeEmitter &_Emitter, raw_ostream &_OS)
185 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000186 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000187{
188}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000189
190MCAssembler::~MCAssembler() {
191}
192
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000193static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
194 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000195 const MCValue Target,
196 const MCSection *BaseSection) {
197 // The effective fixup address is
198 // addr(atom(A)) + offset(A)
199 // - addr(atom(B)) - offset(B)
200 // - addr(<base symbol>) + <fixup offset from base symbol>
201 // and the offsets are not relocatable, so the fixup is fully resolved when
202 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
203 //
204 // The simple (Darwin, except on x86_64) way of dealing with this was to
205 // assume that any reference to a temporary symbol *must* be a temporary
206 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
207 // relocation to a temporary symbol (in the same section) is fully
208 // resolved. This also works in conjunction with absolutized .set, which
209 // requires the compiler to use .set to absolutize the differences between
210 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000211 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000212
213 // Non-relative fixups are only resolved if constant.
214 if (!BaseSection)
215 return Target.isAbsolute();
216
217 // Otherwise, relative fixups are only resolved if not a difference and the
218 // target is a temporary in the same section.
219 if (Target.isAbsolute() || Target.getSymB())
220 return false;
221
222 const MCSymbol *A = &Target.getSymA()->getSymbol();
223 if (!A->isTemporary() || !A->isInSection() ||
224 &A->getSection() != BaseSection)
225 return false;
226
227 return true;
228}
229
Daniel Dunbar034843a2010-03-19 03:18:18 +0000230static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000231 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000232 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000233 const MCValue Target,
234 const MCSymbolData *BaseSymbol) {
235 // The effective fixup address is
236 // addr(atom(A)) + offset(A)
237 // - addr(atom(B)) - offset(B)
238 // - addr(BaseSymbol) + <fixup offset from base symbol>
239 // and the offsets are not relocatable, so the fixup is fully resolved when
240 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
241 //
242 // Note that "false" is almost always conservatively correct (it means we emit
243 // a relocation which is unnecessary), except when it would force us to emit a
244 // relocation which the target cannot encode.
245
246 const MCSymbolData *A_Base = 0, *B_Base = 0;
247 if (const MCSymbolRefExpr *A = Target.getSymA()) {
248 // Modified symbol references cannot be resolved.
249 if (A->getKind() != MCSymbolRefExpr::VK_None)
250 return false;
251
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000252 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000253 if (!A_Base)
254 return false;
255 }
256
257 if (const MCSymbolRefExpr *B = Target.getSymB()) {
258 // Modified symbol references cannot be resolved.
259 if (B->getKind() != MCSymbolRefExpr::VK_None)
260 return false;
261
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000262 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000263 if (!B_Base)
264 return false;
265 }
266
267 // If there is no base, A and B have to be the same atom for this fixup to be
268 // fully resolved.
269 if (!BaseSymbol)
270 return A_Base == B_Base;
271
272 // Otherwise, B must be missing and A must be the base.
273 return !B_Base && BaseSymbol == A_Base;
274}
275
Daniel Dunbar23869852010-03-19 03:18:09 +0000276bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
277 // Non-temporary labels should always be visible to the linker.
278 if (!SD->getSymbol().isTemporary())
279 return true;
280
281 // Absolute temporary labels are never visible.
282 if (!SD->getFragment())
283 return false;
284
285 // Otherwise, check if the section requires symbols even for temporary labels.
286 return getBackend().doesSectionRequireSymbols(
287 SD->getFragment()->getParent()->getSection());
288}
289
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000290// FIXME-PERF: This routine is really slow.
291const MCSymbolData *MCAssembler::getAtomForAddress(const MCAsmLayout &Layout,
292 const MCSectionData *Section,
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000293 uint64_t Address) const {
294 const MCSymbolData *Best = 0;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000295 uint64_t BestAddress = 0;
296
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000297 for (MCAssembler::const_symbol_iterator it = symbol_begin(),
298 ie = symbol_end(); it != ie; ++it) {
299 // Ignore non-linker visible symbols.
300 if (!isSymbolLinkerVisible(it))
301 continue;
302
303 // Ignore symbols not in the same section.
304 if (!it->getFragment() || it->getFragment()->getParent() != Section)
305 continue;
306
307 // Otherwise, find the closest symbol preceding this address (ties are
308 // resolved in favor of the last defined symbol).
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000309 uint64_t SymbolAddress = Layout.getSymbolAddress(it);
310 if (SymbolAddress <= Address && (!Best || SymbolAddress >= BestAddress)) {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000311 Best = it;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000312 BestAddress = SymbolAddress;
313 }
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000314 }
315
316 return Best;
317}
318
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000319// FIXME-PERF: This routine is really slow.
320const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
321 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000322 // Linker visible symbols define atoms.
323 if (isSymbolLinkerVisible(SD))
324 return SD;
325
326 // Absolute and undefined symbols have no defining atom.
327 if (!SD->getFragment())
328 return 0;
329
330 // Otherwise, search by address.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000331 return getAtomForAddress(Layout, SD->getFragment()->getParent(),
332 Layout.getSymbolAddress(SD));
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000333}
334
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000335bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
336 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000337 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000338 ++stats::EvaluateFixup;
339
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000340 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000341 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000342
343 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
344 // doesn't support small relocations, but then under what criteria does the
345 // assembler allow symbol differences?
346
347 Value = Target.getConstant();
348
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000349 bool IsPCRel =
350 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
351 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000352 if (const MCSymbolRefExpr *A = Target.getSymA()) {
353 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000354 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000355 else
356 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000357 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000358 if (const MCSymbolRefExpr *B = Target.getSymB()) {
359 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000360 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000361 else
362 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000363 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000364
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000365 // If we are using scattered symbols, determine whether this value is actually
366 // resolved; scattering may cause atoms to move.
367 if (IsResolved && getBackend().hasScatteredSymbols()) {
368 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000369 // If this is a PCrel relocation, find the base atom (identified by its
370 // symbol) that the fixup value is relative to.
371 const MCSymbolData *BaseSymbol = 0;
372 if (IsPCRel) {
373 BaseSymbol = getAtomForAddress(
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000374 Layout, DF->getParent(), Layout.getFragmentAddress(DF)+Fixup.Offset);
Daniel Dunbar034843a2010-03-19 03:18:18 +0000375 if (!BaseSymbol)
376 IsResolved = false;
377 }
378
379 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000380 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000381 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000382 } else {
383 const MCSection *BaseSection = 0;
384 if (IsPCRel)
385 BaseSection = &DF->getParent()->getSection();
386
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000387 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000388 BaseSection);
389 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000390 }
391
392 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000393 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000394
395 return IsResolved;
396}
397
Daniel Dunbarf476b002010-03-25 18:16:42 +0000398uint64_t MCAssembler::LayoutSection(MCSectionData &SD,
399 MCAsmLayout &Layout,
400 uint64_t StartAddress) {
401 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
402
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000403 ++stats::SectionLayouts;
404
Daniel Dunbarf476b002010-03-25 18:16:42 +0000405 // Align this section if necessary by adding padding bytes to the previous
406 // section. It is safe to adjust this out-of-band, because no symbol or
407 // fragment is allowed to point past the end of the section at any time.
408 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
409 // Unless this section is virtual (where we are allowed to adjust the offset
410 // freely), the padding goes in the previous section.
411 if (!IsVirtual) {
412 // Find the previous non-virtual section.
413 iterator it = &SD;
414 assert(it != begin() && "Invalid initial section address!");
415 for (--it; getBackend().isVirtualSection(it->getSection()); --it) ;
416 Layout.setSectionFileSize(&*it, Layout.getSectionFileSize(&*it) + Pad);
417 }
418
419 StartAddress += Pad;
420 }
421
422 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000423 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000424
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000425 uint64_t Address = StartAddress;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000426 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
427 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000428
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000429 ++stats::FragmentLayouts;
430
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000431 uint64_t FragmentOffset = Address - StartAddress;
432 Layout.setFragmentOffset(&F, FragmentOffset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000433
434 // Evaluate fragment size.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000435 uint64_t EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000436 switch (F.getKind()) {
437 case MCFragment::FT_Align: {
438 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000439
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000440 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
441 if (EffectiveSize > AF.getMaxBytesToEmit())
442 EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000443 break;
444 }
445
446 case MCFragment::FT_Data:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000447 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000448 break;
449
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000450 case MCFragment::FT_Fill: {
451 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000452 EffectiveSize = FF.getValueSize() * FF.getCount();
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000453 break;
454 }
455
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000456 case MCFragment::FT_Inst:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000457 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000458 break;
459
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000460 case MCFragment::FT_Org: {
461 MCOrgFragment &OF = cast<MCOrgFragment>(F);
462
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000463 int64_t TargetLocation;
464 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000465 report_fatal_error("expected assembly-time absolute expression");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000466
467 // FIXME: We need a way to communicate this error.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000468 int64_t Offset = TargetLocation - FragmentOffset;
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000469 if (Offset < 0)
Chris Lattner75361b62010-04-07 22:58:41 +0000470 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000471 "' (at offset '" + Twine(FragmentOffset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000472
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000473 EffectiveSize = Offset;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000474 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000475 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000476
477 case MCFragment::FT_ZeroFill: {
478 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
479
480 // Align the fragment offset; it is safe to adjust the offset freely since
481 // this is only in virtual sections.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000482 //
483 // FIXME: We shouldn't be doing this here.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +0000484 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000485 Layout.setFragmentOffset(&F, Address - StartAddress);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000486
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000487 EffectiveSize = ZFF.getSize();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000488 break;
489 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000490 }
491
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000492 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
493 Address += EffectiveSize;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000494 }
495
Daniel Dunbar6742e342009-08-26 04:13:32 +0000496 // Set the section sizes.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000497 Layout.setSectionSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000498 if (IsVirtual)
Daniel Dunbar5d428512010-03-25 02:00:07 +0000499 Layout.setSectionFileSize(&SD, 0);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000500 else
Daniel Dunbar5d428512010-03-25 02:00:07 +0000501 Layout.setSectionFileSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000502
503 return Address;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000504}
505
Daniel Dunbar53b23382010-03-19 09:28:59 +0000506/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000507static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
508 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000509 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000510 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000511
Daniel Dunbarff547842010-03-23 23:47:14 +0000512 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000513
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000514 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000515 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000516 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000517 case MCFragment::FT_Align: {
518 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000519 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000520
521 // FIXME: This error shouldn't actually occur (the front end should emit
522 // multiple .align directives to enforce the semantics it wants), but is
523 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000524 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000525 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000526 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000527 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000528 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000529
Kevin Enderby6e720482010-02-23 18:26:34 +0000530 // See if we are aligning with nops, and if so do that first to try to fill
531 // the Count bytes. Then if that did not fill any bytes or there are any
532 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000533 // If we are aligning with nops, ask that target to emit the right data.
Kevin Enderby6e720482010-02-23 18:26:34 +0000534 if (AF.getEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000535 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000536 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000537 Twine(Count) + " bytes");
538 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000539 }
540
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000541 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000542 for (uint64_t i = 0; i != Count; ++i) {
543 switch (AF.getValueSize()) {
544 default:
545 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000546 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
547 case 2: OW->Write16(uint16_t(AF.getValue())); break;
548 case 4: OW->Write32(uint32_t(AF.getValue())); break;
549 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000550 }
551 }
552 break;
553 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000554
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000555 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000556 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000557 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000558 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000559 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000560 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000561
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000562 case MCFragment::FT_Fill: {
563 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000564 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
565 switch (FF.getValueSize()) {
566 default:
567 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000568 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
569 case 2: OW->Write16(uint16_t(FF.getValue())); break;
570 case 4: OW->Write32(uint32_t(FF.getValue())); break;
571 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000572 }
573 }
574 break;
575 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000576
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000577 case MCFragment::FT_Inst:
578 llvm_unreachable("unexpected inst fragment after lowering");
579 break;
580
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000581 case MCFragment::FT_Org: {
582 MCOrgFragment &OF = cast<MCOrgFragment>(F);
583
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000584 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000585 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000586
587 break;
588 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000589
590 case MCFragment::FT_ZeroFill: {
591 assert(0 && "Invalid zero fill fragment in concrete section!");
592 break;
593 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000594 }
595
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000596 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000597}
598
Daniel Dunbar53b23382010-03-19 09:28:59 +0000599void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000600 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000601 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000602 uint64_t SectionSize = Layout.getSectionSize(SD);
603 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
604
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000605 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000606 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000607 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000608 return;
609 }
610
Daniel Dunbar53b23382010-03-19 09:28:59 +0000611 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000612 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000613
Daniel Dunbar53b23382010-03-19 09:28:59 +0000614 for (MCSectionData::const_iterator it = SD->begin(),
615 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000616 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000617
Daniel Dunbar6742e342009-08-26 04:13:32 +0000618 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000619 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
620 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000621
Daniel Dunbar5d428512010-03-25 02:00:07 +0000622 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000623}
624
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000625void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000626 DEBUG_WITH_TYPE("mc-dump", {
627 llvm::errs() << "assembler backend - pre-layout\n--\n";
628 dump(); });
629
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000630 // Assign section and fragment ordinals, all subsequent backend code is
631 // responsible for updating these in place.
632 unsigned SectionIndex = 0;
633 unsigned FragmentIndex = 0;
634 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
635 it->setOrdinal(SectionIndex++);
636
637 for (MCSectionData::iterator it2 = it->begin(),
638 ie2 = it->end(); it2 != ie2; ++it2)
639 it2->setOrdinal(FragmentIndex++);
640 }
641
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000642 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000643 MCAsmLayout Layout(*this);
644 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000645 continue;
646
647 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000648 llvm::errs() << "assembler backend - post-relaxation\n--\n";
649 dump(); });
650
651 // Finalize the layout, including fragment lowering.
652 FinishLayout(Layout);
653
654 DEBUG_WITH_TYPE("mc-dump", {
655 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000656 dump(); });
657
Daniel Dunbarff547842010-03-23 23:47:14 +0000658 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000659 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
660 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000661 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000662
663 // Allow the object writer a chance to perform post-layout binding (for
664 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000665 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000666
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000667 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000668 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
669 for (MCSectionData::iterator it2 = it->begin(),
670 ie2 = it->end(); it2 != ie2; ++it2) {
671 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
672 if (!DF)
673 continue;
674
675 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
676 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
677 MCAsmFixup &Fixup = *it3;
678
679 // Evaluate the fixup.
680 MCValue Target;
681 uint64_t FixedValue;
682 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
683 // The fixup was unresolved, we need a relocation. Inform the object
684 // writer of the relocation, and give it an opportunity to adjust the
685 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000686 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000687 }
688
Daniel Dunbar87190c42010-03-19 09:28:12 +0000689 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000690 }
691 }
692 }
693
Daniel Dunbarbacba992010-03-19 07:09:33 +0000694 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000695 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000696 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000697
698 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000699}
700
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000701bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
702 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000703 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000704 if (getRelaxAll())
705 return true;
706
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000707 // If we cannot resolve the fixup value, it requires relaxation.
708 MCValue Target;
709 uint64_t Value;
710 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
711 return true;
712
713 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000714 //
715 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000716 return int64_t(Value) != int64_t(int8_t(Value));
717}
718
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000719bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
720 const MCAsmLayout &Layout) const {
721 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
722 // are intentionally pushing out inst fragments, or because we relaxed a
723 // previous instruction to one that doesn't need relaxation.
724 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
725 return false;
726
727 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
728 ie = IF->fixup_end(); it != ie; ++it)
729 if (FixupNeedsRelaxation(*it, IF, Layout))
730 return true;
731
732 return false;
733}
734
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000735bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000736 ++stats::RelaxationSteps;
737
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000738 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000739 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000740 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000741 // Skip virtual sections.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000742 if (getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000743 continue;
744
Daniel Dunbar6742e342009-08-26 04:13:32 +0000745 // Layout the section fragments and its size.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000746 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000747 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000748
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000749 // Layout the virtual sections.
750 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbarf476b002010-03-25 18:16:42 +0000751 if (!getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000752 continue;
753
Daniel Dunbarf476b002010-03-25 18:16:42 +0000754 // Layout the section fragments and its size.
755 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000756 }
757
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000758 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000759 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000760 for (iterator it = begin(), ie = end(); it != ie; ++it) {
761 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000762
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000763 for (MCSectionData::iterator it2 = SD.begin(),
764 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000765 // Check if this is an instruction fragment that needs relaxation.
766 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
767 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000768 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000769
Daniel Dunbarff547842010-03-23 23:47:14 +0000770 ++stats::RelaxedInstructions;
771
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000772 // FIXME-PERF: We could immediately lower out instructions if we can tell
773 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000774
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000775 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000776
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000777 MCInst Relaxed;
778 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000779
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000780 // Encode the new instruction.
781 //
782 // FIXME-PERF: If it matters, we could let the target do this. It can
783 // probably do so more efficiently in many cases.
784 SmallVector<MCFixup, 4> Fixups;
785 SmallString<256> Code;
786 raw_svector_ostream VecOS(Code);
787 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
788 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000789
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000790 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000791 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000792 IF->setInst(Relaxed);
793 IF->getCode() = Code;
794 IF->getFixups().clear();
795 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
796 MCFixup &F = Fixups[i];
797 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
798 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000799 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000800
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000801 // Update the layout, and remember that we relaxed. If we are relaxing
802 // everything, we can skip this step since nothing will depend on updating
803 // the values.
804 if (!getRelaxAll())
805 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000806 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000807 }
808 }
809
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000810 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000811}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000812
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000813void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
814 // Lower out any instruction fragments, to simplify the fixup application and
815 // output.
816 //
817 // FIXME-PERF: We don't have to do this, but the assumption is that it is
818 // cheap (we will mostly end up eliminating fragments and appending on to data
819 // fragments), so the extra complexity downstream isn't worth it. Evaluate
820 // this assumption.
821 for (iterator it = begin(), ie = end(); it != ie; ++it) {
822 MCSectionData &SD = *it;
823
824 for (MCSectionData::iterator it2 = SD.begin(),
825 ie2 = SD.end(); it2 != ie2; ++it2) {
826 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
827 if (!IF)
828 continue;
829
830 // Create a new data fragment for the instruction.
831 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000832 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000833 MCDataFragment *DF = new MCDataFragment();
834 SD.getFragmentList().insert(it2, DF);
835
836 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000837 //
838 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000839 DF->setParent(IF->getParent());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000840 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000841 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
842 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000843
Daniel Dunbar9799de92010-03-23 01:39:05 +0000844 // Copy in the data and the fixups.
845 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
846 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
847 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000848
849 // Delete the instruction fragment and update the iterator.
850 SD.getFragmentList().erase(IF);
851 it2 = DF;
852 }
853 }
854}
855
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000856// Debugging methods
857
858namespace llvm {
859
860raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000861 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
862 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000863 return OS;
864}
865
866}
867
868void MCFragment::dump() {
869 raw_ostream &OS = llvm::errs();
870
871 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000872 << " EffectiveSize:" << EffectiveSize;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000873
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000874 OS << ">";
875}
876
877void MCAlignFragment::dump() {
878 raw_ostream &OS = llvm::errs();
879
880 OS << "<MCAlignFragment ";
881 this->MCFragment::dump();
882 OS << "\n ";
883 OS << " Alignment:" << getAlignment()
884 << " Value:" << getValue() << " ValueSize:" << getValueSize()
885 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
886}
887
888void MCDataFragment::dump() {
889 raw_ostream &OS = llvm::errs();
890
891 OS << "<MCDataFragment ";
892 this->MCFragment::dump();
893 OS << "\n ";
894 OS << " Contents:[";
895 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
896 if (i) OS << ",";
897 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
898 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000899 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000900
901 if (!getFixups().empty()) {
902 OS << ",\n ";
903 OS << " Fixups:[";
904 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000905 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000906 OS << *it;
907 }
908 OS << "]";
909 }
910
911 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000912}
913
914void MCFillFragment::dump() {
915 raw_ostream &OS = llvm::errs();
916
917 OS << "<MCFillFragment ";
918 this->MCFragment::dump();
919 OS << "\n ";
920 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
921 << " Count:" << getCount() << ">";
922}
923
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000924void MCInstFragment::dump() {
925 raw_ostream &OS = llvm::errs();
926
927 OS << "<MCInstFragment ";
928 this->MCFragment::dump();
929 OS << "\n ";
930 OS << " Inst:";
931 getInst().dump_pretty(OS);
932 OS << ">";
933}
934
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000935void MCOrgFragment::dump() {
936 raw_ostream &OS = llvm::errs();
937
938 OS << "<MCOrgFragment ";
939 this->MCFragment::dump();
940 OS << "\n ";
941 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
942}
943
944void MCZeroFillFragment::dump() {
945 raw_ostream &OS = llvm::errs();
946
947 OS << "<MCZeroFillFragment ";
948 this->MCFragment::dump();
949 OS << "\n ";
950 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
951}
952
953void MCSectionData::dump() {
954 raw_ostream &OS = llvm::errs();
955
956 OS << "<MCSectionData";
957 OS << " Alignment:" << getAlignment() << " Address:" << Address
958 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000959 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000960 for (iterator it = begin(), ie = end(); it != ie; ++it) {
961 if (it != begin()) OS << ",\n ";
962 it->dump();
963 }
964 OS << "]>";
965}
966
967void MCSymbolData::dump() {
968 raw_ostream &OS = llvm::errs();
969
970 OS << "<MCSymbolData Symbol:" << getSymbol()
971 << " Fragment:" << getFragment() << " Offset:" << getOffset()
972 << " Flags:" << getFlags() << " Index:" << getIndex();
973 if (isCommon())
974 OS << " (common, size:" << getCommonSize()
975 << " align: " << getCommonAlignment() << ")";
976 if (isExternal())
977 OS << " (external)";
978 if (isPrivateExtern())
979 OS << " (private extern)";
980 OS << ">";
981}
982
983void MCAssembler::dump() {
984 raw_ostream &OS = llvm::errs();
985
986 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000987 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000988 for (iterator it = begin(), ie = end(); it != ie; ++it) {
989 if (it != begin()) OS << ",\n ";
990 it->dump();
991 }
992 OS << "],\n";
993 OS << " Symbols:[";
994
995 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000996 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000997 it->dump();
998 }
999 OS << "]>\n";
1000}