blob: ced395c517094761b849dc37c9018319f1ea760d [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
395 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
396 if (EffectiveSize > AF.getMaxBytesToEmit())
397 EffectiveSize = 0;
398 break;
399 }
400
401 case MCFragment::FT_Data:
402 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
403 break;
404
405 case MCFragment::FT_Fill: {
Daniel Dunbar4e544872010-05-12 22:51:38 +0000406 EffectiveSize = cast<MCFillFragment>(F).getSize();
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000407 break;
408 }
409
410 case MCFragment::FT_Inst:
411 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
412 break;
413
414 case MCFragment::FT_Org: {
415 MCOrgFragment &OF = cast<MCOrgFragment>(F);
416
417 int64_t TargetLocation;
418 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
419 report_fatal_error("expected assembly-time absolute expression");
420
421 // FIXME: We need a way to communicate this error.
422 int64_t Offset = TargetLocation - FragmentOffset;
423 if (Offset < 0)
424 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
425 "' (at offset '" + Twine(FragmentOffset) + "'");
426
427 EffectiveSize = Offset;
428 break;
429 }
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000430 }
431
432 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
433}
434
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000435void MCAssembler::LayoutSection(MCAsmLayout &Layout,
436 unsigned SectionOrderIndex) {
437 MCSectionData &SD = *Layout.getSectionOrder()[SectionOrderIndex];
Daniel Dunbarf476b002010-03-25 18:16:42 +0000438 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
439
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000440 ++stats::SectionLayouts;
441
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000442 // Get the section start address.
443 uint64_t StartAddress = 0;
444 if (SectionOrderIndex) {
445 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000446 StartAddress = (Layout.getSectionAddress(Prev) +
447 Layout.getSectionAddressSize(Prev));
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000448 }
449
Daniel Dunbarf476b002010-03-25 18:16:42 +0000450 // Align this section if necessary by adding padding bytes to the previous
451 // section. It is safe to adjust this out-of-band, because no symbol or
452 // fragment is allowed to point past the end of the section at any time.
453 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
454 // Unless this section is virtual (where we are allowed to adjust the offset
455 // freely), the padding goes in the previous section.
456 if (!IsVirtual) {
Daniel Dunbar52f8dff2010-05-12 21:47:55 +0000457 assert(SectionOrderIndex && "Invalid initial section address!");
458 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
459 Layout.setSectionFileSize(Prev, Layout.getSectionFileSize(Prev) + Pad);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000460 }
461
462 StartAddress += Pad;
463 }
464
465 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000466 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000467
Daniel Dunbarf0d17d22010-05-12 21:35:25 +0000468 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it)
469 LayoutFragment(Layout, *it);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000470
Daniel Dunbar6742e342009-08-26 04:13:32 +0000471 // Set the section sizes.
Daniel Dunbar2d891a22010-05-12 21:35:22 +0000472 uint64_t Size = 0;
473 if (!SD.getFragmentList().empty()) {
474 MCFragment *F = &SD.getFragmentList().back();
475 Size = Layout.getFragmentOffset(F) + Layout.getFragmentEffectiveSize(F);
476 }
477 Layout.setSectionSize(&SD, Size);
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000478 Layout.setSectionAddressSize(&SD, Size);
Daniel Dunbar2d891a22010-05-12 21:35:22 +0000479 Layout.setSectionFileSize(&SD, IsVirtual ? 0 : Size);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000480}
481
Daniel Dunbar53b23382010-03-19 09:28:59 +0000482/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000483static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
484 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000485 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000486 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000487
Daniel Dunbarff547842010-03-23 23:47:14 +0000488 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000489
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000490 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000491 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000492 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000493 case MCFragment::FT_Align: {
494 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000495 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000496
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000497 assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!");
498
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000499 // FIXME: This error shouldn't actually occur (the front end should emit
500 // multiple .align directives to enforce the semantics it wants), but is
501 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000502 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000503 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000504 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000505 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000506 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000507
Kevin Enderby6e720482010-02-23 18:26:34 +0000508 // See if we are aligning with nops, and if so do that first to try to fill
509 // the Count bytes. Then if that did not fill any bytes or there are any
510 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000511 // If we are aligning with nops, ask that target to emit the right data.
Daniel Dunbar1c154132010-05-12 22:56:23 +0000512 if (AF.hasEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000513 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000514 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000515 Twine(Count) + " bytes");
516 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000517 }
518
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000519 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000520 for (uint64_t i = 0; i != Count; ++i) {
521 switch (AF.getValueSize()) {
522 default:
523 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000524 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
525 case 2: OW->Write16(uint16_t(AF.getValue())); break;
526 case 4: OW->Write32(uint32_t(AF.getValue())); break;
527 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000528 }
529 }
530 break;
531 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000532
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000533 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000534 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000535 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000536 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000537 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000538 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000539
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000540 case MCFragment::FT_Fill: {
541 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000542
543 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
544
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000545 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000546 switch (FF.getValueSize()) {
547 default:
548 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000549 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
550 case 2: OW->Write16(uint16_t(FF.getValue())); break;
551 case 4: OW->Write32(uint32_t(FF.getValue())); break;
552 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000553 }
554 }
555 break;
556 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000557
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000558 case MCFragment::FT_Inst:
559 llvm_unreachable("unexpected inst fragment after lowering");
560 break;
561
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000562 case MCFragment::FT_Org: {
563 MCOrgFragment &OF = cast<MCOrgFragment>(F);
564
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000565 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000566 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000567
568 break;
569 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000570 }
571
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000572 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000573}
574
Daniel Dunbar53b23382010-03-19 09:28:59 +0000575void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000576 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000577 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000578 uint64_t SectionSize = Layout.getSectionSize(SD);
579 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
580
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000581 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000582 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000583 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000584
585 // Check that contents are only things legal inside a virtual section.
586 for (MCSectionData::const_iterator it = SD->begin(),
587 ie = SD->end(); it != ie; ++it) {
588 switch (it->getKind()) {
589 default:
590 assert(0 && "Invalid fragment in virtual section!");
591 case MCFragment::FT_Align:
592 assert(!cast<MCAlignFragment>(it)->getValueSize() &&
593 "Invalid align in virtual section!");
594 break;
595 case MCFragment::FT_Fill:
596 assert(!cast<MCFillFragment>(it)->getValueSize() &&
597 "Invalid fill in virtual section!");
598 break;
Daniel Dunbare2fee5b2010-05-12 22:51:35 +0000599 }
600 }
601
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000602 return;
603 }
604
Daniel Dunbar53b23382010-03-19 09:28:59 +0000605 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000606 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000607
Daniel Dunbar53b23382010-03-19 09:28:59 +0000608 for (MCSectionData::const_iterator it = SD->begin(),
609 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000610 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000611
Daniel Dunbar6742e342009-08-26 04:13:32 +0000612 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000613 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
614 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000615
Daniel Dunbar5d428512010-03-25 02:00:07 +0000616 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000617}
618
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000619void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000620 DEBUG_WITH_TYPE("mc-dump", {
621 llvm::errs() << "assembler backend - pre-layout\n--\n";
622 dump(); });
623
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000624 // Assign section and fragment ordinals, all subsequent backend code is
625 // responsible for updating these in place.
626 unsigned SectionIndex = 0;
627 unsigned FragmentIndex = 0;
628 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
629 it->setOrdinal(SectionIndex++);
630
631 for (MCSectionData::iterator it2 = it->begin(),
632 ie2 = it->end(); it2 != ie2; ++it2)
633 it2->setOrdinal(FragmentIndex++);
634 }
635
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000636 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000637 MCAsmLayout Layout(*this);
638 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000639 continue;
640
641 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000642 llvm::errs() << "assembler backend - post-relaxation\n--\n";
643 dump(); });
644
645 // Finalize the layout, including fragment lowering.
646 FinishLayout(Layout);
647
648 DEBUG_WITH_TYPE("mc-dump", {
649 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000650 dump(); });
651
Daniel Dunbarff547842010-03-23 23:47:14 +0000652 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000653 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
654 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000655 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000656
657 // Allow the object writer a chance to perform post-layout binding (for
658 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000659 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000660
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000661 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000662 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
663 for (MCSectionData::iterator it2 = it->begin(),
664 ie2 = it->end(); it2 != ie2; ++it2) {
665 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
666 if (!DF)
667 continue;
668
669 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
670 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
671 MCAsmFixup &Fixup = *it3;
672
673 // Evaluate the fixup.
674 MCValue Target;
675 uint64_t FixedValue;
676 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
677 // The fixup was unresolved, we need a relocation. Inform the object
678 // writer of the relocation, and give it an opportunity to adjust the
679 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000680 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000681 }
682
Daniel Dunbar87190c42010-03-19 09:28:12 +0000683 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000684 }
685 }
686 }
687
Daniel Dunbarbacba992010-03-19 07:09:33 +0000688 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000689 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000690 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000691
692 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000693}
694
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000695bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
696 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000697 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000698 if (getRelaxAll())
699 return true;
700
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000701 // If we cannot resolve the fixup value, it requires relaxation.
702 MCValue Target;
703 uint64_t Value;
704 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
705 return true;
706
707 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000708 //
709 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000710 return int64_t(Value) != int64_t(int8_t(Value));
711}
712
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000713bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
714 const MCAsmLayout &Layout) const {
715 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
716 // are intentionally pushing out inst fragments, or because we relaxed a
717 // previous instruction to one that doesn't need relaxation.
718 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
719 return false;
720
721 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
722 ie = IF->fixup_end(); it != ie; ++it)
723 if (FixupNeedsRelaxation(*it, IF, Layout))
724 return true;
725
726 return false;
727}
728
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000729bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000730 ++stats::RelaxationSteps;
731
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000732 // Layout the sections in order.
733 for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i)
734 LayoutSection(Layout, i);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000735
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000736 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000737 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000738 for (iterator it = begin(), ie = end(); it != ie; ++it) {
739 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000740
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000741 for (MCSectionData::iterator it2 = SD.begin(),
742 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000743 // Check if this is an instruction fragment that needs relaxation.
744 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
745 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000746 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000747
Daniel Dunbarff547842010-03-23 23:47:14 +0000748 ++stats::RelaxedInstructions;
749
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000750 // FIXME-PERF: We could immediately lower out instructions if we can tell
751 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000752
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000753 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000754
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000755 MCInst Relaxed;
756 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000757
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000758 // Encode the new instruction.
759 //
760 // FIXME-PERF: If it matters, we could let the target do this. It can
761 // probably do so more efficiently in many cases.
762 SmallVector<MCFixup, 4> Fixups;
763 SmallString<256> Code;
764 raw_svector_ostream VecOS(Code);
765 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
766 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000767
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000768 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000769 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000770 IF->setInst(Relaxed);
771 IF->getCode() = Code;
772 IF->getFixups().clear();
773 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
774 MCFixup &F = Fixups[i];
775 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
776 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000777 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000778
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000779 // Update the layout, and remember that we relaxed. If we are relaxing
780 // everything, we can skip this step since nothing will depend on updating
781 // the values.
782 if (!getRelaxAll())
783 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000784 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000785 }
786 }
787
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000788 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000789}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000790
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000791void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
792 // Lower out any instruction fragments, to simplify the fixup application and
793 // output.
794 //
795 // FIXME-PERF: We don't have to do this, but the assumption is that it is
796 // cheap (we will mostly end up eliminating fragments and appending on to data
797 // fragments), so the extra complexity downstream isn't worth it. Evaluate
798 // this assumption.
799 for (iterator it = begin(), ie = end(); it != ie; ++it) {
800 MCSectionData &SD = *it;
801
802 for (MCSectionData::iterator it2 = SD.begin(),
803 ie2 = SD.end(); it2 != ie2; ++it2) {
804 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
805 if (!IF)
806 continue;
807
808 // Create a new data fragment for the instruction.
809 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000810 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000811 MCDataFragment *DF = new MCDataFragment();
812 SD.getFragmentList().insert(it2, DF);
813
814 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000815 //
816 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000817 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000818 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000819 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000820 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
821 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000822
Daniel Dunbar9799de92010-03-23 01:39:05 +0000823 // Copy in the data and the fixups.
824 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
825 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
826 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000827
828 // Delete the instruction fragment and update the iterator.
829 SD.getFragmentList().erase(IF);
830 it2 = DF;
831 }
832 }
833}
834
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000835// Debugging methods
836
837namespace llvm {
838
839raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000840 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
841 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000842 return OS;
843}
844
845}
846
847void MCFragment::dump() {
848 raw_ostream &OS = llvm::errs();
849
850 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000851 << " EffectiveSize:" << EffectiveSize << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000852}
853
854void MCAlignFragment::dump() {
855 raw_ostream &OS = llvm::errs();
856
857 OS << "<MCAlignFragment ";
858 this->MCFragment::dump();
859 OS << "\n ";
860 OS << " Alignment:" << getAlignment()
861 << " Value:" << getValue() << " ValueSize:" << getValueSize()
862 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
863}
864
865void MCDataFragment::dump() {
866 raw_ostream &OS = llvm::errs();
867
868 OS << "<MCDataFragment ";
869 this->MCFragment::dump();
870 OS << "\n ";
871 OS << " Contents:[";
872 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
873 if (i) OS << ",";
874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
875 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000876 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000877
878 if (!getFixups().empty()) {
879 OS << ",\n ";
880 OS << " Fixups:[";
881 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000882 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000883 OS << *it;
884 }
885 OS << "]";
886 }
887
888 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000889}
890
891void MCFillFragment::dump() {
892 raw_ostream &OS = llvm::errs();
893
894 OS << "<MCFillFragment ";
895 this->MCFragment::dump();
896 OS << "\n ";
897 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
Daniel Dunbar3153fec2010-05-12 22:51:32 +0000898 << " Size:" << getSize() << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000899}
900
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000901void MCInstFragment::dump() {
902 raw_ostream &OS = llvm::errs();
903
904 OS << "<MCInstFragment ";
905 this->MCFragment::dump();
906 OS << "\n ";
907 OS << " Inst:";
908 getInst().dump_pretty(OS);
909 OS << ">";
910}
911
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000912void MCOrgFragment::dump() {
913 raw_ostream &OS = llvm::errs();
914
915 OS << "<MCOrgFragment ";
916 this->MCFragment::dump();
917 OS << "\n ";
918 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
919}
920
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000921void MCSectionData::dump() {
922 raw_ostream &OS = llvm::errs();
923
924 OS << "<MCSectionData";
925 OS << " Alignment:" << getAlignment() << " Address:" << Address
Daniel Dunbarb5844ff2010-05-13 01:10:22 +0000926 << " Size:" << Size << " AddressSize:" << AddressSize
927 << " FileSize:" << FileSize << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000928 for (iterator it = begin(), ie = end(); it != ie; ++it) {
929 if (it != begin()) OS << ",\n ";
930 it->dump();
931 }
932 OS << "]>";
933}
934
935void MCSymbolData::dump() {
936 raw_ostream &OS = llvm::errs();
937
938 OS << "<MCSymbolData Symbol:" << getSymbol()
939 << " Fragment:" << getFragment() << " Offset:" << getOffset()
940 << " Flags:" << getFlags() << " Index:" << getIndex();
941 if (isCommon())
942 OS << " (common, size:" << getCommonSize()
943 << " align: " << getCommonAlignment() << ")";
944 if (isExternal())
945 OS << " (external)";
946 if (isPrivateExtern())
947 OS << " (private extern)";
948 OS << ">";
949}
950
951void MCAssembler::dump() {
952 raw_ostream &OS = llvm::errs();
953
954 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000955 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000956 for (iterator it = begin(), ie = end(); it != ie; ++it) {
957 if (it != begin()) OS << ",\n ";
958 it->dump();
959 }
960 OS << "],\n";
961 OS << " Symbols:[";
962
963 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000964 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000965 it->dump();
966 }
967 OS << "]>\n";
968}