blob: 8ec927e4150c5fe2d44617cf297cb6b7e993923b [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 Dunbar0cc8bd42010-03-25 19:35:56 +000050void MCAsmLayout::UpdateForSlide(MCFragment *F, int SlideAmount) {
51 // We shouldn't have to do anything special to support negative slides, and it
Daniel Dunbar651804c2010-05-11 17:22:50 +000052 // is a perfectly valid thing to do as long as other parts of the system can
53 // guarantee convergence.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +000054 assert(SlideAmount >= 0 && "Negative slides not yet supported");
55
56 // Update the layout by simply recomputing the layout for the entire
57 // file. This is trivially correct, but very slow.
58 //
59 // FIXME-PERF: This is O(N^2), but will be eliminated once we get smarter.
60
61 // Layout the concrete sections and fragments.
62 MCAssembler &Asm = getAssembler();
63 uint64_t Address = 0;
64 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
65 // Skip virtual sections.
66 if (Asm.getBackend().isVirtualSection(it->getSection()))
67 continue;
68
69 // Layout the section fragments and its size.
70 Address = Asm.LayoutSection(*it, *this, Address);
71 }
72
73 // Layout the virtual sections.
74 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
75 if (!Asm.getBackend().isVirtualSection(it->getSection()))
76 continue;
77
78 // Layout the section fragments and its size.
79 Address = Asm.LayoutSection(*it, *this, Address);
80 }
81}
82
Daniel Dunbar207e06e2010-03-24 03:43:40 +000083uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +000084 assert(F->getParent() && "Missing section()!");
Daniel Dunbar432cd5f2010-03-25 02:00:02 +000085 return getSectionAddress(F->getParent()) + getFragmentOffset(F);
86}
87
88uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const {
89 assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!");
90 return F->EffectiveSize;
91}
92
93void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) {
94 F->EffectiveSize = Value;
95}
96
97uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
98 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
99 return F->Offset;
100}
101
102void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) {
103 F->Offset = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000104}
105
106uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000107 assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!");
108 return getFragmentAddress(SD->getFragment()) + SD->getOffset();
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000109}
110
111uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000112 assert(SD->Address != ~UINT64_C(0) && "Address not set!");
113 return SD->Address;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000114}
115
116void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) {
Daniel Dunbar7c3d45a2010-03-25 01:03:24 +0000117 SD->Address = Value;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000118}
119
Daniel Dunbar5d428512010-03-25 02:00:07 +0000120uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const {
121 assert(SD->Size != ~UINT64_C(0) && "File size not set!");
122 return SD->Size;
123}
124void MCAsmLayout::setSectionSize(MCSectionData *SD, uint64_t Value) {
125 SD->Size = Value;
126}
127
128uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const {
129 assert(SD->FileSize != ~UINT64_C(0) && "File size not set!");
130 return SD->FileSize;
131}
132void MCAsmLayout::setSectionFileSize(MCSectionData *SD, uint64_t Value) {
133 SD->FileSize = Value;
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 Dunbar071f73d2010-05-10 22:45:09 +0000142 : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000143{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000144 if (Parent)
145 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000146}
147
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000148MCFragment::~MCFragment() {
149}
150
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000151/* *** */
152
Daniel Dunbar81e40002009-08-27 00:38:04 +0000153MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000154
155MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000156 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000157 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000158 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000159 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000160 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000161 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000162{
163 if (A)
164 A->getSectionList().push_back(this);
165}
166
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000167/* *** */
168
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000169MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000170
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000171MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000172 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000173 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000174 IsExternal(false), IsPrivateExtern(false),
175 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000176{
177 if (A)
178 A->getSymbolList().push_back(this);
179}
180
181/* *** */
182
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000183MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
Daniel Dunbarcf871e52010-03-19 10:43:18 +0000184 MCCodeEmitter &_Emitter, raw_ostream &_OS)
185 : Context(_Context), Backend(_Backend), Emitter(_Emitter),
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000186 OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000187{
188}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000189
190MCAssembler::~MCAssembler() {
191}
192
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000193static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm,
194 const MCAsmFixup &Fixup,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000195 const MCValue Target,
196 const MCSection *BaseSection) {
197 // The effective fixup address is
198 // addr(atom(A)) + offset(A)
199 // - addr(atom(B)) - offset(B)
200 // - addr(<base symbol>) + <fixup offset from base symbol>
201 // and the offsets are not relocatable, so the fixup is fully resolved when
202 // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0.
203 //
204 // The simple (Darwin, except on x86_64) way of dealing with this was to
205 // assume that any reference to a temporary symbol *must* be a temporary
206 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
207 // relocation to a temporary symbol (in the same section) is fully
208 // resolved. This also works in conjunction with absolutized .set, which
209 // requires the compiler to use .set to absolutize the differences between
210 // symbols which the compiler knows to be assembly time constants, so we don't
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000211 // need to worry about considering symbol differences fully resolved.
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000212
213 // Non-relative fixups are only resolved if constant.
214 if (!BaseSection)
215 return Target.isAbsolute();
216
217 // Otherwise, relative fixups are only resolved if not a difference and the
218 // target is a temporary in the same section.
219 if (Target.isAbsolute() || Target.getSymB())
220 return false;
221
222 const MCSymbol *A = &Target.getSymA()->getSymbol();
223 if (!A->isTemporary() || !A->isInSection() ||
224 &A->getSection() != BaseSection)
225 return false;
226
227 return true;
228}
229
Daniel Dunbar034843a2010-03-19 03:18:18 +0000230static bool isScatteredFixupFullyResolved(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000231 const MCAsmLayout &Layout,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000232 const MCAsmFixup &Fixup,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000233 const MCValue Target,
234 const MCSymbolData *BaseSymbol) {
235 // The effective fixup address is
236 // addr(atom(A)) + offset(A)
237 // - addr(atom(B)) - offset(B)
238 // - addr(BaseSymbol) + <fixup offset from base symbol>
239 // and the offsets are not relocatable, so the fixup is fully resolved when
240 // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0.
241 //
242 // Note that "false" is almost always conservatively correct (it means we emit
243 // a relocation which is unnecessary), except when it would force us to emit a
244 // relocation which the target cannot encode.
245
246 const MCSymbolData *A_Base = 0, *B_Base = 0;
247 if (const MCSymbolRefExpr *A = Target.getSymA()) {
248 // Modified symbol references cannot be resolved.
249 if (A->getKind() != MCSymbolRefExpr::VK_None)
250 return false;
251
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000252 A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000253 if (!A_Base)
254 return false;
255 }
256
257 if (const MCSymbolRefExpr *B = Target.getSymB()) {
258 // Modified symbol references cannot be resolved.
259 if (B->getKind() != MCSymbolRefExpr::VK_None)
260 return false;
261
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000262 B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol()));
Daniel Dunbar034843a2010-03-19 03:18:18 +0000263 if (!B_Base)
264 return false;
265 }
266
267 // If there is no base, A and B have to be the same atom for this fixup to be
268 // fully resolved.
269 if (!BaseSymbol)
270 return A_Base == B_Base;
271
272 // Otherwise, B must be missing and A must be the base.
273 return !B_Base && BaseSymbol == A_Base;
274}
275
Daniel Dunbar23869852010-03-19 03:18:09 +0000276bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const {
277 // Non-temporary labels should always be visible to the linker.
278 if (!SD->getSymbol().isTemporary())
279 return true;
280
281 // Absolute temporary labels are never visible.
282 if (!SD->getFragment())
283 return false;
284
285 // Otherwise, check if the section requires symbols even for temporary labels.
286 return getBackend().doesSectionRequireSymbols(
287 SD->getFragment()->getParent()->getSection());
288}
289
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000290const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout,
291 const MCSymbolData *SD) const {
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000292 // Linker visible symbols define atoms.
293 if (isSymbolLinkerVisible(SD))
294 return SD;
295
296 // Absolute and undefined symbols have no defining atom.
297 if (!SD->getFragment())
298 return 0;
299
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000300 // Non-linker visible symbols in sections which can't be atomized have no
301 // defining atom.
302 if (!getBackend().isSectionAtomizable(
303 SD->getFragment()->getParent()->getSection()))
304 return 0;
305
Daniel Dunbar651804c2010-05-11 17:22:50 +0000306 // Otherwise, return the atom for the containing fragment.
307 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000308}
309
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000310bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
311 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000312 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000313 ++stats::EvaluateFixup;
314
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000315 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000316 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000317
318 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
319 // doesn't support small relocations, but then under what criteria does the
320 // assembler allow symbol differences?
321
322 Value = Target.getConstant();
323
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000324 bool IsPCRel =
325 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
326 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000327 if (const MCSymbolRefExpr *A = Target.getSymA()) {
328 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000329 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000330 else
331 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000332 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000333 if (const MCSymbolRefExpr *B = Target.getSymB()) {
334 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000335 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000336 else
337 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000338 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000339
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000340 // If we are using scattered symbols, determine whether this value is actually
341 // resolved; scattering may cause atoms to move.
342 if (IsResolved && getBackend().hasScatteredSymbols()) {
343 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000344 // If this is a PCrel relocation, find the base atom (identified by its
345 // symbol) that the fixup value is relative to.
346 const MCSymbolData *BaseSymbol = 0;
347 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000348 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000349 if (!BaseSymbol)
350 IsResolved = false;
351 }
352
353 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000354 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000355 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000356 } else {
357 const MCSection *BaseSection = 0;
358 if (IsPCRel)
359 BaseSection = &DF->getParent()->getSection();
360
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000361 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000362 BaseSection);
363 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000364 }
365
366 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000367 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000368
369 return IsResolved;
370}
371
Daniel Dunbarf476b002010-03-25 18:16:42 +0000372uint64_t MCAssembler::LayoutSection(MCSectionData &SD,
373 MCAsmLayout &Layout,
374 uint64_t StartAddress) {
375 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
376
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000377 ++stats::SectionLayouts;
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
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000399 uint64_t Address = StartAddress;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000400 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
401 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000402
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000403 ++stats::FragmentLayouts;
404
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000405 uint64_t FragmentOffset = Address - StartAddress;
406 Layout.setFragmentOffset(&F, FragmentOffset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000407
408 // Evaluate fragment size.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000409 uint64_t EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000410 switch (F.getKind()) {
411 case MCFragment::FT_Align: {
412 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000413
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000414 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
415 if (EffectiveSize > AF.getMaxBytesToEmit())
416 EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000417 break;
418 }
419
420 case MCFragment::FT_Data:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000421 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000422 break;
423
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000424 case MCFragment::FT_Fill: {
425 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000426 EffectiveSize = FF.getValueSize() * FF.getCount();
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000427 break;
428 }
429
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000430 case MCFragment::FT_Inst:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000431 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000432 break;
433
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000434 case MCFragment::FT_Org: {
435 MCOrgFragment &OF = cast<MCOrgFragment>(F);
436
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000437 int64_t TargetLocation;
438 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000439 report_fatal_error("expected assembly-time absolute expression");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000440
441 // FIXME: We need a way to communicate this error.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000442 int64_t Offset = TargetLocation - FragmentOffset;
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000443 if (Offset < 0)
Chris Lattner75361b62010-04-07 22:58:41 +0000444 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000445 "' (at offset '" + Twine(FragmentOffset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000446
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000447 EffectiveSize = Offset;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000448 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000449 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000450
451 case MCFragment::FT_ZeroFill: {
452 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
453
454 // Align the fragment offset; it is safe to adjust the offset freely since
455 // this is only in virtual sections.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000456 //
457 // FIXME: We shouldn't be doing this here.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +0000458 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000459 Layout.setFragmentOffset(&F, Address - StartAddress);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000460
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000461 EffectiveSize = ZFF.getSize();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000462 break;
463 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000464 }
465
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000466 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
467 Address += EffectiveSize;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000468 }
469
Daniel Dunbar6742e342009-08-26 04:13:32 +0000470 // Set the section sizes.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000471 Layout.setSectionSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000472 if (IsVirtual)
Daniel Dunbar5d428512010-03-25 02:00:07 +0000473 Layout.setSectionFileSize(&SD, 0);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000474 else
Daniel Dunbar5d428512010-03-25 02:00:07 +0000475 Layout.setSectionFileSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000476
477 return Address;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000478}
479
Daniel Dunbar53b23382010-03-19 09:28:59 +0000480/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000481static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
482 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000483 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000484 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000485
Daniel Dunbarff547842010-03-23 23:47:14 +0000486 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000487
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000488 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000489 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000490 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000491 case MCFragment::FT_Align: {
492 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000493 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000494
495 // FIXME: This error shouldn't actually occur (the front end should emit
496 // multiple .align directives to enforce the semantics it wants), but is
497 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000498 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000499 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000500 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000501 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000502 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000503
Kevin Enderby6e720482010-02-23 18:26:34 +0000504 // See if we are aligning with nops, and if so do that first to try to fill
505 // the Count bytes. Then if that did not fill any bytes or there are any
506 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000507 // If we are aligning with nops, ask that target to emit the right data.
Kevin Enderby6e720482010-02-23 18:26:34 +0000508 if (AF.getEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000509 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000510 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000511 Twine(Count) + " bytes");
512 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000513 }
514
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000515 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000516 for (uint64_t i = 0; i != Count; ++i) {
517 switch (AF.getValueSize()) {
518 default:
519 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000520 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
521 case 2: OW->Write16(uint16_t(AF.getValue())); break;
522 case 4: OW->Write32(uint32_t(AF.getValue())); break;
523 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000524 }
525 }
526 break;
527 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000528
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000529 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000530 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000531 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000532 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000533 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000534 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000535
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000536 case MCFragment::FT_Fill: {
537 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000538 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
539 switch (FF.getValueSize()) {
540 default:
541 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000542 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
543 case 2: OW->Write16(uint16_t(FF.getValue())); break;
544 case 4: OW->Write32(uint32_t(FF.getValue())); break;
545 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000546 }
547 }
548 break;
549 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000550
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000551 case MCFragment::FT_Inst:
552 llvm_unreachable("unexpected inst fragment after lowering");
553 break;
554
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000555 case MCFragment::FT_Org: {
556 MCOrgFragment &OF = cast<MCOrgFragment>(F);
557
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000558 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000559 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000560
561 break;
562 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000563
564 case MCFragment::FT_ZeroFill: {
565 assert(0 && "Invalid zero fill fragment in concrete section!");
566 break;
567 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000568 }
569
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000570 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000571}
572
Daniel Dunbar53b23382010-03-19 09:28:59 +0000573void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000574 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000575 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000576 uint64_t SectionSize = Layout.getSectionSize(SD);
577 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
578
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000579 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000580 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000581 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000582 return;
583 }
584
Daniel Dunbar53b23382010-03-19 09:28:59 +0000585 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000586 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000587
Daniel Dunbar53b23382010-03-19 09:28:59 +0000588 for (MCSectionData::const_iterator it = SD->begin(),
589 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000590 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000591
Daniel Dunbar6742e342009-08-26 04:13:32 +0000592 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000593 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
594 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000595
Daniel Dunbar5d428512010-03-25 02:00:07 +0000596 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000597}
598
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000599void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000600 DEBUG_WITH_TYPE("mc-dump", {
601 llvm::errs() << "assembler backend - pre-layout\n--\n";
602 dump(); });
603
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000604 // Assign section and fragment ordinals, all subsequent backend code is
605 // responsible for updating these in place.
606 unsigned SectionIndex = 0;
607 unsigned FragmentIndex = 0;
608 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
609 it->setOrdinal(SectionIndex++);
610
611 for (MCSectionData::iterator it2 = it->begin(),
612 ie2 = it->end(); it2 != ie2; ++it2)
613 it2->setOrdinal(FragmentIndex++);
614 }
615
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000616 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000617 MCAsmLayout Layout(*this);
618 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000619 continue;
620
621 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000622 llvm::errs() << "assembler backend - post-relaxation\n--\n";
623 dump(); });
624
625 // Finalize the layout, including fragment lowering.
626 FinishLayout(Layout);
627
628 DEBUG_WITH_TYPE("mc-dump", {
629 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000630 dump(); });
631
Daniel Dunbarff547842010-03-23 23:47:14 +0000632 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000633 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
634 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000635 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000636
637 // Allow the object writer a chance to perform post-layout binding (for
638 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000639 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000640
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000641 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000642 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
643 for (MCSectionData::iterator it2 = it->begin(),
644 ie2 = it->end(); it2 != ie2; ++it2) {
645 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
646 if (!DF)
647 continue;
648
649 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
650 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
651 MCAsmFixup &Fixup = *it3;
652
653 // Evaluate the fixup.
654 MCValue Target;
655 uint64_t FixedValue;
656 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
657 // The fixup was unresolved, we need a relocation. Inform the object
658 // writer of the relocation, and give it an opportunity to adjust the
659 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000660 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000661 }
662
Daniel Dunbar87190c42010-03-19 09:28:12 +0000663 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000664 }
665 }
666 }
667
Daniel Dunbarbacba992010-03-19 07:09:33 +0000668 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000669 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000670 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000671
672 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000673}
674
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000675bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
676 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000677 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000678 if (getRelaxAll())
679 return true;
680
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000681 // If we cannot resolve the fixup value, it requires relaxation.
682 MCValue Target;
683 uint64_t Value;
684 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
685 return true;
686
687 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000688 //
689 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000690 return int64_t(Value) != int64_t(int8_t(Value));
691}
692
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000693bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
694 const MCAsmLayout &Layout) const {
695 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
696 // are intentionally pushing out inst fragments, or because we relaxed a
697 // previous instruction to one that doesn't need relaxation.
698 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
699 return false;
700
701 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
702 ie = IF->fixup_end(); it != ie; ++it)
703 if (FixupNeedsRelaxation(*it, IF, Layout))
704 return true;
705
706 return false;
707}
708
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000709bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000710 ++stats::RelaxationSteps;
711
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000712 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000713 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000714 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000715 // Skip virtual sections.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000716 if (getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000717 continue;
718
Daniel Dunbar6742e342009-08-26 04:13:32 +0000719 // Layout the section fragments and its size.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000720 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000721 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000722
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000723 // Layout the virtual sections.
724 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbarf476b002010-03-25 18:16:42 +0000725 if (!getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000726 continue;
727
Daniel Dunbarf476b002010-03-25 18:16:42 +0000728 // Layout the section fragments and its size.
729 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000730 }
731
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000732 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000733 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000734 for (iterator it = begin(), ie = end(); it != ie; ++it) {
735 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000736
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000737 for (MCSectionData::iterator it2 = SD.begin(),
738 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000739 // Check if this is an instruction fragment that needs relaxation.
740 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
741 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000742 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000743
Daniel Dunbarff547842010-03-23 23:47:14 +0000744 ++stats::RelaxedInstructions;
745
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000746 // FIXME-PERF: We could immediately lower out instructions if we can tell
747 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000748
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000749 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000750
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000751 MCInst Relaxed;
752 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000753
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000754 // Encode the new instruction.
755 //
756 // FIXME-PERF: If it matters, we could let the target do this. It can
757 // probably do so more efficiently in many cases.
758 SmallVector<MCFixup, 4> Fixups;
759 SmallString<256> Code;
760 raw_svector_ostream VecOS(Code);
761 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
762 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000763
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000764 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000765 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000766 IF->setInst(Relaxed);
767 IF->getCode() = Code;
768 IF->getFixups().clear();
769 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
770 MCFixup &F = Fixups[i];
771 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
772 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000773 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000774
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000775 // Update the layout, and remember that we relaxed. If we are relaxing
776 // everything, we can skip this step since nothing will depend on updating
777 // the values.
778 if (!getRelaxAll())
779 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000780 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000781 }
782 }
783
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000784 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000785}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000786
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000787void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
788 // Lower out any instruction fragments, to simplify the fixup application and
789 // output.
790 //
791 // FIXME-PERF: We don't have to do this, but the assumption is that it is
792 // cheap (we will mostly end up eliminating fragments and appending on to data
793 // fragments), so the extra complexity downstream isn't worth it. Evaluate
794 // this assumption.
795 for (iterator it = begin(), ie = end(); it != ie; ++it) {
796 MCSectionData &SD = *it;
797
798 for (MCSectionData::iterator it2 = SD.begin(),
799 ie2 = SD.end(); it2 != ie2; ++it2) {
800 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
801 if (!IF)
802 continue;
803
804 // Create a new data fragment for the instruction.
805 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000806 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000807 MCDataFragment *DF = new MCDataFragment();
808 SD.getFragmentList().insert(it2, DF);
809
810 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000811 //
812 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000813 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000814 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000815 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000816 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
817 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000818
Daniel Dunbar9799de92010-03-23 01:39:05 +0000819 // Copy in the data and the fixups.
820 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
821 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
822 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000823
824 // Delete the instruction fragment and update the iterator.
825 SD.getFragmentList().erase(IF);
826 it2 = DF;
827 }
828 }
829}
830
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000831// Debugging methods
832
833namespace llvm {
834
835raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000836 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
837 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000838 return OS;
839}
840
841}
842
843void MCFragment::dump() {
844 raw_ostream &OS = llvm::errs();
845
846 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000847 << " EffectiveSize:" << EffectiveSize;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000848
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000849 OS << ">";
850}
851
852void MCAlignFragment::dump() {
853 raw_ostream &OS = llvm::errs();
854
855 OS << "<MCAlignFragment ";
856 this->MCFragment::dump();
857 OS << "\n ";
858 OS << " Alignment:" << getAlignment()
859 << " Value:" << getValue() << " ValueSize:" << getValueSize()
860 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
861}
862
863void MCDataFragment::dump() {
864 raw_ostream &OS = llvm::errs();
865
866 OS << "<MCDataFragment ";
867 this->MCFragment::dump();
868 OS << "\n ";
869 OS << " Contents:[";
870 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
871 if (i) OS << ",";
872 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
873 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000874 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000875
876 if (!getFixups().empty()) {
877 OS << ",\n ";
878 OS << " Fixups:[";
879 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000880 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000881 OS << *it;
882 }
883 OS << "]";
884 }
885
886 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000887}
888
889void MCFillFragment::dump() {
890 raw_ostream &OS = llvm::errs();
891
892 OS << "<MCFillFragment ";
893 this->MCFragment::dump();
894 OS << "\n ";
895 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
896 << " Count:" << getCount() << ">";
897}
898
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000899void MCInstFragment::dump() {
900 raw_ostream &OS = llvm::errs();
901
902 OS << "<MCInstFragment ";
903 this->MCFragment::dump();
904 OS << "\n ";
905 OS << " Inst:";
906 getInst().dump_pretty(OS);
907 OS << ">";
908}
909
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000910void MCOrgFragment::dump() {
911 raw_ostream &OS = llvm::errs();
912
913 OS << "<MCOrgFragment ";
914 this->MCFragment::dump();
915 OS << "\n ";
916 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
917}
918
919void MCZeroFillFragment::dump() {
920 raw_ostream &OS = llvm::errs();
921
922 OS << "<MCZeroFillFragment ";
923 this->MCFragment::dump();
924 OS << "\n ";
925 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
926}
927
928void MCSectionData::dump() {
929 raw_ostream &OS = llvm::errs();
930
931 OS << "<MCSectionData";
932 OS << " Alignment:" << getAlignment() << " Address:" << Address
933 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000934 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000935 for (iterator it = begin(), ie = end(); it != ie; ++it) {
936 if (it != begin()) OS << ",\n ";
937 it->dump();
938 }
939 OS << "]>";
940}
941
942void MCSymbolData::dump() {
943 raw_ostream &OS = llvm::errs();
944
945 OS << "<MCSymbolData Symbol:" << getSymbol()
946 << " Fragment:" << getFragment() << " Offset:" << getOffset()
947 << " Flags:" << getFlags() << " Index:" << getIndex();
948 if (isCommon())
949 OS << " (common, size:" << getCommonSize()
950 << " align: " << getCommonAlignment() << ")";
951 if (isExternal())
952 OS << " (external)";
953 if (isPrivateExtern())
954 OS << " (private extern)";
955 OS << ">";
956}
957
958void MCAssembler::dump() {
959 raw_ostream &OS = llvm::errs();
960
961 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000962 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000963 for (iterator it = begin(), ie = end(); it != ie; ++it) {
964 if (it != begin()) OS << ",\n ";
965 it->dump();
966 }
967 OS << "],\n";
968 OS << " Symbols:[";
969
970 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000971 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000972 it->dump();
973 }
974 OS << "]>\n";
975}