blob: 79a8436bc24cca20ae6a91c5d943b458294d6c9f [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 Dunbar0705fbf2009-08-21 18:29:01 +000022#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000023#include "llvm/Support/raw_ostream.h"
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +000024#include "llvm/Support/Debug.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 {
33STATISTIC(RelaxedInstructions, "Number of relaxed instructions");
34STATISTIC(RelaxationSteps, "Number of assembler layout and relaxation steps");
Daniel Dunbar0adcd352009-08-25 21:10:45 +000035STATISTIC(EmittedFragments, "Number of emitted assembler fragments");
Daniel Dunbarff547842010-03-23 23:47:14 +000036STATISTIC(EvaluateFixup, "Number of evaluated fixups");
37STATISTIC(ObjectBytes, "Number of emitted object file bytes");
38}
39}
Daniel Dunbar0adcd352009-08-25 21:10:45 +000040
Daniel Dunbar8f4d1462009-08-28 07:08:35 +000041// FIXME FIXME FIXME: There are number of places in this file where we convert
42// what is a 64-bit assembler value used for computation into a value in the
43// object file, which may truncate it. We should detect that truncation where
44// invalid and report errors back.
45
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000046/* *** */
47
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000048void MCAsmLayout::UpdateForSlide(MCFragment *F, int SlideAmount) {
49 // We shouldn't have to do anything special to support negative slides, and it
50 // is a perfectly valid thing to do as long as other parts of the system are
51 // can guarantee convergence.
52 assert(SlideAmount >= 0 && "Negative slides not yet supported");
53
54 // Update the layout by simply recomputing the layout for the entire
55 // file. This is trivially correct, but very slow.
56 //
57 // FIXME-PERF: This is O(N^2), but will be eliminated once we get smarter.
58
59 // Layout the concrete sections and fragments.
60 MCAssembler &Asm = getAssembler();
61 uint64_t Address = 0;
62 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
63 // Skip virtual sections.
64 if (Asm.getBackend().isVirtualSection(it->getSection()))
65 continue;
66
67 // Layout the section fragments and its size.
68 Address = Asm.LayoutSection(*it, *this, Address);
69 }
70
71 // Layout the virtual sections.
72 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
73 if (!Asm.getBackend().isVirtualSection(it->getSection()))
74 continue;
75
76 // Layout the section fragments and its size.
77 Address = Asm.LayoutSection(*it, *this, Address);
78 }
79}
80
Daniel Dunbar207e06e2010-03-24 03:43:40 +000081uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000082 assert(F->getParent() && "Missing section()!");
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000083 return getSectionAddress(F->getParent()) + getFragmentOffset(F);
84}
85
86uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const {
87 assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!");
88 return F->EffectiveSize;
89}
90
91void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) {
92 F->EffectiveSize = Value;
93}
94
95uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
96 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
97 return F->Offset;
98}
99
100void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) {
101 F->Offset = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000102}
103
104uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000105 assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!");
106 return getFragmentAddress(SD->getFragment()) + SD->getOffset();
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000107}
108
109uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000110 assert(SD->Address != ~UINT64_C(0) && "Address not set!");
111 return SD->Address;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000112}
113
114void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000115 SD->Address = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000116}
117
Daniel Dunbar5d428512010-03-25 02:00:07 +0000118uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
119 assert(SD->Size != ~UINT64_C(0) && "File size not set!");
120 return SD->Size;
121}
122void MCAsmLayout::setSectionSize(MCSectionData *SD, uint64_t Value) {
123 SD->Size = Value;
124}
125
126uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
127 assert(SD->FileSize != ~UINT64_C(0) && "File size not set!");
128 return SD->FileSize;
129}
130void MCAsmLayout::setSectionFileSize(MCSectionData *SD, uint64_t Value) {
131 SD->FileSize = Value;
132}
133
134 /// @}
135
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000136/* *** */
137
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000138MCFragment::MCFragment() : Kind(FragmentType(~0)) {
139}
140
Daniel Dunbar5e835962009-08-26 02:48:04 +0000141MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000142 : Kind(_Kind),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000143 Parent(_Parent),
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000144 EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000145{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000146 if (Parent)
147 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000148}
149
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000150MCFragment::~MCFragment() {
151}
152
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000153/* *** */
154
Daniel Dunbar81e40002009-08-27 00:38:04 +0000155MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000156
157MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000158 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000159 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000160 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000161 Size(~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),
188 OS(_OS), 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
213 // need to worry about consider symbol differences fully resolved.
214
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 +0000292// FIXME-PERF: This routine is really slow.
293const MCSymbolData *MCAssembler::getAtomForAddress(const MCAsmLayout &Layout,
294 const MCSectionData *Section,
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000295 uint64_t Address) const {
296 const MCSymbolData *Best = 0;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000297 uint64_t BestAddress = 0;
298
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000299 for (MCAssembler::const_symbol_iterator it = symbol_begin(),
300 ie = symbol_end(); it != ie; ++it) {
301 // Ignore non-linker visible symbols.
302 if (!isSymbolLinkerVisible(it))
303 continue;
304
305 // Ignore symbols not in the same section.
306 if (!it->getFragment() || it->getFragment()->getParent() != Section)
307 continue;
308
309 // Otherwise, find the closest symbol preceding this address (ties are
310 // resolved in favor of the last defined symbol).
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000311 uint64_t SymbolAddress = Layout.getSymbolAddress(it);
312 if (SymbolAddress <= Address && (!Best || SymbolAddress >= BestAddress)) {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000313 Best = it;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000314 BestAddress = SymbolAddress;
315 }
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000316 }
317
318 return Best;
319}
320
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000321// FIXME-PERF: This routine is really slow.
322const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
323 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000324 // Linker visible symbols define atoms.
325 if (isSymbolLinkerVisible(SD))
326 return SD;
327
328 // Absolute and undefined symbols have no defining atom.
329 if (!SD->getFragment())
330 return 0;
331
332 // Otherwise, search by address.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000333 return getAtomForAddress(Layout, SD->getFragment()->getParent(),
334 Layout.getSymbolAddress(SD));
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000335}
336
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000337bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
338 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000339 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000340 ++stats::EvaluateFixup;
341
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000342 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
343 llvm_report_error("expected relocatable expression");
344
345 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
346 // doesn't support small relocations, but then under what criteria does the
347 // assembler allow symbol differences?
348
349 Value = Target.getConstant();
350
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000351 bool IsPCRel =
352 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
353 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000354 if (const MCSymbolRefExpr *A = Target.getSymA()) {
355 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000356 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000357 else
358 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000359 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000360 if (const MCSymbolRefExpr *B = Target.getSymB()) {
361 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000362 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000363 else
364 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000365 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000366
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000367 // If we are using scattered symbols, determine whether this value is actually
368 // resolved; scattering may cause atoms to move.
369 if (IsResolved && getBackend().hasScatteredSymbols()) {
370 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000371 // If this is a PCrel relocation, find the base atom (identified by its
372 // symbol) that the fixup value is relative to.
373 const MCSymbolData *BaseSymbol = 0;
374 if (IsPCRel) {
375 BaseSymbol = getAtomForAddress(
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000376 Layout, DF->getParent(), Layout.getFragmentAddress(DF)+Fixup.Offset);
Daniel Dunbar034843a2010-03-19 03:18:18 +0000377 if (!BaseSymbol)
378 IsResolved = false;
379 }
380
381 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000382 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000383 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000384 } else {
385 const MCSection *BaseSection = 0;
386 if (IsPCRel)
387 BaseSection = &DF->getParent()->getSection();
388
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000389 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000390 BaseSection);
391 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000392 }
393
394 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000395 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000396
397 return IsResolved;
398}
399
Daniel Dunbarf476b002010-03-25 18:16:42 +0000400uint64_t MCAssembler::LayoutSection(MCSectionData &SD,
401 MCAsmLayout &Layout,
402 uint64_t StartAddress) {
403 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
404
405 // Align this section if necessary by adding padding bytes to the previous
406 // section. It is safe to adjust this out-of-band, because no symbol or
407 // fragment is allowed to point past the end of the section at any time.
408 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
409 // Unless this section is virtual (where we are allowed to adjust the offset
410 // freely), the padding goes in the previous section.
411 if (!IsVirtual) {
412 // Find the previous non-virtual section.
413 iterator it = &SD;
414 assert(it != begin() && "Invalid initial section address!");
415 for (--it; getBackend().isVirtualSection(it->getSection()); --it) ;
416 Layout.setSectionFileSize(&*it, Layout.getSectionFileSize(&*it) + Pad);
417 }
418
419 StartAddress += Pad;
420 }
421
422 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000423 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000424
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000425 uint64_t Address = StartAddress;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000426 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
427 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000428
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000429 uint64_t FragmentOffset = Address - StartAddress;
430 Layout.setFragmentOffset(&F, FragmentOffset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000431
432 // Evaluate fragment size.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000433 uint64_t EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000434 switch (F.getKind()) {
435 case MCFragment::FT_Align: {
436 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000437
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000438 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
439 if (EffectiveSize > AF.getMaxBytesToEmit())
440 EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000441 break;
442 }
443
444 case MCFragment::FT_Data:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000445 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000446 break;
447
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000448 case MCFragment::FT_Fill: {
449 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000450 EffectiveSize = FF.getValueSize() * FF.getCount();
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000451 break;
452 }
453
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000454 case MCFragment::FT_Inst:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000455 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000456 break;
457
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000458 case MCFragment::FT_Org: {
459 MCOrgFragment &OF = cast<MCOrgFragment>(F);
460
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000461 int64_t TargetLocation;
462 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
463 llvm_report_error("expected assembly-time absolute expression");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000464
465 // FIXME: We need a way to communicate this error.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000466 int64_t Offset = TargetLocation - FragmentOffset;
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000467 if (Offset < 0)
468 llvm_report_error("invalid .org offset '" + Twine(TargetLocation) +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000469 "' (at offset '" + Twine(FragmentOffset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000470
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000471 EffectiveSize = Offset;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000472 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000473 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000474
475 case MCFragment::FT_ZeroFill: {
476 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
477
478 // Align the fragment offset; it is safe to adjust the offset freely since
479 // this is only in virtual sections.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000480 //
481 // FIXME: We shouldn't be doing this here.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +0000482 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000483 Layout.setFragmentOffset(&F, Address - StartAddress);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000484
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000485 EffectiveSize = ZFF.getSize();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000486 break;
487 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000488 }
489
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000490 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
491 Address += EffectiveSize;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000492 }
493
Daniel Dunbar6742e342009-08-26 04:13:32 +0000494 // Set the section sizes.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000495 Layout.setSectionSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000496 if (IsVirtual)
Daniel Dunbar5d428512010-03-25 02:00:07 +0000497 Layout.setSectionFileSize(&SD, 0);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000498 else
Daniel Dunbar5d428512010-03-25 02:00:07 +0000499 Layout.setSectionFileSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000500
501 return Address;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000502}
503
Daniel Dunbar53b23382010-03-19 09:28:59 +0000504/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000505static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
506 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000507 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000508 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000509
Daniel Dunbarff547842010-03-23 23:47:14 +0000510 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000511
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000512 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000513 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000514 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000515 case MCFragment::FT_Align: {
516 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000517 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000518
519 // FIXME: This error shouldn't actually occur (the front end should emit
520 // multiple .align directives to enforce the semantics it wants), but is
521 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000522 if (Count * AF.getValueSize() != FragmentSize)
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000523 llvm_report_error("undefined .align directive, value size '" +
524 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000525 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000526 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000527
Kevin Enderby6e720482010-02-23 18:26:34 +0000528 // See if we are aligning with nops, and if so do that first to try to fill
529 // the Count bytes. Then if that did not fill any bytes or there are any
530 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000531 // If we are aligning with nops, ask that target to emit the right data.
Kevin Enderby6e720482010-02-23 18:26:34 +0000532 if (AF.getEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000533 if (!Asm.getBackend().WriteNopData(Count, OW))
534 llvm_report_error("unable to write nop sequence of " +
535 Twine(Count) + " bytes");
536 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000537 }
538
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000539 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000540 for (uint64_t i = 0; i != Count; ++i) {
541 switch (AF.getValueSize()) {
542 default:
543 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000544 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
545 case 2: OW->Write16(uint16_t(AF.getValue())); break;
546 case 4: OW->Write32(uint32_t(AF.getValue())); break;
547 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000548 }
549 }
550 break;
551 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000552
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000553 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000554 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000555 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000556 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000557 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000558 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000559
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000560 case MCFragment::FT_Fill: {
561 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000562 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
563 switch (FF.getValueSize()) {
564 default:
565 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000566 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
567 case 2: OW->Write16(uint16_t(FF.getValue())); break;
568 case 4: OW->Write32(uint32_t(FF.getValue())); break;
569 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000570 }
571 }
572 break;
573 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000574
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000575 case MCFragment::FT_Inst:
576 llvm_unreachable("unexpected inst fragment after lowering");
577 break;
578
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000579 case MCFragment::FT_Org: {
580 MCOrgFragment &OF = cast<MCOrgFragment>(F);
581
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000582 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000583 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000584
585 break;
586 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000587
588 case MCFragment::FT_ZeroFill: {
589 assert(0 && "Invalid zero fill fragment in concrete section!");
590 break;
591 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000592 }
593
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000594 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000595}
596
Daniel Dunbar53b23382010-03-19 09:28:59 +0000597void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000598 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000599 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000600 uint64_t SectionSize = Layout.getSectionSize(SD);
601 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
602
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000603 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000604 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000605 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000606 return;
607 }
608
Daniel Dunbar53b23382010-03-19 09:28:59 +0000609 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000610 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000611
Daniel Dunbar53b23382010-03-19 09:28:59 +0000612 for (MCSectionData::const_iterator it = SD->begin(),
613 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000614 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000615
Daniel Dunbar6742e342009-08-26 04:13:32 +0000616 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000617 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
618 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000619
Daniel Dunbar5d428512010-03-25 02:00:07 +0000620 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000621}
622
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000623void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000624 DEBUG_WITH_TYPE("mc-dump", {
625 llvm::errs() << "assembler backend - pre-layout\n--\n";
626 dump(); });
627
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000628 // Assign section and fragment ordinals, all subsequent backend code is
629 // responsible for updating these in place.
630 unsigned SectionIndex = 0;
631 unsigned FragmentIndex = 0;
632 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
633 it->setOrdinal(SectionIndex++);
634
635 for (MCSectionData::iterator it2 = it->begin(),
636 ie2 = it->end(); it2 != ie2; ++it2)
637 it2->setOrdinal(FragmentIndex++);
638 }
639
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000640 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000641 MCAsmLayout Layout(*this);
642 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000643 continue;
644
645 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000646 llvm::errs() << "assembler backend - post-relaxation\n--\n";
647 dump(); });
648
649 // Finalize the layout, including fragment lowering.
650 FinishLayout(Layout);
651
652 DEBUG_WITH_TYPE("mc-dump", {
653 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000654 dump(); });
655
Daniel Dunbarff547842010-03-23 23:47:14 +0000656 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000657 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
658 if (!Writer)
659 llvm_report_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000660
661 // Allow the object writer a chance to perform post-layout binding (for
662 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000663 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000664
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000665 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000666 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
667 for (MCSectionData::iterator it2 = it->begin(),
668 ie2 = it->end(); it2 != ie2; ++it2) {
669 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
670 if (!DF)
671 continue;
672
673 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
674 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
675 MCAsmFixup &Fixup = *it3;
676
677 // Evaluate the fixup.
678 MCValue Target;
679 uint64_t FixedValue;
680 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
681 // The fixup was unresolved, we need a relocation. Inform the object
682 // writer of the relocation, and give it an opportunity to adjust the
683 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000684 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000685 }
686
Daniel Dunbar87190c42010-03-19 09:28:12 +0000687 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000688 }
689 }
690 }
691
Daniel Dunbarbacba992010-03-19 07:09:33 +0000692 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000693 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000694 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000695
696 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000697}
698
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000699bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
700 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000701 const MCAsmLayout &Layout) const {
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000702 // If we cannot resolve the fixup value, it requires relaxation.
703 MCValue Target;
704 uint64_t Value;
705 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
706 return true;
707
708 // Otherwise, relax if the value is too big for a (signed) i8.
709 return int64_t(Value) != int64_t(int8_t(Value));
710}
711
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000712bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
713 const MCAsmLayout &Layout) const {
714 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
715 // are intentionally pushing out inst fragments, or because we relaxed a
716 // previous instruction to one that doesn't need relaxation.
717 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
718 return false;
719
720 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
721 ie = IF->fixup_end(); it != ie; ++it)
722 if (FixupNeedsRelaxation(*it, IF, Layout))
723 return true;
724
725 return false;
726}
727
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000728bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000729 ++stats::RelaxationSteps;
730
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000731 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000732 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000733 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000734 // Skip virtual sections.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000735 if (getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000736 continue;
737
Daniel Dunbar6742e342009-08-26 04:13:32 +0000738 // Layout the section fragments and its size.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000739 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000740 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000741
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000742 // Layout the virtual sections.
743 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbarf476b002010-03-25 18:16:42 +0000744 if (!getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000745 continue;
746
Daniel Dunbarf476b002010-03-25 18:16:42 +0000747 // Layout the section fragments and its size.
748 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000749 }
750
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000751 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000752 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000753 for (iterator it = begin(), ie = end(); it != ie; ++it) {
754 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000755
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000756 for (MCSectionData::iterator it2 = SD.begin(),
757 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000758 // Check if this is an instruction fragment that needs relaxation.
759 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
760 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000761 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000762
Daniel Dunbarff547842010-03-23 23:47:14 +0000763 ++stats::RelaxedInstructions;
764
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000765 // FIXME-PERF: We could immediately lower out instructions if we can tell
766 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000767
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000768 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000769
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000770 MCInst Relaxed;
771 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000772
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000773 // Encode the new instruction.
774 //
775 // FIXME-PERF: If it matters, we could let the target do this. It can
776 // probably do so more efficiently in many cases.
777 SmallVector<MCFixup, 4> Fixups;
778 SmallString<256> Code;
779 raw_svector_ostream VecOS(Code);
780 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
781 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000782
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000783 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000784 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000785 IF->setInst(Relaxed);
786 IF->getCode() = Code;
787 IF->getFixups().clear();
788 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
789 MCFixup &F = Fixups[i];
790 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
791 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000792 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000793
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000794 // Update the layout, and remember that we relaxed.
795 Layout.UpdateForSlide(IF, SlideAmount);
796 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000797 }
798 }
799
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000800 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000801}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000802
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000803void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
804 // Lower out any instruction fragments, to simplify the fixup application and
805 // output.
806 //
807 // FIXME-PERF: We don't have to do this, but the assumption is that it is
808 // cheap (we will mostly end up eliminating fragments and appending on to data
809 // fragments), so the extra complexity downstream isn't worth it. Evaluate
810 // this assumption.
811 for (iterator it = begin(), ie = end(); it != ie; ++it) {
812 MCSectionData &SD = *it;
813
814 for (MCSectionData::iterator it2 = SD.begin(),
815 ie2 = SD.end(); it2 != ie2; ++it2) {
816 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
817 if (!IF)
818 continue;
819
820 // Create a new data fragment for the instruction.
821 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000822 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000823 MCDataFragment *DF = new MCDataFragment();
824 SD.getFragmentList().insert(it2, DF);
825
826 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000827 //
828 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000829 DF->setParent(IF->getParent());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000830 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000831 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
832 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000833
Daniel Dunbar9799de92010-03-23 01:39:05 +0000834 // Copy in the data and the fixups.
835 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
836 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
837 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000838
839 // Delete the instruction fragment and update the iterator.
840 SD.getFragmentList().erase(IF);
841 it2 = DF;
842 }
843 }
844}
845
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000846// Debugging methods
847
848namespace llvm {
849
850raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000851 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
852 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000853 return OS;
854}
855
856}
857
858void MCFragment::dump() {
859 raw_ostream &OS = llvm::errs();
860
861 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000862 << " EffectiveSize:" << EffectiveSize;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000863
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000864 OS << ">";
865}
866
867void MCAlignFragment::dump() {
868 raw_ostream &OS = llvm::errs();
869
870 OS << "<MCAlignFragment ";
871 this->MCFragment::dump();
872 OS << "\n ";
873 OS << " Alignment:" << getAlignment()
874 << " Value:" << getValue() << " ValueSize:" << getValueSize()
875 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
876}
877
878void MCDataFragment::dump() {
879 raw_ostream &OS = llvm::errs();
880
881 OS << "<MCDataFragment ";
882 this->MCFragment::dump();
883 OS << "\n ";
884 OS << " Contents:[";
885 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
886 if (i) OS << ",";
887 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
888 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000889 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000890
891 if (!getFixups().empty()) {
892 OS << ",\n ";
893 OS << " Fixups:[";
894 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000895 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000896 OS << *it;
897 }
898 OS << "]";
899 }
900
901 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000902}
903
904void MCFillFragment::dump() {
905 raw_ostream &OS = llvm::errs();
906
907 OS << "<MCFillFragment ";
908 this->MCFragment::dump();
909 OS << "\n ";
910 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
911 << " Count:" << getCount() << ">";
912}
913
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000914void MCInstFragment::dump() {
915 raw_ostream &OS = llvm::errs();
916
917 OS << "<MCInstFragment ";
918 this->MCFragment::dump();
919 OS << "\n ";
920 OS << " Inst:";
921 getInst().dump_pretty(OS);
922 OS << ">";
923}
924
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000925void MCOrgFragment::dump() {
926 raw_ostream &OS = llvm::errs();
927
928 OS << "<MCOrgFragment ";
929 this->MCFragment::dump();
930 OS << "\n ";
931 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
932}
933
934void MCZeroFillFragment::dump() {
935 raw_ostream &OS = llvm::errs();
936
937 OS << "<MCZeroFillFragment ";
938 this->MCFragment::dump();
939 OS << "\n ";
940 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
941}
942
943void MCSectionData::dump() {
944 raw_ostream &OS = llvm::errs();
945
946 OS << "<MCSectionData";
947 OS << " Alignment:" << getAlignment() << " Address:" << Address
948 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000949 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000950 for (iterator it = begin(), ie = end(); it != ie; ++it) {
951 if (it != begin()) OS << ",\n ";
952 it->dump();
953 }
954 OS << "]>";
955}
956
957void MCSymbolData::dump() {
958 raw_ostream &OS = llvm::errs();
959
960 OS << "<MCSymbolData Symbol:" << getSymbol()
961 << " Fragment:" << getFragment() << " Offset:" << getOffset()
962 << " Flags:" << getFlags() << " Index:" << getIndex();
963 if (isCommon())
964 OS << " (common, size:" << getCommonSize()
965 << " align: " << getCommonAlignment() << ")";
966 if (isExternal())
967 OS << " (external)";
968 if (isPrivateExtern())
969 OS << " (private extern)";
970 OS << ">";
971}
972
973void MCAssembler::dump() {
974 raw_ostream &OS = llvm::errs();
975
976 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000977 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000978 for (iterator it = begin(), ie = end(); it != ie; ++it) {
979 if (it != begin()) OS << ",\n ";
980 it->dump();
981 }
982 OS << "],\n";
983 OS << " Symbols:[";
984
985 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000986 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000987 it->dump();
988 }
989 OS << "]>\n";
990}