blob: ac91bad8ac85d734666383d048c08b3a0275cdf3 [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.
72 for (unsigned i = 0, e = getSectionOrder().size(); i != e; ++i)
73 getAssembler().LayoutSection(*this, i);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000074}
75
Daniel Dunbaraa0d3502010-05-13 08:43:31 +000076void MCAsmLayout::FragmentReplaced(MCFragment *Src, MCFragment *Dst) {
77 Dst->Offset = Src->Offset;
78 Dst->EffectiveSize = Src->EffectiveSize;
79}
80
Daniel Dunbar207e06e2010-03-24 03:43:40 +000081uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000082 assert(F->getParent() && "Missing section()!");
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000083 return getSectionAddress(F->getParent()) + getFragmentOffset(F);
84}
85
86uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const {
87 assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!");
88 return F->EffectiveSize;
89}
90
91void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) {
92 F->EffectiveSize = Value;
93}
94
95uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
96 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
97 return F->Offset;
98}
99
100void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) {
101 F->Offset = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000102}
103
104uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000105 assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!");
106 return getFragmentAddress(SD->getFragment()) + SD->getOffset();
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000107}
108
109uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000110 assert(SD->Address != ~UINT64_C(0) && "Address not set!");
111 return SD->Address;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000112}
113
114void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000115 SD->Address = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000116}
117
Daniel Dunbar2661f112010-05-13 03:19:50 +0000118uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const {
Daniel Dunbar2661f112010-05-13 03:19:50 +0000119 // Otherwise, the size is the last fragment's end offset.
120 const MCFragment &F = SD->getFragmentList().back();
121 return getFragmentOffset(&F) + getFragmentEffectiveSize(&F);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000122}
123
124uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
Daniel Dunbar2661f112010-05-13 03:19:50 +0000125 // Virtual sections have no file size.
126 if (getAssembler().getBackend().isVirtualSection(SD->getSection()))
127 return 0;
128
129 // Otherwise, the file size is the same as the address space size.
130 return getSectionAddressSize(SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000131}
132
Daniel Dunbar2661f112010-05-13 03:19:50 +0000133uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
Daniel Dunbar2661f112010-05-13 03:19:50 +0000134 // The logical size is the address space size minus any tail padding.
135 uint64_t Size = getSectionAddressSize(SD);
136 const MCAlignFragment *AF =
137 dyn_cast<MCAlignFragment>(&(SD->getFragmentList().back()));
138 if (AF && AF->hasOnlyAlignAddress())
139 Size -= getFragmentEffectiveSize(AF);
140
141 return Size;
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000142}
143
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000144/* *** */
145
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000146MCFragment::MCFragment() : Kind(FragmentType(~0)) {
147}
148
Daniel Dunbar5e835962009-08-26 02:48:04 +0000149MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000150 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000151{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000152 if (Parent)
153 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000154}
155
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000156MCFragment::~MCFragment() {
157}
158
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000159/* *** */
160
Daniel Dunbar81e40002009-08-27 00:38:04 +0000161MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000162
163MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000164 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000165 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000166 Address(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000167 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000168{
169 if (A)
170 A->getSectionList().push_back(this);
171}
172
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000173/* *** */
174
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000175MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000176
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000177MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000178 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000179 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000180 IsExternal(false), IsPrivateExtern(false),
181 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000182{
183 if (A)
184 A->getSymbolList().push_back(this);
185}
186
187/* *** */
188
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000189MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000190 MCCodeEmitter &_Emitter, raw_ostream &_OS)
191 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000192 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000193{
194}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000195
196MCAssembler::~MCAssembler() {
197}
198
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000199static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
200 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000201 const MCValue Target,
202 const MCSection *BaseSection) {
203 // The effective fixup address is
204 // addr(atom(A)) + offset(A)
205 // - addr(atom(B)) - offset(B)
206 // - addr(<base symbol>) + <fixup offset from base symbol>
207 // and the offsets are not relocatable, so the fixup is fully resolved when
208 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
209 //
210 // The simple (Darwin, except on x86_64) way of dealing with this was to
211 // assume that any reference to a temporary symbol *must* be a temporary
212 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
213 // relocation to a temporary symbol (in the same section) is fully
214 // resolved. This also works in conjunction with absolutized .set, which
215 // requires the compiler to use .set to absolutize the differences between
216 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000217 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000218
219 // Non-relative fixups are only resolved if constant.
220 if (!BaseSection)
221 return Target.isAbsolute();
222
223 // Otherwise, relative fixups are only resolved if not a difference and the
224 // target is a temporary in the same section.
225 if (Target.isAbsolute() || Target.getSymB())
226 return false;
227
228 const MCSymbol *A = &Target.getSymA()->getSymbol();
229 if (!A->isTemporary() || !A->isInSection() ||
230 &A->getSection() != BaseSection)
231 return false;
232
233 return true;
234}
235
Daniel Dunbar034843a2010-03-19 03:18:18 +0000236static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000237 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000238 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000239 const MCValue Target,
240 const MCSymbolData *BaseSymbol) {
241 // The effective fixup address is
242 // addr(atom(A)) + offset(A)
243 // - addr(atom(B)) - offset(B)
244 // - addr(BaseSymbol) + <fixup offset from base symbol>
245 // and the offsets are not relocatable, so the fixup is fully resolved when
246 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
247 //
248 // Note that "false" is almost always conservatively correct (it means we emit
249 // a relocation which is unnecessary), except when it would force us to emit a
250 // relocation which the target cannot encode.
251
252 const MCSymbolData *A_Base = 0, *B_Base = 0;
253 if (const MCSymbolRefExpr *A = Target.getSymA()) {
254 // Modified symbol references cannot be resolved.
255 if (A->getKind() != MCSymbolRefExpr::VK_None)
256 return false;
257
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000258 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000259 if (!A_Base)
260 return false;
261 }
262
263 if (const MCSymbolRefExpr *B = Target.getSymB()) {
264 // Modified symbol references cannot be resolved.
265 if (B->getKind() != MCSymbolRefExpr::VK_None)
266 return false;
267
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000268 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000269 if (!B_Base)
270 return false;
271 }
272
273 // If there is no base, A and B have to be the same atom for this fixup to be
274 // fully resolved.
275 if (!BaseSymbol)
276 return A_Base == B_Base;
277
278 // Otherwise, B must be missing and A must be the base.
279 return !B_Base && BaseSymbol == A_Base;
280}
281
Daniel Dunbar23869852010-03-19 03:18:09 +0000282bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
283 // Non-temporary labels should always be visible to the linker.
284 if (!SD->getSymbol().isTemporary())
285 return true;
286
287 // Absolute temporary labels are never visible.
288 if (!SD->getFragment())
289 return false;
290
291 // Otherwise, check if the section requires symbols even for temporary labels.
292 return getBackend().doesSectionRequireSymbols(
293 SD->getFragment()->getParent()->getSection());
294}
295
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000296const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
297 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000298 // Linker visible symbols define atoms.
299 if (isSymbolLinkerVisible(SD))
300 return SD;
301
302 // Absolute and undefined symbols have no defining atom.
303 if (!SD->getFragment())
304 return 0;
305
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000306 // Non-linker visible symbols in sections which can't be atomized have no
307 // defining atom.
308 if (!getBackend().isSectionAtomizable(
309 SD->getFragment()->getParent()->getSection()))
310 return 0;
311
Daniel Dunbar651804c2010-05-11 17:22:50 +0000312 // Otherwise, return the atom for the containing fragment.
313 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000314}
315
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000316bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
317 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000318 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000319 ++stats::EvaluateFixup;
320
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000321 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000322 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000323
324 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
325 // doesn't support small relocations, but then under what criteria does the
326 // assembler allow symbol differences?
327
328 Value = Target.getConstant();
329
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000330 bool IsPCRel =
331 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
332 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000333 if (const MCSymbolRefExpr *A = Target.getSymA()) {
334 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000335 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000336 else
337 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000338 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000339 if (const MCSymbolRefExpr *B = Target.getSymB()) {
340 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000341 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000342 else
343 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000344 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000345
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000346 // If we are using scattered symbols, determine whether this value is actually
347 // resolved; scattering may cause atoms to move.
348 if (IsResolved && getBackend().hasScatteredSymbols()) {
349 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000350 // If this is a PCrel relocation, find the base atom (identified by its
351 // symbol) that the fixup value is relative to.
352 const MCSymbolData *BaseSymbol = 0;
353 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000354 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000355 if (!BaseSymbol)
356 IsResolved = false;
357 }
358
359 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000360 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000361 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000362 } else {
363 const MCSection *BaseSection = 0;
364 if (IsPCRel)
365 BaseSection = &DF->getParent()->getSection();
366
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000367 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000368 BaseSection);
369 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000370 }
371
372 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000373 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000374
375 return IsResolved;
376}
377
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000378void MCAssembler::LayoutFragment(MCAsmLayout &Layout, MCFragment &F) {
379 uint64_t StartAddress = Layout.getSectionAddress(F.getParent());
380
381 // Get the fragment start address.
382 uint64_t Address = StartAddress;
383 MCSectionData::iterator it = &F;
384 if (MCFragment *Prev = F.getPrevNode())
385 Address = (StartAddress + Layout.getFragmentOffset(Prev) +
386 Layout.getFragmentEffectiveSize(Prev));
387
388 ++stats::FragmentLayouts;
389
390 uint64_t FragmentOffset = Address - StartAddress;
391 Layout.setFragmentOffset(&F, FragmentOffset);
392
393 // Evaluate fragment size.
394 uint64_t EffectiveSize = 0;
395 switch (F.getKind()) {
396 case MCFragment::FT_Align: {
397 MCAlignFragment &AF = cast<MCAlignFragment>(F);
398
Daniel Dunbar456b5012010-05-13 01:10:26 +0000399 assert((!AF.hasOnlyAlignAddress() || !AF.getNextNode()) &&
400 "Invalid OnlyAlignAddress bit, not the last fragment!");
401
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000402 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
403 if (EffectiveSize > AF.getMaxBytesToEmit())
404 EffectiveSize = 0;
405 break;
406 }
407
408 case MCFragment::FT_Data:
409 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
410 break;
411
412 case MCFragment::FT_Fill: {
Daniel Dunbar4e544872010-05-12 22:51:38 +0000413 EffectiveSize = cast<MCFillFragment>(F).getSize();
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000414 break;
415 }
416
417 case MCFragment::FT_Inst:
418 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
419 break;
420
421 case MCFragment::FT_Org: {
422 MCOrgFragment &OF = cast<MCOrgFragment>(F);
423
424 int64_t TargetLocation;
425 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
426 report_fatal_error("expected assembly-time absolute expression");
427
428 // FIXME: We need a way to communicate this error.
429 int64_t Offset = TargetLocation - FragmentOffset;
430 if (Offset < 0)
431 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
432 "' (at offset '" + Twine(FragmentOffset) + "'");
433
434 EffectiveSize = Offset;
435 break;
436 }
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000437 }
438
439 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
440}
441
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000442void MCAssembler::LayoutSection(MCAsmLayout &Layout,
443 unsigned SectionOrderIndex) {
444 MCSectionData &SD = *Layout.getSectionOrder()[SectionOrderIndex];
Daniel Dunbarf476b002010-03-25 18:16:42 +0000445
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000446 ++stats::SectionLayouts;
447
Daniel Dunbar61066db2010-05-13 02:34:14 +0000448 // Compute the section start address.
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000449 uint64_t StartAddress = 0;
450 if (SectionOrderIndex) {
451 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000452 StartAddress = (Layout.getSectionAddress(Prev) +
453 Layout.getSectionAddressSize(Prev));
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000454 }
455
Daniel Dunbar61066db2010-05-13 02:34:14 +0000456 // Honor the section alignment requirements.
457 StartAddress = RoundUpToAlignment(StartAddress, SD.getAlignment());
Daniel Dunbarf476b002010-03-25 18:16:42 +0000458
Daniel Dunbar61066db2010-05-13 02:34:14 +0000459 // Set the section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000460 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000461
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000462 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it)
463 LayoutFragment(Layout, *it);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000464}
465
Daniel Dunbar53b23382010-03-19 09:28:59 +0000466/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000467static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
468 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000469 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000470 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000471
Daniel Dunbarff547842010-03-23 23:47:14 +0000472 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000473
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000474 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000475 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000476 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000477 case MCFragment::FT_Align: {
478 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000479 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000480
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000481 assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!");
482
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000483 // FIXME: This error shouldn't actually occur (the front end should emit
484 // multiple .align directives to enforce the semantics it wants), but is
485 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000486 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000487 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000488 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000489 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000490 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000491
Kevin Enderby6e720482010-02-23 18:26:34 +0000492 // See if we are aligning with nops, and if so do that first to try to fill
493 // the Count bytes. Then if that did not fill any bytes or there are any
494 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000495 // If we are aligning with nops, ask that target to emit the right data.
Daniel Dunbar1c154132010-05-12 22:56:23 +0000496 if (AF.hasEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000497 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000498 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000499 Twine(Count) + " bytes");
500 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000501 }
502
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000503 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000504 for (uint64_t i = 0; i != Count; ++i) {
505 switch (AF.getValueSize()) {
506 default:
507 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000508 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
509 case 2: OW->Write16(uint16_t(AF.getValue())); break;
510 case 4: OW->Write32(uint32_t(AF.getValue())); break;
511 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000512 }
513 }
514 break;
515 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000516
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000517 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000518 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000519 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000520 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000521 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000522 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000523
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000524 case MCFragment::FT_Fill: {
525 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000526
527 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
528
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000529 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000530 switch (FF.getValueSize()) {
531 default:
532 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000533 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
534 case 2: OW->Write16(uint16_t(FF.getValue())); break;
535 case 4: OW->Write32(uint32_t(FF.getValue())); break;
536 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000537 }
538 }
539 break;
540 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000541
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000542 case MCFragment::FT_Inst:
543 llvm_unreachable("unexpected inst fragment after lowering");
544 break;
545
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000546 case MCFragment::FT_Org: {
547 MCOrgFragment &OF = cast<MCOrgFragment>(F);
548
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000549 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000550 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000551
552 break;
553 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000554 }
555
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000556 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000557}
558
Daniel Dunbar53b23382010-03-19 09:28:59 +0000559void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000560 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000561 MCObjectWriter *OW) const {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000562 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000563 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar054be922010-05-13 03:50:50 +0000564 assert(Layout.getSectionFileSize(SD) == 0 && "Invalid size for section!");
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000565
566 // Check that contents are only things legal inside a virtual section.
567 for (MCSectionData::const_iterator it = SD->begin(),
568 ie = SD->end(); it != ie; ++it) {
569 switch (it->getKind()) {
570 default:
571 assert(0 && "Invalid fragment in virtual section!");
572 case MCFragment::FT_Align:
573 assert(!cast<MCAlignFragment>(it)->getValueSize() &&
574 "Invalid align in virtual section!");
575 break;
576 case MCFragment::FT_Fill:
577 assert(!cast<MCFillFragment>(it)->getValueSize() &&
578 "Invalid fill in virtual section!");
579 break;
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000580 }
581 }
582
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000583 return;
584 }
585
Daniel Dunbar53b23382010-03-19 09:28:59 +0000586 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000587 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000588
Daniel Dunbar53b23382010-03-19 09:28:59 +0000589 for (MCSectionData::const_iterator it = SD->begin(),
590 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000591 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000592
Daniel Dunbar054be922010-05-13 03:50:50 +0000593 assert(OW->getStream().tell() - Start == Layout.getSectionFileSize(SD));
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000594}
595
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000596void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000597 DEBUG_WITH_TYPE("mc-dump", {
598 llvm::errs() << "assembler backend - pre-layout\n--\n";
599 dump(); });
600
Daniel Dunbar61066db2010-05-13 02:34:14 +0000601 // Create the layout object.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000602 MCAsmLayout Layout(*this);
Daniel Dunbar61066db2010-05-13 02:34:14 +0000603
604 // Insert additional align fragments for concrete sections to explicitly pad
605 // the previous section to match their alignment requirements. This is for
606 // 'gas' compatibility, it shouldn't strictly be necessary.
607 //
608 // FIXME: This may be Mach-O specific.
609 for (unsigned i = 1, e = Layout.getSectionOrder().size(); i < e; ++i) {
610 MCSectionData *SD = Layout.getSectionOrder()[i];
611
612 // Ignore sections without alignment requirements.
613 unsigned Align = SD->getAlignment();
614 if (Align <= 1)
615 continue;
616
617 // Ignore virtual sections, they don't cause file size modifications.
618 if (getBackend().isVirtualSection(SD->getSection()))
619 continue;
620
621 // Otherwise, create a new align fragment at the end of the previous
622 // section.
623 MCAlignFragment *AF = new MCAlignFragment(Align, 0, 1, Align,
624 Layout.getSectionOrder()[i - 1]);
625 AF->setOnlyAlignAddress(true);
626 }
627
Daniel Dunbar49ed9212010-05-13 08:43:37 +0000628 // Assign section and fragment ordinals, all subsequent backend code is
629 // responsible for updating these in place.
630 unsigned SectionIndex = 0;
631 unsigned FragmentIndex = 0;
632 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
633 // Create dummy fragments to eliminate any empty sections, this simplifies
634 // layout.
635 if (it->getFragmentList().empty()) {
636 unsigned ValueSize = 1;
637 if (getBackend().isVirtualSection(it->getSection()))
638 ValueSize = 1;
639 new MCFillFragment(0, 1, 0, it);
640 }
641
642 it->setOrdinal(SectionIndex++);
643
644 for (MCSectionData::iterator it2 = it->begin(),
645 ie2 = it->end(); it2 != ie2; ++it2)
646 it2->setOrdinal(FragmentIndex++);
647 }
648
Daniel Dunbar61066db2010-05-13 02:34:14 +0000649 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000650 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000651 continue;
652
653 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000654 llvm::errs() << "assembler backend - post-relaxation\n--\n";
655 dump(); });
656
657 // Finalize the layout, including fragment lowering.
658 FinishLayout(Layout);
659
660 DEBUG_WITH_TYPE("mc-dump", {
661 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000662 dump(); });
663
Daniel Dunbarff547842010-03-23 23:47:14 +0000664 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000665 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
666 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000667 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000668
669 // Allow the object writer a chance to perform post-layout binding (for
670 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000671 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000672
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000673 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000674 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
675 for (MCSectionData::iterator it2 = it->begin(),
676 ie2 = it->end(); it2 != ie2; ++it2) {
677 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
678 if (!DF)
679 continue;
680
681 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
682 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
683 MCAsmFixup &Fixup = *it3;
684
685 // Evaluate the fixup.
686 MCValue Target;
687 uint64_t FixedValue;
688 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
689 // The fixup was unresolved, we need a relocation. Inform the object
690 // writer of the relocation, and give it an opportunity to adjust the
691 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000692 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000693 }
694
Daniel Dunbar87190c42010-03-19 09:28:12 +0000695 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000696 }
697 }
698 }
699
Daniel Dunbarbacba992010-03-19 07:09:33 +0000700 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000701 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000702 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000703
704 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000705}
706
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000707bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
708 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000709 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000710 if (getRelaxAll())
711 return true;
712
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000713 // If we cannot resolve the fixup value, it requires relaxation.
714 MCValue Target;
715 uint64_t Value;
716 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
717 return true;
718
719 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000720 //
721 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000722 return int64_t(Value) != int64_t(int8_t(Value));
723}
724
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000725bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
726 const MCAsmLayout &Layout) const {
727 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
728 // are intentionally pushing out inst fragments, or because we relaxed a
729 // previous instruction to one that doesn't need relaxation.
730 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
731 return false;
732
733 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
734 ie = IF->fixup_end(); it != ie; ++it)
735 if (FixupNeedsRelaxation(*it, IF, Layout))
736 return true;
737
738 return false;
739}
740
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000741bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000742 ++stats::RelaxationSteps;
743
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000744 // Layout the sections in order.
745 for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i)
746 LayoutSection(Layout, i);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000747
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000748 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000749 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000750 for (iterator it = begin(), ie = end(); it != ie; ++it) {
751 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000752
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000753 for (MCSectionData::iterator it2 = SD.begin(),
754 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000755 // Check if this is an instruction fragment that needs relaxation.
756 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
757 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000758 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000759
Daniel Dunbarff547842010-03-23 23:47:14 +0000760 ++stats::RelaxedInstructions;
761
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000762 // FIXME-PERF: We could immediately lower out instructions if we can tell
763 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000764
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000765 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000766
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000767 MCInst Relaxed;
768 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000769
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000770 // Encode the new instruction.
771 //
772 // FIXME-PERF: If it matters, we could let the target do this. It can
773 // probably do so more efficiently in many cases.
774 SmallVector<MCFixup, 4> Fixups;
775 SmallString<256> Code;
776 raw_svector_ostream VecOS(Code);
777 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
778 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000779
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000780 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000781 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000782 IF->setInst(Relaxed);
783 IF->getCode() = Code;
784 IF->getFixups().clear();
785 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
786 MCFixup &F = Fixups[i];
787 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
788 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000789 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000790
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000791 // Update the layout, and remember that we relaxed. If we are relaxing
792 // everything, we can skip this step since nothing will depend on updating
793 // the values.
794 if (!getRelaxAll())
795 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000796 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000797 }
798 }
799
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000800 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000801}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000802
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000803void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
804 // Lower out any instruction fragments, to simplify the fixup application and
805 // output.
806 //
807 // FIXME-PERF: We don't have to do this, but the assumption is that it is
808 // cheap (we will mostly end up eliminating fragments and appending on to data
809 // fragments), so the extra complexity downstream isn't worth it. Evaluate
810 // this assumption.
811 for (iterator it = begin(), ie = end(); it != ie; ++it) {
812 MCSectionData &SD = *it;
813
814 for (MCSectionData::iterator it2 = SD.begin(),
815 ie2 = SD.end(); it2 != ie2; ++it2) {
816 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
817 if (!IF)
818 continue;
819
820 // Create a new data fragment for the instruction.
821 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000822 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000823 MCDataFragment *DF = new MCDataFragment();
824 SD.getFragmentList().insert(it2, DF);
825
826 // Update the data fragments layout data.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000827 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000828 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000829 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbaraa0d3502010-05-13 08:43:31 +0000830 Layout.FragmentReplaced(IF, DF);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000831
Daniel Dunbar9799de92010-03-23 01:39:05 +0000832 // Copy in the data and the fixups.
833 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
834 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
835 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000836
837 // Delete the instruction fragment and update the iterator.
838 SD.getFragmentList().erase(IF);
839 it2 = DF;
840 }
841 }
842}
843
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000844// Debugging methods
845
846namespace llvm {
847
848raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000849 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
850 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000851 return OS;
852}
853
854}
855
856void MCFragment::dump() {
857 raw_ostream &OS = llvm::errs();
858
859 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000860 << " EffectiveSize:" << EffectiveSize << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000861}
862
863void MCAlignFragment::dump() {
864 raw_ostream &OS = llvm::errs();
865
866 OS << "<MCAlignFragment ";
867 this->MCFragment::dump();
Daniel Dunbar456b5012010-05-13 01:10:26 +0000868 if (hasEmitNops())
869 OS << " (emit nops)";
870 if (hasOnlyAlignAddress())
871 OS << " (only align section)";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000872 OS << "\n ";
873 OS << " Alignment:" << getAlignment()
874 << " Value:" << getValue() << " ValueSize:" << getValueSize()
875 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
876}
877
878void MCDataFragment::dump() {
879 raw_ostream &OS = llvm::errs();
880
881 OS << "<MCDataFragment ";
882 this->MCFragment::dump();
883 OS << "\n ";
884 OS << " Contents:[";
885 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
886 if (i) OS << ",";
887 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
888 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000889 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000890
891 if (!getFixups().empty()) {
892 OS << ",\n ";
893 OS << " Fixups:[";
894 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000895 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000896 OS << *it;
897 }
898 OS << "]";
899 }
900
901 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000902}
903
904void MCFillFragment::dump() {
905 raw_ostream &OS = llvm::errs();
906
907 OS << "<MCFillFragment ";
908 this->MCFragment::dump();
909 OS << "\n ";
910 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000911 << " Size:" << getSize() << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000912}
913
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000914void MCInstFragment::dump() {
915 raw_ostream &OS = llvm::errs();
916
917 OS << "<MCInstFragment ";
918 this->MCFragment::dump();
919 OS << "\n ";
920 OS << " Inst:";
921 getInst().dump_pretty(OS);
922 OS << ">";
923}
924
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000925void MCOrgFragment::dump() {
926 raw_ostream &OS = llvm::errs();
927
928 OS << "<MCOrgFragment ";
929 this->MCFragment::dump();
930 OS << "\n ";
931 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
932}
933
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000934void MCSectionData::dump() {
935 raw_ostream &OS = llvm::errs();
936
937 OS << "<MCSectionData";
938 OS << " Alignment:" << getAlignment() << " Address:" << Address
Daniel Dunbar2661f112010-05-13 03:19:50 +0000939 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000940 for (iterator it = begin(), ie = end(); it != ie; ++it) {
941 if (it != begin()) OS << ",\n ";
942 it->dump();
943 }
944 OS << "]>";
945}
946
947void MCSymbolData::dump() {
948 raw_ostream &OS = llvm::errs();
949
950 OS << "<MCSymbolData Symbol:" << getSymbol()
951 << " Fragment:" << getFragment() << " Offset:" << getOffset()
952 << " Flags:" << getFlags() << " Index:" << getIndex();
953 if (isCommon())
954 OS << " (common, size:" << getCommonSize()
955 << " align: " << getCommonAlignment() << ")";
956 if (isExternal())
957 OS << " (external)";
958 if (isPrivateExtern())
959 OS << " (private extern)";
960 OS << ">";
961}
962
963void MCAssembler::dump() {
964 raw_ostream &OS = llvm::errs();
965
966 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000967 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000968 for (iterator it = begin(), ie = end(); it != ie; ++it) {
969 if (it != begin()) OS << ",\n ";
970 it->dump();
971 }
972 OS << "],\n";
973 OS << " Symbols:[";
974
975 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000976 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000977 it->dump();
978 }
979 OS << "]>\n";
980}