blob: e62296f35d10bf4646c1661ea9725686fd62853c [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 Dunbar207e06e2010-03-24 03:43:40 +000076uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000077 assert(F->getParent() && "Missing section()!");
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000078 return getSectionAddress(F->getParent()) + getFragmentOffset(F);
79}
80
81uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const {
82 assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!");
83 return F->EffectiveSize;
84}
85
86void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) {
87 F->EffectiveSize = Value;
88}
89
90uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
91 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
92 return F->Offset;
93}
94
95void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) {
96 F->Offset = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +000097}
98
99uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000100 assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!");
101 return getFragmentAddress(SD->getFragment()) + SD->getOffset();
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000102}
103
104uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000105 assert(SD->Address != ~UINT64_C(0) && "Address not set!");
106 return SD->Address;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000107}
108
109void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000110 SD->Address = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000111}
112
Daniel Dunbar2661f112010-05-13 03:19:50 +0000113uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const {
114 // Empty sections have no size.
115 if (SD->getFragmentList().empty())
116 return 0;
117
118 // Otherwise, the size is the last fragment's end offset.
119 const MCFragment &F = SD->getFragmentList().back();
120 return getFragmentOffset(&F) + getFragmentEffectiveSize(&F);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000121}
122
123uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
Daniel Dunbar2661f112010-05-13 03:19:50 +0000124 // Virtual sections have no file size.
125 if (getAssembler().getBackend().isVirtualSection(SD->getSection()))
126 return 0;
127
128 // Otherwise, the file size is the same as the address space size.
129 return getSectionAddressSize(SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000130}
131
Daniel Dunbar2661f112010-05-13 03:19:50 +0000132uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
133 // Empty sections have no size.
134 if (SD->getFragmentList().empty())
135 return 0;
136
137 // The logical size is the address space size minus any tail padding.
138 uint64_t Size = getSectionAddressSize(SD);
139 const MCAlignFragment *AF =
140 dyn_cast<MCAlignFragment>(&(SD->getFragmentList().back()));
141 if (AF && AF->hasOnlyAlignAddress())
142 Size -= getFragmentEffectiveSize(AF);
143
144 return Size;
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000145}
146
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000147/* *** */
148
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000149MCFragment::MCFragment() : Kind(FragmentType(~0)) {
150}
151
Daniel Dunbar5e835962009-08-26 02:48:04 +0000152MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000153 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000154{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000155 if (Parent)
156 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000157}
158
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000159MCFragment::~MCFragment() {
160}
161
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000162/* *** */
163
Daniel Dunbar81e40002009-08-27 00:38:04 +0000164MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000165
166MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000167 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000168 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000169 Address(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000170 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000171{
172 if (A)
173 A->getSectionList().push_back(this);
174}
175
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000176/* *** */
177
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000178MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000179
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000180MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000181 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000182 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000183 IsExternal(false), IsPrivateExtern(false),
184 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000185{
186 if (A)
187 A->getSymbolList().push_back(this);
188}
189
190/* *** */
191
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000192MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000193 MCCodeEmitter &_Emitter, raw_ostream &_OS)
194 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000195 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000196{
197}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000198
199MCAssembler::~MCAssembler() {
200}
201
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000202static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
203 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000204 const MCValue Target,
205 const MCSection *BaseSection) {
206 // The effective fixup address is
207 // addr(atom(A)) + offset(A)
208 // - addr(atom(B)) - offset(B)
209 // - addr(<base symbol>) + <fixup offset from base symbol>
210 // and the offsets are not relocatable, so the fixup is fully resolved when
211 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
212 //
213 // The simple (Darwin, except on x86_64) way of dealing with this was to
214 // assume that any reference to a temporary symbol *must* be a temporary
215 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
216 // relocation to a temporary symbol (in the same section) is fully
217 // resolved. This also works in conjunction with absolutized .set, which
218 // requires the compiler to use .set to absolutize the differences between
219 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000220 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000221
222 // Non-relative fixups are only resolved if constant.
223 if (!BaseSection)
224 return Target.isAbsolute();
225
226 // Otherwise, relative fixups are only resolved if not a difference and the
227 // target is a temporary in the same section.
228 if (Target.isAbsolute() || Target.getSymB())
229 return false;
230
231 const MCSymbol *A = &Target.getSymA()->getSymbol();
232 if (!A->isTemporary() || !A->isInSection() ||
233 &A->getSection() != BaseSection)
234 return false;
235
236 return true;
237}
238
Daniel Dunbar034843a2010-03-19 03:18:18 +0000239static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000240 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000241 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000242 const MCValue Target,
243 const MCSymbolData *BaseSymbol) {
244 // The effective fixup address is
245 // addr(atom(A)) + offset(A)
246 // - addr(atom(B)) - offset(B)
247 // - addr(BaseSymbol) + <fixup offset from base symbol>
248 // and the offsets are not relocatable, so the fixup is fully resolved when
249 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
250 //
251 // Note that "false" is almost always conservatively correct (it means we emit
252 // a relocation which is unnecessary), except when it would force us to emit a
253 // relocation which the target cannot encode.
254
255 const MCSymbolData *A_Base = 0, *B_Base = 0;
256 if (const MCSymbolRefExpr *A = Target.getSymA()) {
257 // Modified symbol references cannot be resolved.
258 if (A->getKind() != MCSymbolRefExpr::VK_None)
259 return false;
260
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000261 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000262 if (!A_Base)
263 return false;
264 }
265
266 if (const MCSymbolRefExpr *B = Target.getSymB()) {
267 // Modified symbol references cannot be resolved.
268 if (B->getKind() != MCSymbolRefExpr::VK_None)
269 return false;
270
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000271 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000272 if (!B_Base)
273 return false;
274 }
275
276 // If there is no base, A and B have to be the same atom for this fixup to be
277 // fully resolved.
278 if (!BaseSymbol)
279 return A_Base == B_Base;
280
281 // Otherwise, B must be missing and A must be the base.
282 return !B_Base && BaseSymbol == A_Base;
283}
284
Daniel Dunbar23869852010-03-19 03:18:09 +0000285bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
286 // Non-temporary labels should always be visible to the linker.
287 if (!SD->getSymbol().isTemporary())
288 return true;
289
290 // Absolute temporary labels are never visible.
291 if (!SD->getFragment())
292 return false;
293
294 // Otherwise, check if the section requires symbols even for temporary labels.
295 return getBackend().doesSectionRequireSymbols(
296 SD->getFragment()->getParent()->getSection());
297}
298
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000299const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
300 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000301 // Linker visible symbols define atoms.
302 if (isSymbolLinkerVisible(SD))
303 return SD;
304
305 // Absolute and undefined symbols have no defining atom.
306 if (!SD->getFragment())
307 return 0;
308
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000309 // Non-linker visible symbols in sections which can't be atomized have no
310 // defining atom.
311 if (!getBackend().isSectionAtomizable(
312 SD->getFragment()->getParent()->getSection()))
313 return 0;
314
Daniel Dunbar651804c2010-05-11 17:22:50 +0000315 // Otherwise, return the atom for the containing fragment.
316 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000317}
318
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000319bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
320 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000321 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000322 ++stats::EvaluateFixup;
323
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000324 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000325 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000326
327 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
328 // doesn't support small relocations, but then under what criteria does the
329 // assembler allow symbol differences?
330
331 Value = Target.getConstant();
332
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000333 bool IsPCRel =
334 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
335 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000336 if (const MCSymbolRefExpr *A = Target.getSymA()) {
337 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000338 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000339 else
340 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000341 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000342 if (const MCSymbolRefExpr *B = Target.getSymB()) {
343 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000344 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000345 else
346 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000347 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000348
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000349 // If we are using scattered symbols, determine whether this value is actually
350 // resolved; scattering may cause atoms to move.
351 if (IsResolved && getBackend().hasScatteredSymbols()) {
352 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000353 // If this is a PCrel relocation, find the base atom (identified by its
354 // symbol) that the fixup value is relative to.
355 const MCSymbolData *BaseSymbol = 0;
356 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000357 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000358 if (!BaseSymbol)
359 IsResolved = false;
360 }
361
362 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000363 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000364 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000365 } else {
366 const MCSection *BaseSection = 0;
367 if (IsPCRel)
368 BaseSection = &DF->getParent()->getSection();
369
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000370 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000371 BaseSection);
372 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000373 }
374
375 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000376 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000377
378 return IsResolved;
379}
380
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000381void MCAssembler::LayoutFragment(MCAsmLayout &Layout, MCFragment &F) {
382 uint64_t StartAddress = Layout.getSectionAddress(F.getParent());
383
384 // Get the fragment start address.
385 uint64_t Address = StartAddress;
386 MCSectionData::iterator it = &F;
387 if (MCFragment *Prev = F.getPrevNode())
388 Address = (StartAddress + Layout.getFragmentOffset(Prev) +
389 Layout.getFragmentEffectiveSize(Prev));
390
391 ++stats::FragmentLayouts;
392
393 uint64_t FragmentOffset = Address - StartAddress;
394 Layout.setFragmentOffset(&F, FragmentOffset);
395
396 // Evaluate fragment size.
397 uint64_t EffectiveSize = 0;
398 switch (F.getKind()) {
399 case MCFragment::FT_Align: {
400 MCAlignFragment &AF = cast<MCAlignFragment>(F);
401
Daniel Dunbar456b5012010-05-13 01:10:26 +0000402 assert((!AF.hasOnlyAlignAddress() || !AF.getNextNode()) &&
403 "Invalid OnlyAlignAddress bit, not the last fragment!");
404
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000405 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
406 if (EffectiveSize > AF.getMaxBytesToEmit())
407 EffectiveSize = 0;
408 break;
409 }
410
411 case MCFragment::FT_Data:
412 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
413 break;
414
415 case MCFragment::FT_Fill: {
Daniel Dunbar4e544872010-05-12 22:51:38 +0000416 EffectiveSize = cast<MCFillFragment>(F).getSize();
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000417 break;
418 }
419
420 case MCFragment::FT_Inst:
421 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
422 break;
423
424 case MCFragment::FT_Org: {
425 MCOrgFragment &OF = cast<MCOrgFragment>(F);
426
427 int64_t TargetLocation;
428 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
429 report_fatal_error("expected assembly-time absolute expression");
430
431 // FIXME: We need a way to communicate this error.
432 int64_t Offset = TargetLocation - FragmentOffset;
433 if (Offset < 0)
434 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
435 "' (at offset '" + Twine(FragmentOffset) + "'");
436
437 EffectiveSize = Offset;
438 break;
439 }
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000440 }
441
442 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
443}
444
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000445void MCAssembler::LayoutSection(MCAsmLayout &Layout,
446 unsigned SectionOrderIndex) {
447 MCSectionData &SD = *Layout.getSectionOrder()[SectionOrderIndex];
Daniel Dunbarf476b002010-03-25 18:16:42 +0000448
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000449 ++stats::SectionLayouts;
450
Daniel Dunbar61066db2010-05-13 02:34:14 +0000451 // Compute the section start address.
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000452 uint64_t StartAddress = 0;
453 if (SectionOrderIndex) {
454 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000455 StartAddress = (Layout.getSectionAddress(Prev) +
456 Layout.getSectionAddressSize(Prev));
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000457 }
458
Daniel Dunbar61066db2010-05-13 02:34:14 +0000459 // Honor the section alignment requirements.
460 StartAddress = RoundUpToAlignment(StartAddress, SD.getAlignment());
Daniel Dunbarf476b002010-03-25 18:16:42 +0000461
Daniel Dunbar61066db2010-05-13 02:34:14 +0000462 // Set the section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000463 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000464
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000465 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it)
466 LayoutFragment(Layout, *it);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000467}
468
Daniel Dunbar53b23382010-03-19 09:28:59 +0000469/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000470static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
471 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000472 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000473 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000474
Daniel Dunbarff547842010-03-23 23:47:14 +0000475 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000476
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000477 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000478 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000479 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000480 case MCFragment::FT_Align: {
481 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000482 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000483
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000484 assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!");
485
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000486 // FIXME: This error shouldn't actually occur (the front end should emit
487 // multiple .align directives to enforce the semantics it wants), but is
488 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000489 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000490 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000491 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000492 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000493 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000494
Kevin Enderby6e720482010-02-23 18:26:34 +0000495 // See if we are aligning with nops, and if so do that first to try to fill
496 // the Count bytes. Then if that did not fill any bytes or there are any
497 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000498 // If we are aligning with nops, ask that target to emit the right data.
Daniel Dunbar1c154132010-05-12 22:56:23 +0000499 if (AF.hasEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000500 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000501 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000502 Twine(Count) + " bytes");
503 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000504 }
505
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000506 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000507 for (uint64_t i = 0; i != Count; ++i) {
508 switch (AF.getValueSize()) {
509 default:
510 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000511 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
512 case 2: OW->Write16(uint16_t(AF.getValue())); break;
513 case 4: OW->Write32(uint32_t(AF.getValue())); break;
514 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000515 }
516 }
517 break;
518 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000519
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000520 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000521 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000522 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000523 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000524 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000525 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000526
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000527 case MCFragment::FT_Fill: {
528 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000529
530 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
531
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000532 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000533 switch (FF.getValueSize()) {
534 default:
535 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000536 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
537 case 2: OW->Write16(uint16_t(FF.getValue())); break;
538 case 4: OW->Write32(uint32_t(FF.getValue())); break;
539 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000540 }
541 }
542 break;
543 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000544
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000545 case MCFragment::FT_Inst:
546 llvm_unreachable("unexpected inst fragment after lowering");
547 break;
548
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000549 case MCFragment::FT_Org: {
550 MCOrgFragment &OF = cast<MCOrgFragment>(F);
551
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000552 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000553 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000554
555 break;
556 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000557 }
558
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000559 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000560}
561
Daniel Dunbar53b23382010-03-19 09:28:59 +0000562void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000563 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000564 MCObjectWriter *OW) const {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000565 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000566 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar054be922010-05-13 03:50:50 +0000567 assert(Layout.getSectionFileSize(SD) == 0 && "Invalid size for section!");
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000568
569 // Check that contents are only things legal inside a virtual section.
570 for (MCSectionData::const_iterator it = SD->begin(),
571 ie = SD->end(); it != ie; ++it) {
572 switch (it->getKind()) {
573 default:
574 assert(0 && "Invalid fragment in virtual section!");
575 case MCFragment::FT_Align:
576 assert(!cast<MCAlignFragment>(it)->getValueSize() &&
577 "Invalid align in virtual section!");
578 break;
579 case MCFragment::FT_Fill:
580 assert(!cast<MCFillFragment>(it)->getValueSize() &&
581 "Invalid fill in virtual section!");
582 break;
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000583 }
584 }
585
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000586 return;
587 }
588
Daniel Dunbar53b23382010-03-19 09:28:59 +0000589 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000590 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000591
Daniel Dunbar53b23382010-03-19 09:28:59 +0000592 for (MCSectionData::const_iterator it = SD->begin(),
593 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000594 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000595
Daniel Dunbar054be922010-05-13 03:50:50 +0000596 assert(OW->getStream().tell() - Start == Layout.getSectionFileSize(SD));
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000597}
598
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000599void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000600 DEBUG_WITH_TYPE("mc-dump", {
601 llvm::errs() << "assembler backend - pre-layout\n--\n";
602 dump(); });
603
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000604 // Assign section and fragment ordinals, all subsequent backend code is
605 // responsible for updating these in place.
606 unsigned SectionIndex = 0;
607 unsigned FragmentIndex = 0;
608 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
609 it->setOrdinal(SectionIndex++);
610
611 for (MCSectionData::iterator it2 = it->begin(),
612 ie2 = it->end(); it2 != ie2; ++it2)
613 it2->setOrdinal(FragmentIndex++);
614 }
615
Daniel Dunbar61066db2010-05-13 02:34:14 +0000616 // Create the layout object.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000617 MCAsmLayout Layout(*this);
Daniel Dunbar61066db2010-05-13 02:34:14 +0000618
619 // Insert additional align fragments for concrete sections to explicitly pad
620 // the previous section to match their alignment requirements. This is for
621 // 'gas' compatibility, it shouldn't strictly be necessary.
622 //
623 // FIXME: This may be Mach-O specific.
624 for (unsigned i = 1, e = Layout.getSectionOrder().size(); i < e; ++i) {
625 MCSectionData *SD = Layout.getSectionOrder()[i];
626
627 // Ignore sections without alignment requirements.
628 unsigned Align = SD->getAlignment();
629 if (Align <= 1)
630 continue;
631
632 // Ignore virtual sections, they don't cause file size modifications.
633 if (getBackend().isVirtualSection(SD->getSection()))
634 continue;
635
636 // Otherwise, create a new align fragment at the end of the previous
637 // section.
638 MCAlignFragment *AF = new MCAlignFragment(Align, 0, 1, Align,
639 Layout.getSectionOrder()[i - 1]);
640 AF->setOnlyAlignAddress(true);
641 }
642
643 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000644 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000645 continue;
646
647 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000648 llvm::errs() << "assembler backend - post-relaxation\n--\n";
649 dump(); });
650
651 // Finalize the layout, including fragment lowering.
652 FinishLayout(Layout);
653
654 DEBUG_WITH_TYPE("mc-dump", {
655 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000656 dump(); });
657
Daniel Dunbarff547842010-03-23 23:47:14 +0000658 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000659 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
660 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000661 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000662
663 // Allow the object writer a chance to perform post-layout binding (for
664 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000665 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000666
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000667 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000668 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
669 for (MCSectionData::iterator it2 = it->begin(),
670 ie2 = it->end(); it2 != ie2; ++it2) {
671 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
672 if (!DF)
673 continue;
674
675 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
676 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
677 MCAsmFixup &Fixup = *it3;
678
679 // Evaluate the fixup.
680 MCValue Target;
681 uint64_t FixedValue;
682 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
683 // The fixup was unresolved, we need a relocation. Inform the object
684 // writer of the relocation, and give it an opportunity to adjust the
685 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000686 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000687 }
688
Daniel Dunbar87190c42010-03-19 09:28:12 +0000689 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000690 }
691 }
692 }
693
Daniel Dunbarbacba992010-03-19 07:09:33 +0000694 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000695 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000696 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000697
698 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000699}
700
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000701bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
702 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000703 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000704 if (getRelaxAll())
705 return true;
706
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000707 // If we cannot resolve the fixup value, it requires relaxation.
708 MCValue Target;
709 uint64_t Value;
710 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
711 return true;
712
713 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000714 //
715 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000716 return int64_t(Value) != int64_t(int8_t(Value));
717}
718
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000719bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
720 const MCAsmLayout &Layout) const {
721 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
722 // are intentionally pushing out inst fragments, or because we relaxed a
723 // previous instruction to one that doesn't need relaxation.
724 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
725 return false;
726
727 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
728 ie = IF->fixup_end(); it != ie; ++it)
729 if (FixupNeedsRelaxation(*it, IF, Layout))
730 return true;
731
732 return false;
733}
734
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000735bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000736 ++stats::RelaxationSteps;
737
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000738 // Layout the sections in order.
739 for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i)
740 LayoutSection(Layout, i);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000741
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000742 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000743 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000744 for (iterator it = begin(), ie = end(); it != ie; ++it) {
745 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000746
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000747 for (MCSectionData::iterator it2 = SD.begin(),
748 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000749 // Check if this is an instruction fragment that needs relaxation.
750 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
751 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000752 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000753
Daniel Dunbarff547842010-03-23 23:47:14 +0000754 ++stats::RelaxedInstructions;
755
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000756 // FIXME-PERF: We could immediately lower out instructions if we can tell
757 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000758
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000759 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000760
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000761 MCInst Relaxed;
762 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000763
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000764 // Encode the new instruction.
765 //
766 // FIXME-PERF: If it matters, we could let the target do this. It can
767 // probably do so more efficiently in many cases.
768 SmallVector<MCFixup, 4> Fixups;
769 SmallString<256> Code;
770 raw_svector_ostream VecOS(Code);
771 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
772 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000773
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000774 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000775 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000776 IF->setInst(Relaxed);
777 IF->getCode() = Code;
778 IF->getFixups().clear();
779 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
780 MCFixup &F = Fixups[i];
781 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
782 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000783 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000784
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000785 // Update the layout, and remember that we relaxed. If we are relaxing
786 // everything, we can skip this step since nothing will depend on updating
787 // the values.
788 if (!getRelaxAll())
789 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000790 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000791 }
792 }
793
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000794 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000795}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000796
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000797void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
798 // Lower out any instruction fragments, to simplify the fixup application and
799 // output.
800 //
801 // FIXME-PERF: We don't have to do this, but the assumption is that it is
802 // cheap (we will mostly end up eliminating fragments and appending on to data
803 // fragments), so the extra complexity downstream isn't worth it. Evaluate
804 // this assumption.
805 for (iterator it = begin(), ie = end(); it != ie; ++it) {
806 MCSectionData &SD = *it;
807
808 for (MCSectionData::iterator it2 = SD.begin(),
809 ie2 = SD.end(); it2 != ie2; ++it2) {
810 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
811 if (!IF)
812 continue;
813
814 // Create a new data fragment for the instruction.
815 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000816 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000817 MCDataFragment *DF = new MCDataFragment();
818 SD.getFragmentList().insert(it2, DF);
819
820 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000821 //
822 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000823 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000824 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000825 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000826 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
827 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000828
Daniel Dunbar9799de92010-03-23 01:39:05 +0000829 // Copy in the data and the fixups.
830 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
831 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
832 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000833
834 // Delete the instruction fragment and update the iterator.
835 SD.getFragmentList().erase(IF);
836 it2 = DF;
837 }
838 }
839}
840
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000841// Debugging methods
842
843namespace llvm {
844
845raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000846 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
847 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000848 return OS;
849}
850
851}
852
853void MCFragment::dump() {
854 raw_ostream &OS = llvm::errs();
855
856 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000857 << " EffectiveSize:" << EffectiveSize << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000858}
859
860void MCAlignFragment::dump() {
861 raw_ostream &OS = llvm::errs();
862
863 OS << "<MCAlignFragment ";
864 this->MCFragment::dump();
Daniel Dunbar456b5012010-05-13 01:10:26 +0000865 if (hasEmitNops())
866 OS << " (emit nops)";
867 if (hasOnlyAlignAddress())
868 OS << " (only align section)";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000869 OS << "\n ";
870 OS << " Alignment:" << getAlignment()
871 << " Value:" << getValue() << " ValueSize:" << getValueSize()
872 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
873}
874
875void MCDataFragment::dump() {
876 raw_ostream &OS = llvm::errs();
877
878 OS << "<MCDataFragment ";
879 this->MCFragment::dump();
880 OS << "\n ";
881 OS << " Contents:[";
882 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
883 if (i) OS << ",";
884 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
885 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000886 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000887
888 if (!getFixups().empty()) {
889 OS << ",\n ";
890 OS << " Fixups:[";
891 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000892 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000893 OS << *it;
894 }
895 OS << "]";
896 }
897
898 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000899}
900
901void MCFillFragment::dump() {
902 raw_ostream &OS = llvm::errs();
903
904 OS << "<MCFillFragment ";
905 this->MCFragment::dump();
906 OS << "\n ";
907 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000908 << " Size:" << getSize() << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000909}
910
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000911void MCInstFragment::dump() {
912 raw_ostream &OS = llvm::errs();
913
914 OS << "<MCInstFragment ";
915 this->MCFragment::dump();
916 OS << "\n ";
917 OS << " Inst:";
918 getInst().dump_pretty(OS);
919 OS << ">";
920}
921
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000922void MCOrgFragment::dump() {
923 raw_ostream &OS = llvm::errs();
924
925 OS << "<MCOrgFragment ";
926 this->MCFragment::dump();
927 OS << "\n ";
928 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
929}
930
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000931void MCSectionData::dump() {
932 raw_ostream &OS = llvm::errs();
933
934 OS << "<MCSectionData";
935 OS << " Alignment:" << getAlignment() << " Address:" << Address
Daniel Dunbar2661f112010-05-13 03:19:50 +0000936 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000937 for (iterator it = begin(), ie = end(); it != ie; ++it) {
938 if (it != begin()) OS << ",\n ";
939 it->dump();
940 }
941 OS << "]>";
942}
943
944void MCSymbolData::dump() {
945 raw_ostream &OS = llvm::errs();
946
947 OS << "<MCSymbolData Symbol:" << getSymbol()
948 << " Fragment:" << getFragment() << " Offset:" << getOffset()
949 << " Flags:" << getFlags() << " Index:" << getIndex();
950 if (isCommon())
951 OS << " (common, size:" << getCommonSize()
952 << " align: " << getCommonAlignment() << ")";
953 if (isExternal())
954 OS << " (external)";
955 if (isPrivateExtern())
956 OS << " (private extern)";
957 OS << ">";
958}
959
960void MCAssembler::dump() {
961 raw_ostream &OS = llvm::errs();
962
963 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000964 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000965 for (iterator it = begin(), ie = end(); it != ie; ++it) {
966 if (it != begin()) OS << ",\n ";
967 it->dump();
968 }
969 OS << "],\n";
970 OS << " Symbols:[";
971
972 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000973 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000974 it->dump();
975 }
976 OS << "]>\n";
977}