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