Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 1 | //===-- MachOWriter.cpp - Target-independent Mach-O Writer code -----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the target-independent Mach-O writer. This file writes |
| 11 | // out the Mach-O file in the following order: |
| 12 | // |
| 13 | // #1 FatHeader (universal-only) |
| 14 | // #2 FatArch (universal-only, 1 per universal arch) |
| 15 | // Per arch: |
| 16 | // #3 Header |
| 17 | // #4 Load Commands |
| 18 | // #5 Sections |
| 19 | // #6 Relocations |
| 20 | // #7 Symbols |
| 21 | // #8 Strings |
| 22 | // |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 25 | #include "MachO.h" |
Bill Wendling | 8f84f1f | 2007-02-08 01:35:27 +0000 | [diff] [blame] | 26 | #include "MachOWriter.h" |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 27 | #include "MachOCodeEmitter.h" |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 28 | #include "llvm/Constants.h" |
| 29 | #include "llvm/DerivedTypes.h" |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 30 | #include "llvm/Module.h" |
Bill Wendling | 8f84f1f | 2007-02-08 01:35:27 +0000 | [diff] [blame] | 31 | #include "llvm/PassManager.h" |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetAsmInfo.h" |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetData.h" |
| 34 | #include "llvm/Target/TargetMachine.h" |
| 35 | #include "llvm/Target/TargetMachOWriterInfo.h" |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Mangler.h" |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 37 | #include "llvm/Support/OutputBuffer.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 38 | #include "llvm/Support/ErrorHandling.h" |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 39 | #include "llvm/Support/raw_ostream.h" |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 40 | |
| 41 | namespace llvm { |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 42 | |
Bill Wendling | 8f84f1f | 2007-02-08 01:35:27 +0000 | [diff] [blame] | 43 | /// AddMachOWriter - Concrete function to add the Mach-O writer to the function |
| 44 | /// pass manager. |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 45 | ObjectCodeEmitter *AddMachOWriter(PassManagerBase &PM, |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 46 | raw_ostream &O, |
Bill Wendling | 8f84f1f | 2007-02-08 01:35:27 +0000 | [diff] [blame] | 47 | TargetMachine &TM) { |
| 48 | MachOWriter *MOW = new MachOWriter(O, TM); |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 49 | PM.add(MOW); |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 50 | return MOW->getObjectCodeEmitter(); |
Bill Wendling | 8f84f1f | 2007-02-08 01:35:27 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 53 | //===----------------------------------------------------------------------===// |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 54 | // MachOWriter Implementation |
| 55 | //===----------------------------------------------------------------------===// |
| 56 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 57 | char MachOWriter::ID = 0; |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 58 | |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 59 | MachOWriter::MachOWriter(raw_ostream &o, TargetMachine &tm) |
| 60 | : MachineFunctionPass(&ID), O(o), TM(tm) { |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 61 | is64Bit = TM.getTargetData()->getPointerSizeInBits() == 64; |
| 62 | isLittleEndian = TM.getTargetData()->isLittleEndian(); |
| 63 | |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 64 | TAI = TM.getTargetAsmInfo(); |
| 65 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 66 | // Create the machine code emitter object for this target. |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 67 | MachOCE = new MachOCodeEmitter(*this, *getTextSection(true)); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | MachOWriter::~MachOWriter() { |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 71 | delete MachOCE; |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 74 | bool MachOWriter::doInitialization(Module &M) { |
| 75 | // Set the magic value, now that we know the pointer size and endianness |
| 76 | Header.setMagic(isLittleEndian, is64Bit); |
| 77 | |
| 78 | // Set the file type |
| 79 | // FIXME: this only works for object files, we do not support the creation |
| 80 | // of dynamic libraries or executables at this time. |
| 81 | Header.filetype = MachOHeader::MH_OBJECT; |
| 82 | |
| 83 | Mang = new Mangler(M); |
| 84 | return false; |
| 85 | } |
| 86 | |
| 87 | bool MachOWriter::runOnMachineFunction(MachineFunction &MF) { |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | /// doFinalization - Now that the module has been completely processed, emit |
| 92 | /// the Mach-O file to 'O'. |
| 93 | bool MachOWriter::doFinalization(Module &M) { |
| 94 | // FIXME: we don't handle debug info yet, we should probably do that. |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 95 | // Okay, the.text section has been completed, build the .data, .bss, and |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 96 | // "common" sections next. |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 97 | |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 98 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); |
| 99 | I != E; ++I) |
| 100 | EmitGlobal(I); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 101 | |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 102 | // Emit the header and load commands. |
| 103 | EmitHeaderAndLoadCommands(); |
| 104 | |
| 105 | // Emit the various sections and their relocation info. |
| 106 | EmitSections(); |
| 107 | EmitRelocations(); |
| 108 | |
| 109 | // Write the symbol table and the string table to the end of the file. |
| 110 | O.write((char*)&SymT[0], SymT.size()); |
| 111 | O.write((char*)&StrT[0], StrT.size()); |
| 112 | |
| 113 | // We are done with the abstract symbols. |
| 114 | SectionList.clear(); |
| 115 | SymbolTable.clear(); |
| 116 | DynamicSymbolTable.clear(); |
| 117 | |
| 118 | // Release the name mangler object. |
| 119 | delete Mang; Mang = 0; |
| 120 | return false; |
| 121 | } |
| 122 | |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 123 | // getConstSection - Get constant section for Constant 'C' |
| 124 | MachOSection *MachOWriter::getConstSection(Constant *C) { |
| 125 | const ConstantArray *CVA = dyn_cast<ConstantArray>(C); |
Owen Anderson | 1ca29d3 | 2009-07-13 21:27:19 +0000 | [diff] [blame] | 126 | if (CVA && CVA->isCString()) |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 127 | return getSection("__TEXT", "__cstring", |
| 128 | MachOSection::S_CSTRING_LITERALS); |
| 129 | |
| 130 | const Type *Ty = C->getType(); |
| 131 | if (Ty->isPrimitiveType() || Ty->isInteger()) { |
| 132 | unsigned Size = TM.getTargetData()->getTypeAllocSize(Ty); |
| 133 | switch(Size) { |
| 134 | default: break; // Fall through to __TEXT,__const |
| 135 | case 4: |
| 136 | return getSection("__TEXT", "__literal4", |
| 137 | MachOSection::S_4BYTE_LITERALS); |
| 138 | case 8: |
| 139 | return getSection("__TEXT", "__literal8", |
| 140 | MachOSection::S_8BYTE_LITERALS); |
| 141 | case 16: |
| 142 | return getSection("__TEXT", "__literal16", |
| 143 | MachOSection::S_16BYTE_LITERALS); |
| 144 | } |
| 145 | } |
| 146 | return getSection("__TEXT", "__const"); |
| 147 | } |
| 148 | |
| 149 | // getJumpTableSection - Select the Jump Table section |
| 150 | MachOSection *MachOWriter::getJumpTableSection() { |
| 151 | if (TM.getRelocationModel() == Reloc::PIC_) |
| 152 | return getTextSection(false); |
| 153 | else |
| 154 | return getSection("__TEXT", "__const"); |
| 155 | } |
| 156 | |
| 157 | // getSection - Return the section with the specified name, creating a new |
| 158 | // section if one does not already exist. |
| 159 | MachOSection *MachOWriter::getSection(const std::string &seg, |
| 160 | const std::string §, |
| 161 | unsigned Flags /* = 0 */ ) { |
| 162 | MachOSection *MOS = SectionLookup[seg+sect]; |
| 163 | if (MOS) return MOS; |
| 164 | |
| 165 | MOS = new MachOSection(seg, sect); |
| 166 | SectionList.push_back(MOS); |
| 167 | MOS->Index = SectionList.size(); |
| 168 | MOS->flags = MachOSection::S_REGULAR | Flags; |
| 169 | SectionLookup[seg+sect] = MOS; |
| 170 | return MOS; |
| 171 | } |
| 172 | |
| 173 | // getTextSection - Return text section with different flags for code/data |
| 174 | MachOSection *MachOWriter::getTextSection(bool isCode /* = true */ ) { |
| 175 | if (isCode) |
| 176 | return getSection("__TEXT", "__text", |
| 177 | MachOSection::S_ATTR_PURE_INSTRUCTIONS | |
| 178 | MachOSection::S_ATTR_SOME_INSTRUCTIONS); |
| 179 | else |
| 180 | return getSection("__TEXT", "__text"); |
| 181 | } |
| 182 | |
| 183 | MachOSection *MachOWriter::getBSSSection() { |
| 184 | return getSection("__DATA", "__bss", MachOSection::S_ZEROFILL); |
| 185 | } |
| 186 | |
| 187 | // GetJTRelocation - Get a relocation a new BB relocation based |
| 188 | // on target information. |
| 189 | MachineRelocation MachOWriter::GetJTRelocation(unsigned Offset, |
| 190 | MachineBasicBlock *MBB) const { |
| 191 | return TM.getMachOWriterInfo()->GetJTRelocation(Offset, MBB); |
| 192 | } |
| 193 | |
| 194 | // GetTargetRelocation - Returns the number of relocations. |
| 195 | unsigned MachOWriter::GetTargetRelocation(MachineRelocation &MR, |
| 196 | unsigned FromIdx, unsigned ToAddr, |
| 197 | unsigned ToIndex, OutputBuffer &RelocOut, |
| 198 | OutputBuffer &SecOut, bool Scattered, |
| 199 | bool Extern) { |
| 200 | return TM.getMachOWriterInfo()->GetTargetRelocation(MR, FromIdx, ToAddr, |
| 201 | ToIndex, RelocOut, |
| 202 | SecOut, Scattered, |
| 203 | Extern); |
| 204 | } |
| 205 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 206 | void MachOWriter::AddSymbolToSection(MachOSection *Sec, GlobalVariable *GV) { |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 207 | const Type *Ty = GV->getType()->getElementType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 208 | unsigned Size = TM.getTargetData()->getTypeAllocSize(Ty); |
Duncan Sands | d102593 | 2008-01-29 06:23:44 +0000 | [diff] [blame] | 209 | unsigned Align = TM.getTargetData()->getPreferredAlignment(GV); |
| 210 | |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 211 | // Reserve space in the .bss section for this symbol while maintaining the |
| 212 | // desired section alignment, which must be at least as much as required by |
| 213 | // this symbol. |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 214 | OutputBuffer SecDataOut(Sec->getData(), is64Bit, isLittleEndian); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 215 | |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 216 | if (Align) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 217 | Align = Log2_32(Align); |
| 218 | Sec->align = std::max(unsigned(Sec->align), Align); |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 219 | |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 220 | Sec->emitAlignment(Sec->align); |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 221 | } |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 222 | // Globals without external linkage apparently do not go in the symbol table. |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 223 | if (!GV->hasLocalLinkage()) { |
Daniel Dunbar | 1f316e3 | 2009-07-14 16:25:11 +0000 | [diff] [blame] | 224 | MachOSym Sym(GV, Mang->getValueName(GV), Sec->Index, TAI); |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 225 | Sym.n_value = Sec->size(); |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 226 | SymbolTable.push_back(Sym); |
| 227 | } |
| 228 | |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 229 | // Record the offset of the symbol, and then allocate space for it. |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 230 | // FIXME: remove when we have unified size + output buffer |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 231 | |
| 232 | // Now that we know what section the GlovalVariable is going to be emitted |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 233 | // into, update our mappings. |
| 234 | // FIXME: We may also need to update this when outputting non-GlobalVariable |
| 235 | // GlobalValues such as functions. |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 236 | |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 237 | GVSection[GV] = Sec; |
| 238 | GVOffset[GV] = Sec->size(); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 239 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 240 | // Allocate space in the section for the global. |
| 241 | for (unsigned i = 0; i < Size; ++i) |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 242 | SecDataOut.outbyte(0); |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 245 | void MachOWriter::EmitGlobal(GlobalVariable *GV) { |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 246 | const Type *Ty = GV->getType()->getElementType(); |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 247 | unsigned Size = TM.getTargetData()->getTypeAllocSize(Ty); |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 248 | bool NoInit = !GV->hasInitializer(); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 249 | |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 250 | // If this global has a zero initializer, it is part of the .bss or common |
| 251 | // section. |
| 252 | if (NoInit || GV->getInitializer()->isNullValue()) { |
| 253 | // If this global is part of the common block, add it now. Variables are |
| 254 | // part of the common block if they are zero initialized and allowed to be |
| 255 | // merged with other symbols. |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 256 | if (NoInit || GV->hasLinkOnceLinkage() || GV->hasWeakLinkage() || |
| 257 | GV->hasCommonLinkage()) { |
Daniel Dunbar | 1f316e3 | 2009-07-14 16:25:11 +0000 | [diff] [blame] | 258 | MachOSym ExtOrCommonSym(GV, Mang->getValueName(GV), |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 259 | MachOSym::NO_SECT, TAI); |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 260 | // For undefined (N_UNDF) external (N_EXT) types, n_value is the size in |
| 261 | // bytes of the symbol. |
| 262 | ExtOrCommonSym.n_value = Size; |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 263 | SymbolTable.push_back(ExtOrCommonSym); |
| 264 | // Remember that we've seen this symbol |
| 265 | GVOffset[GV] = Size; |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 266 | return; |
| 267 | } |
| 268 | // Otherwise, this symbol is part of the .bss section. |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 269 | MachOSection *BSS = getBSSSection(); |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 270 | AddSymbolToSection(BSS, GV); |
| 271 | return; |
| 272 | } |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 273 | |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 274 | // Scalar read-only data goes in a literal section if the scalar is 4, 8, or |
| 275 | // 16 bytes, or a cstring. Other read only data goes into a regular const |
| 276 | // section. Read-write data goes in the data section. |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 277 | MachOSection *Sec = GV->isConstant() ? getConstSection(GV->getInitializer()) : |
Nate Begeman | 1257c85 | 2007-01-29 21:20:42 +0000 | [diff] [blame] | 278 | getDataSection(); |
Nate Begeman | f8f2c5a | 2006-08-25 06:36:58 +0000 | [diff] [blame] | 279 | AddSymbolToSection(Sec, GV); |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 280 | InitMem(GV->getInitializer(), GVOffset[GV], TM.getTargetData(), Sec); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 284 | |
| 285 | void MachOWriter::EmitHeaderAndLoadCommands() { |
| 286 | // Step #0: Fill in the segment load command size, since we need it to figure |
| 287 | // out the rest of the header fields |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 288 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 289 | MachOSegment SEG("", is64Bit); |
| 290 | SEG.nsects = SectionList.size(); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 291 | SEG.cmdsize = SEG.cmdSize(is64Bit) + |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 292 | SEG.nsects * SectionList[0]->cmdSize(is64Bit); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 293 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 294 | // Step #1: calculate the number of load commands. We always have at least |
| 295 | // one, for the LC_SEGMENT load command, plus two for the normal |
| 296 | // and dynamic symbol tables, if there are any symbols. |
| 297 | Header.ncmds = SymbolTable.empty() ? 1 : 3; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 298 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 299 | // Step #2: calculate the size of the load commands |
| 300 | Header.sizeofcmds = SEG.cmdsize; |
| 301 | if (!SymbolTable.empty()) |
| 302 | Header.sizeofcmds += SymTab.cmdsize + DySymTab.cmdsize; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 303 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 304 | // Step #3: write the header to the file |
| 305 | // Local alias to shortenify coming code. |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 306 | std::vector<unsigned char> &FH = Header.HeaderData; |
Bill Wendling | c904a5b | 2007-01-18 01:23:11 +0000 | [diff] [blame] | 307 | OutputBuffer FHOut(FH, is64Bit, isLittleEndian); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 308 | |
| 309 | FHOut.outword(Header.magic); |
Bill Wendling | 2b72182 | 2007-01-24 07:13:56 +0000 | [diff] [blame] | 310 | FHOut.outword(TM.getMachOWriterInfo()->getCPUType()); |
| 311 | FHOut.outword(TM.getMachOWriterInfo()->getCPUSubType()); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 312 | FHOut.outword(Header.filetype); |
| 313 | FHOut.outword(Header.ncmds); |
| 314 | FHOut.outword(Header.sizeofcmds); |
| 315 | FHOut.outword(Header.flags); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 316 | if (is64Bit) |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 317 | FHOut.outword(Header.reserved); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 318 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 319 | // Step #4: Finish filling in the segment load command and write it out |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 320 | for (std::vector<MachOSection*>::iterator I = SectionList.begin(), |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 321 | E = SectionList.end(); I != E; ++I) |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 322 | SEG.filesize += (*I)->size(); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 323 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 324 | SEG.vmsize = SEG.filesize; |
| 325 | SEG.fileoff = Header.cmdSize(is64Bit) + Header.sizeofcmds; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 326 | |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 327 | FHOut.outword(SEG.cmd); |
| 328 | FHOut.outword(SEG.cmdsize); |
| 329 | FHOut.outstring(SEG.segname, 16); |
| 330 | FHOut.outaddr(SEG.vmaddr); |
| 331 | FHOut.outaddr(SEG.vmsize); |
| 332 | FHOut.outaddr(SEG.fileoff); |
| 333 | FHOut.outaddr(SEG.filesize); |
| 334 | FHOut.outword(SEG.maxprot); |
| 335 | FHOut.outword(SEG.initprot); |
| 336 | FHOut.outword(SEG.nsects); |
| 337 | FHOut.outword(SEG.flags); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 338 | |
| 339 | // Step #5: Finish filling in the fields of the MachOSections |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 340 | uint64_t currentAddr = 0; |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 341 | for (std::vector<MachOSection*>::iterator I = SectionList.begin(), |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 342 | E = SectionList.end(); I != E; ++I) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 343 | MachOSection *MOS = *I; |
| 344 | MOS->addr = currentAddr; |
| 345 | MOS->offset = currentAddr + SEG.fileoff; |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 346 | // FIXME: do we need to do something with alignment here? |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 347 | currentAddr += MOS->size(); |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 348 | } |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 349 | |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 350 | // Step #6: Emit the symbol table to temporary buffers, so that we know the |
| 351 | // size of the string table when we write the next load command. This also |
| 352 | // sorts and assigns indices to each of the symbols, which is necessary for |
| 353 | // emitting relocations to externally-defined objects. |
| 354 | BufferSymbolAndStringTable(); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 355 | |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 356 | // Step #7: Calculate the number of relocations for each section and write out |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 357 | // the section commands for each section |
| 358 | currentAddr += SEG.fileoff; |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 359 | for (std::vector<MachOSection*>::iterator I = SectionList.begin(), |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 360 | E = SectionList.end(); I != E; ++I) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 361 | MachOSection *MOS = *I; |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 362 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 363 | // Convert the relocations to target-specific relocations, and fill in the |
| 364 | // relocation offset for this section. |
| 365 | CalculateRelocations(*MOS); |
| 366 | MOS->reloff = MOS->nreloc ? currentAddr : 0; |
| 367 | currentAddr += MOS->nreloc * 8; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 368 | |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 369 | // write the finalized section command to the output buffer |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 370 | FHOut.outstring(MOS->sectname, 16); |
| 371 | FHOut.outstring(MOS->segname, 16); |
| 372 | FHOut.outaddr(MOS->addr); |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 373 | FHOut.outaddr(MOS->size()); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 374 | FHOut.outword(MOS->offset); |
| 375 | FHOut.outword(MOS->align); |
| 376 | FHOut.outword(MOS->reloff); |
| 377 | FHOut.outword(MOS->nreloc); |
| 378 | FHOut.outword(MOS->flags); |
| 379 | FHOut.outword(MOS->reserved1); |
| 380 | FHOut.outword(MOS->reserved2); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 381 | if (is64Bit) |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 382 | FHOut.outword(MOS->reserved3); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 383 | } |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 384 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 385 | // Step #8: Emit LC_SYMTAB/LC_DYSYMTAB load commands |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 386 | SymTab.symoff = currentAddr; |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 387 | SymTab.nsyms = SymbolTable.size(); |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 388 | SymTab.stroff = SymTab.symoff + SymT.size(); |
| 389 | SymTab.strsize = StrT.size(); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 390 | FHOut.outword(SymTab.cmd); |
| 391 | FHOut.outword(SymTab.cmdsize); |
| 392 | FHOut.outword(SymTab.symoff); |
| 393 | FHOut.outword(SymTab.nsyms); |
| 394 | FHOut.outword(SymTab.stroff); |
| 395 | FHOut.outword(SymTab.strsize); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 396 | |
| 397 | // FIXME: set DySymTab fields appropriately |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 398 | // We should probably just update these in BufferSymbolAndStringTable since |
| 399 | // thats where we're partitioning up the different kinds of symbols. |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 400 | FHOut.outword(DySymTab.cmd); |
| 401 | FHOut.outword(DySymTab.cmdsize); |
| 402 | FHOut.outword(DySymTab.ilocalsym); |
| 403 | FHOut.outword(DySymTab.nlocalsym); |
| 404 | FHOut.outword(DySymTab.iextdefsym); |
| 405 | FHOut.outword(DySymTab.nextdefsym); |
| 406 | FHOut.outword(DySymTab.iundefsym); |
| 407 | FHOut.outword(DySymTab.nundefsym); |
| 408 | FHOut.outword(DySymTab.tocoff); |
| 409 | FHOut.outword(DySymTab.ntoc); |
| 410 | FHOut.outword(DySymTab.modtaboff); |
| 411 | FHOut.outword(DySymTab.nmodtab); |
| 412 | FHOut.outword(DySymTab.extrefsymoff); |
| 413 | FHOut.outword(DySymTab.nextrefsyms); |
| 414 | FHOut.outword(DySymTab.indirectsymoff); |
| 415 | FHOut.outword(DySymTab.nindirectsyms); |
| 416 | FHOut.outword(DySymTab.extreloff); |
| 417 | FHOut.outword(DySymTab.nextrel); |
| 418 | FHOut.outword(DySymTab.locreloff); |
| 419 | FHOut.outword(DySymTab.nlocrel); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 420 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 421 | O.write((char*)&FH[0], FH.size()); |
| 422 | } |
| 423 | |
| 424 | /// EmitSections - Now that we have constructed the file header and load |
| 425 | /// commands, emit the data for each section to the file. |
| 426 | void MachOWriter::EmitSections() { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 427 | for (std::vector<MachOSection*>::iterator I = SectionList.begin(), |
Nate Begeman | 019f851 | 2006-09-10 23:03:44 +0000 | [diff] [blame] | 428 | E = SectionList.end(); I != E; ++I) |
| 429 | // Emit the contents of each section |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 430 | if ((*I)->size()) |
| 431 | O.write((char*)&(*I)->getData()[0], (*I)->size()); |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 432 | } |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 433 | |
| 434 | /// EmitRelocations - emit relocation data from buffer. |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 435 | void MachOWriter::EmitRelocations() { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 436 | for (std::vector<MachOSection*>::iterator I = SectionList.begin(), |
Nate Begeman | 019f851 | 2006-09-10 23:03:44 +0000 | [diff] [blame] | 437 | E = SectionList.end(); I != E; ++I) |
| 438 | // Emit the relocation entry data for each section. |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 439 | if ((*I)->RelocBuffer.size()) |
| 440 | O.write((char*)&(*I)->RelocBuffer[0], (*I)->RelocBuffer.size()); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 441 | } |
| 442 | |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 443 | /// BufferSymbolAndStringTable - Sort the symbols we encountered and assign them |
| 444 | /// each a string table index so that they appear in the correct order in the |
| 445 | /// output file. |
| 446 | void MachOWriter::BufferSymbolAndStringTable() { |
| 447 | // The order of the symbol table is: |
| 448 | // 1. local symbols |
| 449 | // 2. defined external symbols (sorted by name) |
| 450 | // 3. undefined external symbols (sorted by name) |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 451 | |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 452 | // Before sorting the symbols, check the PendingGlobals for any undefined |
| 453 | // globals that need to be put in the symbol table. |
| 454 | for (std::vector<GlobalValue*>::iterator I = PendingGlobals.begin(), |
| 455 | E = PendingGlobals.end(); I != E; ++I) { |
| 456 | if (GVOffset[*I] == 0 && GVSection[*I] == 0) { |
Daniel Dunbar | 1f316e3 | 2009-07-14 16:25:11 +0000 | [diff] [blame] | 457 | MachOSym UndfSym(*I, Mang->getValueName(*I), MachOSym::NO_SECT, TAI); |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 458 | SymbolTable.push_back(UndfSym); |
| 459 | GVOffset[*I] = -1; |
| 460 | } |
| 461 | } |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 462 | |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 463 | // Sort the symbols by name, so that when we partition the symbols by scope |
| 464 | // of definition, we won't have to sort by name within each partition. |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 465 | std::sort(SymbolTable.begin(), SymbolTable.end(), MachOSym::SymCmp()); |
| 466 | |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 467 | // Parition the symbol table entries so that all local symbols come before |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 468 | // all symbols with external linkage. { 1 | 2 3 } |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 469 | std::partition(SymbolTable.begin(), SymbolTable.end(), |
| 470 | MachOSym::PartitionByLocal); |
| 471 | |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 472 | // Advance iterator to beginning of external symbols and partition so that |
| 473 | // all external symbols defined in this module come before all external |
| 474 | // symbols defined elsewhere. { 1 | 2 | 3 } |
| 475 | for (std::vector<MachOSym>::iterator I = SymbolTable.begin(), |
| 476 | E = SymbolTable.end(); I != E; ++I) { |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 477 | if (!MachOSym::PartitionByLocal(*I)) { |
| 478 | std::partition(I, E, MachOSym::PartitionByDefined); |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 479 | break; |
| 480 | } |
| 481 | } |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 482 | |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 483 | // Calculate the starting index for each of the local, extern defined, and |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 484 | // undefined symbols, as well as the number of each to put in the LC_DYSYMTAB |
| 485 | // load command. |
| 486 | for (std::vector<MachOSym>::iterator I = SymbolTable.begin(), |
| 487 | E = SymbolTable.end(); I != E; ++I) { |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 488 | if (MachOSym::PartitionByLocal(*I)) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 489 | ++DySymTab.nlocalsym; |
| 490 | ++DySymTab.iextdefsym; |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 491 | ++DySymTab.iundefsym; |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 492 | } else if (MachOSym::PartitionByDefined(*I)) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 493 | ++DySymTab.nextdefsym; |
| 494 | ++DySymTab.iundefsym; |
| 495 | } else { |
| 496 | ++DySymTab.nundefsym; |
| 497 | } |
| 498 | } |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 499 | |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 500 | // Write out a leading zero byte when emitting string table, for n_strx == 0 |
| 501 | // which means an empty string. |
Bill Wendling | c904a5b | 2007-01-18 01:23:11 +0000 | [diff] [blame] | 502 | OutputBuffer StrTOut(StrT, is64Bit, isLittleEndian); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 503 | StrTOut.outbyte(0); |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 504 | |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 505 | // The order of the string table is: |
| 506 | // 1. strings for external symbols |
| 507 | // 2. strings for local symbols |
| 508 | // Since this is the opposite order from the symbol table, which we have just |
| 509 | // sorted, we can walk the symbol table backwards to output the string table. |
| 510 | for (std::vector<MachOSym>::reverse_iterator I = SymbolTable.rbegin(), |
| 511 | E = SymbolTable.rend(); I != E; ++I) { |
| 512 | if (I->GVName == "") { |
| 513 | I->n_strx = 0; |
| 514 | } else { |
| 515 | I->n_strx = StrT.size(); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 516 | StrTOut.outstring(I->GVName, I->GVName.length()+1); |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 517 | } |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 518 | } |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 519 | |
Bill Wendling | c904a5b | 2007-01-18 01:23:11 +0000 | [diff] [blame] | 520 | OutputBuffer SymTOut(SymT, is64Bit, isLittleEndian); |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 521 | |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 522 | unsigned index = 0; |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 523 | for (std::vector<MachOSym>::iterator I = SymbolTable.begin(), |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 524 | E = SymbolTable.end(); I != E; ++I, ++index) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 525 | // Add the section base address to the section offset in the n_value field |
| 526 | // to calculate the full address. |
| 527 | // FIXME: handle symbols where the n_value field is not the address |
| 528 | GlobalValue *GV = const_cast<GlobalValue*>(I->GV); |
| 529 | if (GV && GVSection[GV]) |
| 530 | I->n_value += GVSection[GV]->addr; |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 531 | if (GV && (GVOffset[GV] == -1)) |
| 532 | GVOffset[GV] = index; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 533 | |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 534 | // Emit nlist to buffer |
Bill Wendling | 203d3e4 | 2007-01-17 22:22:31 +0000 | [diff] [blame] | 535 | SymTOut.outword(I->n_strx); |
| 536 | SymTOut.outbyte(I->n_type); |
| 537 | SymTOut.outbyte(I->n_sect); |
| 538 | SymTOut.outhalf(I->n_desc); |
| 539 | SymTOut.outaddr(I->n_value); |
Nate Begeman | d2030e6 | 2006-08-26 15:46:34 +0000 | [diff] [blame] | 540 | } |
Nate Begeman | eb883af | 2006-08-23 21:08:52 +0000 | [diff] [blame] | 541 | } |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 542 | |
Nate Begeman | 019f851 | 2006-09-10 23:03:44 +0000 | [diff] [blame] | 543 | /// CalculateRelocations - For each MachineRelocation in the current section, |
| 544 | /// calculate the index of the section containing the object to be relocated, |
| 545 | /// and the offset into that section. From this information, create the |
| 546 | /// appropriate target-specific MachORelocation type and add buffer it to be |
| 547 | /// written out after we are finished writing out sections. |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 548 | void MachOWriter::CalculateRelocations(MachOSection &MOS) { |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 549 | std::vector<MachineRelocation> Relocations = MOS.getRelocations(); |
| 550 | for (unsigned i = 0, e = Relocations.size(); i != e; ++i) { |
| 551 | MachineRelocation &MR = Relocations[i]; |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 552 | unsigned TargetSection = MR.getConstantVal(); |
Nate Begeman | af80638 | 2007-03-03 06:18:18 +0000 | [diff] [blame] | 553 | unsigned TargetAddr = 0; |
| 554 | unsigned TargetIndex = 0; |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 555 | |
| 556 | // This is a scattered relocation entry if it points to a global value with |
| 557 | // a non-zero offset. |
| 558 | bool Scattered = false; |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 559 | bool Extern = false; |
Nate Begeman | af80638 | 2007-03-03 06:18:18 +0000 | [diff] [blame] | 560 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 561 | // Since we may not have seen the GlobalValue we were interested in yet at |
| 562 | // the time we emitted the relocation for it, fix it up now so that it |
| 563 | // points to the offset into the correct section. |
| 564 | if (MR.isGlobalValue()) { |
| 565 | GlobalValue *GV = MR.getGlobalValue(); |
| 566 | MachOSection *MOSPtr = GVSection[GV]; |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 567 | intptr_t Offset = GVOffset[GV]; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 568 | |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 569 | // If we have never seen the global before, it must be to a symbol |
| 570 | // defined in another module (N_UNDF). |
Nate Begeman | 1257c85 | 2007-01-29 21:20:42 +0000 | [diff] [blame] | 571 | if (!MOSPtr) { |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 572 | // FIXME: need to append stub suffix |
| 573 | Extern = true; |
| 574 | TargetAddr = 0; |
| 575 | TargetIndex = GVOffset[GV]; |
| 576 | } else { |
| 577 | Scattered = TargetSection != 0; |
| 578 | TargetSection = MOSPtr->Index; |
Nate Begeman | af80638 | 2007-03-03 06:18:18 +0000 | [diff] [blame] | 579 | } |
| 580 | MR.setResultPointer((void*)Offset); |
| 581 | } |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 582 | |
Nate Begeman | af80638 | 2007-03-03 06:18:18 +0000 | [diff] [blame] | 583 | // If the symbol is locally defined, pass in the address of the section and |
| 584 | // the section index to the code which will generate the target relocation. |
| 585 | if (!Extern) { |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 586 | MachOSection &To = *SectionList[TargetSection - 1]; |
| 587 | TargetAddr = To.addr; |
| 588 | TargetIndex = To.Index; |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 589 | } |
Bill Wendling | 886b412 | 2007-02-03 02:39:40 +0000 | [diff] [blame] | 590 | |
| 591 | OutputBuffer RelocOut(MOS.RelocBuffer, is64Bit, isLittleEndian); |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 592 | OutputBuffer SecOut(MOS.getData(), is64Bit, isLittleEndian); |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 593 | |
Nate Begeman | fec910c | 2007-02-28 07:40:50 +0000 | [diff] [blame] | 594 | MOS.nreloc += GetTargetRelocation(MR, MOS.Index, TargetAddr, TargetIndex, |
| 595 | RelocOut, SecOut, Scattered, Extern); |
Nate Begeman | 019f851 | 2006-09-10 23:03:44 +0000 | [diff] [blame] | 596 | } |
Nate Begeman | 019f851 | 2006-09-10 23:03:44 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 599 | // InitMem - Write the value of a Constant to the specified memory location, |
| 600 | // converting it into bytes and relocations. |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 601 | void MachOWriter::InitMem(const Constant *C, uintptr_t Offset, |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 602 | const TargetData *TD, MachOSection* mos) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 603 | typedef std::pair<const Constant*, intptr_t> CPair; |
| 604 | std::vector<CPair> WorkList; |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 605 | uint8_t *Addr = &mos->getData()[0]; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 606 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 607 | WorkList.push_back(CPair(C,(intptr_t)Addr + Offset)); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 608 | |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 609 | intptr_t ScatteredOffset = 0; |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 610 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 611 | while (!WorkList.empty()) { |
| 612 | const Constant *PC = WorkList.back().first; |
| 613 | intptr_t PA = WorkList.back().second; |
| 614 | WorkList.pop_back(); |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 615 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 616 | if (isa<UndefValue>(PC)) { |
| 617 | continue; |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 618 | } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(PC)) { |
Duncan Sands | ca0ed74 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 619 | unsigned ElementSize = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 620 | TD->getTypeAllocSize(CP->getType()->getElementType()); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 621 | for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) |
| 622 | WorkList.push_back(CPair(CP->getOperand(i), PA+i*ElementSize)); |
| 623 | } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(PC)) { |
| 624 | // |
| 625 | // FIXME: Handle ConstantExpression. See EE::getConstantValue() |
| 626 | // |
| 627 | switch (CE->getOpcode()) { |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 628 | case Instruction::GetElementPtr: { |
Chris Lattner | 7f6b9d2 | 2007-02-10 20:31:59 +0000 | [diff] [blame] | 629 | SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end()); |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 630 | ScatteredOffset = TD->getIndexedOffset(CE->getOperand(0)->getType(), |
Chris Lattner | 7f6b9d2 | 2007-02-10 20:31:59 +0000 | [diff] [blame] | 631 | &Indices[0], Indices.size()); |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 632 | WorkList.push_back(CPair(CE->getOperand(0), PA)); |
| 633 | break; |
| 634 | } |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 635 | case Instruction::Add: |
| 636 | default: |
| 637 | cerr << "ConstantExpr not handled as global var init: " << *CE << "\n"; |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 638 | llvm_unreachable(0); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 639 | } |
Dan Gohman | 399101a | 2008-05-23 00:17:26 +0000 | [diff] [blame] | 640 | } else if (PC->getType()->isSingleValueType()) { |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 641 | unsigned char *ptr = (unsigned char *)PA; |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 642 | switch (PC->getType()->getTypeID()) { |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 643 | case Type::IntegerTyID: { |
| 644 | unsigned NumBits = cast<IntegerType>(PC->getType())->getBitWidth(); |
| 645 | uint64_t val = cast<ConstantInt>(PC)->getZExtValue(); |
| 646 | if (NumBits <= 8) |
| 647 | ptr[0] = val; |
| 648 | else if (NumBits <= 16) { |
| 649 | if (TD->isBigEndian()) |
| 650 | val = ByteSwap_16(val); |
| 651 | ptr[0] = val; |
| 652 | ptr[1] = val >> 8; |
| 653 | } else if (NumBits <= 32) { |
| 654 | if (TD->isBigEndian()) |
| 655 | val = ByteSwap_32(val); |
| 656 | ptr[0] = val; |
| 657 | ptr[1] = val >> 8; |
| 658 | ptr[2] = val >> 16; |
| 659 | ptr[3] = val >> 24; |
| 660 | } else if (NumBits <= 64) { |
| 661 | if (TD->isBigEndian()) |
| 662 | val = ByteSwap_64(val); |
| 663 | ptr[0] = val; |
| 664 | ptr[1] = val >> 8; |
| 665 | ptr[2] = val >> 16; |
| 666 | ptr[3] = val >> 24; |
| 667 | ptr[4] = val >> 32; |
| 668 | ptr[5] = val >> 40; |
| 669 | ptr[6] = val >> 48; |
| 670 | ptr[7] = val >> 56; |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 671 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 672 | llvm_unreachable("Not implemented: bit widths > 64"); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 673 | } |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 674 | break; |
| 675 | } |
| 676 | case Type::FloatTyID: { |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 677 | uint32_t val = cast<ConstantFP>(PC)->getValueAPF().bitcastToAPInt(). |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 678 | getZExtValue(); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 679 | if (TD->isBigEndian()) |
| 680 | val = ByteSwap_32(val); |
| 681 | ptr[0] = val; |
| 682 | ptr[1] = val >> 8; |
| 683 | ptr[2] = val >> 16; |
| 684 | ptr[3] = val >> 24; |
| 685 | break; |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 686 | } |
| 687 | case Type::DoubleTyID: { |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 688 | uint64_t val = cast<ConstantFP>(PC)->getValueAPF().bitcastToAPInt(). |
Dale Johannesen | 9d5f456 | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 689 | getZExtValue(); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 690 | if (TD->isBigEndian()) |
| 691 | val = ByteSwap_64(val); |
| 692 | ptr[0] = val; |
| 693 | ptr[1] = val >> 8; |
| 694 | ptr[2] = val >> 16; |
| 695 | ptr[3] = val >> 24; |
| 696 | ptr[4] = val >> 32; |
| 697 | ptr[5] = val >> 40; |
| 698 | ptr[6] = val >> 48; |
| 699 | ptr[7] = val >> 56; |
| 700 | break; |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 701 | } |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 702 | case Type::PointerTyID: |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 703 | if (isa<ConstantPointerNull>(PC)) |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 704 | memset(ptr, 0, TD->getPointerSize()); |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 705 | else if (const GlobalValue* GV = dyn_cast<GlobalValue>(PC)) { |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 706 | // FIXME: what about function stubs? |
Bruno Cardoso Lopes | 752e928 | 2009-07-06 06:40:51 +0000 | [diff] [blame] | 707 | mos->addRelocation(MachineRelocation::getGV(PA-(intptr_t)Addr, |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 708 | MachineRelocation::VANILLA, |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 709 | const_cast<GlobalValue*>(GV), |
| 710 | ScatteredOffset)); |
| 711 | ScatteredOffset = 0; |
| 712 | } else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 713 | llvm_unreachable("Unknown constant pointer type!"); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 714 | break; |
| 715 | default: |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 716 | std::string msg; |
| 717 | raw_string_ostream Msg(msg); |
| 718 | Msg << "ERROR: Constant unimp for type: " << *PC->getType(); |
| 719 | llvm_report_error(Msg.str()); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 720 | } |
| 721 | } else if (isa<ConstantAggregateZero>(PC)) { |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 722 | memset((void*)PA, 0, (size_t)TD->getTypeAllocSize(PC->getType())); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 723 | } else if (const ConstantArray *CPA = dyn_cast<ConstantArray>(PC)) { |
Duncan Sands | ca0ed74 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 724 | unsigned ElementSize = |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 725 | TD->getTypeAllocSize(CPA->getType()->getElementType()); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 726 | for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i) |
| 727 | WorkList.push_back(CPair(CPA->getOperand(i), PA+i*ElementSize)); |
| 728 | } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(PC)) { |
| 729 | const StructLayout *SL = |
| 730 | TD->getStructLayout(cast<StructType>(CPS->getType())); |
| 731 | for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i) |
Chris Lattner | b1919e2 | 2007-02-10 19:55:17 +0000 | [diff] [blame] | 732 | WorkList.push_back(CPair(CPS->getOperand(i), |
| 733 | PA+SL->getElementOffset(i))); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 734 | } else { |
| 735 | cerr << "Bad Type: " << *PC->getType() << "\n"; |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 736 | llvm_unreachable("Unknown constant type to initialize memory with!"); |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 737 | } |
| 738 | } |
| 739 | } |
| 740 | |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 741 | //===----------------------------------------------------------------------===// |
| 742 | // MachOSym Implementation |
| 743 | //===----------------------------------------------------------------------===// |
| 744 | |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 745 | MachOSym::MachOSym(const GlobalValue *gv, std::string name, uint8_t sect, |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 746 | const TargetAsmInfo *TAI) : |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 747 | GV(gv), n_strx(0), n_type(sect == NO_SECT ? N_UNDF : N_SECT), n_sect(sect), |
| 748 | n_desc(0), n_value(0) { |
| 749 | |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 750 | switch (GV->getLinkage()) { |
| 751 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame^] | 752 | llvm_unreachable("Unexpected linkage type!"); |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 753 | break; |
Duncan Sands | 667d4b8 | 2009-03-07 15:45:40 +0000 | [diff] [blame] | 754 | case GlobalValue::WeakAnyLinkage: |
| 755 | case GlobalValue::WeakODRLinkage: |
| 756 | case GlobalValue::LinkOnceAnyLinkage: |
| 757 | case GlobalValue::LinkOnceODRLinkage: |
Duncan Sands | 4dc2b39 | 2009-03-11 20:14:15 +0000 | [diff] [blame] | 758 | case GlobalValue::CommonLinkage: |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 759 | assert(!isa<Function>(gv) && "Unexpected linkage type for Function!"); |
| 760 | case GlobalValue::ExternalLinkage: |
Nate Begeman | bfaaaa6 | 2006-12-11 02:20:45 +0000 | [diff] [blame] | 761 | GVName = TAI->getGlobalPrefix() + name; |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 762 | n_type |= GV->hasHiddenVisibility() ? N_PEXT : N_EXT; |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 763 | break; |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 764 | case GlobalValue::PrivateLinkage: |
| 765 | GVName = TAI->getPrivateGlobalPrefix() + name; |
| 766 | break; |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 767 | case GlobalValue::InternalLinkage: |
Nate Begeman | 6635f35 | 2007-01-26 22:39:48 +0000 | [diff] [blame] | 768 | GVName = TAI->getGlobalPrefix() + name; |
Nate Begeman | 94be248 | 2006-09-08 22:42:09 +0000 | [diff] [blame] | 769 | break; |
| 770 | } |
| 771 | } |
Bruno Cardoso Lopes | a321dcd | 2009-06-03 03:43:31 +0000 | [diff] [blame] | 772 | |
| 773 | } // end namespace llvm |
| 774 | |