blob: 44e4cc9ea5f590e26bad89e7cec0f914dd055dcd [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 Dunbar207e06e2010-03-24 03:43:40 +0000129/* *** */
130
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000131MCFragment::MCFragment() : Kind(FragmentType(~0)) {
132}
133
Daniel Dunbar5e835962009-08-26 02:48:04 +0000134MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000135 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000136{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000137 if (Parent)
138 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000139}
140
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000141MCFragment::~MCFragment() {
142}
143
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000144/* *** */
145
Daniel Dunbar81e40002009-08-27 00:38:04 +0000146MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000147
148MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000149 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000150 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000151 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000152 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000153 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000154 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000155{
156 if (A)
157 A->getSectionList().push_back(this);
158}
159
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000160/* *** */
161
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000162MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000163
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000164MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000165 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000166 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000167 IsExternal(false), IsPrivateExtern(false),
168 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000169{
170 if (A)
171 A->getSymbolList().push_back(this);
172}
173
174/* *** */
175
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000176MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000177 MCCodeEmitter &_Emitter, raw_ostream &_OS)
178 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000179 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000180{
181}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000182
183MCAssembler::~MCAssembler() {
184}
185
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000186static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
187 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000188 const MCValue Target,
189 const MCSection *BaseSection) {
190 // The effective fixup address is
191 // addr(atom(A)) + offset(A)
192 // - addr(atom(B)) - offset(B)
193 // - addr(<base symbol>) + <fixup offset from base symbol>
194 // and the offsets are not relocatable, so the fixup is fully resolved when
195 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
196 //
197 // The simple (Darwin, except on x86_64) way of dealing with this was to
198 // assume that any reference to a temporary symbol *must* be a temporary
199 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
200 // relocation to a temporary symbol (in the same section) is fully
201 // resolved. This also works in conjunction with absolutized .set, which
202 // requires the compiler to use .set to absolutize the differences between
203 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000204 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000205
206 // Non-relative fixups are only resolved if constant.
207 if (!BaseSection)
208 return Target.isAbsolute();
209
210 // Otherwise, relative fixups are only resolved if not a difference and the
211 // target is a temporary in the same section.
212 if (Target.isAbsolute() || Target.getSymB())
213 return false;
214
215 const MCSymbol *A = &Target.getSymA()->getSymbol();
216 if (!A->isTemporary() || !A->isInSection() ||
217 &A->getSection() != BaseSection)
218 return false;
219
220 return true;
221}
222
Daniel Dunbar034843a2010-03-19 03:18:18 +0000223static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000224 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000225 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000226 const MCValue Target,
227 const MCSymbolData *BaseSymbol) {
228 // The effective fixup address is
229 // addr(atom(A)) + offset(A)
230 // - addr(atom(B)) - offset(B)
231 // - addr(BaseSymbol) + <fixup offset from base symbol>
232 // and the offsets are not relocatable, so the fixup is fully resolved when
233 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
234 //
235 // Note that "false" is almost always conservatively correct (it means we emit
236 // a relocation which is unnecessary), except when it would force us to emit a
237 // relocation which the target cannot encode.
238
239 const MCSymbolData *A_Base = 0, *B_Base = 0;
240 if (const MCSymbolRefExpr *A = Target.getSymA()) {
241 // Modified symbol references cannot be resolved.
242 if (A->getKind() != MCSymbolRefExpr::VK_None)
243 return false;
244
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000245 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000246 if (!A_Base)
247 return false;
248 }
249
250 if (const MCSymbolRefExpr *B = Target.getSymB()) {
251 // Modified symbol references cannot be resolved.
252 if (B->getKind() != MCSymbolRefExpr::VK_None)
253 return false;
254
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000255 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000256 if (!B_Base)
257 return false;
258 }
259
260 // If there is no base, A and B have to be the same atom for this fixup to be
261 // fully resolved.
262 if (!BaseSymbol)
263 return A_Base == B_Base;
264
265 // Otherwise, B must be missing and A must be the base.
266 return !B_Base && BaseSymbol == A_Base;
267}
268
Daniel Dunbar23869852010-03-19 03:18:09 +0000269bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
270 // Non-temporary labels should always be visible to the linker.
271 if (!SD->getSymbol().isTemporary())
272 return true;
273
274 // Absolute temporary labels are never visible.
275 if (!SD->getFragment())
276 return false;
277
278 // Otherwise, check if the section requires symbols even for temporary labels.
279 return getBackend().doesSectionRequireSymbols(
280 SD->getFragment()->getParent()->getSection());
281}
282
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000283const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
284 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000285 // Linker visible symbols define atoms.
286 if (isSymbolLinkerVisible(SD))
287 return SD;
288
289 // Absolute and undefined symbols have no defining atom.
290 if (!SD->getFragment())
291 return 0;
292
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000293 // Non-linker visible symbols in sections which can't be atomized have no
294 // defining atom.
295 if (!getBackend().isSectionAtomizable(
296 SD->getFragment()->getParent()->getSection()))
297 return 0;
298
Daniel Dunbar651804c2010-05-11 17:22:50 +0000299 // Otherwise, return the atom for the containing fragment.
300 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000301}
302
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000303bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
304 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000305 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000306 ++stats::EvaluateFixup;
307
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000308 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000309 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000310
311 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
312 // doesn't support small relocations, but then under what criteria does the
313 // assembler allow symbol differences?
314
315 Value = Target.getConstant();
316
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000317 bool IsPCRel =
318 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
319 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000320 if (const MCSymbolRefExpr *A = Target.getSymA()) {
321 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000322 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000323 else
324 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000325 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000326 if (const MCSymbolRefExpr *B = Target.getSymB()) {
327 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000328 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000329 else
330 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000331 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000332
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000333 // If we are using scattered symbols, determine whether this value is actually
334 // resolved; scattering may cause atoms to move.
335 if (IsResolved && getBackend().hasScatteredSymbols()) {
336 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000337 // If this is a PCrel relocation, find the base atom (identified by its
338 // symbol) that the fixup value is relative to.
339 const MCSymbolData *BaseSymbol = 0;
340 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000341 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000342 if (!BaseSymbol)
343 IsResolved = false;
344 }
345
346 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000347 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000348 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000349 } else {
350 const MCSection *BaseSection = 0;
351 if (IsPCRel)
352 BaseSection = &DF->getParent()->getSection();
353
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000354 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000355 BaseSection);
356 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000357 }
358
359 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000360 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000361
362 return IsResolved;
363}
364
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000365void MCAssembler::LayoutSection(MCAsmLayout &Layout,
366 unsigned SectionOrderIndex) {
367 MCSectionData &SD = *Layout.getSectionOrder()[SectionOrderIndex];
Daniel Dunbarf476b002010-03-25 18:16:42 +0000368 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
369
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000370 ++stats::SectionLayouts;
371
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000372 // Get the section start address.
373 uint64_t StartAddress = 0;
374 if (SectionOrderIndex) {
375 MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1];
376 StartAddress = Layout.getSectionAddress(Prev) + Layout.getSectionSize(Prev);
377 }
378
Daniel Dunbarf476b002010-03-25 18:16:42 +0000379 // Align this section if necessary by adding padding bytes to the previous
380 // section. It is safe to adjust this out-of-band, because no symbol or
381 // fragment is allowed to point past the end of the section at any time.
382 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
383 // Unless this section is virtual (where we are allowed to adjust the offset
384 // freely), the padding goes in the previous section.
385 if (!IsVirtual) {
386 // Find the previous non-virtual section.
387 iterator it = &SD;
388 assert(it != begin() && "Invalid initial section address!");
389 for (--it; getBackend().isVirtualSection(it->getSection()); --it) ;
390 Layout.setSectionFileSize(&*it, Layout.getSectionFileSize(&*it) + Pad);
391 }
392
393 StartAddress += Pad;
394 }
395
396 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000397 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000398
399 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
400 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000401
Daniel Dunbar2d891a22010-05-12 21:35:22 +0000402 // Compute the fragment start address.
403 uint64_t Address = StartAddress;
404 if (MCFragment *Prev = F.getPrevNode())
405 Address = (Layout.getFragmentAddress(Prev) +
406 Layout.getFragmentEffectiveSize(Prev));
407
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000408 ++stats::FragmentLayouts;
409
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000410 uint64_t FragmentOffset = Address - StartAddress;
411 Layout.setFragmentOffset(&F, FragmentOffset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000412
413 // Evaluate fragment size.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000414 uint64_t EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000415 switch (F.getKind()) {
416 case MCFragment::FT_Align: {
417 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000418
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000419 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
420 if (EffectiveSize > AF.getMaxBytesToEmit())
421 EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000422 break;
423 }
424
425 case MCFragment::FT_Data:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000426 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000427 break;
428
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000429 case MCFragment::FT_Fill: {
430 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000431 EffectiveSize = FF.getValueSize() * FF.getCount();
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000432 break;
433 }
434
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000435 case MCFragment::FT_Inst:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000436 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000437 break;
438
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000439 case MCFragment::FT_Org: {
440 MCOrgFragment &OF = cast<MCOrgFragment>(F);
441
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000442 int64_t TargetLocation;
443 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000444 report_fatal_error("expected assembly-time absolute expression");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000445
446 // FIXME: We need a way to communicate this error.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000447 int64_t Offset = TargetLocation - FragmentOffset;
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000448 if (Offset < 0)
Chris Lattner75361b62010-04-07 22:58:41 +0000449 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000450 "' (at offset '" + Twine(FragmentOffset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000451
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000452 EffectiveSize = Offset;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000453 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000454 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000455
456 case MCFragment::FT_ZeroFill: {
457 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
458
459 // Align the fragment offset; it is safe to adjust the offset freely since
460 // this is only in virtual sections.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000461 //
462 // FIXME: We shouldn't be doing this here.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +0000463 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000464 Layout.setFragmentOffset(&F, Address - StartAddress);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000465
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000466 EffectiveSize = ZFF.getSize();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000467 break;
468 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000469 }
470
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000471 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000472 }
473
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 }
480 Layout.setSectionSize(&SD, Size);
481 Layout.setSectionFileSize(&SD, IsVirtual ? 0 : Size);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000482}
483
Daniel Dunbar53b23382010-03-19 09:28:59 +0000484/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000485static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
486 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000487 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000488 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000489
Daniel Dunbarff547842010-03-23 23:47:14 +0000490 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000491
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000492 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000493 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000494 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000495 case MCFragment::FT_Align: {
496 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000497 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000498
499 // 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.
Kevin Enderby6e720482010-02-23 18:26:34 +0000512 if (AF.getEmitNops()) {
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 Dunbar0705fbf2009-08-21 18:29:01 +0000542 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
543 switch (FF.getValueSize()) {
544 default:
545 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000546 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
547 case 2: OW->Write16(uint16_t(FF.getValue())); break;
548 case 4: OW->Write32(uint32_t(FF.getValue())); break;
549 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000550 }
551 }
552 break;
553 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000554
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000555 case MCFragment::FT_Inst:
556 llvm_unreachable("unexpected inst fragment after lowering");
557 break;
558
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000559 case MCFragment::FT_Org: {
560 MCOrgFragment &OF = cast<MCOrgFragment>(F);
561
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000562 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000563 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000564
565 break;
566 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000567
568 case MCFragment::FT_ZeroFill: {
569 assert(0 && "Invalid zero fill fragment in concrete section!");
570 break;
571 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000572 }
573
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000574 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000575}
576
Daniel Dunbar53b23382010-03-19 09:28:59 +0000577void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000578 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000579 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000580 uint64_t SectionSize = Layout.getSectionSize(SD);
581 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
582
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000583 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000584 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000585 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000586 return;
587 }
588
Daniel Dunbar53b23382010-03-19 09:28:59 +0000589 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000590 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000591
Daniel Dunbar53b23382010-03-19 09:28:59 +0000592 for (MCSectionData::const_iterator it = SD->begin(),
593 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000594 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000595
Daniel Dunbar6742e342009-08-26 04:13:32 +0000596 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000597 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
598 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000599
Daniel Dunbar5d428512010-03-25 02:00:07 +0000600 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000601}
602
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000603void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000604 DEBUG_WITH_TYPE("mc-dump", {
605 llvm::errs() << "assembler backend - pre-layout\n--\n";
606 dump(); });
607
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000608 // Assign section and fragment ordinals, all subsequent backend code is
609 // responsible for updating these in place.
610 unsigned SectionIndex = 0;
611 unsigned FragmentIndex = 0;
612 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
613 it->setOrdinal(SectionIndex++);
614
615 for (MCSectionData::iterator it2 = it->begin(),
616 ie2 = it->end(); it2 != ie2; ++it2)
617 it2->setOrdinal(FragmentIndex++);
618 }
619
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000620 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000621 MCAsmLayout Layout(*this);
622 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000623 continue;
624
625 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000626 llvm::errs() << "assembler backend - post-relaxation\n--\n";
627 dump(); });
628
629 // Finalize the layout, including fragment lowering.
630 FinishLayout(Layout);
631
632 DEBUG_WITH_TYPE("mc-dump", {
633 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000634 dump(); });
635
Daniel Dunbarff547842010-03-23 23:47:14 +0000636 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000637 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
638 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000639 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000640
641 // Allow the object writer a chance to perform post-layout binding (for
642 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000643 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000644
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000645 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000646 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
647 for (MCSectionData::iterator it2 = it->begin(),
648 ie2 = it->end(); it2 != ie2; ++it2) {
649 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
650 if (!DF)
651 continue;
652
653 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
654 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
655 MCAsmFixup &Fixup = *it3;
656
657 // Evaluate the fixup.
658 MCValue Target;
659 uint64_t FixedValue;
660 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
661 // The fixup was unresolved, we need a relocation. Inform the object
662 // writer of the relocation, and give it an opportunity to adjust the
663 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000664 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000665 }
666
Daniel Dunbar87190c42010-03-19 09:28:12 +0000667 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000668 }
669 }
670 }
671
Daniel Dunbarbacba992010-03-19 07:09:33 +0000672 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000673 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000674 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000675
676 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000677}
678
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000679bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
680 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000681 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000682 if (getRelaxAll())
683 return true;
684
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000685 // If we cannot resolve the fixup value, it requires relaxation.
686 MCValue Target;
687 uint64_t Value;
688 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
689 return true;
690
691 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000692 //
693 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000694 return int64_t(Value) != int64_t(int8_t(Value));
695}
696
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000697bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
698 const MCAsmLayout &Layout) const {
699 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
700 // are intentionally pushing out inst fragments, or because we relaxed a
701 // previous instruction to one that doesn't need relaxation.
702 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
703 return false;
704
705 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
706 ie = IF->fixup_end(); it != ie; ++it)
707 if (FixupNeedsRelaxation(*it, IF, Layout))
708 return true;
709
710 return false;
711}
712
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000713bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000714 ++stats::RelaxationSteps;
715
Daniel Dunbard13a0ca2010-05-12 17:56:47 +0000716 // Layout the sections in order.
717 for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i)
718 LayoutSection(Layout, i);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000719
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000720 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000721 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000722 for (iterator it = begin(), ie = end(); it != ie; ++it) {
723 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000724
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000725 for (MCSectionData::iterator it2 = SD.begin(),
726 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000727 // Check if this is an instruction fragment that needs relaxation.
728 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
729 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000730 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000731
Daniel Dunbarff547842010-03-23 23:47:14 +0000732 ++stats::RelaxedInstructions;
733
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000734 // FIXME-PERF: We could immediately lower out instructions if we can tell
735 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000736
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000737 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000738
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000739 MCInst Relaxed;
740 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000741
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000742 // Encode the new instruction.
743 //
744 // FIXME-PERF: If it matters, we could let the target do this. It can
745 // probably do so more efficiently in many cases.
746 SmallVector<MCFixup, 4> Fixups;
747 SmallString<256> Code;
748 raw_svector_ostream VecOS(Code);
749 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
750 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000751
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000752 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000753 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000754 IF->setInst(Relaxed);
755 IF->getCode() = Code;
756 IF->getFixups().clear();
757 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
758 MCFixup &F = Fixups[i];
759 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
760 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000761 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000762
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000763 // Update the layout, and remember that we relaxed. If we are relaxing
764 // everything, we can skip this step since nothing will depend on updating
765 // the values.
766 if (!getRelaxAll())
767 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000768 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000769 }
770 }
771
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000772 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000773}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000774
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000775void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
776 // Lower out any instruction fragments, to simplify the fixup application and
777 // output.
778 //
779 // FIXME-PERF: We don't have to do this, but the assumption is that it is
780 // cheap (we will mostly end up eliminating fragments and appending on to data
781 // fragments), so the extra complexity downstream isn't worth it. Evaluate
782 // this assumption.
783 for (iterator it = begin(), ie = end(); it != ie; ++it) {
784 MCSectionData &SD = *it;
785
786 for (MCSectionData::iterator it2 = SD.begin(),
787 ie2 = SD.end(); it2 != ie2; ++it2) {
788 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
789 if (!IF)
790 continue;
791
792 // Create a new data fragment for the instruction.
793 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000794 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000795 MCDataFragment *DF = new MCDataFragment();
796 SD.getFragmentList().insert(it2, DF);
797
798 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000799 //
800 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000801 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000802 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000803 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000804 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
805 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000806
Daniel Dunbar9799de92010-03-23 01:39:05 +0000807 // Copy in the data and the fixups.
808 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
809 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
810 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000811
812 // Delete the instruction fragment and update the iterator.
813 SD.getFragmentList().erase(IF);
814 it2 = DF;
815 }
816 }
817}
818
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000819// Debugging methods
820
821namespace llvm {
822
823raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000824 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
825 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000826 return OS;
827}
828
829}
830
831void MCFragment::dump() {
832 raw_ostream &OS = llvm::errs();
833
834 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000835 << " EffectiveSize:" << EffectiveSize;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000836
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000837 OS << ">";
838}
839
840void MCAlignFragment::dump() {
841 raw_ostream &OS = llvm::errs();
842
843 OS << "<MCAlignFragment ";
844 this->MCFragment::dump();
845 OS << "\n ";
846 OS << " Alignment:" << getAlignment()
847 << " Value:" << getValue() << " ValueSize:" << getValueSize()
848 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
849}
850
851void MCDataFragment::dump() {
852 raw_ostream &OS = llvm::errs();
853
854 OS << "<MCDataFragment ";
855 this->MCFragment::dump();
856 OS << "\n ";
857 OS << " Contents:[";
858 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
859 if (i) OS << ",";
860 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
861 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000862 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000863
864 if (!getFixups().empty()) {
865 OS << ",\n ";
866 OS << " Fixups:[";
867 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000868 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000869 OS << *it;
870 }
871 OS << "]";
872 }
873
874 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000875}
876
877void MCFillFragment::dump() {
878 raw_ostream &OS = llvm::errs();
879
880 OS << "<MCFillFragment ";
881 this->MCFragment::dump();
882 OS << "\n ";
883 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
884 << " Count:" << getCount() << ">";
885}
886
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000887void MCInstFragment::dump() {
888 raw_ostream &OS = llvm::errs();
889
890 OS << "<MCInstFragment ";
891 this->MCFragment::dump();
892 OS << "\n ";
893 OS << " Inst:";
894 getInst().dump_pretty(OS);
895 OS << ">";
896}
897
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000898void MCOrgFragment::dump() {
899 raw_ostream &OS = llvm::errs();
900
901 OS << "<MCOrgFragment ";
902 this->MCFragment::dump();
903 OS << "\n ";
904 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
905}
906
907void MCZeroFillFragment::dump() {
908 raw_ostream &OS = llvm::errs();
909
910 OS << "<MCZeroFillFragment ";
911 this->MCFragment::dump();
912 OS << "\n ";
913 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
914}
915
916void MCSectionData::dump() {
917 raw_ostream &OS = llvm::errs();
918
919 OS << "<MCSectionData";
920 OS << " Alignment:" << getAlignment() << " Address:" << Address
921 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000922 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000923 for (iterator it = begin(), ie = end(); it != ie; ++it) {
924 if (it != begin()) OS << ",\n ";
925 it->dump();
926 }
927 OS << "]>";
928}
929
930void MCSymbolData::dump() {
931 raw_ostream &OS = llvm::errs();
932
933 OS << "<MCSymbolData Symbol:" << getSymbol()
934 << " Fragment:" << getFragment() << " Offset:" << getOffset()
935 << " Flags:" << getFlags() << " Index:" << getIndex();
936 if (isCommon())
937 OS << " (common, size:" << getCommonSize()
938 << " align: " << getCommonAlignment() << ")";
939 if (isExternal())
940 OS << " (external)";
941 if (isPrivateExtern())
942 OS << " (private extern)";
943 OS << ">";
944}
945
946void MCAssembler::dump() {
947 raw_ostream &OS = llvm::errs();
948
949 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000950 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000951 for (iterator it = begin(), ie = end(); it != ie; ++it) {
952 if (it != begin()) OS << ",\n ";
953 it->dump();
954 }
955 OS << "],\n";
956 OS << " Symbols:[";
957
958 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000959 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000960 it->dump();
961 }
962 OS << "]>\n";
963}