Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 1 | //===- 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 Dunbar | 0adcd35 | 2009-08-25 21:10:45 +0000 | [diff] [blame] | 10 | #define DEBUG_TYPE "assembler" |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 11 | #include "llvm/MC/MCAssembler.h" |
Daniel Dunbar | 18ff2cc | 2010-03-11 05:53:33 +0000 | [diff] [blame] | 12 | #include "llvm/MC/MCAsmLayout.h" |
Daniel Dunbar | b36052f | 2010-03-19 10:43:23 +0000 | [diff] [blame] | 13 | #include "llvm/MC/MCCodeEmitter.h" |
Daniel Dunbar | 1253a6f | 2009-10-16 01:58:03 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCExpr.h" |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCObjectWriter.h" |
Daniel Dunbar | 1253a6f | 2009-10-16 01:58:03 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCSymbol.h" |
| 17 | #include "llvm/MC/MCValue.h" |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/OwningPtr.h" |
Daniel Dunbar | 0adcd35 | 2009-08-25 21:10:45 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/Statistic.h" |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/StringExtras.h" |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Twine.h" |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | ee0d892 | 2010-03-13 22:10:17 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetRegistry.h" |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetAsmBackend.h" |
Daniel Dunbar | f634676 | 2010-02-13 09:29:02 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 28 | #include <vector> |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 31 | namespace { |
| 32 | namespace stats { |
Daniel Dunbar | 0adcd35 | 2009-08-25 21:10:45 +0000 | [diff] [blame] | 33 | STATISTIC(EmittedFragments, "Number of emitted assembler fragments"); |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 34 | STATISTIC(EvaluateFixup, "Number of evaluated fixups"); |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 35 | STATISTIC(FragmentLayouts, "Number of fragment layouts"); |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 36 | STATISTIC(ObjectBytes, "Number of emitted object file bytes"); |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 37 | STATISTIC(RelaxationSteps, "Number of assembler layout and relaxation steps"); |
| 38 | STATISTIC(RelaxedInstructions, "Number of relaxed instructions"); |
| 39 | STATISTIC(SectionLayouts, "Number of section layouts"); |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 40 | } |
| 41 | } |
Daniel Dunbar | 0adcd35 | 2009-08-25 21:10:45 +0000 | [diff] [blame] | 42 | |
Daniel Dunbar | 8f4d146 | 2009-08-28 07:08:35 +0000 | [diff] [blame] | 43 | // 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 Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 48 | /* *** */ |
| 49 | |
Daniel Dunbar | bc1a0cf | 2010-05-12 15:42:59 +0000 | [diff] [blame] | 50 | MCAsmLayout::MCAsmLayout(MCAssembler &Asm) : Assembler(Asm) { |
| 51 | // Compute the section layout order. Virtual sections must go last. |
| 52 | for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) |
| 53 | if (!Asm.getBackend().isVirtualSection(it->getSection())) |
| 54 | SectionOrder.push_back(&*it); |
| 55 | for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) |
| 56 | if (Asm.getBackend().isVirtualSection(it->getSection())) |
| 57 | SectionOrder.push_back(&*it); |
| 58 | } |
| 59 | |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 60 | void MCAsmLayout::UpdateForSlide(MCFragment *F, int SlideAmount) { |
| 61 | // We shouldn't have to do anything special to support negative slides, and it |
Daniel Dunbar | 651804c | 2010-05-11 17:22:50 +0000 | [diff] [blame] | 62 | // is a perfectly valid thing to do as long as other parts of the system can |
| 63 | // guarantee convergence. |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 64 | assert(SlideAmount >= 0 && "Negative slides not yet supported"); |
| 65 | |
| 66 | // Update the layout by simply recomputing the layout for the entire |
| 67 | // file. This is trivially correct, but very slow. |
| 68 | // |
| 69 | // FIXME-PERF: This is O(N^2), but will be eliminated once we get smarter. |
| 70 | |
Daniel Dunbar | d13a0ca | 2010-05-12 17:56:47 +0000 | [diff] [blame] | 71 | // Layout the sections in order. |
| 72 | for (unsigned i = 0, e = getSectionOrder().size(); i != e; ++i) |
| 73 | getAssembler().LayoutSection(*this, i); |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Daniel Dunbar | aa0d350 | 2010-05-13 08:43:31 +0000 | [diff] [blame] | 76 | void MCAsmLayout::FragmentReplaced(MCFragment *Src, MCFragment *Dst) { |
| 77 | Dst->Offset = Src->Offset; |
| 78 | Dst->EffectiveSize = Src->EffectiveSize; |
| 79 | } |
| 80 | |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 81 | uint64_t MCAsmLayout::getFragmentAddress(const MCFragment *F) const { |
Daniel Dunbar | 7c3d45a | 2010-03-25 01:03:24 +0000 | [diff] [blame] | 82 | assert(F->getParent() && "Missing section()!"); |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 83 | return getSectionAddress(F->getParent()) + getFragmentOffset(F); |
| 84 | } |
| 85 | |
| 86 | uint64_t MCAsmLayout::getFragmentEffectiveSize(const MCFragment *F) const { |
| 87 | assert(F->EffectiveSize != ~UINT64_C(0) && "Address not set!"); |
| 88 | return F->EffectiveSize; |
| 89 | } |
| 90 | |
| 91 | void MCAsmLayout::setFragmentEffectiveSize(MCFragment *F, uint64_t Value) { |
| 92 | F->EffectiveSize = Value; |
| 93 | } |
| 94 | |
| 95 | uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const { |
| 96 | assert(F->Offset != ~UINT64_C(0) && "Address not set!"); |
| 97 | return F->Offset; |
| 98 | } |
| 99 | |
| 100 | void MCAsmLayout::setFragmentOffset(MCFragment *F, uint64_t Value) { |
| 101 | F->Offset = Value; |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | uint64_t MCAsmLayout::getSymbolAddress(const MCSymbolData *SD) const { |
Daniel Dunbar | 7c3d45a | 2010-03-25 01:03:24 +0000 | [diff] [blame] | 105 | assert(SD->getFragment() && "Invalid getAddress() on undefined symbol!"); |
| 106 | return getFragmentAddress(SD->getFragment()) + SD->getOffset(); |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | uint64_t MCAsmLayout::getSectionAddress(const MCSectionData *SD) const { |
Daniel Dunbar | 7c3d45a | 2010-03-25 01:03:24 +0000 | [diff] [blame] | 110 | assert(SD->Address != ~UINT64_C(0) && "Address not set!"); |
| 111 | return SD->Address; |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | void MCAsmLayout::setSectionAddress(MCSectionData *SD, uint64_t Value) { |
Daniel Dunbar | 7c3d45a | 2010-03-25 01:03:24 +0000 | [diff] [blame] | 115 | SD->Address = Value; |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Daniel Dunbar | 2661f11 | 2010-05-13 03:19:50 +0000 | [diff] [blame] | 118 | uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const { |
Daniel Dunbar | 2661f11 | 2010-05-13 03:19:50 +0000 | [diff] [blame] | 119 | // Otherwise, the size is the last fragment's end offset. |
| 120 | const MCFragment &F = SD->getFragmentList().back(); |
| 121 | return getFragmentOffset(&F) + getFragmentEffectiveSize(&F); |
Daniel Dunbar | 5d42851 | 2010-03-25 02:00:07 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const { |
Daniel Dunbar | 2661f11 | 2010-05-13 03:19:50 +0000 | [diff] [blame] | 125 | // Virtual sections have no file size. |
| 126 | if (getAssembler().getBackend().isVirtualSection(SD->getSection())) |
| 127 | return 0; |
| 128 | |
| 129 | // Otherwise, the file size is the same as the address space size. |
| 130 | return getSectionAddressSize(SD); |
Daniel Dunbar | 5d42851 | 2010-03-25 02:00:07 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Daniel Dunbar | 2661f11 | 2010-05-13 03:19:50 +0000 | [diff] [blame] | 133 | uint64_t MCAsmLayout::getSectionSize(const MCSectionData *SD) const { |
Daniel Dunbar | 2661f11 | 2010-05-13 03:19:50 +0000 | [diff] [blame] | 134 | // The logical size is the address space size minus any tail padding. |
| 135 | uint64_t Size = getSectionAddressSize(SD); |
| 136 | const MCAlignFragment *AF = |
| 137 | dyn_cast<MCAlignFragment>(&(SD->getFragmentList().back())); |
| 138 | if (AF && AF->hasOnlyAlignAddress()) |
| 139 | Size -= getFragmentEffectiveSize(AF); |
| 140 | |
| 141 | return Size; |
Daniel Dunbar | b5844ff | 2010-05-13 01:10:22 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 144 | /* *** */ |
| 145 | |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 146 | MCFragment::MCFragment() : Kind(FragmentType(~0)) { |
| 147 | } |
| 148 | |
Daniel Dunbar | 5e83596 | 2009-08-26 02:48:04 +0000 | [diff] [blame] | 149 | MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent) |
Daniel Dunbar | 071f73d | 2010-05-10 22:45:09 +0000 | [diff] [blame] | 150 | : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0)) |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 151 | { |
Daniel Dunbar | 5e83596 | 2009-08-26 02:48:04 +0000 | [diff] [blame] | 152 | if (Parent) |
| 153 | Parent->getFragmentList().push_back(this); |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 156 | MCFragment::~MCFragment() { |
| 157 | } |
| 158 | |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 159 | /* *** */ |
| 160 | |
Daniel Dunbar | 81e4000 | 2009-08-27 00:38:04 +0000 | [diff] [blame] | 161 | MCSectionData::MCSectionData() : Section(0) {} |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 162 | |
| 163 | MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A) |
Daniel Dunbar | 81e4000 | 2009-08-27 00:38:04 +0000 | [diff] [blame] | 164 | : Section(&_Section), |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 165 | Alignment(1), |
Daniel Dunbar | 5e83596 | 2009-08-26 02:48:04 +0000 | [diff] [blame] | 166 | Address(~UINT64_C(0)), |
Daniel Dunbar | e1ec617 | 2010-02-02 21:44:01 +0000 | [diff] [blame] | 167 | HasInstructions(false) |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 168 | { |
| 169 | if (A) |
| 170 | A->getSectionList().push_back(this); |
| 171 | } |
| 172 | |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 173 | /* *** */ |
| 174 | |
Daniel Dunbar | efbb533 | 2009-09-01 04:09:03 +0000 | [diff] [blame] | 175 | MCSymbolData::MCSymbolData() : Symbol(0) {} |
Daniel Dunbar | f3d2ef0 | 2009-08-22 10:13:24 +0000 | [diff] [blame] | 176 | |
Daniel Dunbar | cb579b3 | 2009-08-31 08:08:06 +0000 | [diff] [blame] | 177 | MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment, |
Daniel Dunbar | f3d2ef0 | 2009-08-22 10:13:24 +0000 | [diff] [blame] | 178 | uint64_t _Offset, MCAssembler *A) |
Daniel Dunbar | efbb533 | 2009-09-01 04:09:03 +0000 | [diff] [blame] | 179 | : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset), |
Daniel Dunbar | 8f4d146 | 2009-08-28 07:08:35 +0000 | [diff] [blame] | 180 | IsExternal(false), IsPrivateExtern(false), |
| 181 | CommonSize(0), CommonAlign(0), Flags(0), Index(0) |
Daniel Dunbar | f3d2ef0 | 2009-08-22 10:13:24 +0000 | [diff] [blame] | 182 | { |
| 183 | if (A) |
| 184 | A->getSymbolList().push_back(this); |
| 185 | } |
| 186 | |
| 187 | /* *** */ |
| 188 | |
Daniel Dunbar | 1f3e445 | 2010-03-11 01:34:27 +0000 | [diff] [blame] | 189 | MCAssembler::MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend, |
Daniel Dunbar | cf871e5 | 2010-03-19 10:43:18 +0000 | [diff] [blame] | 190 | MCCodeEmitter &_Emitter, raw_ostream &_OS) |
| 191 | : Context(_Context), Backend(_Backend), Emitter(_Emitter), |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 192 | OS(_OS), RelaxAll(false), SubsectionsViaSymbols(false) |
Daniel Dunbar | 6009db4 | 2009-08-26 21:22:22 +0000 | [diff] [blame] | 193 | { |
| 194 | } |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 195 | |
| 196 | MCAssembler::~MCAssembler() { |
| 197 | } |
| 198 | |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 199 | static bool isScatteredFixupFullyResolvedSimple(const MCAssembler &Asm, |
| 200 | const MCAsmFixup &Fixup, |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 201 | const MCValue Target, |
| 202 | const MCSection *BaseSection) { |
| 203 | // The effective fixup address is |
| 204 | // addr(atom(A)) + offset(A) |
| 205 | // - addr(atom(B)) - offset(B) |
| 206 | // - addr(<base symbol>) + <fixup offset from base symbol> |
| 207 | // and the offsets are not relocatable, so the fixup is fully resolved when |
| 208 | // addr(atom(A)) - addr(atom(B)) - addr(<base symbol>)) == 0. |
| 209 | // |
| 210 | // The simple (Darwin, except on x86_64) way of dealing with this was to |
| 211 | // assume that any reference to a temporary symbol *must* be a temporary |
| 212 | // symbol in the same atom, unless the sections differ. Therefore, any PCrel |
| 213 | // relocation to a temporary symbol (in the same section) is fully |
| 214 | // resolved. This also works in conjunction with absolutized .set, which |
| 215 | // requires the compiler to use .set to absolutize the differences between |
| 216 | // symbols which the compiler knows to be assembly time constants, so we don't |
Daniel Dunbar | 31e8e1d | 2010-05-04 00:33:07 +0000 | [diff] [blame] | 217 | // need to worry about considering symbol differences fully resolved. |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 218 | |
| 219 | // Non-relative fixups are only resolved if constant. |
| 220 | if (!BaseSection) |
| 221 | return Target.isAbsolute(); |
| 222 | |
| 223 | // Otherwise, relative fixups are only resolved if not a difference and the |
| 224 | // target is a temporary in the same section. |
| 225 | if (Target.isAbsolute() || Target.getSymB()) |
| 226 | return false; |
| 227 | |
| 228 | const MCSymbol *A = &Target.getSymA()->getSymbol(); |
| 229 | if (!A->isTemporary() || !A->isInSection() || |
| 230 | &A->getSection() != BaseSection) |
| 231 | return false; |
| 232 | |
| 233 | return true; |
| 234 | } |
| 235 | |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 236 | static bool isScatteredFixupFullyResolved(const MCAssembler &Asm, |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 237 | const MCAsmLayout &Layout, |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 238 | const MCAsmFixup &Fixup, |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 239 | const MCValue Target, |
| 240 | const MCSymbolData *BaseSymbol) { |
| 241 | // The effective fixup address is |
| 242 | // addr(atom(A)) + offset(A) |
| 243 | // - addr(atom(B)) - offset(B) |
| 244 | // - addr(BaseSymbol) + <fixup offset from base symbol> |
| 245 | // and the offsets are not relocatable, so the fixup is fully resolved when |
| 246 | // addr(atom(A)) - addr(atom(B)) - addr(BaseSymbol) == 0. |
| 247 | // |
| 248 | // Note that "false" is almost always conservatively correct (it means we emit |
| 249 | // a relocation which is unnecessary), except when it would force us to emit a |
| 250 | // relocation which the target cannot encode. |
| 251 | |
| 252 | const MCSymbolData *A_Base = 0, *B_Base = 0; |
| 253 | if (const MCSymbolRefExpr *A = Target.getSymA()) { |
| 254 | // Modified symbol references cannot be resolved. |
| 255 | if (A->getKind() != MCSymbolRefExpr::VK_None) |
| 256 | return false; |
| 257 | |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 258 | A_Base = Asm.getAtom(Layout, &Asm.getSymbolData(A->getSymbol())); |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 259 | if (!A_Base) |
| 260 | return false; |
| 261 | } |
| 262 | |
| 263 | if (const MCSymbolRefExpr *B = Target.getSymB()) { |
| 264 | // Modified symbol references cannot be resolved. |
| 265 | if (B->getKind() != MCSymbolRefExpr::VK_None) |
| 266 | return false; |
| 267 | |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 268 | B_Base = Asm.getAtom(Layout, &Asm.getSymbolData(B->getSymbol())); |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 269 | if (!B_Base) |
| 270 | return false; |
| 271 | } |
| 272 | |
| 273 | // If there is no base, A and B have to be the same atom for this fixup to be |
| 274 | // fully resolved. |
| 275 | if (!BaseSymbol) |
| 276 | return A_Base == B_Base; |
| 277 | |
| 278 | // Otherwise, B must be missing and A must be the base. |
| 279 | return !B_Base && BaseSymbol == A_Base; |
| 280 | } |
| 281 | |
Daniel Dunbar | 2386985 | 2010-03-19 03:18:09 +0000 | [diff] [blame] | 282 | bool MCAssembler::isSymbolLinkerVisible(const MCSymbolData *SD) const { |
| 283 | // Non-temporary labels should always be visible to the linker. |
| 284 | if (!SD->getSymbol().isTemporary()) |
| 285 | return true; |
| 286 | |
| 287 | // Absolute temporary labels are never visible. |
| 288 | if (!SD->getFragment()) |
| 289 | return false; |
| 290 | |
| 291 | // Otherwise, check if the section requires symbols even for temporary labels. |
| 292 | return getBackend().doesSectionRequireSymbols( |
| 293 | SD->getFragment()->getParent()->getSection()); |
| 294 | } |
| 295 | |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 296 | const MCSymbolData *MCAssembler::getAtom(const MCAsmLayout &Layout, |
| 297 | const MCSymbolData *SD) const { |
Daniel Dunbar | 8ad0dcc | 2010-03-19 03:18:15 +0000 | [diff] [blame] | 298 | // Linker visible symbols define atoms. |
| 299 | if (isSymbolLinkerVisible(SD)) |
| 300 | return SD; |
| 301 | |
| 302 | // Absolute and undefined symbols have no defining atom. |
| 303 | if (!SD->getFragment()) |
| 304 | return 0; |
| 305 | |
Daniel Dunbar | a5f1d57 | 2010-05-12 00:38:17 +0000 | [diff] [blame] | 306 | // Non-linker visible symbols in sections which can't be atomized have no |
| 307 | // defining atom. |
| 308 | if (!getBackend().isSectionAtomizable( |
| 309 | SD->getFragment()->getParent()->getSection())) |
| 310 | return 0; |
| 311 | |
Daniel Dunbar | 651804c | 2010-05-11 17:22:50 +0000 | [diff] [blame] | 312 | // Otherwise, return the atom for the containing fragment. |
| 313 | return SD->getFragment()->getAtom(); |
Daniel Dunbar | 8ad0dcc | 2010-03-19 03:18:15 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Daniel Dunbar | 9d39e61 | 2010-03-22 21:49:41 +0000 | [diff] [blame] | 316 | bool MCAssembler::EvaluateFixup(const MCAsmLayout &Layout, |
| 317 | const MCAsmFixup &Fixup, const MCFragment *DF, |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 318 | MCValue &Target, uint64_t &Value) const { |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 319 | ++stats::EvaluateFixup; |
| 320 | |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 321 | if (!Fixup.Value->EvaluateAsRelocatable(Target, &Layout)) |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 322 | report_fatal_error("expected relocatable expression"); |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 323 | |
| 324 | // FIXME: How do non-scattered symbols work in ELF? I presume the linker |
| 325 | // doesn't support small relocations, but then under what criteria does the |
| 326 | // assembler allow symbol differences? |
| 327 | |
| 328 | Value = Target.getConstant(); |
| 329 | |
Daniel Dunbar | b36052f | 2010-03-19 10:43:23 +0000 | [diff] [blame] | 330 | bool IsPCRel = |
| 331 | Emitter.getFixupKindInfo(Fixup.Kind).Flags & MCFixupKindInfo::FKF_IsPCRel; |
| 332 | bool IsResolved = true; |
Daniel Dunbar | 9a1d200 | 2010-03-18 00:59:10 +0000 | [diff] [blame] | 333 | if (const MCSymbolRefExpr *A = Target.getSymA()) { |
| 334 | if (A->getSymbol().isDefined()) |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 335 | Value += Layout.getSymbolAddress(&getSymbolData(A->getSymbol())); |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 336 | else |
| 337 | IsResolved = false; |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 338 | } |
Daniel Dunbar | 9a1d200 | 2010-03-18 00:59:10 +0000 | [diff] [blame] | 339 | if (const MCSymbolRefExpr *B = Target.getSymB()) { |
| 340 | if (B->getSymbol().isDefined()) |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 341 | Value -= Layout.getSymbolAddress(&getSymbolData(B->getSymbol())); |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 342 | else |
| 343 | IsResolved = false; |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 344 | } |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 345 | |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 346 | // If we are using scattered symbols, determine whether this value is actually |
| 347 | // resolved; scattering may cause atoms to move. |
| 348 | if (IsResolved && getBackend().hasScatteredSymbols()) { |
| 349 | if (getBackend().hasReliableSymbolDifference()) { |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 350 | // If this is a PCrel relocation, find the base atom (identified by its |
| 351 | // symbol) that the fixup value is relative to. |
| 352 | const MCSymbolData *BaseSymbol = 0; |
| 353 | if (IsPCRel) { |
Daniel Dunbar | 651804c | 2010-05-11 17:22:50 +0000 | [diff] [blame] | 354 | BaseSymbol = DF->getAtom(); |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 355 | if (!BaseSymbol) |
| 356 | IsResolved = false; |
| 357 | } |
| 358 | |
| 359 | if (IsResolved) |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 360 | IsResolved = isScatteredFixupFullyResolved(*this, Layout, Fixup, Target, |
Daniel Dunbar | 034843a | 2010-03-19 03:18:18 +0000 | [diff] [blame] | 361 | BaseSymbol); |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 362 | } else { |
| 363 | const MCSection *BaseSection = 0; |
| 364 | if (IsPCRel) |
| 365 | BaseSection = &DF->getParent()->getSection(); |
| 366 | |
Daniel Dunbar | c6f5982 | 2010-03-22 21:49:38 +0000 | [diff] [blame] | 367 | IsResolved = isScatteredFixupFullyResolvedSimple(*this, Fixup, Target, |
Daniel Dunbar | 939f8d7 | 2010-03-19 03:18:12 +0000 | [diff] [blame] | 368 | BaseSection); |
| 369 | } |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | if (IsPCRel) |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 373 | Value -= Layout.getFragmentAddress(DF) + Fixup.Offset; |
Daniel Dunbar | df3c8f2 | 2010-03-12 21:00:49 +0000 | [diff] [blame] | 374 | |
| 375 | return IsResolved; |
| 376 | } |
| 377 | |
Daniel Dunbar | f0d17d2 | 2010-05-12 21:35:25 +0000 | [diff] [blame] | 378 | void MCAssembler::LayoutFragment(MCAsmLayout &Layout, MCFragment &F) { |
| 379 | uint64_t StartAddress = Layout.getSectionAddress(F.getParent()); |
| 380 | |
| 381 | // Get the fragment start address. |
| 382 | uint64_t Address = StartAddress; |
| 383 | MCSectionData::iterator it = &F; |
| 384 | if (MCFragment *Prev = F.getPrevNode()) |
| 385 | Address = (StartAddress + Layout.getFragmentOffset(Prev) + |
| 386 | Layout.getFragmentEffectiveSize(Prev)); |
| 387 | |
| 388 | ++stats::FragmentLayouts; |
| 389 | |
| 390 | uint64_t FragmentOffset = Address - StartAddress; |
| 391 | Layout.setFragmentOffset(&F, FragmentOffset); |
| 392 | |
| 393 | // Evaluate fragment size. |
| 394 | uint64_t EffectiveSize = 0; |
| 395 | switch (F.getKind()) { |
| 396 | case MCFragment::FT_Align: { |
| 397 | MCAlignFragment &AF = cast<MCAlignFragment>(F); |
| 398 | |
Daniel Dunbar | 456b501 | 2010-05-13 01:10:26 +0000 | [diff] [blame] | 399 | assert((!AF.hasOnlyAlignAddress() || !AF.getNextNode()) && |
| 400 | "Invalid OnlyAlignAddress bit, not the last fragment!"); |
| 401 | |
Daniel Dunbar | f0d17d2 | 2010-05-12 21:35:25 +0000 | [diff] [blame] | 402 | EffectiveSize = OffsetToAlignment(Address, AF.getAlignment()); |
| 403 | if (EffectiveSize > AF.getMaxBytesToEmit()) |
| 404 | EffectiveSize = 0; |
| 405 | break; |
| 406 | } |
| 407 | |
| 408 | case MCFragment::FT_Data: |
| 409 | EffectiveSize = cast<MCDataFragment>(F).getContents().size(); |
| 410 | break; |
| 411 | |
| 412 | case MCFragment::FT_Fill: { |
Daniel Dunbar | 4e54487 | 2010-05-12 22:51:38 +0000 | [diff] [blame] | 413 | EffectiveSize = cast<MCFillFragment>(F).getSize(); |
Daniel Dunbar | f0d17d2 | 2010-05-12 21:35:25 +0000 | [diff] [blame] | 414 | break; |
| 415 | } |
| 416 | |
| 417 | case MCFragment::FT_Inst: |
| 418 | EffectiveSize = cast<MCInstFragment>(F).getInstSize(); |
| 419 | break; |
| 420 | |
| 421 | case MCFragment::FT_Org: { |
| 422 | MCOrgFragment &OF = cast<MCOrgFragment>(F); |
| 423 | |
| 424 | int64_t TargetLocation; |
| 425 | if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, &Layout)) |
| 426 | report_fatal_error("expected assembly-time absolute expression"); |
| 427 | |
| 428 | // FIXME: We need a way to communicate this error. |
| 429 | int64_t Offset = TargetLocation - FragmentOffset; |
| 430 | if (Offset < 0) |
| 431 | report_fatal_error("invalid .org offset '" + Twine(TargetLocation) + |
| 432 | "' (at offset '" + Twine(FragmentOffset) + "'"); |
| 433 | |
| 434 | EffectiveSize = Offset; |
| 435 | break; |
| 436 | } |
Daniel Dunbar | f0d17d2 | 2010-05-12 21:35:25 +0000 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | Layout.setFragmentEffectiveSize(&F, EffectiveSize); |
| 440 | } |
| 441 | |
Daniel Dunbar | d13a0ca | 2010-05-12 17:56:47 +0000 | [diff] [blame] | 442 | void MCAssembler::LayoutSection(MCAsmLayout &Layout, |
| 443 | unsigned SectionOrderIndex) { |
| 444 | MCSectionData &SD = *Layout.getSectionOrder()[SectionOrderIndex]; |
Daniel Dunbar | f476b00 | 2010-03-25 18:16:42 +0000 | [diff] [blame] | 445 | |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 446 | ++stats::SectionLayouts; |
| 447 | |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 448 | // Compute the section start address. |
Daniel Dunbar | d13a0ca | 2010-05-12 17:56:47 +0000 | [diff] [blame] | 449 | uint64_t StartAddress = 0; |
| 450 | if (SectionOrderIndex) { |
| 451 | MCSectionData *Prev = Layout.getSectionOrder()[SectionOrderIndex - 1]; |
Daniel Dunbar | b5844ff | 2010-05-13 01:10:22 +0000 | [diff] [blame] | 452 | StartAddress = (Layout.getSectionAddress(Prev) + |
| 453 | Layout.getSectionAddressSize(Prev)); |
Daniel Dunbar | d13a0ca | 2010-05-12 17:56:47 +0000 | [diff] [blame] | 454 | } |
| 455 | |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 456 | // Honor the section alignment requirements. |
| 457 | StartAddress = RoundUpToAlignment(StartAddress, SD.getAlignment()); |
Daniel Dunbar | f476b00 | 2010-03-25 18:16:42 +0000 | [diff] [blame] | 458 | |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 459 | // Set the section address. |
Daniel Dunbar | be644a3 | 2010-03-25 18:16:38 +0000 | [diff] [blame] | 460 | Layout.setSectionAddress(&SD, StartAddress); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 461 | |
Daniel Dunbar | f0d17d2 | 2010-05-12 21:35:25 +0000 | [diff] [blame] | 462 | for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) |
| 463 | LayoutFragment(Layout, *it); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 466 | /// WriteFragmentData - Write the \arg F data to the output file. |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 467 | static void WriteFragmentData(const MCAssembler &Asm, const MCAsmLayout &Layout, |
| 468 | const MCFragment &F, MCObjectWriter *OW) { |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 469 | uint64_t Start = OW->getStream().tell(); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 470 | (void) Start; |
Daniel Dunbar | 7eb8519 | 2009-10-16 01:58:15 +0000 | [diff] [blame] | 471 | |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 472 | ++stats::EmittedFragments; |
Daniel Dunbar | 0adcd35 | 2009-08-25 21:10:45 +0000 | [diff] [blame] | 473 | |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 474 | // FIXME: Embed in fragments instead? |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 475 | uint64_t FragmentSize = Layout.getFragmentEffectiveSize(&F); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 476 | switch (F.getKind()) { |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 477 | case MCFragment::FT_Align: { |
| 478 | MCAlignFragment &AF = cast<MCAlignFragment>(F); |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 479 | uint64_t Count = FragmentSize / AF.getValueSize(); |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 480 | |
Daniel Dunbar | e73d49e | 2010-05-12 22:51:27 +0000 | [diff] [blame] | 481 | assert(AF.getValueSize() && "Invalid virtual align in concrete fragment!"); |
| 482 | |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 483 | // FIXME: This error shouldn't actually occur (the front end should emit |
| 484 | // multiple .align directives to enforce the semantics it wants), but is |
| 485 | // severe enough that we want to report it. How to handle this? |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 486 | if (Count * AF.getValueSize() != FragmentSize) |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 487 | report_fatal_error("undefined .align directive, value size '" + |
Daniel Dunbar | 7eb8519 | 2009-10-16 01:58:15 +0000 | [diff] [blame] | 488 | Twine(AF.getValueSize()) + |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 489 | "' is not a divisor of padding size '" + |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 490 | Twine(FragmentSize) + "'"); |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 491 | |
Kevin Enderby | 6e72048 | 2010-02-23 18:26:34 +0000 | [diff] [blame] | 492 | // See if we are aligning with nops, and if so do that first to try to fill |
| 493 | // the Count bytes. Then if that did not fill any bytes or there are any |
| 494 | // bytes left to fill use the the Value and ValueSize to fill the rest. |
Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame] | 495 | // If we are aligning with nops, ask that target to emit the right data. |
Daniel Dunbar | 1c15413 | 2010-05-12 22:56:23 +0000 | [diff] [blame] | 496 | if (AF.hasEmitNops()) { |
Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame] | 497 | if (!Asm.getBackend().WriteNopData(Count, OW)) |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 498 | report_fatal_error("unable to write nop sequence of " + |
Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame] | 499 | Twine(Count) + " bytes"); |
| 500 | break; |
Kevin Enderby | 6e72048 | 2010-02-23 18:26:34 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame] | 503 | // Otherwise, write out in multiples of the value size. |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 504 | for (uint64_t i = 0; i != Count; ++i) { |
| 505 | switch (AF.getValueSize()) { |
| 506 | default: |
| 507 | assert(0 && "Invalid size!"); |
Daniel Dunbar | bdd9281 | 2010-03-19 09:28:55 +0000 | [diff] [blame] | 508 | case 1: OW->Write8 (uint8_t (AF.getValue())); break; |
| 509 | case 2: OW->Write16(uint16_t(AF.getValue())); break; |
| 510 | case 4: OW->Write32(uint32_t(AF.getValue())); break; |
| 511 | case 8: OW->Write64(uint64_t(AF.getValue())); break; |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | break; |
| 515 | } |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 516 | |
Daniel Dunbar | 3a30b82 | 2010-02-13 09:28:15 +0000 | [diff] [blame] | 517 | case MCFragment::FT_Data: { |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 518 | MCDataFragment &DF = cast<MCDataFragment>(F); |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 519 | assert(FragmentSize == DF.getContents().size() && "Invalid size!"); |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 520 | OW->WriteBytes(DF.getContents().str()); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 521 | break; |
Daniel Dunbar | 3a30b82 | 2010-02-13 09:28:15 +0000 | [diff] [blame] | 522 | } |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 523 | |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 524 | case MCFragment::FT_Fill: { |
| 525 | MCFillFragment &FF = cast<MCFillFragment>(F); |
Daniel Dunbar | e2fee5b | 2010-05-12 22:51:35 +0000 | [diff] [blame] | 526 | |
| 527 | assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!"); |
| 528 | |
Daniel Dunbar | 3153fec | 2010-05-12 22:51:32 +0000 | [diff] [blame] | 529 | for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) { |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 530 | switch (FF.getValueSize()) { |
| 531 | default: |
| 532 | assert(0 && "Invalid size!"); |
Daniel Dunbar | bdd9281 | 2010-03-19 09:28:55 +0000 | [diff] [blame] | 533 | case 1: OW->Write8 (uint8_t (FF.getValue())); break; |
| 534 | case 2: OW->Write16(uint16_t(FF.getValue())); break; |
| 535 | case 4: OW->Write32(uint32_t(FF.getValue())); break; |
| 536 | case 8: OW->Write64(uint64_t(FF.getValue())); break; |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 537 | } |
| 538 | } |
| 539 | break; |
| 540 | } |
Daniel Dunbar | 7eb8519 | 2009-10-16 01:58:15 +0000 | [diff] [blame] | 541 | |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 542 | case MCFragment::FT_Inst: |
| 543 | llvm_unreachable("unexpected inst fragment after lowering"); |
| 544 | break; |
| 545 | |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 546 | case MCFragment::FT_Org: { |
| 547 | MCOrgFragment &OF = cast<MCOrgFragment>(F); |
| 548 | |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 549 | for (uint64_t i = 0, e = FragmentSize; i != e; ++i) |
Daniel Dunbar | bdd9281 | 2010-03-19 09:28:55 +0000 | [diff] [blame] | 550 | OW->Write8(uint8_t(OF.getValue())); |
Daniel Dunbar | d6f761e | 2009-08-21 23:07:38 +0000 | [diff] [blame] | 551 | |
| 552 | break; |
| 553 | } |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 556 | assert(OW->getStream().tell() - Start == FragmentSize); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 559 | void MCAssembler::WriteSectionData(const MCSectionData *SD, |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 560 | const MCAsmLayout &Layout, |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 561 | MCObjectWriter *OW) const { |
Daniel Dunbar | d5a8e98 | 2009-08-28 05:49:21 +0000 | [diff] [blame] | 562 | // Ignore virtual sections. |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 563 | if (getBackend().isVirtualSection(SD->getSection())) { |
Daniel Dunbar | 054be92 | 2010-05-13 03:50:50 +0000 | [diff] [blame] | 564 | assert(Layout.getSectionFileSize(SD) == 0 && "Invalid size for section!"); |
Daniel Dunbar | e2fee5b | 2010-05-12 22:51:35 +0000 | [diff] [blame] | 565 | |
| 566 | // Check that contents are only things legal inside a virtual section. |
| 567 | for (MCSectionData::const_iterator it = SD->begin(), |
| 568 | ie = SD->end(); it != ie; ++it) { |
| 569 | switch (it->getKind()) { |
| 570 | default: |
| 571 | assert(0 && "Invalid fragment in virtual section!"); |
| 572 | case MCFragment::FT_Align: |
| 573 | assert(!cast<MCAlignFragment>(it)->getValueSize() && |
| 574 | "Invalid align in virtual section!"); |
| 575 | break; |
| 576 | case MCFragment::FT_Fill: |
| 577 | assert(!cast<MCFillFragment>(it)->getValueSize() && |
| 578 | "Invalid fill in virtual section!"); |
| 579 | break; |
Daniel Dunbar | e2fee5b | 2010-05-12 22:51:35 +0000 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | |
Daniel Dunbar | d5a8e98 | 2009-08-28 05:49:21 +0000 | [diff] [blame] | 583 | return; |
| 584 | } |
| 585 | |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 586 | uint64_t Start = OW->getStream().tell(); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 587 | (void) Start; |
Daniel Dunbar | 7eb8519 | 2009-10-16 01:58:15 +0000 | [diff] [blame] | 588 | |
Daniel Dunbar | 53b2338 | 2010-03-19 09:28:59 +0000 | [diff] [blame] | 589 | for (MCSectionData::const_iterator it = SD->begin(), |
| 590 | ie = SD->end(); it != ie; ++it) |
Daniel Dunbar | 432cd5f | 2010-03-25 02:00:02 +0000 | [diff] [blame] | 591 | WriteFragmentData(*this, Layout, *it, OW); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 592 | |
Daniel Dunbar | 054be92 | 2010-05-13 03:50:50 +0000 | [diff] [blame] | 593 | assert(OW->getStream().tell() - Start == Layout.getSectionFileSize(SD)); |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 594 | } |
| 595 | |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 596 | void MCAssembler::Finish() { |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 597 | DEBUG_WITH_TYPE("mc-dump", { |
| 598 | llvm::errs() << "assembler backend - pre-layout\n--\n"; |
| 599 | dump(); }); |
| 600 | |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 601 | // Create the layout object. |
Daniel Dunbar | 8d39eb4 | 2010-03-22 20:35:35 +0000 | [diff] [blame] | 602 | MCAsmLayout Layout(*this); |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 603 | |
Daniel Dunbar | f60c736 | 2010-05-13 15:17:26 +0000 | [diff] [blame^] | 604 | // Assign layout order indices. |
| 605 | for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i) |
| 606 | Layout.getSectionOrder()[i]->setLayoutOrder(i); |
| 607 | |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 608 | // Insert additional align fragments for concrete sections to explicitly pad |
| 609 | // the previous section to match their alignment requirements. This is for |
| 610 | // 'gas' compatibility, it shouldn't strictly be necessary. |
| 611 | // |
| 612 | // FIXME: This may be Mach-O specific. |
| 613 | for (unsigned i = 1, e = Layout.getSectionOrder().size(); i < e; ++i) { |
| 614 | MCSectionData *SD = Layout.getSectionOrder()[i]; |
| 615 | |
| 616 | // Ignore sections without alignment requirements. |
| 617 | unsigned Align = SD->getAlignment(); |
| 618 | if (Align <= 1) |
| 619 | continue; |
| 620 | |
| 621 | // Ignore virtual sections, they don't cause file size modifications. |
| 622 | if (getBackend().isVirtualSection(SD->getSection())) |
| 623 | continue; |
| 624 | |
| 625 | // Otherwise, create a new align fragment at the end of the previous |
| 626 | // section. |
| 627 | MCAlignFragment *AF = new MCAlignFragment(Align, 0, 1, Align, |
| 628 | Layout.getSectionOrder()[i - 1]); |
| 629 | AF->setOnlyAlignAddress(true); |
| 630 | } |
| 631 | |
Daniel Dunbar | 49ed921 | 2010-05-13 08:43:37 +0000 | [diff] [blame] | 632 | // Assign section and fragment ordinals, all subsequent backend code is |
| 633 | // responsible for updating these in place. |
| 634 | unsigned SectionIndex = 0; |
| 635 | unsigned FragmentIndex = 0; |
| 636 | for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) { |
| 637 | // Create dummy fragments to eliminate any empty sections, this simplifies |
| 638 | // layout. |
| 639 | if (it->getFragmentList().empty()) { |
| 640 | unsigned ValueSize = 1; |
| 641 | if (getBackend().isVirtualSection(it->getSection())) |
| 642 | ValueSize = 1; |
| 643 | new MCFillFragment(0, 1, 0, it); |
| 644 | } |
| 645 | |
| 646 | it->setOrdinal(SectionIndex++); |
| 647 | |
| 648 | for (MCSectionData::iterator it2 = it->begin(), |
| 649 | ie2 = it->end(); it2 != ie2; ++it2) |
| 650 | it2->setOrdinal(FragmentIndex++); |
| 651 | } |
| 652 | |
Daniel Dunbar | 61066db | 2010-05-13 02:34:14 +0000 | [diff] [blame] | 653 | // Layout until everything fits. |
Daniel Dunbar | 8d39eb4 | 2010-03-22 20:35:35 +0000 | [diff] [blame] | 654 | while (LayoutOnce(Layout)) |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 655 | continue; |
| 656 | |
| 657 | DEBUG_WITH_TYPE("mc-dump", { |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 658 | llvm::errs() << "assembler backend - post-relaxation\n--\n"; |
| 659 | dump(); }); |
| 660 | |
| 661 | // Finalize the layout, including fragment lowering. |
| 662 | FinishLayout(Layout); |
| 663 | |
| 664 | DEBUG_WITH_TYPE("mc-dump", { |
| 665 | llvm::errs() << "assembler backend - final-layout\n--\n"; |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 666 | dump(); }); |
| 667 | |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 668 | uint64_t StartOffset = OS.tell(); |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 669 | llvm::OwningPtr<MCObjectWriter> Writer(getBackend().createObjectWriter(OS)); |
| 670 | if (!Writer) |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 671 | report_fatal_error("unable to create object writer!"); |
Daniel Dunbar | bacba99 | 2010-03-19 07:09:33 +0000 | [diff] [blame] | 672 | |
| 673 | // Allow the object writer a chance to perform post-layout binding (for |
| 674 | // example, to set the index fields in the symbol data). |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 675 | Writer->ExecutePostLayoutBinding(*this); |
Daniel Dunbar | bacba99 | 2010-03-19 07:09:33 +0000 | [diff] [blame] | 676 | |
Daniel Dunbar | b1e9894 | 2010-03-19 07:09:47 +0000 | [diff] [blame] | 677 | // Evaluate and apply the fixups, generating relocation entries as necessary. |
Daniel Dunbar | b1e9894 | 2010-03-19 07:09:47 +0000 | [diff] [blame] | 678 | for (MCAssembler::iterator it = begin(), ie = end(); it != ie; ++it) { |
| 679 | for (MCSectionData::iterator it2 = it->begin(), |
| 680 | ie2 = it->end(); it2 != ie2; ++it2) { |
| 681 | MCDataFragment *DF = dyn_cast<MCDataFragment>(it2); |
| 682 | if (!DF) |
| 683 | continue; |
| 684 | |
| 685 | for (MCDataFragment::fixup_iterator it3 = DF->fixup_begin(), |
| 686 | ie3 = DF->fixup_end(); it3 != ie3; ++it3) { |
| 687 | MCAsmFixup &Fixup = *it3; |
| 688 | |
| 689 | // Evaluate the fixup. |
| 690 | MCValue Target; |
| 691 | uint64_t FixedValue; |
| 692 | if (!EvaluateFixup(Layout, Fixup, DF, Target, FixedValue)) { |
| 693 | // The fixup was unresolved, we need a relocation. Inform the object |
| 694 | // writer of the relocation, and give it an opportunity to adjust the |
| 695 | // fixup value if need be. |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 696 | Writer->RecordRelocation(*this, Layout, DF, Fixup, Target,FixedValue); |
Daniel Dunbar | b1e9894 | 2010-03-19 07:09:47 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 699 | getBackend().ApplyFixup(Fixup, *DF, FixedValue); |
Daniel Dunbar | b1e9894 | 2010-03-19 07:09:47 +0000 | [diff] [blame] | 700 | } |
| 701 | } |
| 702 | } |
| 703 | |
Daniel Dunbar | bacba99 | 2010-03-19 07:09:33 +0000 | [diff] [blame] | 704 | // Write the object file. |
Daniel Dunbar | 207e06e | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 705 | Writer->WriteObject(*this, Layout); |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 706 | OS.flush(); |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 707 | |
| 708 | stats::ObjectBytes += OS.tell() - StartOffset; |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Daniel Dunbar | 9d39e61 | 2010-03-22 21:49:41 +0000 | [diff] [blame] | 711 | bool MCAssembler::FixupNeedsRelaxation(const MCAsmFixup &Fixup, |
| 712 | const MCFragment *DF, |
Daniel Dunbar | 8d39eb4 | 2010-03-22 20:35:35 +0000 | [diff] [blame] | 713 | const MCAsmLayout &Layout) const { |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 714 | if (getRelaxAll()) |
| 715 | return true; |
| 716 | |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 717 | // If we cannot resolve the fixup value, it requires relaxation. |
| 718 | MCValue Target; |
| 719 | uint64_t Value; |
| 720 | if (!EvaluateFixup(Layout, Fixup, DF, Target, Value)) |
| 721 | return true; |
| 722 | |
| 723 | // Otherwise, relax if the value is too big for a (signed) i8. |
Daniel Dunbar | 31e8e1d | 2010-05-04 00:33:07 +0000 | [diff] [blame] | 724 | // |
| 725 | // FIXME: This is target dependent! |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 726 | return int64_t(Value) != int64_t(int8_t(Value)); |
| 727 | } |
| 728 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 729 | bool MCAssembler::FragmentNeedsRelaxation(const MCInstFragment *IF, |
| 730 | const MCAsmLayout &Layout) const { |
| 731 | // If this inst doesn't ever need relaxation, ignore it. This occurs when we |
| 732 | // are intentionally pushing out inst fragments, or because we relaxed a |
| 733 | // previous instruction to one that doesn't need relaxation. |
| 734 | if (!getBackend().MayNeedRelaxation(IF->getInst(), IF->getFixups())) |
| 735 | return false; |
| 736 | |
| 737 | for (MCInstFragment::const_fixup_iterator it = IF->fixup_begin(), |
| 738 | ie = IF->fixup_end(); it != ie; ++it) |
| 739 | if (FixupNeedsRelaxation(*it, IF, Layout)) |
| 740 | return true; |
| 741 | |
| 742 | return false; |
| 743 | } |
| 744 | |
Daniel Dunbar | 8d39eb4 | 2010-03-22 20:35:35 +0000 | [diff] [blame] | 745 | bool MCAssembler::LayoutOnce(MCAsmLayout &Layout) { |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 746 | ++stats::RelaxationSteps; |
| 747 | |
Daniel Dunbar | d13a0ca | 2010-05-12 17:56:47 +0000 | [diff] [blame] | 748 | // Layout the sections in order. |
| 749 | for (unsigned i = 0, e = Layout.getSectionOrder().size(); i != e; ++i) |
| 750 | LayoutSection(Layout, i); |
Daniel Dunbar | d5a8e98 | 2009-08-28 05:49:21 +0000 | [diff] [blame] | 751 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 752 | // Scan for fragments that need relaxation. |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 753 | bool WasRelaxed = false; |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 754 | for (iterator it = begin(), ie = end(); it != ie; ++it) { |
| 755 | MCSectionData &SD = *it; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 756 | |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 757 | for (MCSectionData::iterator it2 = SD.begin(), |
| 758 | ie2 = SD.end(); it2 != ie2; ++it2) { |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 759 | // Check if this is an instruction fragment that needs relaxation. |
| 760 | MCInstFragment *IF = dyn_cast<MCInstFragment>(it2); |
| 761 | if (!IF || !FragmentNeedsRelaxation(IF, Layout)) |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 762 | continue; |
Daniel Dunbar | 0705fbf | 2009-08-21 18:29:01 +0000 | [diff] [blame] | 763 | |
Daniel Dunbar | ff54784 | 2010-03-23 23:47:14 +0000 | [diff] [blame] | 764 | ++stats::RelaxedInstructions; |
| 765 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 766 | // FIXME-PERF: We could immediately lower out instructions if we can tell |
| 767 | // they are fully resolved, to avoid retesting on later passes. |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 768 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 769 | // Relax the fragment. |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 770 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 771 | MCInst Relaxed; |
| 772 | getBackend().RelaxInstruction(IF, Relaxed); |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 773 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 774 | // Encode the new instruction. |
| 775 | // |
| 776 | // FIXME-PERF: If it matters, we could let the target do this. It can |
| 777 | // probably do so more efficiently in many cases. |
| 778 | SmallVector<MCFixup, 4> Fixups; |
| 779 | SmallString<256> Code; |
| 780 | raw_svector_ostream VecOS(Code); |
| 781 | getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups); |
| 782 | VecOS.flush(); |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 783 | |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 784 | // Update the instruction fragment. |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 785 | int SlideAmount = Code.size() - IF->getInstSize(); |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 786 | IF->setInst(Relaxed); |
| 787 | IF->getCode() = Code; |
| 788 | IF->getFixups().clear(); |
| 789 | for (unsigned i = 0, e = Fixups.size(); i != e; ++i) { |
| 790 | MCFixup &F = Fixups[i]; |
| 791 | IF->getFixups().push_back(MCAsmFixup(F.getOffset(), *F.getValue(), |
| 792 | F.getKind())); |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 793 | } |
Daniel Dunbar | d8036fb | 2010-03-23 05:09:03 +0000 | [diff] [blame] | 794 | |
Daniel Dunbar | ac2884a | 2010-03-25 22:49:09 +0000 | [diff] [blame] | 795 | // Update the layout, and remember that we relaxed. If we are relaxing |
| 796 | // everything, we can skip this step since nothing will depend on updating |
| 797 | // the values. |
| 798 | if (!getRelaxAll()) |
| 799 | Layout.UpdateForSlide(IF, SlideAmount); |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 800 | WasRelaxed = true; |
Daniel Dunbar | f08fde4 | 2010-03-12 22:07:14 +0000 | [diff] [blame] | 801 | } |
| 802 | } |
| 803 | |
Daniel Dunbar | 0cc8bd4 | 2010-03-25 19:35:56 +0000 | [diff] [blame] | 804 | return WasRelaxed; |
Daniel Dunbar | fb4a6b3 | 2009-08-21 09:11:24 +0000 | [diff] [blame] | 805 | } |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 806 | |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 807 | void MCAssembler::FinishLayout(MCAsmLayout &Layout) { |
| 808 | // Lower out any instruction fragments, to simplify the fixup application and |
| 809 | // output. |
| 810 | // |
| 811 | // FIXME-PERF: We don't have to do this, but the assumption is that it is |
| 812 | // cheap (we will mostly end up eliminating fragments and appending on to data |
| 813 | // fragments), so the extra complexity downstream isn't worth it. Evaluate |
| 814 | // this assumption. |
| 815 | for (iterator it = begin(), ie = end(); it != ie; ++it) { |
| 816 | MCSectionData &SD = *it; |
| 817 | |
| 818 | for (MCSectionData::iterator it2 = SD.begin(), |
| 819 | ie2 = SD.end(); it2 != ie2; ++it2) { |
| 820 | MCInstFragment *IF = dyn_cast<MCInstFragment>(it2); |
| 821 | if (!IF) |
| 822 | continue; |
| 823 | |
| 824 | // Create a new data fragment for the instruction. |
| 825 | // |
Daniel Dunbar | 337055e | 2010-03-23 03:13:05 +0000 | [diff] [blame] | 826 | // FIXME-PERF: Reuse previous data fragment if possible. |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 827 | MCDataFragment *DF = new MCDataFragment(); |
| 828 | SD.getFragmentList().insert(it2, DF); |
| 829 | |
| 830 | // Update the data fragments layout data. |
Daniel Dunbar | 9799de9 | 2010-03-23 01:39:05 +0000 | [diff] [blame] | 831 | DF->setParent(IF->getParent()); |
Daniel Dunbar | 651804c | 2010-05-11 17:22:50 +0000 | [diff] [blame] | 832 | DF->setAtom(IF->getAtom()); |
Daniel Dunbar | 5a6e97a | 2010-03-25 07:10:11 +0000 | [diff] [blame] | 833 | DF->setOrdinal(IF->getOrdinal()); |
Daniel Dunbar | aa0d350 | 2010-05-13 08:43:31 +0000 | [diff] [blame] | 834 | Layout.FragmentReplaced(IF, DF); |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 835 | |
Daniel Dunbar | 9799de9 | 2010-03-23 01:39:05 +0000 | [diff] [blame] | 836 | // Copy in the data and the fixups. |
| 837 | DF->getContents().append(IF->getCode().begin(), IF->getCode().end()); |
| 838 | for (unsigned i = 0, e = IF->getFixups().size(); i != e; ++i) |
| 839 | DF->getFixups().push_back(IF->getFixups()[i]); |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 840 | |
| 841 | // Delete the instruction fragment and update the iterator. |
| 842 | SD.getFragmentList().erase(IF); |
| 843 | it2 = DF; |
| 844 | } |
| 845 | } |
| 846 | } |
| 847 | |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 848 | // Debugging methods |
| 849 | |
| 850 | namespace llvm { |
| 851 | |
| 852 | raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) { |
Daniel Dunbar | 2be2fd0 | 2010-02-13 09:28:54 +0000 | [diff] [blame] | 853 | OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value |
| 854 | << " Kind:" << AF.Kind << ">"; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 855 | return OS; |
| 856 | } |
| 857 | |
| 858 | } |
| 859 | |
| 860 | void MCFragment::dump() { |
| 861 | raw_ostream &OS = llvm::errs(); |
| 862 | |
| 863 | OS << "<MCFragment " << (void*) this << " Offset:" << Offset |
Daniel Dunbar | b5844ff | 2010-05-13 01:10:22 +0000 | [diff] [blame] | 864 | << " EffectiveSize:" << EffectiveSize << ">"; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | void MCAlignFragment::dump() { |
| 868 | raw_ostream &OS = llvm::errs(); |
| 869 | |
| 870 | OS << "<MCAlignFragment "; |
| 871 | this->MCFragment::dump(); |
Daniel Dunbar | 456b501 | 2010-05-13 01:10:26 +0000 | [diff] [blame] | 872 | if (hasEmitNops()) |
| 873 | OS << " (emit nops)"; |
| 874 | if (hasOnlyAlignAddress()) |
| 875 | OS << " (only align section)"; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 876 | OS << "\n "; |
| 877 | OS << " Alignment:" << getAlignment() |
| 878 | << " Value:" << getValue() << " ValueSize:" << getValueSize() |
| 879 | << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">"; |
| 880 | } |
| 881 | |
| 882 | void MCDataFragment::dump() { |
| 883 | raw_ostream &OS = llvm::errs(); |
| 884 | |
| 885 | OS << "<MCDataFragment "; |
| 886 | this->MCFragment::dump(); |
| 887 | OS << "\n "; |
| 888 | OS << " Contents:["; |
| 889 | for (unsigned i = 0, e = getContents().size(); i != e; ++i) { |
| 890 | if (i) OS << ","; |
| 891 | OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); |
| 892 | } |
Daniel Dunbar | 2be2fd0 | 2010-02-13 09:28:54 +0000 | [diff] [blame] | 893 | OS << "] (" << getContents().size() << " bytes)"; |
Daniel Dunbar | 0bcf074 | 2010-02-13 09:28:43 +0000 | [diff] [blame] | 894 | |
| 895 | if (!getFixups().empty()) { |
| 896 | OS << ",\n "; |
| 897 | OS << " Fixups:["; |
| 898 | for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) { |
Daniel Dunbar | 45aefff | 2010-03-09 01:12:23 +0000 | [diff] [blame] | 899 | if (it != fixup_begin()) OS << ",\n "; |
Daniel Dunbar | 0bcf074 | 2010-02-13 09:28:43 +0000 | [diff] [blame] | 900 | OS << *it; |
| 901 | } |
| 902 | OS << "]"; |
| 903 | } |
| 904 | |
| 905 | OS << ">"; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 906 | } |
| 907 | |
| 908 | void MCFillFragment::dump() { |
| 909 | raw_ostream &OS = llvm::errs(); |
| 910 | |
| 911 | OS << "<MCFillFragment "; |
| 912 | this->MCFragment::dump(); |
| 913 | OS << "\n "; |
| 914 | OS << " Value:" << getValue() << " ValueSize:" << getValueSize() |
Daniel Dunbar | 3153fec | 2010-05-12 22:51:32 +0000 | [diff] [blame] | 915 | << " Size:" << getSize() << ">"; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 916 | } |
| 917 | |
Daniel Dunbar | 3f4dcd9 | 2010-03-22 23:16:48 +0000 | [diff] [blame] | 918 | void MCInstFragment::dump() { |
| 919 | raw_ostream &OS = llvm::errs(); |
| 920 | |
| 921 | OS << "<MCInstFragment "; |
| 922 | this->MCFragment::dump(); |
| 923 | OS << "\n "; |
| 924 | OS << " Inst:"; |
| 925 | getInst().dump_pretty(OS); |
| 926 | OS << ">"; |
| 927 | } |
| 928 | |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 929 | void MCOrgFragment::dump() { |
| 930 | raw_ostream &OS = llvm::errs(); |
| 931 | |
| 932 | OS << "<MCOrgFragment "; |
| 933 | this->MCFragment::dump(); |
| 934 | OS << "\n "; |
| 935 | OS << " Offset:" << getOffset() << " Value:" << getValue() << ">"; |
| 936 | } |
| 937 | |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 938 | void MCSectionData::dump() { |
| 939 | raw_ostream &OS = llvm::errs(); |
| 940 | |
| 941 | OS << "<MCSectionData"; |
| 942 | OS << " Alignment:" << getAlignment() << " Address:" << Address |
Daniel Dunbar | 2661f11 | 2010-05-13 03:19:50 +0000 | [diff] [blame] | 943 | << " Fragments:[\n "; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 944 | for (iterator it = begin(), ie = end(); it != ie; ++it) { |
| 945 | if (it != begin()) OS << ",\n "; |
| 946 | it->dump(); |
| 947 | } |
| 948 | OS << "]>"; |
| 949 | } |
| 950 | |
| 951 | void MCSymbolData::dump() { |
| 952 | raw_ostream &OS = llvm::errs(); |
| 953 | |
| 954 | OS << "<MCSymbolData Symbol:" << getSymbol() |
| 955 | << " Fragment:" << getFragment() << " Offset:" << getOffset() |
| 956 | << " Flags:" << getFlags() << " Index:" << getIndex(); |
| 957 | if (isCommon()) |
| 958 | OS << " (common, size:" << getCommonSize() |
| 959 | << " align: " << getCommonAlignment() << ")"; |
| 960 | if (isExternal()) |
| 961 | OS << " (external)"; |
| 962 | if (isPrivateExtern()) |
| 963 | OS << " (private extern)"; |
| 964 | OS << ">"; |
| 965 | } |
| 966 | |
| 967 | void MCAssembler::dump() { |
| 968 | raw_ostream &OS = llvm::errs(); |
| 969 | |
| 970 | OS << "<MCAssembler\n"; |
Daniel Dunbar | 45aefff | 2010-03-09 01:12:23 +0000 | [diff] [blame] | 971 | OS << " Sections:[\n "; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 972 | for (iterator it = begin(), ie = end(); it != ie; ++it) { |
| 973 | if (it != begin()) OS << ",\n "; |
| 974 | it->dump(); |
| 975 | } |
| 976 | OS << "],\n"; |
| 977 | OS << " Symbols:["; |
| 978 | |
| 979 | for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) { |
Daniel Dunbar | 45aefff | 2010-03-09 01:12:23 +0000 | [diff] [blame] | 980 | if (it != symbol_begin()) OS << ",\n "; |
Daniel Dunbar | b7c3a4b | 2010-02-13 09:28:03 +0000 | [diff] [blame] | 981 | it->dump(); |
| 982 | } |
| 983 | OS << "]>\n"; |
| 984 | } |