blob: 57214af29665d06e8beb1e464dcc0f3fd9aba36d [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 Dunbarbc1a0cf2010-05-12 15:42:59 +000050MCAsmLayout::MCAsmLayout(MCAssembler &Asm) : Assembler(Asm) {
51 // Compute the section layout order. Virtual sections must go last.
52 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
53 if (!Asm.getBackend().isVirtualSection(it->getSection()))
54 SectionOrder.push_back(&*it);
55 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
56 if (Asm.getBackend().isVirtualSection(it->getSection()))
57 SectionOrder.push_back(&*it);
58}
59
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000060void MCAsmLayout::UpdateForSlide(MCFragment *F, int SlideAmount) {
61 // We shouldn't have to do anything special to support negative slides, and it
Daniel Dunbar651804c2010-05-11 17:22:50 +000062 // is a perfectly valid thing to do as long as other parts of the system can
63 // guarantee convergence.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000064 assert(SlideAmount >= 0 && "Negative slides not yet supported");
65
66 // Update the layout by simply recomputing the layout for the entire
67 // file. This is trivially correct, but very slow.
68 //
69 // FIXME-PERF: This is O(N^2), but will be eliminated once we get smarter.
70
Daniel Dunbard13a0ca2010-05-12 17:56:47 +000071 // Layout the sections in order.
Daniel Dunbarb69fc042010-05-13 20:40:12 +000072 LayoutFile();
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000073}
74
Daniel Dunbaraa0d3502010-05-13 08:43:31 +000075void MCAsmLayout::FragmentReplaced(MCFragment *Src, MCFragment *Dst) {
76 Dst->Offset = Src->Offset;
77 Dst->EffectiveSize = Src->EffectiveSize;
78}
79
Daniel Dunbar207e06e2010-03-24 03:43:40 +000080uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000081 assert(F->getParent() && "Missing section()!");
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000082 return getSectionAddress(F->getParent()) + getFragmentOffset(F);
83}
84
85uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const {
86 assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!");
87 return F->EffectiveSize;
88}
89
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000090uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
91 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
92 return F->Offset;
93}
94
Daniel Dunbar207e06e2010-03-24 03:43:40 +000095uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000096 assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!");
97 return getFragmentAddress(SD->getFragment()) + SD->getOffset();
Daniel Dunbar207e06e2010-03-24 03:43:40 +000098}
99
100uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000101 assert(SD->Address != ~UINT64_C(0) && "Address not set!");
102 return SD->Address;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000103}
104
Daniel Dunbar2661f112010-05-13 03:19:50 +0000105uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const {
Daniel Dunbarafc6acd2010-05-14 00:37:11 +0000106 // The size is the last fragment's end offset.
Daniel Dunbar2661f112010-05-13 03:19:50 +0000107 const MCFragment &F = SD->getFragmentList().back();
108 return getFragmentOffset(&F) + getFragmentEffectiveSize(&F);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000109}
110
111uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
Daniel Dunbar2661f112010-05-13 03:19:50 +0000112 // Virtual sections have no file size.
113 if (getAssembler().getBackend().isVirtualSection(SD->getSection()))
114 return 0;
115
116 // Otherwise, the file size is the same as the address space size.
117 return getSectionAddressSize(SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000118}
119
Daniel Dunbar2661f112010-05-13 03:19:50 +0000120uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
Daniel Dunbar2661f112010-05-13 03:19:50 +0000121 // The logical size is the address space size minus any tail padding.
122 uint64_t Size = getSectionAddressSize(SD);
123 const MCAlignFragment *AF =
124 dyn_cast<MCAlignFragment>(&(SD->getFragmentList().back()));
125 if (AF && AF->hasOnlyAlignAddress())
126 Size -= getFragmentEffectiveSize(AF);
127
128 return Size;
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000129}
130
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000131/* *** */
132
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000133MCFragment::MCFragment() : Kind(FragmentType(~0)) {
134}
135
Daniel Dunbar5e835962009-08-26 02:48:04 +0000136MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000137 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000138{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000139 if (Parent)
140 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000141}
142
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000143MCFragment::~MCFragment() {
144}
145
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000146/* *** */
147
Daniel Dunbar81e40002009-08-27 00:38:04 +0000148MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000149
150MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000151 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000152 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000153 Address(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000154 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000155{
156 if (A)
157 A->getSectionList().push_back(this);
158}
159
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000160/* *** */
161
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000162MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000163
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000164MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000165 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000166 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000167 IsExternal(false), IsPrivateExtern(false),
168 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000169{
170 if (A)
171 A->getSymbolList().push_back(this);
172}
173
174/* *** */
175
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000176MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000177 MCCodeEmitter &_Emitter, raw_ostream &_OS)
178 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000179 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000180{
181}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000182
183MCAssembler::~MCAssembler() {
184}
185
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000186static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
187 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000188 const MCValue Target,
189 const MCSection *BaseSection) {
190 // The effective fixup address is
191 // addr(atom(A)) + offset(A)
192 // - addr(atom(B)) - offset(B)
193 // - addr(<base symbol>) + <fixup offset from base symbol>
194 // and the offsets are not relocatable, so the fixup is fully resolved when
195 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
196 //
197 // The simple (Darwin, except on x86_64) way of dealing with this was to
198 // assume that any reference to a temporary symbol *must* be a temporary
199 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
200 // relocation to a temporary symbol (in the same section) is fully
201 // resolved. This also works in conjunction with absolutized .set, which
202 // requires the compiler to use .set to absolutize the differences between
203 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000204 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000205
206 // Non-relative fixups are only resolved if constant.
207 if (!BaseSection)
208 return Target.isAbsolute();
209
210 // Otherwise, relative fixups are only resolved if not a difference and the
211 // target is a temporary in the same section.
212 if (Target.isAbsolute() || Target.getSymB())
213 return false;
214
215 const MCSymbol *A = &Target.getSymA()->getSymbol();
216 if (!A->isTemporary() || !A->isInSection() ||
217 &A->getSection() != BaseSection)
218 return false;
219
220 return true;
221}
222
Daniel Dunbar034843a2010-03-19 03:18:18 +0000223static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000224 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000225 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000226 const MCValue Target,
227 const MCSymbolData *BaseSymbol) {
228 // The effective fixup address is
229 // addr(atom(A)) + offset(A)
230 // - addr(atom(B)) - offset(B)
231 // - addr(BaseSymbol) + <fixup offset from base symbol>
232 // and the offsets are not relocatable, so the fixup is fully resolved when
233 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
234 //
235 // Note that "false" is almost always conservatively correct (it means we emit
236 // a relocation which is unnecessary), except when it would force us to emit a
237 // relocation which the target cannot encode.
238
239 const MCSymbolData *A_Base = 0, *B_Base = 0;
240 if (const MCSymbolRefExpr *A = Target.getSymA()) {
241 // Modified symbol references cannot be resolved.
242 if (A->getKind() != MCSymbolRefExpr::VK_None)
243 return false;
244
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000245 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000246 if (!A_Base)
247 return false;
248 }
249
250 if (const MCSymbolRefExpr *B = Target.getSymB()) {
251 // Modified symbol references cannot be resolved.
252 if (B->getKind() != MCSymbolRefExpr::VK_None)
253 return false;
254
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000255 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000256 if (!B_Base)
257 return false;
258 }
259
260 // If there is no base, A and B have to be the same atom for this fixup to be
261 // fully resolved.
262 if (!BaseSymbol)
263 return A_Base == B_Base;
264
265 // Otherwise, B must be missing and A must be the base.
266 return !B_Base && BaseSymbol == A_Base;
267}
268
Daniel Dunbar23869852010-03-19 03:18:09 +0000269bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
270 // Non-temporary labels should always be visible to the linker.
271 if (!SD->getSymbol().isTemporary())
272 return true;
273
274 // Absolute temporary labels are never visible.
275 if (!SD->getFragment())
276 return false;
277
278 // Otherwise, check if the section requires symbols even for temporary labels.
279 return getBackend().doesSectionRequireSymbols(
280 SD->getFragment()->getParent()->getSection());
281}
282
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000283const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
284 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000285 // Linker visible symbols define atoms.
286 if (isSymbolLinkerVisible(SD))
287 return SD;
288
289 // Absolute and undefined symbols have no defining atom.
290 if (!SD->getFragment())
291 return 0;
292
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000293 // Non-linker visible symbols in sections which can't be atomized have no
294 // defining atom.
295 if (!getBackend().isSectionAtomizable(
296 SD->getFragment()->getParent()->getSection()))
297 return 0;
298
Daniel Dunbar651804c2010-05-11 17:22:50 +0000299 // Otherwise, return the atom for the containing fragment.
300 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000301}
302
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000303bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
304 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000305 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000306 ++stats::EvaluateFixup;
307
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000308 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000309 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000310
311 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
312 // doesn't support small relocations, but then under what criteria does the
313 // assembler allow symbol differences?
314
315 Value = Target.getConstant();
316
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000317 bool IsPCRel =
318 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
319 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000320 if (const MCSymbolRefExpr *A = Target.getSymA()) {
321 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000322 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000323 else
324 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000325 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000326 if (const MCSymbolRefExpr *B = Target.getSymB()) {
327 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000328 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000329 else
330 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000331 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000332
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000333 // If we are using scattered symbols, determine whether this value is actually
334 // resolved; scattering may cause atoms to move.
335 if (IsResolved && getBackend().hasScatteredSymbols()) {
336 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000337 // If this is a PCrel relocation, find the base atom (identified by its
338 // symbol) that the fixup value is relative to.
339 const MCSymbolData *BaseSymbol = 0;
340 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000341 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000342 if (!BaseSymbol)
343 IsResolved = false;
344 }
345
346 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000347 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000348 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000349 } else {
350 const MCSection *BaseSection = 0;
351 if (IsPCRel)
352 BaseSection = &DF->getParent()->getSection();
353
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000354 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000355 BaseSection);
356 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000357 }
358
359 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000360 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000361
362 return IsResolved;
363}
364
Daniel Dunbar2c18d3b2010-05-13 18:35:06 +0000365uint64_t MCAssembler::ComputeFragmentSize(MCAsmLayout &Layout,
366 const MCFragment &F,
367 uint64_t SectionAddress,
368 uint64_t FragmentOffset) const {
369 switch (F.getKind()) {
370 case MCFragment::FT_Data:
371 return cast<MCDataFragment>(F).getContents().size();
372 case MCFragment::FT_Fill:
373 return cast<MCFillFragment>(F).getSize();
374 case MCFragment::FT_Inst:
375 return cast<MCInstFragment>(F).getInstSize();
376
377 case MCFragment::FT_Align: {
378 const MCAlignFragment &AF = cast<MCAlignFragment>(F);
379
380 assert((!AF.hasOnlyAlignAddress() || !AF.getNextNode()) &&
381 "Invalid OnlyAlignAddress bit, not the last fragment!");
382
383 uint64_t Size = OffsetToAlignment(SectionAddress + FragmentOffset,
384 AF.getAlignment());
385
386 // Honor MaxBytesToEmit.
387 if (Size > AF.getMaxBytesToEmit())
388 return 0;
389
390 return Size;
391 }
392
393 case MCFragment::FT_Org: {
394 const MCOrgFragment &OF = cast<MCOrgFragment>(F);
395
396 // FIXME: We should compute this sooner, we don't want to recurse here, and
397 // we would like to be more functional.
398 int64_t TargetLocation;
399 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
400 report_fatal_error("expected assembly-time absolute expression");
401
402 // FIXME: We need a way to communicate this error.
403 int64_t Offset = TargetLocation - FragmentOffset;
404 if (Offset < 0)
405 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
406 "' (at offset '" + Twine(FragmentOffset) + "'");
407
408 return Offset;
409 }
410 }
411
412 assert(0 && "invalid fragment kind");
413 return 0;
414}
415
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000416void MCAsmLayout::LayoutFile() {
Daniel Dunbarafc6acd2010-05-14 00:37:11 +0000417 for (unsigned i = 0, e = getSectionOrder().size(); i != e; ++i) {
418 MCSectionData *SD = getSectionOrder()[i];
419
420 LayoutSection(SD);
421 for (MCSectionData::iterator it = SD->begin(),
422 ie = SD->end(); it != ie; ++it)
423 LayoutFragment(it);
424 }
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000425}
426
427void MCAsmLayout::LayoutFragment(MCFragment *F) {
428 uint64_t StartAddress = getSectionAddress(F->getParent());
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000429
430 // Get the fragment start address.
431 uint64_t Address = StartAddress;
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000432 MCSectionData::iterator it = F;
433 if (MCFragment *Prev = F->getPrevNode())
434 Address = (StartAddress + getFragmentOffset(Prev) +
435 getFragmentEffectiveSize(Prev));
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000436
437 ++stats::FragmentLayouts;
438
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000439 // Compute fragment offset and size.
Daniel Dunbarafc6acd2010-05-14 00:37:11 +0000440 F->Offset = Address - StartAddress;
441 F->EffectiveSize = getAssembler().ComputeFragmentSize(*this, *F, StartAddress,
442 F->Offset);
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000443}
444
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000445void MCAsmLayout::LayoutSection(MCSectionData *SD) {
446 unsigned SectionOrderIndex = SD->getLayoutOrder();
Daniel Dunbarf476b002010-03-25 18:16:42 +0000447
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000448 ++stats::SectionLayouts;
449
Daniel Dunbar61066db2010-05-13 02:34:14 +0000450 // Compute the section start address.
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000451 uint64_t StartAddress = 0;
452 if (SectionOrderIndex) {
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000453 MCSectionData *Prev = getSectionOrder()[SectionOrderIndex - 1];
454 StartAddress = getSectionAddress(Prev) + getSectionAddressSize(Prev);
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000455 }
456
Daniel Dunbar61066db2010-05-13 02:34:14 +0000457 // Honor the section alignment requirements.
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000458 StartAddress = RoundUpToAlignment(StartAddress, SD->getAlignment());
Daniel Dunbarf476b002010-03-25 18:16:42 +0000459
Daniel Dunbar61066db2010-05-13 02:34:14 +0000460 // Set the section address.
Daniel Dunbarafc6acd2010-05-14 00:37:11 +0000461 SD->Address = StartAddress;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000462}
463
Daniel Dunbar53b23382010-03-19 09:28:59 +0000464/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000465static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
466 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000467 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000468 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000469
Daniel Dunbarff547842010-03-23 23:47:14 +0000470 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000471
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000472 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000473 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000474 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000475 case MCFragment::FT_Align: {
476 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000477 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000478
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000479 assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!");
480
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000481 // FIXME: This error shouldn't actually occur (the front end should emit
482 // multiple .align directives to enforce the semantics it wants), but is
483 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000484 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000485 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000486 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000487 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000488 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000489
Kevin Enderby6e720482010-02-23 18:26:34 +0000490 // See if we are aligning with nops, and if so do that first to try to fill
491 // the Count bytes. Then if that did not fill any bytes or there are any
492 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000493 // If we are aligning with nops, ask that target to emit the right data.
Daniel Dunbar1c154132010-05-12 22:56:23 +0000494 if (AF.hasEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000495 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000496 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000497 Twine(Count) + " bytes");
498 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000499 }
500
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000501 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000502 for (uint64_t i = 0; i != Count; ++i) {
503 switch (AF.getValueSize()) {
504 default:
505 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000506 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
507 case 2: OW->Write16(uint16_t(AF.getValue())); break;
508 case 4: OW->Write32(uint32_t(AF.getValue())); break;
509 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000510 }
511 }
512 break;
513 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000514
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000515 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000516 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000517 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000518 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000519 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000520 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000521
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000522 case MCFragment::FT_Fill: {
523 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000524
525 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
526
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000527 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000528 switch (FF.getValueSize()) {
529 default:
530 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000531 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
532 case 2: OW->Write16(uint16_t(FF.getValue())); break;
533 case 4: OW->Write32(uint32_t(FF.getValue())); break;
534 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000535 }
536 }
537 break;
538 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000539
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000540 case MCFragment::FT_Inst:
541 llvm_unreachable("unexpected inst fragment after lowering");
542 break;
543
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000544 case MCFragment::FT_Org: {
545 MCOrgFragment &OF = cast<MCOrgFragment>(F);
546
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000547 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000548 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000549
550 break;
551 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000552 }
553
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000554 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000555}
556
Daniel Dunbar53b23382010-03-19 09:28:59 +0000557void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000558 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000559 MCObjectWriter *OW) const {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000560 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000561 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar054be922010-05-13 03:50:50 +0000562 assert(Layout.getSectionFileSize(SD) == 0 && "Invalid size for section!");
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000563
564 // Check that contents are only things legal inside a virtual section.
565 for (MCSectionData::const_iterator it = SD->begin(),
566 ie = SD->end(); it != ie; ++it) {
567 switch (it->getKind()) {
568 default:
569 assert(0 && "Invalid fragment in virtual section!");
570 case MCFragment::FT_Align:
571 assert(!cast<MCAlignFragment>(it)->getValueSize() &&
572 "Invalid align in virtual section!");
573 break;
574 case MCFragment::FT_Fill:
575 assert(!cast<MCFillFragment>(it)->getValueSize() &&
576 "Invalid fill in virtual section!");
577 break;
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000578 }
579 }
580
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000581 return;
582 }
583
Daniel Dunbar53b23382010-03-19 09:28:59 +0000584 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000585 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000586
Daniel Dunbar53b23382010-03-19 09:28:59 +0000587 for (MCSectionData::const_iterator it = SD->begin(),
588 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000589 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000590
Daniel Dunbar054be922010-05-13 03:50:50 +0000591 assert(OW->getStream().tell() - Start == Layout.getSectionFileSize(SD));
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000592}
593
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000594void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000595 DEBUG_WITH_TYPE("mc-dump", {
596 llvm::errs() << "assembler backend - pre-layout\n--\n";
597 dump(); });
598
Daniel Dunbar61066db2010-05-13 02:34:14 +0000599 // Create the layout object.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000600 MCAsmLayout Layout(*this);
Daniel Dunbar61066db2010-05-13 02:34:14 +0000601
Daniel Dunbarf60c7362010-05-13 15:17:26 +0000602 // Assign layout order indices.
603 for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i)
604 Layout.getSectionOrder()[i]->setLayoutOrder(i);
605
Daniel Dunbar61066db2010-05-13 02:34:14 +0000606 // Insert additional align fragments for concrete sections to explicitly pad
607 // the previous section to match their alignment requirements. This is for
608 // 'gas' compatibility, it shouldn't strictly be necessary.
609 //
610 // FIXME: This may be Mach-O specific.
611 for (unsigned i = 1, e = Layout.getSectionOrder().size(); i < e; ++i) {
612 MCSectionData *SD = Layout.getSectionOrder()[i];
613
614 // Ignore sections without alignment requirements.
615 unsigned Align = SD->getAlignment();
616 if (Align <= 1)
617 continue;
618
619 // Ignore virtual sections, they don't cause file size modifications.
620 if (getBackend().isVirtualSection(SD->getSection()))
621 continue;
622
623 // Otherwise, create a new align fragment at the end of the previous
624 // section.
625 MCAlignFragment *AF = new MCAlignFragment(Align, 0, 1, Align,
626 Layout.getSectionOrder()[i - 1]);
627 AF->setOnlyAlignAddress(true);
628 }
629
Daniel Dunbar49ed9212010-05-13 08:43:37 +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 // Create dummy fragments to eliminate any empty sections, this simplifies
636 // layout.
637 if (it->getFragmentList().empty()) {
638 unsigned ValueSize = 1;
639 if (getBackend().isVirtualSection(it->getSection()))
640 ValueSize = 1;
641 new MCFillFragment(0, 1, 0, it);
642 }
643
644 it->setOrdinal(SectionIndex++);
645
646 for (MCSectionData::iterator it2 = it->begin(),
647 ie2 = it->end(); it2 != ie2; ++it2)
648 it2->setOrdinal(FragmentIndex++);
649 }
650
Daniel Dunbar61066db2010-05-13 02:34:14 +0000651 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000652 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000653 continue;
654
655 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000656 llvm::errs() << "assembler backend - post-relaxation\n--\n";
657 dump(); });
658
659 // Finalize the layout, including fragment lowering.
660 FinishLayout(Layout);
661
662 DEBUG_WITH_TYPE("mc-dump", {
663 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000664 dump(); });
665
Daniel Dunbarff547842010-03-23 23:47:14 +0000666 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000667 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
668 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000669 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000670
671 // Allow the object writer a chance to perform post-layout binding (for
672 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000673 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000674
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000675 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000676 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
677 for (MCSectionData::iterator it2 = it->begin(),
678 ie2 = it->end(); it2 != ie2; ++it2) {
679 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
680 if (!DF)
681 continue;
682
683 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
684 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
685 MCAsmFixup &Fixup = *it3;
686
687 // Evaluate the fixup.
688 MCValue Target;
689 uint64_t FixedValue;
690 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
691 // The fixup was unresolved, we need a relocation. Inform the object
692 // writer of the relocation, and give it an opportunity to adjust the
693 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000694 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000695 }
696
Daniel Dunbar87190c42010-03-19 09:28:12 +0000697 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000698 }
699 }
700 }
701
Daniel Dunbarbacba992010-03-19 07:09:33 +0000702 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000703 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000704 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000705
706 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000707}
708
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000709bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
710 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000711 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000712 if (getRelaxAll())
713 return true;
714
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000715 // If we cannot resolve the fixup value, it requires relaxation.
716 MCValue Target;
717 uint64_t Value;
718 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
719 return true;
720
721 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000722 //
723 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000724 return int64_t(Value) != int64_t(int8_t(Value));
725}
726
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000727bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
728 const MCAsmLayout &Layout) const {
729 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
730 // are intentionally pushing out inst fragments, or because we relaxed a
731 // previous instruction to one that doesn't need relaxation.
732 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
733 return false;
734
735 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
736 ie = IF->fixup_end(); it != ie; ++it)
737 if (FixupNeedsRelaxation(*it, IF, Layout))
738 return true;
739
740 return false;
741}
742
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000743bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000744 ++stats::RelaxationSteps;
745
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000746 // Layout the sections in order.
Daniel Dunbarb69fc042010-05-13 20:40:12 +0000747 Layout.LayoutFile();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000748
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000749 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000750 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000751 for (iterator it = begin(), ie = end(); it != ie; ++it) {
752 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000753
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000754 for (MCSectionData::iterator it2 = SD.begin(),
755 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000756 // Check if this is an instruction fragment that needs relaxation.
757 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
758 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000759 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000760
Daniel Dunbarff547842010-03-23 23:47:14 +0000761 ++stats::RelaxedInstructions;
762
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000763 // FIXME-PERF: We could immediately lower out instructions if we can tell
764 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000765
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000766 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000767
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000768 MCInst Relaxed;
769 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000770
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000771 // Encode the new instruction.
772 //
773 // FIXME-PERF: If it matters, we could let the target do this. It can
774 // probably do so more efficiently in many cases.
775 SmallVector<MCFixup, 4> Fixups;
776 SmallString<256> Code;
777 raw_svector_ostream VecOS(Code);
778 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
779 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000780
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000781 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000782 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000783 IF->setInst(Relaxed);
784 IF->getCode() = Code;
785 IF->getFixups().clear();
786 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
787 MCFixup &F = Fixups[i];
788 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
789 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000790 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000791
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000792 // Update the layout, and remember that we relaxed. If we are relaxing
793 // everything, we can skip this step since nothing will depend on updating
794 // the values.
795 if (!getRelaxAll())
796 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000797 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000798 }
799 }
800
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000801 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000802}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000803
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000804void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
805 // Lower out any instruction fragments, to simplify the fixup application and
806 // output.
807 //
808 // FIXME-PERF: We don't have to do this, but the assumption is that it is
809 // cheap (we will mostly end up eliminating fragments and appending on to data
810 // fragments), so the extra complexity downstream isn't worth it. Evaluate
811 // this assumption.
812 for (iterator it = begin(), ie = end(); it != ie; ++it) {
813 MCSectionData &SD = *it;
814
815 for (MCSectionData::iterator it2 = SD.begin(),
816 ie2 = SD.end(); it2 != ie2; ++it2) {
817 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
818 if (!IF)
819 continue;
820
821 // Create a new data fragment for the instruction.
822 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000823 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000824 MCDataFragment *DF = new MCDataFragment();
825 SD.getFragmentList().insert(it2, DF);
826
827 // Update the data fragments layout data.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000828 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000829 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000830 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbaraa0d3502010-05-13 08:43:31 +0000831 Layout.FragmentReplaced(IF, DF);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000832
Daniel Dunbar9799de92010-03-23 01:39:05 +0000833 // Copy in the data and the fixups.
834 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
835 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
836 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000837
838 // Delete the instruction fragment and update the iterator.
839 SD.getFragmentList().erase(IF);
840 it2 = DF;
841 }
842 }
843}
844
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000845// Debugging methods
846
847namespace llvm {
848
849raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000850 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
851 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000852 return OS;
853}
854
855}
856
857void MCFragment::dump() {
858 raw_ostream &OS = llvm::errs();
859
860 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000861 << " EffectiveSize:" << EffectiveSize << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000862}
863
864void MCAlignFragment::dump() {
865 raw_ostream &OS = llvm::errs();
866
867 OS << "<MCAlignFragment ";
868 this->MCFragment::dump();
Daniel Dunbar456b5012010-05-13 01:10:26 +0000869 if (hasEmitNops())
870 OS << " (emit nops)";
871 if (hasOnlyAlignAddress())
872 OS << " (only align section)";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000873 OS << "\n ";
874 OS << " Alignment:" << getAlignment()
875 << " Value:" << getValue() << " ValueSize:" << getValueSize()
876 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
877}
878
879void MCDataFragment::dump() {
880 raw_ostream &OS = llvm::errs();
881
882 OS << "<MCDataFragment ";
883 this->MCFragment::dump();
884 OS << "\n ";
885 OS << " Contents:[";
886 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
887 if (i) OS << ",";
888 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
889 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000890 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000891
892 if (!getFixups().empty()) {
893 OS << ",\n ";
894 OS << " Fixups:[";
895 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000896 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000897 OS << *it;
898 }
899 OS << "]";
900 }
901
902 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000903}
904
905void MCFillFragment::dump() {
906 raw_ostream &OS = llvm::errs();
907
908 OS << "<MCFillFragment ";
909 this->MCFragment::dump();
910 OS << "\n ";
911 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000912 << " Size:" << getSize() << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000913}
914
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000915void MCInstFragment::dump() {
916 raw_ostream &OS = llvm::errs();
917
918 OS << "<MCInstFragment ";
919 this->MCFragment::dump();
920 OS << "\n ";
921 OS << " Inst:";
922 getInst().dump_pretty(OS);
923 OS << ">";
924}
925
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000926void MCOrgFragment::dump() {
927 raw_ostream &OS = llvm::errs();
928
929 OS << "<MCOrgFragment ";
930 this->MCFragment::dump();
931 OS << "\n ";
932 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
933}
934
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000935void MCSectionData::dump() {
936 raw_ostream &OS = llvm::errs();
937
938 OS << "<MCSectionData";
939 OS << " Alignment:" << getAlignment() << " Address:" << Address
Daniel Dunbar2661f112010-05-13 03:19:50 +0000940 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000941 for (iterator it = begin(), ie = end(); it != ie; ++it) {
942 if (it != begin()) OS << ",\n ";
943 it->dump();
944 }
945 OS << "]>";
946}
947
948void MCSymbolData::dump() {
949 raw_ostream &OS = llvm::errs();
950
951 OS << "<MCSymbolData Symbol:" << getSymbol()
952 << " Fragment:" << getFragment() << " Offset:" << getOffset()
953 << " Flags:" << getFlags() << " Index:" << getIndex();
954 if (isCommon())
955 OS << " (common, size:" << getCommonSize()
956 << " align: " << getCommonAlignment() << ")";
957 if (isExternal())
958 OS << " (external)";
959 if (isPrivateExtern())
960 OS << " (private extern)";
961 OS << ">";
962}
963
964void MCAssembler::dump() {
965 raw_ostream &OS = llvm::errs();
966
967 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000968 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000969 for (iterator it = begin(), ie = end(); it != ie; ++it) {
970 if (it != begin()) OS << ",\n ";
971 it->dump();
972 }
973 OS << "],\n";
974 OS << " Symbols:[";
975
976 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000977 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000978 it->dump();
979 }
980 OS << "]>\n";
981}