blob: 65e3571107bb828768f9f0f7505e9bb86e16514d [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 Dunbar651804c2010-05-11 17:22:50 +0000300 // Otherwise, return the atom for the containing fragment.
301 return SD->getFragment()->getAtom();
Daniel Dunbar8ad0dcc2010-03-19 03:18:15 +0000302}
303
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000304bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout,
305 const MCAsmFixup &Fixup, const MCFragment *DF,
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000306 MCValue &Target, uint64_t &Value) const {
Daniel Dunbarff547842010-03-23 23:47:14 +0000307 ++stats::EvaluateFixup;
308
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000309 if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000310 report_fatal_error("expected relocatable expression");
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000311
312 // FIXME: How do non-scattered symbols work in ELF? I presume the linker
313 // doesn't support small relocations, but then under what criteria does the
314 // assembler allow symbol differences?
315
316 Value = Target.getConstant();
317
Daniel Dunbarb36052f2010-03-19 10:43:23 +0000318 bool IsPCRel =
319 Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel;
320 bool IsResolved = true;
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000321 if (const MCSymbolRefExpr *A = Target.getSymA()) {
322 if (A->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000323 Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000324 else
325 IsResolved = false;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000326 }
Daniel Dunbar9a1d2002010-03-18 00:59:10 +0000327 if (const MCSymbolRefExpr *B = Target.getSymB()) {
328 if (B->getSymbol().isDefined())
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000329 Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol()));
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000330 else
331 IsResolved = false;
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000332 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000333
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000334 // If we are using scattered symbols, determine whether this value is actually
335 // resolved; scattering may cause atoms to move.
336 if (IsResolved && getBackend().hasScatteredSymbols()) {
337 if (getBackend().hasReliableSymbolDifference()) {
Daniel Dunbar034843a2010-03-19 03:18:18 +0000338 // If this is a PCrel relocation, find the base atom (identified by its
339 // symbol) that the fixup value is relative to.
340 const MCSymbolData *BaseSymbol = 0;
341 if (IsPCRel) {
Daniel Dunbar651804c2010-05-11 17:22:50 +0000342 BaseSymbol = DF->getAtom();
Daniel Dunbar034843a2010-03-19 03:18:18 +0000343 if (!BaseSymbol)
344 IsResolved = false;
345 }
346
347 if (IsResolved)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000348 IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target,
Daniel Dunbar034843a2010-03-19 03:18:18 +0000349 BaseSymbol);
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000350 } else {
351 const MCSection *BaseSection = 0;
352 if (IsPCRel)
353 BaseSection = &DF->getParent()->getSection();
354
Daniel Dunbarc6f59822010-03-22 21:49:38 +0000355 IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target,
Daniel Dunbar939f8d72010-03-19 03:18:12 +0000356 BaseSection);
357 }
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000358 }
359
360 if (IsPCRel)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000361 Value -= Layout.getFragmentAddress(DF) + Fixup.Offset;
Daniel Dunbardf3c8f22010-03-12 21:00:49 +0000362
363 return IsResolved;
364}
365
Daniel Dunbarf476b002010-03-25 18:16:42 +0000366uint64_t MCAssembler::LayoutSection(MCSectionData &SD,
367 MCAsmLayout &Layout,
368 uint64_t StartAddress) {
369 bool IsVirtual = getBackend().isVirtualSection(SD.getSection());
370
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000371 ++stats::SectionLayouts;
372
Daniel Dunbarf476b002010-03-25 18:16:42 +0000373 // Align this section if necessary by adding padding bytes to the previous
374 // section. It is safe to adjust this out-of-band, because no symbol or
375 // fragment is allowed to point past the end of the section at any time.
376 if (uint64_t Pad = OffsetToAlignment(StartAddress, SD.getAlignment())) {
377 // Unless this section is virtual (where we are allowed to adjust the offset
378 // freely), the padding goes in the previous section.
379 if (!IsVirtual) {
380 // Find the previous non-virtual section.
381 iterator it = &SD;
382 assert(it != begin() && "Invalid initial section address!");
383 for (--it; getBackend().isVirtualSection(it->getSection()); --it) ;
384 Layout.setSectionFileSize(&*it, Layout.getSectionFileSize(&*it) + Pad);
385 }
386
387 StartAddress += Pad;
388 }
389
390 // Set the aligned section address.
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000391 Layout.setSectionAddress(&SD, StartAddress);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000392
Daniel Dunbarbe644a32010-03-25 18:16:38 +0000393 uint64_t Address = StartAddress;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000394 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
395 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000396
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000397 ++stats::FragmentLayouts;
398
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000399 uint64_t FragmentOffset = Address - StartAddress;
400 Layout.setFragmentOffset(&F, FragmentOffset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000401
402 // Evaluate fragment size.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000403 uint64_t EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000404 switch (F.getKind()) {
405 case MCFragment::FT_Align: {
406 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000407
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000408 EffectiveSize = OffsetToAlignment(Address, AF.getAlignment());
409 if (EffectiveSize > AF.getMaxBytesToEmit())
410 EffectiveSize = 0;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000411 break;
412 }
413
414 case MCFragment::FT_Data:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000415 EffectiveSize = cast<MCDataFragment>(F).getContents().size();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000416 break;
417
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000418 case MCFragment::FT_Fill: {
419 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000420 EffectiveSize = FF.getValueSize() * FF.getCount();
Daniel Dunbar2a6e3f52010-03-22 20:35:43 +0000421 break;
422 }
423
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000424 case MCFragment::FT_Inst:
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000425 EffectiveSize = cast<MCInstFragment>(F).getInstSize();
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000426 break;
427
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000428 case MCFragment::FT_Org: {
429 MCOrgFragment &OF = cast<MCOrgFragment>(F);
430
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000431 int64_t TargetLocation;
432 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout))
Chris Lattner75361b62010-04-07 22:58:41 +0000433 report_fatal_error("expected assembly-time absolute expression");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000434
435 // FIXME: We need a way to communicate this error.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000436 int64_t Offset = TargetLocation - FragmentOffset;
Daniel Dunbar18ff2cc2010-03-11 05:53:33 +0000437 if (Offset < 0)
Chris Lattner75361b62010-04-07 22:58:41 +0000438 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000439 "' (at offset '" + Twine(FragmentOffset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000440
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000441 EffectiveSize = Offset;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000442 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000443 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000444
445 case MCFragment::FT_ZeroFill: {
446 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
447
448 // Align the fragment offset; it is safe to adjust the offset freely since
449 // this is only in virtual sections.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000450 //
451 // FIXME: We shouldn't be doing this here.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +0000452 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000453 Layout.setFragmentOffset(&F, Address - StartAddress);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000454
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000455 EffectiveSize = ZFF.getSize();
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000456 break;
457 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000458 }
459
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000460 Layout.setFragmentEffectiveSize(&F, EffectiveSize);
461 Address += EffectiveSize;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000462 }
463
Daniel Dunbar6742e342009-08-26 04:13:32 +0000464 // Set the section sizes.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000465 Layout.setSectionSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000466 if (IsVirtual)
Daniel Dunbar5d428512010-03-25 02:00:07 +0000467 Layout.setSectionFileSize(&SD, 0);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000468 else
Daniel Dunbar5d428512010-03-25 02:00:07 +0000469 Layout.setSectionFileSize(&SD, Address - StartAddress);
Daniel Dunbarf476b002010-03-25 18:16:42 +0000470
471 return Address;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000472}
473
Daniel Dunbar53b23382010-03-19 09:28:59 +0000474/// WriteFragmentData - Write the \arg F data to the output file.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000475static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout,
476 const MCFragment &F, MCObjectWriter *OW) {
Daniel Dunbar53b23382010-03-19 09:28:59 +0000477 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000478 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000479
Daniel Dunbarff547842010-03-23 23:47:14 +0000480 ++stats::EmittedFragments;
Daniel Dunbar0adcd352009-08-25 21:10:45 +0000481
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000482 // FIXME: Embed in fragments instead?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000483 uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000484 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000485 case MCFragment::FT_Align: {
486 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000487 uint64_t Count = FragmentSize / AF.getValueSize();
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000488
489 // FIXME: This error shouldn't actually occur (the front end should emit
490 // multiple .align directives to enforce the semantics it wants), but is
491 // severe enough that we want to report it. How to handle this?
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000492 if (Count * AF.getValueSize() != FragmentSize)
Chris Lattner75361b62010-04-07 22:58:41 +0000493 report_fatal_error("undefined .align directive, value size '" +
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000494 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000495 "' is not a divisor of padding size '" +
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000496 Twine(FragmentSize) + "'");
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000497
Kevin Enderby6e720482010-02-23 18:26:34 +0000498 // See if we are aligning with nops, and if so do that first to try to fill
499 // the Count bytes. Then if that did not fill any bytes or there are any
500 // bytes left to fill use the the Value and ValueSize to fill the rest.
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000501 // If we are aligning with nops, ask that target to emit the right data.
Kevin Enderby6e720482010-02-23 18:26:34 +0000502 if (AF.getEmitNops()) {
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000503 if (!Asm.getBackend().WriteNopData(Count, OW))
Chris Lattner75361b62010-04-07 22:58:41 +0000504 report_fatal_error("unable to write nop sequence of " +
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000505 Twine(Count) + " bytes");
506 break;
Kevin Enderby6e720482010-02-23 18:26:34 +0000507 }
508
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000509 // Otherwise, write out in multiples of the value size.
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000510 for (uint64_t i = 0; i != Count; ++i) {
511 switch (AF.getValueSize()) {
512 default:
513 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000514 case 1: OW->Write8 (uint8_t (AF.getValue())); break;
515 case 2: OW->Write16(uint16_t(AF.getValue())); break;
516 case 4: OW->Write32(uint32_t(AF.getValue())); break;
517 case 8: OW->Write64(uint64_t(AF.getValue())); break;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000518 }
519 }
520 break;
521 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000522
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000523 case MCFragment::FT_Data: {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000524 MCDataFragment &DF = cast<MCDataFragment>(F);
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000525 assert(FragmentSize == DF.getContents().size() && "Invalid size!");
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000526 OW->WriteBytes(DF.getContents().str());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000527 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000528 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000529
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000530 case MCFragment::FT_Fill: {
531 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000532 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
533 switch (FF.getValueSize()) {
534 default:
535 assert(0 && "Invalid size!");
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000536 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
537 case 2: OW->Write16(uint16_t(FF.getValue())); break;
538 case 4: OW->Write32(uint32_t(FF.getValue())); break;
539 case 8: OW->Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000540 }
541 }
542 break;
543 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000544
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000545 case MCFragment::FT_Inst:
546 llvm_unreachable("unexpected inst fragment after lowering");
547 break;
548
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000549 case MCFragment::FT_Org: {
550 MCOrgFragment &OF = cast<MCOrgFragment>(F);
551
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000552 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
Daniel Dunbarbdd92812010-03-19 09:28:55 +0000553 OW->Write8(uint8_t(OF.getValue()));
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000554
555 break;
556 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000557
558 case MCFragment::FT_ZeroFill: {
559 assert(0 && "Invalid zero fill fragment in concrete section!");
560 break;
561 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000562 }
563
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000564 assert(OW->getStream().tell() - Start == FragmentSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000565}
566
Daniel Dunbar53b23382010-03-19 09:28:59 +0000567void MCAssembler::WriteSectionData(const MCSectionData *SD,
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000568 const MCAsmLayout &Layout,
Daniel Dunbar53b23382010-03-19 09:28:59 +0000569 MCObjectWriter *OW) const {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000570 uint64_t SectionSize = Layout.getSectionSize(SD);
571 uint64_t SectionFileSize = Layout.getSectionFileSize(SD);
572
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000573 // Ignore virtual sections.
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000574 if (getBackend().isVirtualSection(SD->getSection())) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000575 assert(SectionFileSize == 0 && "Invalid size for section!");
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000576 return;
577 }
578
Daniel Dunbar53b23382010-03-19 09:28:59 +0000579 uint64_t Start = OW->getStream().tell();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000580 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000581
Daniel Dunbar53b23382010-03-19 09:28:59 +0000582 for (MCSectionData::const_iterator it = SD->begin(),
583 ie = SD->end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000584 WriteFragmentData(*this, Layout, *it, OW);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000585
Daniel Dunbar6742e342009-08-26 04:13:32 +0000586 // Add section padding.
Daniel Dunbar5d428512010-03-25 02:00:07 +0000587 assert(SectionFileSize >= SectionSize && "Invalid section sizes!");
588 OW->WriteZeros(SectionFileSize - SectionSize);
Daniel Dunbar6742e342009-08-26 04:13:32 +0000589
Daniel Dunbar5d428512010-03-25 02:00:07 +0000590 assert(OW->getStream().tell() - Start == SectionFileSize);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000591}
592
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000593void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000594 DEBUG_WITH_TYPE("mc-dump", {
595 llvm::errs() << "assembler backend - pre-layout\n--\n";
596 dump(); });
597
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000598 // Assign section and fragment ordinals, all subsequent backend code is
599 // responsible for updating these in place.
600 unsigned SectionIndex = 0;
601 unsigned FragmentIndex = 0;
602 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
603 it->setOrdinal(SectionIndex++);
604
605 for (MCSectionData::iterator it2 = it->begin(),
606 ie2 = it->end(); it2 != ie2; ++it2)
607 it2->setOrdinal(FragmentIndex++);
608 }
609
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000610 // Layout until everything fits.
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000611 MCAsmLayout Layout(*this);
612 while (LayoutOnce(Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000613 continue;
614
615 DEBUG_WITH_TYPE("mc-dump", {
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000616 llvm::errs() << "assembler backend - post-relaxation\n--\n";
617 dump(); });
618
619 // Finalize the layout, including fragment lowering.
620 FinishLayout(Layout);
621
622 DEBUG_WITH_TYPE("mc-dump", {
623 llvm::errs() << "assembler backend - final-layout\n--\n";
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000624 dump(); });
625
Daniel Dunbarff547842010-03-23 23:47:14 +0000626 uint64_t StartOffset = OS.tell();
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000627 llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS));
628 if (!Writer)
Chris Lattner75361b62010-04-07 22:58:41 +0000629 report_fatal_error("unable to create object writer!");
Daniel Dunbarbacba992010-03-19 07:09:33 +0000630
631 // Allow the object writer a chance to perform post-layout binding (for
632 // example, to set the index fields in the symbol data).
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000633 Writer->ExecutePostLayoutBinding(*this);
Daniel Dunbarbacba992010-03-19 07:09:33 +0000634
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000635 // Evaluate and apply the fixups, generating relocation entries as necessary.
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000636 for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) {
637 for (MCSectionData::iterator it2 = it->begin(),
638 ie2 = it->end(); it2 != ie2; ++it2) {
639 MCDataFragment *DF = dyn_cast<MCDataFragment>(it2);
640 if (!DF)
641 continue;
642
643 for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(),
644 ie3 = DF->fixup_end(); it3 != ie3; ++it3) {
645 MCAsmFixup &Fixup = *it3;
646
647 // Evaluate the fixup.
648 MCValue Target;
649 uint64_t FixedValue;
650 if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) {
651 // The fixup was unresolved, we need a relocation. Inform the object
652 // writer of the relocation, and give it an opportunity to adjust the
653 // fixup value if need be.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000654 Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000655 }
656
Daniel Dunbar87190c42010-03-19 09:28:12 +0000657 getBackend().ApplyFixup(Fixup, *DF, FixedValue);
Daniel Dunbarb1e98942010-03-19 07:09:47 +0000658 }
659 }
660 }
661
Daniel Dunbarbacba992010-03-19 07:09:33 +0000662 // Write the object file.
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000663 Writer->WriteObject(*this, Layout);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000664 OS.flush();
Daniel Dunbarff547842010-03-23 23:47:14 +0000665
666 stats::ObjectBytes += OS.tell() - StartOffset;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000667}
668
Daniel Dunbar9d39e612010-03-22 21:49:41 +0000669bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup,
670 const MCFragment *DF,
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000671 const MCAsmLayout &Layout) const {
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000672 if (getRelaxAll())
673 return true;
674
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000675 // If we cannot resolve the fixup value, it requires relaxation.
676 MCValue Target;
677 uint64_t Value;
678 if (!EvaluateFixup(Layout, Fixup, DF, Target, Value))
679 return true;
680
681 // Otherwise, relax if the value is too big for a (signed) i8.
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000682 //
683 // FIXME: This is target dependent!
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000684 return int64_t(Value) != int64_t(int8_t(Value));
685}
686
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000687bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF,
688 const MCAsmLayout &Layout) const {
689 // If this inst doesn't ever need relaxation, ignore it. This occurs when we
690 // are intentionally pushing out inst fragments, or because we relaxed a
691 // previous instruction to one that doesn't need relaxation.
692 if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups()))
693 return false;
694
695 for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(),
696 ie = IF->fixup_end(); it != ie; ++it)
697 if (FixupNeedsRelaxation(*it, IF, Layout))
698 return true;
699
700 return false;
701}
702
Daniel Dunbar8d39eb42010-03-22 20:35:35 +0000703bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) {
Daniel Dunbarff547842010-03-23 23:47:14 +0000704 ++stats::RelaxationSteps;
705
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000706 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000707 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000708 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000709 // Skip virtual sections.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000710 if (getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000711 continue;
712
Daniel Dunbar6742e342009-08-26 04:13:32 +0000713 // Layout the section fragments and its size.
Daniel Dunbarf476b002010-03-25 18:16:42 +0000714 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000715 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000716
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000717 // Layout the virtual sections.
718 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbarf476b002010-03-25 18:16:42 +0000719 if (!getBackend().isVirtualSection(it->getSection()))
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000720 continue;
721
Daniel Dunbarf476b002010-03-25 18:16:42 +0000722 // Layout the section fragments and its size.
723 Address = LayoutSection(*it, Layout, Address);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000724 }
725
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000726 // Scan for fragments that need relaxation.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000727 bool WasRelaxed = false;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000728 for (iterator it = begin(), ie = end(); it != ie; ++it) {
729 MCSectionData &SD = *it;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000730
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000731 for (MCSectionData::iterator it2 = SD.begin(),
732 ie2 = SD.end(); it2 != ie2; ++it2) {
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000733 // Check if this is an instruction fragment that needs relaxation.
734 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
735 if (!IF || !FragmentNeedsRelaxation(IF, Layout))
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000736 continue;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000737
Daniel Dunbarff547842010-03-23 23:47:14 +0000738 ++stats::RelaxedInstructions;
739
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000740 // FIXME-PERF: We could immediately lower out instructions if we can tell
741 // they are fully resolved, to avoid retesting on later passes.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000742
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000743 // Relax the fragment.
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000744
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000745 MCInst Relaxed;
746 getBackend().RelaxInstruction(IF, Relaxed);
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000747
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000748 // Encode the new instruction.
749 //
750 // FIXME-PERF: If it matters, we could let the target do this. It can
751 // probably do so more efficiently in many cases.
752 SmallVector<MCFixup, 4> Fixups;
753 SmallString<256> Code;
754 raw_svector_ostream VecOS(Code);
755 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
756 VecOS.flush();
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000757
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000758 // Update the instruction fragment.
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000759 int SlideAmount = Code.size() - IF->getInstSize();
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000760 IF->setInst(Relaxed);
761 IF->getCode() = Code;
762 IF->getFixups().clear();
763 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
764 MCFixup &F = Fixups[i];
765 IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
766 F.getKind()));
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000767 }
Daniel Dunbard8036fb2010-03-23 05:09:03 +0000768
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000769 // Update the layout, and remember that we relaxed. If we are relaxing
770 // everything, we can skip this step since nothing will depend on updating
771 // the values.
772 if (!getRelaxAll())
773 Layout.UpdateForSlide(IF, SlideAmount);
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000774 WasRelaxed = true;
Daniel Dunbarf08fde42010-03-12 22:07:14 +0000775 }
776 }
777
Daniel Dunbar0cc8bd42010-03-25 19:35:56 +0000778 return WasRelaxed;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000779}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000780
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000781void MCAssembler::FinishLayout(MCAsmLayout &Layout) {
782 // Lower out any instruction fragments, to simplify the fixup application and
783 // output.
784 //
785 // FIXME-PERF: We don't have to do this, but the assumption is that it is
786 // cheap (we will mostly end up eliminating fragments and appending on to data
787 // fragments), so the extra complexity downstream isn't worth it. Evaluate
788 // this assumption.
789 for (iterator it = begin(), ie = end(); it != ie; ++it) {
790 MCSectionData &SD = *it;
791
792 for (MCSectionData::iterator it2 = SD.begin(),
793 ie2 = SD.end(); it2 != ie2; ++it2) {
794 MCInstFragment *IF = dyn_cast<MCInstFragment>(it2);
795 if (!IF)
796 continue;
797
798 // Create a new data fragment for the instruction.
799 //
Daniel Dunbar337055e2010-03-23 03:13:05 +0000800 // FIXME-PERF: Reuse previous data fragment if possible.
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000801 MCDataFragment *DF = new MCDataFragment();
802 SD.getFragmentList().insert(it2, DF);
803
804 // Update the data fragments layout data.
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000805 //
806 // FIXME: Add MCAsmLayout utility for this.
Daniel Dunbar9799de92010-03-23 01:39:05 +0000807 DF->setParent(IF->getParent());
Daniel Dunbar651804c2010-05-11 17:22:50 +0000808 DF->setAtom(IF->getAtom());
Daniel Dunbar5a6e97a2010-03-25 07:10:11 +0000809 DF->setOrdinal(IF->getOrdinal());
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000810 Layout.setFragmentOffset(DF, Layout.getFragmentOffset(IF));
811 Layout.setFragmentEffectiveSize(DF, Layout.getFragmentEffectiveSize(IF));
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000812
Daniel Dunbar9799de92010-03-23 01:39:05 +0000813 // Copy in the data and the fixups.
814 DF->getContents().append(IF->getCode().begin(), IF->getCode().end());
815 for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i)
816 DF->getFixups().push_back(IF->getFixups()[i]);
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000817
818 // Delete the instruction fragment and update the iterator.
819 SD.getFragmentList().erase(IF);
820 it2 = DF;
821 }
822 }
823}
824
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000825// Debugging methods
826
827namespace llvm {
828
829raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000830 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
831 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000832 return OS;
833}
834
835}
836
837void MCFragment::dump() {
838 raw_ostream &OS = llvm::errs();
839
840 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
Daniel Dunbar432cd5f2010-03-25 02:00:02 +0000841 << " EffectiveSize:" << EffectiveSize;
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000842
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000843 OS << ">";
844}
845
846void MCAlignFragment::dump() {
847 raw_ostream &OS = llvm::errs();
848
849 OS << "<MCAlignFragment ";
850 this->MCFragment::dump();
851 OS << "\n ";
852 OS << " Alignment:" << getAlignment()
853 << " Value:" << getValue() << " ValueSize:" << getValueSize()
854 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
855}
856
857void MCDataFragment::dump() {
858 raw_ostream &OS = llvm::errs();
859
860 OS << "<MCDataFragment ";
861 this->MCFragment::dump();
862 OS << "\n ";
863 OS << " Contents:[";
864 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
865 if (i) OS << ",";
866 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
867 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000868 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000869
870 if (!getFixups().empty()) {
871 OS << ",\n ";
872 OS << " Fixups:[";
873 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000874 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000875 OS << *it;
876 }
877 OS << "]";
878 }
879
880 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000881}
882
883void MCFillFragment::dump() {
884 raw_ostream &OS = llvm::errs();
885
886 OS << "<MCFillFragment ";
887 this->MCFragment::dump();
888 OS << "\n ";
889 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
890 << " Count:" << getCount() << ">";
891}
892
Daniel Dunbar3f4dcd92010-03-22 23:16:48 +0000893void MCInstFragment::dump() {
894 raw_ostream &OS = llvm::errs();
895
896 OS << "<MCInstFragment ";
897 this->MCFragment::dump();
898 OS << "\n ";
899 OS << " Inst:";
900 getInst().dump_pretty(OS);
901 OS << ">";
902}
903
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000904void MCOrgFragment::dump() {
905 raw_ostream &OS = llvm::errs();
906
907 OS << "<MCOrgFragment ";
908 this->MCFragment::dump();
909 OS << "\n ";
910 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
911}
912
913void MCZeroFillFragment::dump() {
914 raw_ostream &OS = llvm::errs();
915
916 OS << "<MCZeroFillFragment ";
917 this->MCFragment::dump();
918 OS << "\n ";
919 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
920}
921
922void MCSectionData::dump() {
923 raw_ostream &OS = llvm::errs();
924
925 OS << "<MCSectionData";
926 OS << " Alignment:" << getAlignment() << " Address:" << Address
927 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000928 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000929 for (iterator it = begin(), ie = end(); it != ie; ++it) {
930 if (it != begin()) OS << ",\n ";
931 it->dump();
932 }
933 OS << "]>";
934}
935
936void MCSymbolData::dump() {
937 raw_ostream &OS = llvm::errs();
938
939 OS << "<MCSymbolData Symbol:" << getSymbol()
940 << " Fragment:" << getFragment() << " Offset:" << getOffset()
941 << " Flags:" << getFlags() << " Index:" << getIndex();
942 if (isCommon())
943 OS << " (common, size:" << getCommonSize()
944 << " align: " << getCommonAlignment() << ")";
945 if (isExternal())
946 OS << " (external)";
947 if (isPrivateExtern())
948 OS << " (private extern)";
949 OS << ">";
950}
951
952void MCAssembler::dump() {
953 raw_ostream &OS = llvm::errs();
954
955 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000956 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000957 for (iterator it = begin(), ie = end(); it != ie; ++it) {
958 if (it != begin()) OS << ",\n ";
959 it->dump();
960 }
961 OS << "],\n";
962 OS << " Symbols:[";
963
964 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +0000965 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +0000966 it->dump();
967 }
968 OS << "]>\n";
969}