blob: 8086b3d4aea74c8c119537cad72b6ec3fac75900 [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 Dunbar5d428512010-03-25 02:00:07 +0000113uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
114 assert(SD->Size != ~UINT64_C(0) && "File size not set!");
115 return SD->Size;
116}
117void MCAsmLayout::setSectionSize(MCSectionData *SD, uint64_t Value) {
118 SD->Size = Value;
119}
120
121uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
122 assert(SD->FileSize != ~UINT64_C(0) && "File size not set!");
123 return SD->FileSize;
124}
125void MCAsmLayout::setSectionFileSize(MCSectionData *SD, uint64_t Value) {
126 SD->FileSize = Value;
127}
128
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000129uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const {
130 assert(SD->AddressSize != ~UINT64_C(0) && "Address size not set!");
131 return SD->AddressSize;
132}
133void MCAsmLayout::setSectionAddressSize(MCSectionData *SD, uint64_t Value) {
134 SD->AddressSize = Value;
135}
136
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000137/* *** */
138
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000139MCFragment::MCFragment() : Kind(FragmentType(~0)) {
140}
141
Daniel Dunbar5e835962009-08-26 02:48:04 +0000142MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000143 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000144{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000145 if (Parent)
146 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000147}
148
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000149MCFragment::~MCFragment() {
150}
151
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000152/* *** */
153
Daniel Dunbar81e40002009-08-27 00:38:04 +0000154MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000155
156MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000157 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000158 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000159 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000160 Size(~UINT64_C(0)),
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000161 AddressSize(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000162 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000163 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000164{
165 if (A)
166 A->getSectionList().push_back(this);
167}
168
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000169/* *** */
170
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000171MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000172
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000173MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000174 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000175 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000176 IsExternal(false), IsPrivateExtern(false),
177 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000178{
179 if (A)
180 A->getSymbolList().push_back(this);
181}
182
183/* *** */
184
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000185MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000186 MCCodeEmitter &_Emitter, raw_ostream &_OS)
187 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000188 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000189{
190}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000191
192MCAssembler::~MCAssembler() {
193}
194
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000195static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
196 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000197 const MCValue Target,
198 const MCSection *BaseSection) {
199 // The effective fixup address is
200 // addr(atom(A)) + offset(A)
201 // - addr(atom(B)) - offset(B)
202 // - addr(<base symbol>) + <fixup offset from base symbol>
203 // and the offsets are not relocatable, so the fixup is fully resolved when
204 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
205 //
206 // The simple (Darwin, except on x86_64) way of dealing with this was to
207 // assume that any reference to a temporary symbol *must* be a temporary
208 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
209 // relocation to a temporary symbol (in the same section) is fully
210 // resolved. This also works in conjunction with absolutized .set, which
211 // requires the compiler to use .set to absolutize the differences between
212 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000213 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000214
215 // Non-relative fixups are only resolved if constant.
216 if (!BaseSection)
217 return Target.isAbsolute();
218
219 // Otherwise, relative fixups are only resolved if not a difference and the
220 // target is a temporary in the same section.
221 if (Target.isAbsolute() || Target.getSymB())
222 return false;
223
224 const MCSymbol *A = &Target.getSymA()->getSymbol();
225 if (!A->isTemporary() || !A->isInSection() ||
226 &A->getSection() != BaseSection)
227 return false;
228
229 return true;
230}
231
Daniel Dunbar034843a2010-03-19 03:18:18 +0000232static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000233 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000234 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000235 const MCValue Target,
236 const MCSymbolData *BaseSymbol) {
237 // The effective fixup address is
238 // addr(atom(A)) + offset(A)
239 // - addr(atom(B)) - offset(B)
240 // - addr(BaseSymbol) + <fixup offset from base symbol>
241 // and the offsets are not relocatable, so the fixup is fully resolved when
242 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
243 //
244 // Note that "false" is almost always conservatively correct (it means we emit
245 // a relocation which is unnecessary), except when it would force us to emit a
246 // relocation which the target cannot encode.
247
248 const MCSymbolData *A_Base = 0, *B_Base = 0;
249 if (const MCSymbolRefExpr *A = Target.getSymA()) {
250 // Modified symbol references cannot be resolved.
251 if (A->getKind() != MCSymbolRefExpr::VK_None)
252 return false;
253
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000254 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000255 if (!A_Base)
256 return false;
257 }
258
259 if (const MCSymbolRefExpr *B = Target.getSymB()) {
260 // Modified symbol references cannot be resolved.
261 if (B->getKind() != MCSymbolRefExpr::VK_None)
262 return false;
263
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000264 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000265 if (!B_Base)
266 return false;
267 }
268
269 // If there is no base, A and B have to be the same atom for this fixup to be
270 // fully resolved.
271 if (!BaseSymbol)
272 return A_Base == B_Base;
273
274 // Otherwise, B must be missing and A must be the base.
275 return !B_Base && BaseSymbol == A_Base;
276}
277
Daniel Dunbar23869852010-03-19 03:18:09 +0000278bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
279 // Non-temporary labels should always be visible to the linker.
280 if (!SD->getSymbol().isTemporary())
281 return true;
282
283 // Absolute temporary labels are never visible.
284 if (!SD->getFragment())
285 return false;
286
287 // Otherwise, check if the section requires symbols even for temporary labels.
288 return getBackend().doesSectionRequireSymbols(
289 SD->getFragment()->getParent()->getSection());
290}
291
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000292const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
293 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000294 // Linker visible symbols define atoms.
295 if (isSymbolLinkerVisible(SD))
296 return SD;
297
298 // Absolute and undefined symbols have no defining atom.
299 if (!SD->getFragment())
300 return 0;
301
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000302 // Non-linker visible symbols in sections which can't be atomized have no
303 // defining atom.
304 if (!getBackend().isSectionAtomizable(
305 SD->getFragment()->getParent()->getSection()))
306 return 0;
307
Daniel Dunbar651804c2010-05-11 17:22:50 +0000308 // Otherwise, return the atom for the containing fragment.
309 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000310}
311
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000312bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
313 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000314 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000315 ++stats::EvaluateFixup;
316
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000317 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000318 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000319
320 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
321 // doesn't support small relocations, but then under what criteria does the
322 // assembler allow symbol differences?
323
324 Value = Target.getConstant();
325
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000326 bool IsPCRel =
327 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
328 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000329 if (const MCSymbolRefExpr *A = Target.getSymA()) {
330 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000331 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000332 else
333 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000334 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000335 if (const MCSymbolRefExpr *B = Target.getSymB()) {
336 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000337 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000338 else
339 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000340 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000341
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000342 // If we are using scattered symbols, determine whether this value is actually
343 // resolved; scattering may cause atoms to move.
344 if (IsResolved && getBackend().hasScatteredSymbols()) {
345 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000346 // If this is a PCrel relocation, find the base atom (identified by its
347 // symbol) that the fixup value is relative to.
348 const MCSymbolData *BaseSymbol = 0;
349 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000350 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000351 if (!BaseSymbol)
352 IsResolved = false;
353 }
354
355 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000356 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000357 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000358 } else {
359 const MCSection *BaseSection = 0;
360 if (IsPCRel)
361 BaseSection = &DF->getParent()->getSection();
362
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000363 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000364 BaseSection);
365 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000366 }
367
368 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000369 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000370
371 return IsResolved;
372}
373
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000374void MCAssembler::LayoutFragment(MCAsmLayout &Layout, MCFragment &F) {
375 uint64_t StartAddress = Layout.getSectionAddress(F.getParent());
376
377 // Get the fragment start address.
378 uint64_t Address = StartAddress;
379 MCSectionData::iterator it = &F;
380 if (MCFragment *Prev = F.getPrevNode())
381 Address = (StartAddress + Layout.getFragmentOffset(Prev) +
382 Layout.getFragmentEffectiveSize(Prev));
383
384 ++stats::FragmentLayouts;
385
386 uint64_t FragmentOffset = Address - StartAddress;
387 Layout.setFragmentOffset(&F, FragmentOffset);
388
389 // Evaluate fragment size.
390 uint64_t EffectiveSize = 0;
391 switch (F.getKind()) {
392 case MCFragment::FT_Align: {
393 MCAlignFragment &AF = cast<MCAlignFragment>(F);
394
Daniel Dunbar456b5012010-05-13 01:10:26 +0000395 assert((!AF.hasOnlyAlignAddress() || !AF.getNextNode()) &&
396 "Invalid OnlyAlignAddress bit, not the last fragment!");
397
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000398 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
399 if (EffectiveSize > AF.getMaxBytesToEmit())
400 EffectiveSize = 0;
401 break;
402 }
403
404 case MCFragment::FT_Data:
405 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
406 break;
407
408 case MCFragment::FT_Fill: {
Daniel Dunbar4e544872010-05-12 22:51:38 +0000409 EffectiveSize = cast<MCFillFragment>(F).getSize();
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000410 break;
411 }
412
413 case MCFragment::FT_Inst:
414 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
415 break;
416
417 case MCFragment::FT_Org: {
418 MCOrgFragment &OF = cast<MCOrgFragment>(F);
419
420 int64_t TargetLocation;
421 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
422 report_fatal_error("expected assembly-time absolute expression");
423
424 // FIXME: We need a way to communicate this error.
425 int64_t Offset = TargetLocation - FragmentOffset;
426 if (Offset < 0)
427 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
428 "' (at offset '" + Twine(FragmentOffset) + "'");
429
430 EffectiveSize = Offset;
431 break;
432 }
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000433 }
434
435 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
436}
437
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000438void MCAssembler::LayoutSection(MCAsmLayout &Layout,
439 unsigned SectionOrderIndex) {
440 MCSectionData &SD = *Layout.getSectionOrder()[SectionOrderIndex];
Daniel Dunbarf476b002010-03-25 18:16:42 +0000441 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
442
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000443 ++stats::SectionLayouts;
444
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000445 // Get the section start address.
446 uint64_t StartAddress = 0;
447 if (SectionOrderIndex) {
448 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000449 StartAddress = (Layout.getSectionAddress(Prev) +
450 Layout.getSectionAddressSize(Prev));
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000451 }
452
Daniel Dunbarf476b002010-03-25 18:16:42 +0000453 // Align this section if necessary by adding padding bytes to the previous
454 // section. It is safe to adjust this out-of-band, because no symbol or
455 // fragment is allowed to point past the end of the section at any time.
456 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
457 // Unless this section is virtual (where we are allowed to adjust the offset
458 // freely), the padding goes in the previous section.
459 if (!IsVirtual) {
Daniel Dunbar52f8dff2010-05-12 21:47:55 +0000460 assert(SectionOrderIndex && "Invalid initial section address!");
461 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
462 Layout.setSectionFileSize(Prev, Layout.getSectionFileSize(Prev) + Pad);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000463 }
464
465 StartAddress += Pad;
466 }
467
468 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000469 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000470
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000471 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it)
472 LayoutFragment(Layout, *it);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000473
Daniel Dunbar6742e342009-08-26 04:13:32 +0000474 // Set the section sizes.
Daniel Dunbar2d891a22010-05-12 21:35:22 +0000475 uint64_t Size = 0;
476 if (!SD.getFragmentList().empty()) {
477 MCFragment *F = &SD.getFragmentList().back();
478 Size = Layout.getFragmentOffset(F) + Layout.getFragmentEffectiveSize(F);
479 }
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000480 Layout.setSectionAddressSize(&SD, Size);
Daniel Dunbar2d891a22010-05-12 21:35:22 +0000481 Layout.setSectionFileSize(&SD, IsVirtual ? 0 : Size);
Daniel Dunbar456b5012010-05-13 01:10:26 +0000482
483 // Handle OnlyAlignAddress bit.
484 if (!SD.getFragmentList().empty()) {
485 MCAlignFragment *AF =
486 dyn_cast<MCAlignFragment>(&SD.getFragmentList().back());
487 if (AF && AF->hasOnlyAlignAddress())
488 Size -= Layout.getFragmentEffectiveSize(AF);
489 }
490
491 Layout.setSectionSize(&SD, Size);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000492}
493
Daniel Dunbar53b23382010-03-19 09:28:59 +0000494/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000495static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
496 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000497 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000498 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000499
Daniel Dunbarff547842010-03-23 23:47:14 +0000500 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000501
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000502 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000503 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000504 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000505 case MCFragment::FT_Align: {
506 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000507 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000508
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000509 assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!");
510
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000511 // FIXME: This error shouldn't actually occur (the front end should emit
512 // multiple .align directives to enforce the semantics it wants), but is
513 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000514 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000515 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000516 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000517 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000518 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000519
Kevin Enderby6e720482010-02-23 18:26:34 +0000520 // See if we are aligning with nops, and if so do that first to try to fill
521 // the Count bytes. Then if that did not fill any bytes or there are any
522 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000523 // If we are aligning with nops, ask that target to emit the right data.
Daniel Dunbar1c154132010-05-12 22:56:23 +0000524 if (AF.hasEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000525 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000526 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000527 Twine(Count) + " bytes");
528 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000529 }
530
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000531 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000532 for (uint64_t i = 0; i != Count; ++i) {
533 switch (AF.getValueSize()) {
534 default:
535 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000536 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
537 case 2: OW->Write16(uint16_t(AF.getValue())); break;
538 case 4: OW->Write32(uint32_t(AF.getValue())); break;
539 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000540 }
541 }
542 break;
543 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000544
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000545 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000546 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000547 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000548 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000549 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000550 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000551
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000552 case MCFragment::FT_Fill: {
553 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000554
555 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
556
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000557 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000558 switch (FF.getValueSize()) {
559 default:
560 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000561 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
562 case 2: OW->Write16(uint16_t(FF.getValue())); break;
563 case 4: OW->Write32(uint32_t(FF.getValue())); break;
564 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000565 }
566 }
567 break;
568 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000569
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000570 case MCFragment::FT_Inst:
571 llvm_unreachable("unexpected inst fragment after lowering");
572 break;
573
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000574 case MCFragment::FT_Org: {
575 MCOrgFragment &OF = cast<MCOrgFragment>(F);
576
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000577 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000578 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000579
580 break;
581 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000582 }
583
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000584 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000585}
586
Daniel Dunbar53b23382010-03-19 09:28:59 +0000587void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000588 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000589 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000590 uint64_t SectionSize = Layout.getSectionSize(SD);
591 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
592
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000593 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000594 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000595 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000596
597 // Check that contents are only things legal inside a virtual section.
598 for (MCSectionData::const_iterator it = SD->begin(),
599 ie = SD->end(); it != ie; ++it) {
600 switch (it->getKind()) {
601 default:
602 assert(0 && "Invalid fragment in virtual section!");
603 case MCFragment::FT_Align:
604 assert(!cast<MCAlignFragment>(it)->getValueSize() &&
605 "Invalid align in virtual section!");
606 break;
607 case MCFragment::FT_Fill:
608 assert(!cast<MCFillFragment>(it)->getValueSize() &&
609 "Invalid fill in virtual section!");
610 break;
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000611 }
612 }
613
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000614 return;
615 }
616
Daniel Dunbar53b23382010-03-19 09:28:59 +0000617 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000618 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000619
Daniel Dunbar53b23382010-03-19 09:28:59 +0000620 for (MCSectionData::const_iterator it = SD->begin(),
621 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000622 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000623
Daniel Dunbar6742e342009-08-26 04:13:32 +0000624 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000625 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
626 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000627
Daniel Dunbar5d428512010-03-25 02:00:07 +0000628 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000629}
630
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000631void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000632 DEBUG_WITH_TYPE("mc-dump", {
633 llvm::errs() << "assembler backend - pre-layout\n--\n";
634 dump(); });
635
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000636 // Assign section and fragment ordinals, all subsequent backend code is
637 // responsible for updating these in place.
638 unsigned SectionIndex = 0;
639 unsigned FragmentIndex = 0;
640 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
641 it->setOrdinal(SectionIndex++);
642
643 for (MCSectionData::iterator it2 = it->begin(),
644 ie2 = it->end(); it2 != ie2; ++it2)
645 it2->setOrdinal(FragmentIndex++);
646 }
647
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000648 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000649 MCAsmLayout Layout(*this);
650 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 Dunbar432cd5f2010-03-25 02:00:02 +0000827 //
828 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000829 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000830 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000831 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000832 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
833 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000834
Daniel Dunbar9799de92010-03-23 01:39:05 +0000835 // Copy in the data and the fixups.
836 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
837 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
838 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000839
840 // Delete the instruction fragment and update the iterator.
841 SD.getFragmentList().erase(IF);
842 it2 = DF;
843 }
844 }
845}
846
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000847// Debugging methods
848
849namespace llvm {
850
851raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000852 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
853 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000854 return OS;
855}
856
857}
858
859void MCFragment::dump() {
860 raw_ostream &OS = llvm::errs();
861
862 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000863 << " EffectiveSize:" << EffectiveSize << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000864}
865
866void MCAlignFragment::dump() {
867 raw_ostream &OS = llvm::errs();
868
869 OS << "<MCAlignFragment ";
870 this->MCFragment::dump();
Daniel Dunbar456b5012010-05-13 01:10:26 +0000871 if (hasEmitNops())
872 OS << " (emit nops)";
873 if (hasOnlyAlignAddress())
874 OS << " (only align section)";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000875 OS << "\n ";
876 OS << " Alignment:" << getAlignment()
877 << " Value:" << getValue() << " ValueSize:" << getValueSize()
878 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
879}
880
881void MCDataFragment::dump() {
882 raw_ostream &OS = llvm::errs();
883
884 OS << "<MCDataFragment ";
885 this->MCFragment::dump();
886 OS << "\n ";
887 OS << " Contents:[";
888 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
889 if (i) OS << ",";
890 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
891 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000892 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000893
894 if (!getFixups().empty()) {
895 OS << ",\n ";
896 OS << " Fixups:[";
897 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000898 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000899 OS << *it;
900 }
901 OS << "]";
902 }
903
904 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000905}
906
907void MCFillFragment::dump() {
908 raw_ostream &OS = llvm::errs();
909
910 OS << "<MCFillFragment ";
911 this->MCFragment::dump();
912 OS << "\n ";
913 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000914 << " Size:" << getSize() << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000915}
916
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000917void MCInstFragment::dump() {
918 raw_ostream &OS = llvm::errs();
919
920 OS << "<MCInstFragment ";
921 this->MCFragment::dump();
922 OS << "\n ";
923 OS << " Inst:";
924 getInst().dump_pretty(OS);
925 OS << ">";
926}
927
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000928void MCOrgFragment::dump() {
929 raw_ostream &OS = llvm::errs();
930
931 OS << "<MCOrgFragment ";
932 this->MCFragment::dump();
933 OS << "\n ";
934 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
935}
936
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000937void MCSectionData::dump() {
938 raw_ostream &OS = llvm::errs();
939
940 OS << "<MCSectionData";
941 OS << " Alignment:" << getAlignment() << " Address:" << Address
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000942 << " Size:" << Size << " AddressSize:" << AddressSize
943 << " FileSize:" << FileSize << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000944 for (iterator it = begin(), ie = end(); it != ie; ++it) {
945 if (it != begin()) OS << ",\n ";
946 it->dump();
947 }
948 OS << "]>";
949}
950
951void MCSymbolData::dump() {
952 raw_ostream &OS = llvm::errs();
953
954 OS << "<MCSymbolData Symbol:" << getSymbol()
955 << " Fragment:" << getFragment() << " Offset:" << getOffset()
956 << " Flags:" << getFlags() << " Index:" << getIndex();
957 if (isCommon())
958 OS << " (common, size:" << getCommonSize()
959 << " align: " << getCommonAlignment() << ")";
960 if (isExternal())
961 OS << " (external)";
962 if (isPrivateExtern())
963 OS << " (private extern)";
964 OS << ">";
965}
966
967void MCAssembler::dump() {
968 raw_ostream &OS = llvm::errs();
969
970 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000971 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000972 for (iterator it = begin(), ie = end(); it != ie; ++it) {
973 if (it != begin()) OS << ",\n ";
974 it->dump();
975 }
976 OS << "],\n";
977 OS << " Symbols:[";
978
979 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000980 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000981 it->dump();
982 }
983 OS << "]>\n";
984}