Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 1 | //===-- llvm/MC/WinCOFFObjectWriter.cpp -------------------------*- C++ -*-===// |
| 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 | // |
| 10 | // This file contains an implementation of a Win32 COFF object file writer. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "WinCOFFObjectWriter" |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 15 | |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCObjectWriter.h" |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCSection.h" |
| 18 | #include "llvm/MC/MCContext.h" |
| 19 | #include "llvm/MC/MCSymbol.h" |
| 20 | #include "llvm/MC/MCExpr.h" |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCValue.h" |
| 22 | #include "llvm/MC/MCAssembler.h" |
| 23 | #include "llvm/MC/MCAsmLayout.h" |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCSectionCOFF.h" |
| 25 | |
| 26 | #include "llvm/ADT/DenseMap.h" |
| 27 | #include "llvm/ADT/StringMap.h" |
| 28 | #include "llvm/ADT/StringRef.h" |
| 29 | |
| 30 | #include "llvm/Support/COFF.h" |
| 31 | #include "llvm/Support/Debug.h" |
| 32 | #include "llvm/Support/ErrorHandling.h" |
| 33 | |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 34 | #include "llvm/Support/TimeValue.h" |
Michael J. Spencer | ab3de49 | 2010-08-03 04:43:33 +0000 | [diff] [blame] | 35 | |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 36 | #include "../Target/X86/X86FixupKinds.h" |
| 37 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 38 | #include <cstdio> |
| 39 | |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 40 | using namespace llvm; |
| 41 | |
| 42 | namespace { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 43 | typedef llvm::SmallString<COFF::NameSize> name; |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 44 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 45 | enum AuxiliaryType { |
| 46 | ATFunctionDefinition, |
| 47 | ATbfAndefSymbol, |
| 48 | ATWeakExternal, |
| 49 | ATFile, |
| 50 | ATSectionDefinition |
| 51 | }; |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 52 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 53 | struct AuxSymbol { |
| 54 | AuxiliaryType AuxType; |
| 55 | COFF::Auxiliary Aux; |
| 56 | }; |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 57 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 58 | class COFFSymbol; |
| 59 | class COFFSection; |
| 60 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 61 | class COFFSymbol { |
| 62 | public: |
| 63 | COFF::symbol Data; |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 64 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 65 | typedef llvm::SmallVector<AuxSymbol, 1> AuxiliarySymbols; |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 66 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 67 | name Name; |
Michael J. Spencer | 9cf23a9 | 2010-09-27 21:17:39 +0000 | [diff] [blame] | 68 | int Index; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 69 | AuxiliarySymbols Aux; |
| 70 | COFFSymbol *Other; |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 71 | COFFSection *Section; |
| 72 | int Relocations; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 73 | |
| 74 | MCSymbolData const *MCData; |
| 75 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 76 | COFFSymbol(llvm::StringRef name); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 77 | size_t size() const; |
| 78 | void set_name_offset(uint32_t Offset); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 79 | |
| 80 | bool should_keep() const; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | // This class contains staging data for a COFF relocation entry. |
| 84 | struct COFFRelocation { |
| 85 | COFF::relocation Data; |
| 86 | COFFSymbol *Symb; |
| 87 | |
| 88 | COFFRelocation() : Symb(NULL) {} |
| 89 | static size_t size() { return COFF::RelocationSize; } |
| 90 | }; |
| 91 | |
| 92 | typedef std::vector<COFFRelocation> relocations; |
| 93 | |
| 94 | class COFFSection { |
| 95 | public: |
| 96 | COFF::section Header; |
| 97 | |
| 98 | std::string Name; |
Michael J. Spencer | 9cf23a9 | 2010-09-27 21:17:39 +0000 | [diff] [blame] | 99 | int Number; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 100 | MCSectionData const *MCData; |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 101 | COFFSymbol *Symbol; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 102 | relocations Relocations; |
| 103 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 104 | COFFSection(llvm::StringRef name); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 105 | static size_t size(); |
| 106 | }; |
| 107 | |
| 108 | // This class holds the COFF string table. |
| 109 | class StringTable { |
| 110 | typedef llvm::StringMap<size_t> map; |
| 111 | map Map; |
| 112 | |
| 113 | void update_length(); |
| 114 | public: |
| 115 | std::vector<char> Data; |
| 116 | |
| 117 | StringTable(); |
| 118 | size_t size() const; |
| 119 | size_t insert(llvm::StringRef String); |
| 120 | }; |
| 121 | |
| 122 | class WinCOFFObjectWriter : public MCObjectWriter { |
| 123 | public: |
| 124 | |
| 125 | typedef std::vector<COFFSymbol*> symbols; |
| 126 | typedef std::vector<COFFSection*> sections; |
| 127 | |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 128 | typedef DenseMap<MCSymbol const *, COFFSymbol *> symbol_map; |
| 129 | typedef DenseMap<MCSection const *, COFFSection *> section_map; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 130 | |
| 131 | // Root level file contents. |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 132 | bool Is64Bit; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 133 | COFF::header Header; |
| 134 | sections Sections; |
| 135 | symbols Symbols; |
| 136 | StringTable Strings; |
| 137 | |
| 138 | // Maps used during object file creation. |
| 139 | section_map SectionMap; |
| 140 | symbol_map SymbolMap; |
| 141 | |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 142 | WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit); |
Benjamin Kramer | 808ecfc | 2010-07-29 11:57:59 +0000 | [diff] [blame] | 143 | ~WinCOFFObjectWriter(); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 144 | |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 145 | COFFSymbol *createSymbol(StringRef Name); |
| 146 | COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol); |
| 147 | COFFSection *createSection(StringRef Name); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 148 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 149 | template <typename object_t, typename list_t> |
| 150 | object_t *createCOFFEntity(llvm::StringRef Name, list_t &List); |
| 151 | |
| 152 | void DefineSection(MCSectionData const &SectionData); |
| 153 | void DefineSymbol(MCSymbolData const &SymbolData, MCAssembler &Assembler); |
| 154 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 155 | void MakeSymbolReal(COFFSymbol &S, size_t Index); |
| 156 | void MakeSectionReal(COFFSection &S, size_t Number); |
| 157 | |
| 158 | bool ExportSection(COFFSection const *S); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 159 | bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm); |
| 160 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 161 | bool IsPhysicalSection(COFFSection *S); |
| 162 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 163 | // Entity writing methods. |
| 164 | |
| 165 | void WriteFileHeader(const COFF::header &Header); |
| 166 | void WriteSymbol(const COFFSymbol *S); |
| 167 | void WriteAuxiliarySymbols(const COFFSymbol::AuxiliarySymbols &S); |
| 168 | void WriteSectionHeader(const COFF::section &S); |
| 169 | void WriteRelocation(const COFF::relocation &R); |
| 170 | |
| 171 | // MCObjectWriter interface implementation. |
| 172 | |
Rafael Espindola | 85f2ecc | 2010-12-07 00:27:36 +0000 | [diff] [blame] | 173 | void ExecutePostLayoutBinding(MCAssembler &Asm, const MCAsmLayout &Layout); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 174 | |
| 175 | void RecordRelocation(const MCAssembler &Asm, |
| 176 | const MCAsmLayout &Layout, |
| 177 | const MCFragment *Fragment, |
| 178 | const MCFixup &Fixup, |
| 179 | MCValue Target, |
| 180 | uint64_t &FixedValue); |
| 181 | |
Daniel Dunbar | 1f3662a | 2010-12-17 04:54:54 +0000 | [diff] [blame] | 182 | virtual bool |
| 183 | IsSymbolRefDifferenceFullyResolved(const MCAssembler &Asm, |
| 184 | const MCSymbolRefExpr *A, |
| 185 | const MCSymbolRefExpr *B) const { |
| 186 | // FIXME: Implement this! |
| 187 | return false; |
| 188 | } |
| 189 | |
Rafael Espindola | 7070387 | 2010-09-30 02:22:20 +0000 | [diff] [blame] | 190 | virtual bool IsFixupFullyResolved(const MCAssembler &Asm, |
| 191 | const MCValue Target, |
| 192 | bool IsPCRel, |
| 193 | const MCFragment *DF) const; |
| 194 | |
Rafael Espindola | 8f413fa | 2010-10-05 15:11:03 +0000 | [diff] [blame] | 195 | void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 196 | }; |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 199 | static inline void write_uint32_le(void *Data, uint32_t const &Value) { |
| 200 | uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data); |
| 201 | Ptr[0] = (Value & 0x000000FF) >> 0; |
| 202 | Ptr[1] = (Value & 0x0000FF00) >> 8; |
| 203 | Ptr[2] = (Value & 0x00FF0000) >> 16; |
| 204 | Ptr[3] = (Value & 0xFF000000) >> 24; |
| 205 | } |
| 206 | |
| 207 | static inline void write_uint16_le(void *Data, uint16_t const &Value) { |
| 208 | uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data); |
| 209 | Ptr[0] = (Value & 0x00FF) >> 0; |
| 210 | Ptr[1] = (Value & 0xFF00) >> 8; |
| 211 | } |
| 212 | |
| 213 | static inline void write_uint8_le(void *Data, uint8_t const &Value) { |
| 214 | uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data); |
| 215 | Ptr[0] = (Value & 0xFF) >> 0; |
| 216 | } |
| 217 | |
| 218 | //------------------------------------------------------------------------------ |
| 219 | // Symbol class implementation |
| 220 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 221 | COFFSymbol::COFFSymbol(llvm::StringRef name) |
| 222 | : Name(name.begin(), name.end()) |
| 223 | , Other(NULL) |
| 224 | , Section(NULL) |
| 225 | , Relocations(0) |
| 226 | , MCData(NULL) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 227 | memset(&Data, 0, sizeof(Data)); |
| 228 | } |
| 229 | |
| 230 | size_t COFFSymbol::size() const { |
| 231 | return COFF::SymbolSize + (Data.NumberOfAuxSymbols * COFF::SymbolSize); |
| 232 | } |
| 233 | |
| 234 | // In the case that the name does not fit within 8 bytes, the offset |
| 235 | // into the string table is stored in the last 4 bytes instead, leaving |
| 236 | // the first 4 bytes as 0. |
| 237 | void COFFSymbol::set_name_offset(uint32_t Offset) { |
| 238 | write_uint32_le(Data.Name + 0, 0); |
| 239 | write_uint32_le(Data.Name + 4, Offset); |
| 240 | } |
| 241 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 242 | /// logic to decide if the symbol should be reported in the symbol table |
| 243 | bool COFFSymbol::should_keep() const { |
| 244 | // no section means its external, keep it |
| 245 | if (Section == NULL) |
| 246 | return true; |
| 247 | |
| 248 | // if it has relocations pointing at it, keep it |
| 249 | if (Relocations > 0) { |
| 250 | assert(Section->Number != -1 && "Sections with relocations must be real!"); |
| 251 | return true; |
| 252 | } |
| 253 | |
| 254 | // if the section its in is being droped, drop it |
| 255 | if (Section->Number == -1) |
| 256 | return false; |
| 257 | |
| 258 | // if it is the section symbol, keep it |
| 259 | if (Section->Symbol == this) |
| 260 | return true; |
| 261 | |
| 262 | // if its temporary, drop it |
| 263 | if (MCData && MCData->getSymbol().isTemporary()) |
| 264 | return false; |
| 265 | |
| 266 | // otherwise, keep it |
| 267 | return true; |
| 268 | } |
| 269 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 270 | //------------------------------------------------------------------------------ |
| 271 | // Section class implementation |
| 272 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 273 | COFFSection::COFFSection(llvm::StringRef name) |
| 274 | : Name(name) |
| 275 | , MCData(NULL) |
| 276 | , Symbol(NULL) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 277 | memset(&Header, 0, sizeof(Header)); |
| 278 | } |
| 279 | |
| 280 | size_t COFFSection::size() { |
| 281 | return COFF::SectionSize; |
| 282 | } |
| 283 | |
| 284 | //------------------------------------------------------------------------------ |
| 285 | // StringTable class implementation |
| 286 | |
| 287 | /// Write the length of the string table into Data. |
| 288 | /// The length of the string table includes uint32 length header. |
| 289 | void StringTable::update_length() { |
| 290 | write_uint32_le(&Data.front(), Data.size()); |
| 291 | } |
| 292 | |
| 293 | StringTable::StringTable() { |
| 294 | // The string table data begins with the length of the entire string table |
| 295 | // including the length header. Allocate space for this header. |
| 296 | Data.resize(4); |
| 297 | } |
| 298 | |
| 299 | size_t StringTable::size() const { |
| 300 | return Data.size(); |
| 301 | } |
| 302 | |
| 303 | /// Add String to the table iff it is not already there. |
| 304 | /// @returns the index into the string table where the string is now located. |
| 305 | size_t StringTable::insert(llvm::StringRef String) { |
| 306 | map::iterator i = Map.find(String); |
| 307 | |
| 308 | if (i != Map.end()) |
| 309 | return i->second; |
| 310 | |
| 311 | size_t Offset = Data.size(); |
| 312 | |
| 313 | // Insert string data into string table. |
| 314 | Data.insert(Data.end(), String.begin(), String.end()); |
| 315 | Data.push_back('\0'); |
| 316 | |
| 317 | // Put a reference to it in the map. |
| 318 | Map[String] = Offset; |
| 319 | |
| 320 | // Update the internal length field. |
| 321 | update_length(); |
| 322 | |
| 323 | return Offset; |
| 324 | } |
| 325 | |
| 326 | //------------------------------------------------------------------------------ |
| 327 | // WinCOFFObjectWriter class implementation |
| 328 | |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 329 | WinCOFFObjectWriter::WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 330 | : MCObjectWriter(OS, true) |
| 331 | , Is64Bit(is64Bit) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 332 | memset(&Header, 0, sizeof(Header)); |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 333 | |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 334 | Is64Bit ? Header.Machine = COFF::IMAGE_FILE_MACHINE_AMD64 |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 335 | : Header.Machine = COFF::IMAGE_FILE_MACHINE_I386; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Benjamin Kramer | 808ecfc | 2010-07-29 11:57:59 +0000 | [diff] [blame] | 338 | WinCOFFObjectWriter::~WinCOFFObjectWriter() { |
| 339 | for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I) |
| 340 | delete *I; |
| 341 | for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I) |
| 342 | delete *I; |
| 343 | } |
| 344 | |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 345 | COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 346 | return createCOFFEntity<COFFSymbol>(Name, Symbols); |
| 347 | } |
| 348 | |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 349 | COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){ |
| 350 | symbol_map::iterator i = SymbolMap.find(Symbol); |
| 351 | if (i != SymbolMap.end()) |
| 352 | return i->second; |
| 353 | COFFSymbol *RetSymbol |
| 354 | = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols); |
| 355 | SymbolMap[Symbol] = RetSymbol; |
| 356 | return RetSymbol; |
| 357 | } |
| 358 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 359 | COFFSection *WinCOFFObjectWriter::createSection(llvm::StringRef Name) { |
| 360 | return createCOFFEntity<COFFSection>(Name, Sections); |
| 361 | } |
| 362 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 363 | /// A template used to lookup or create a symbol/section, and initialize it if |
| 364 | /// needed. |
| 365 | template <typename object_t, typename list_t> |
| 366 | object_t *WinCOFFObjectWriter::createCOFFEntity(llvm::StringRef Name, |
| 367 | list_t &List) { |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 368 | object_t *Object = new object_t(Name); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 369 | |
| 370 | List.push_back(Object); |
| 371 | |
| 372 | return Object; |
| 373 | } |
| 374 | |
| 375 | /// This function takes a section data object from the assembler |
| 376 | /// and creates the associated COFF section staging object. |
| 377 | void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) { |
Michael J. Spencer | d47f4a9 | 2010-10-09 11:00:37 +0000 | [diff] [blame] | 378 | assert(SectionData.getSection().getVariant() == MCSection::SV_COFF |
| 379 | && "Got non COFF section in the COFF backend!"); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 380 | // FIXME: Not sure how to verify this (at least in a debug build). |
| 381 | MCSectionCOFF const &Sec = |
| 382 | static_cast<MCSectionCOFF const &>(SectionData.getSection()); |
| 383 | |
| 384 | COFFSection *coff_section = createSection(Sec.getSectionName()); |
| 385 | COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName()); |
| 386 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 387 | coff_section->Symbol = coff_symbol; |
| 388 | coff_symbol->Section = coff_section; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 389 | coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 390 | |
| 391 | // In this case the auxiliary symbol is a Section Definition. |
| 392 | coff_symbol->Aux.resize(1); |
| 393 | memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0])); |
| 394 | coff_symbol->Aux[0].AuxType = ATSectionDefinition; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 395 | coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection(); |
| 396 | |
| 397 | coff_section->Header.Characteristics = Sec.getCharacteristics(); |
| 398 | |
| 399 | uint32_t &Characteristics = coff_section->Header.Characteristics; |
| 400 | switch (SectionData.getAlignment()) { |
| 401 | case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break; |
| 402 | case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break; |
| 403 | case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break; |
| 404 | case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break; |
| 405 | case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break; |
| 406 | case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break; |
| 407 | case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break; |
| 408 | case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break; |
| 409 | case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break; |
| 410 | case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break; |
| 411 | case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break; |
| 412 | case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break; |
| 413 | case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break; |
| 414 | case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break; |
| 415 | default: |
| 416 | llvm_unreachable("unsupported section alignment"); |
| 417 | } |
| 418 | |
| 419 | // Bind internal COFF section to MC section. |
| 420 | coff_section->MCData = &SectionData; |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 421 | SectionMap[&SectionData.getSection()] = coff_section; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | /// This function takes a section data object from the assembler |
| 425 | /// and creates the associated COFF symbol staging object. |
| 426 | void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData, |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 427 | MCAssembler &Assembler) { |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 428 | COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&SymbolData.getSymbol()); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 429 | |
| 430 | coff_symbol->Data.Type = (SymbolData.getFlags() & 0x0000FFFF) >> 0; |
| 431 | coff_symbol->Data.StorageClass = (SymbolData.getFlags() & 0x00FF0000) >> 16; |
| 432 | |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 433 | if (SymbolData.getFlags() & COFF::SF_WeakExternal) { |
| 434 | coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL; |
| 435 | |
| 436 | if (SymbolData.getSymbol().isVariable()) { |
| 437 | coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL; |
| 438 | const MCExpr *Value = SymbolData.getSymbol().getVariableValue(); |
| 439 | |
| 440 | // FIXME: This assert message isn't very good. |
| 441 | assert(Value->getKind() == MCExpr::SymbolRef && |
| 442 | "Value must be a SymbolRef!"); |
| 443 | |
| 444 | const MCSymbolRefExpr *SymbolRef = |
| 445 | static_cast<const MCSymbolRefExpr *>(Value); |
| 446 | coff_symbol->Other = GetOrCreateCOFFSymbol(&SymbolRef->getSymbol()); |
| 447 | } else { |
| 448 | std::string WeakName = std::string(".weak.") |
| 449 | + SymbolData.getSymbol().getName().str() |
| 450 | + ".default"; |
| 451 | COFFSymbol *WeakDefault = createSymbol(WeakName); |
| 452 | WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE; |
| 453 | WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL; |
| 454 | WeakDefault->Data.Type = 0; |
| 455 | WeakDefault->Data.Value = 0; |
| 456 | coff_symbol->Other = WeakDefault; |
| 457 | } |
| 458 | |
| 459 | // Setup the Weak External auxiliary symbol. |
| 460 | coff_symbol->Aux.resize(1); |
| 461 | memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0])); |
| 462 | coff_symbol->Aux[0].AuxType = ATWeakExternal; |
| 463 | coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0; |
| 464 | coff_symbol->Aux[0].Aux.WeakExternal.Characteristics = |
| 465 | COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY; |
| 466 | } |
| 467 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 468 | // If no storage class was specified in the streamer, define it here. |
| 469 | if (coff_symbol->Data.StorageClass == 0) { |
| 470 | bool external = SymbolData.isExternal() || (SymbolData.Fragment == NULL); |
| 471 | |
| 472 | coff_symbol->Data.StorageClass = |
Michael J. Spencer | 81100d0 | 2010-09-29 03:13:41 +0000 | [diff] [blame] | 473 | external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 476 | if (SymbolData.Fragment != NULL) |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 477 | coff_symbol->Section = |
| 478 | SectionMap[&SymbolData.Fragment->getParent()->getSection()]; |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 479 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 480 | // Bind internal COFF symbol to MC symbol. |
| 481 | coff_symbol->MCData = &SymbolData; |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 482 | SymbolMap[&SymbolData.getSymbol()] = coff_symbol; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 485 | /// making a section real involves assigned it a number and putting |
| 486 | /// name into the string table if needed |
| 487 | void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) { |
| 488 | if (S.Name.size() > COFF::NameSize) { |
| 489 | size_t StringTableEntry = Strings.insert(S.Name.c_str()); |
| 490 | |
| 491 | // FIXME: Why is this number 999999? This number is never mentioned in the |
| 492 | // spec. I'm assuming this is due to the printed value needing to fit into |
| 493 | // the S.Header.Name field. In which case why not 9999999 (7 9's instead of |
| 494 | // 6)? The spec does not state if this entry should be null terminated in |
| 495 | // this case, and thus this seems to be the best way to do it. I think I |
| 496 | // just solved my own FIXME... |
| 497 | if (StringTableEntry > 999999) |
| 498 | report_fatal_error("COFF string table is greater than 999999 bytes."); |
| 499 | |
| 500 | std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry)); |
| 501 | } else |
| 502 | std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size()); |
| 503 | |
| 504 | S.Number = Number; |
| 505 | S.Symbol->Data.SectionNumber = S.Number; |
| 506 | S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number; |
| 507 | } |
| 508 | |
| 509 | void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) { |
| 510 | if (S.Name.size() > COFF::NameSize) { |
| 511 | size_t StringTableEntry = Strings.insert(S.Name.c_str()); |
| 512 | |
| 513 | S.set_name_offset(StringTableEntry); |
| 514 | } else |
| 515 | std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size()); |
| 516 | S.Index = Index; |
| 517 | } |
| 518 | |
| 519 | bool WinCOFFObjectWriter::ExportSection(COFFSection const *S) { |
| 520 | return !S->MCData->getFragmentList().empty(); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | bool WinCOFFObjectWriter::ExportSymbol(MCSymbolData const &SymbolData, |
| 524 | MCAssembler &Asm) { |
| 525 | // This doesn't seem to be right. Strings referred to from the .data section |
| 526 | // need symbols so they can be linked to code in the .text section right? |
| 527 | |
| 528 | // return Asm.isSymbolLinkerVisible (&SymbolData); |
| 529 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 530 | // For now, all non-variable symbols are exported, |
| 531 | // the linker will sort the rest out for us. |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 532 | return SymbolData.isExternal() || !SymbolData.getSymbol().isVariable(); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) { |
| 536 | return (S->Header.Characteristics |
| 537 | & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | //------------------------------------------------------------------------------ |
| 541 | // entity writing methods |
| 542 | |
| 543 | void WinCOFFObjectWriter::WriteFileHeader(const COFF::header &Header) { |
| 544 | WriteLE16(Header.Machine); |
| 545 | WriteLE16(Header.NumberOfSections); |
| 546 | WriteLE32(Header.TimeDateStamp); |
| 547 | WriteLE32(Header.PointerToSymbolTable); |
| 548 | WriteLE32(Header.NumberOfSymbols); |
| 549 | WriteLE16(Header.SizeOfOptionalHeader); |
| 550 | WriteLE16(Header.Characteristics); |
| 551 | } |
| 552 | |
| 553 | void WinCOFFObjectWriter::WriteSymbol(const COFFSymbol *S) { |
| 554 | WriteBytes(StringRef(S->Data.Name, COFF::NameSize)); |
| 555 | WriteLE32(S->Data.Value); |
| 556 | WriteLE16(S->Data.SectionNumber); |
| 557 | WriteLE16(S->Data.Type); |
| 558 | Write8(S->Data.StorageClass); |
| 559 | Write8(S->Data.NumberOfAuxSymbols); |
| 560 | WriteAuxiliarySymbols(S->Aux); |
| 561 | } |
| 562 | |
| 563 | void WinCOFFObjectWriter::WriteAuxiliarySymbols( |
| 564 | const COFFSymbol::AuxiliarySymbols &S) { |
| 565 | for(COFFSymbol::AuxiliarySymbols::const_iterator i = S.begin(), e = S.end(); |
| 566 | i != e; ++i) { |
| 567 | switch(i->AuxType) { |
| 568 | case ATFunctionDefinition: |
| 569 | WriteLE32(i->Aux.FunctionDefinition.TagIndex); |
| 570 | WriteLE32(i->Aux.FunctionDefinition.TotalSize); |
| 571 | WriteLE32(i->Aux.FunctionDefinition.PointerToLinenumber); |
| 572 | WriteLE32(i->Aux.FunctionDefinition.PointerToNextFunction); |
| 573 | WriteZeros(sizeof(i->Aux.FunctionDefinition.unused)); |
| 574 | break; |
| 575 | case ATbfAndefSymbol: |
| 576 | WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused1)); |
| 577 | WriteLE16(i->Aux.bfAndefSymbol.Linenumber); |
| 578 | WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused2)); |
| 579 | WriteLE32(i->Aux.bfAndefSymbol.PointerToNextFunction); |
| 580 | WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused3)); |
| 581 | break; |
| 582 | case ATWeakExternal: |
| 583 | WriteLE32(i->Aux.WeakExternal.TagIndex); |
| 584 | WriteLE32(i->Aux.WeakExternal.Characteristics); |
| 585 | WriteZeros(sizeof(i->Aux.WeakExternal.unused)); |
| 586 | break; |
| 587 | case ATFile: |
| 588 | WriteBytes(StringRef(reinterpret_cast<const char *>(i->Aux.File.FileName), |
| 589 | sizeof(i->Aux.File.FileName))); |
| 590 | break; |
| 591 | case ATSectionDefinition: |
| 592 | WriteLE32(i->Aux.SectionDefinition.Length); |
| 593 | WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations); |
| 594 | WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers); |
| 595 | WriteLE32(i->Aux.SectionDefinition.CheckSum); |
| 596 | WriteLE16(i->Aux.SectionDefinition.Number); |
| 597 | Write8(i->Aux.SectionDefinition.Selection); |
| 598 | WriteZeros(sizeof(i->Aux.SectionDefinition.unused)); |
| 599 | break; |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | void WinCOFFObjectWriter::WriteSectionHeader(const COFF::section &S) { |
| 605 | WriteBytes(StringRef(S.Name, COFF::NameSize)); |
| 606 | |
| 607 | WriteLE32(S.VirtualSize); |
| 608 | WriteLE32(S.VirtualAddress); |
| 609 | WriteLE32(S.SizeOfRawData); |
| 610 | WriteLE32(S.PointerToRawData); |
| 611 | WriteLE32(S.PointerToRelocations); |
| 612 | WriteLE32(S.PointerToLineNumbers); |
| 613 | WriteLE16(S.NumberOfRelocations); |
| 614 | WriteLE16(S.NumberOfLineNumbers); |
| 615 | WriteLE32(S.Characteristics); |
| 616 | } |
| 617 | |
| 618 | void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) { |
| 619 | WriteLE32(R.VirtualAddress); |
| 620 | WriteLE32(R.SymbolTableIndex); |
| 621 | WriteLE16(R.Type); |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | //////////////////////////////////////////////////////////////////////////////// |
| 625 | // MCObjectWriter interface implementations |
| 626 | |
Rafael Espindola | 85f2ecc | 2010-12-07 00:27:36 +0000 | [diff] [blame] | 627 | void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm, |
| 628 | const MCAsmLayout &Layout) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 629 | // "Define" each section & symbol. This creates section & symbol |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 630 | // entries in the staging area. |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 631 | |
| 632 | for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e; i++) |
| 633 | DefineSection(*i); |
| 634 | |
| 635 | for (MCAssembler::const_symbol_iterator i = Asm.symbol_begin(), |
| 636 | e = Asm.symbol_end(); i != e; i++) { |
| 637 | if (ExportSymbol(*i, Asm)) |
| 638 | DefineSymbol(*i, Asm); |
| 639 | } |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm, |
| 643 | const MCAsmLayout &Layout, |
| 644 | const MCFragment *Fragment, |
| 645 | const MCFixup &Fixup, |
| 646 | MCValue Target, |
| 647 | uint64_t &FixedValue) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 648 | assert(Target.getSymA() != NULL && "Relocation must reference a symbol!"); |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 649 | |
| 650 | const MCSymbol *A = &Target.getSymA()->getSymbol(); |
| 651 | MCSymbolData &A_SD = Asm.getSymbolData(*A); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 652 | |
| 653 | MCSectionData const *SectionData = Fragment->getParent(); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 654 | |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 655 | // Mark this symbol as requiring an entry in the symbol table. |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 656 | assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() && |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 657 | "Section must already have been defined in ExecutePostLayoutBinding!"); |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 658 | assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() && |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 659 | "Symbol must already have been defined in ExecutePostLayoutBinding!"); |
| 660 | |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 661 | COFFSection *coff_section = SectionMap[&SectionData->getSection()]; |
| 662 | COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()]; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 663 | |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 664 | if (Target.getSymB()) { |
Michael J. Spencer | b225ade | 2010-10-07 23:55:40 +0000 | [diff] [blame] | 665 | if (&Target.getSymA()->getSymbol().getSection() |
| 666 | != &Target.getSymB()->getSymbol().getSection()) { |
| 667 | llvm_unreachable("Symbol relative relocations are only allowed between " |
| 668 | "symbols in the same section"); |
| 669 | } |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 670 | const MCSymbol *B = &Target.getSymB()->getSymbol(); |
| 671 | MCSymbolData &B_SD = Asm.getSymbolData(*B); |
| 672 | |
Rafael Espindola | 81d8ea5 | 2010-12-06 03:24:04 +0000 | [diff] [blame] | 673 | FixedValue = Layout.getSymbolOffset(&A_SD) - Layout.getSymbolOffset(&B_SD); |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 674 | |
| 675 | // In the case where we have SymbA and SymB, we just need to store the delta |
| 676 | // between the two symbols. Update FixedValue to account for the delta, and |
| 677 | // skip recording the relocation. |
| 678 | return; |
| 679 | } else { |
| 680 | FixedValue = Target.getConstant(); |
| 681 | } |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 682 | |
| 683 | COFFRelocation Reloc; |
| 684 | |
Daniel Dunbar | 425f634 | 2010-07-31 21:08:54 +0000 | [diff] [blame] | 685 | Reloc.Data.SymbolTableIndex = 0; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 686 | Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 687 | |
Michael J. Spencer | ea1104a | 2010-10-05 19:48:12 +0000 | [diff] [blame] | 688 | // Turn relocations for temporary symbols into section relocations. |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 689 | if (coff_symbol->MCData->getSymbol().isTemporary()) { |
| 690 | Reloc.Symb = coff_symbol->Section->Symbol; |
Michael J. Spencer | eb6e77f | 2010-10-05 19:48:03 +0000 | [diff] [blame] | 691 | FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment) |
| 692 | + coff_symbol->MCData->getOffset(); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 693 | } else |
| 694 | Reloc.Symb = coff_symbol; |
| 695 | |
| 696 | ++Reloc.Symb->Relocations; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 697 | |
| 698 | Reloc.Data.VirtualAddress += Fixup.getOffset(); |
| 699 | |
Michael J. Spencer | ef0401a | 2010-10-21 20:49:38 +0000 | [diff] [blame] | 700 | switch ((unsigned)Fixup.getKind()) { |
Rafael Espindola | e04ed7e | 2010-11-28 14:17:56 +0000 | [diff] [blame] | 701 | case FK_PCRel_4: |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 702 | case X86::reloc_riprel_4byte: |
| 703 | case X86::reloc_riprel_4byte_movq_load: |
| 704 | Reloc.Data.Type = Is64Bit ? COFF::IMAGE_REL_AMD64_REL32 |
| 705 | : COFF::IMAGE_REL_I386_REL32; |
| 706 | // FIXME: Can anyone explain what this does other than adjust for the size |
| 707 | // of the offset? |
| 708 | FixedValue += 4; |
| 709 | break; |
| 710 | case FK_Data_4: |
Rafael Espindola | a8c02c3 | 2010-09-30 03:11:42 +0000 | [diff] [blame] | 711 | case X86::reloc_signed_4byte: |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 712 | Reloc.Data.Type = Is64Bit ? COFF::IMAGE_REL_AMD64_ADDR32 |
| 713 | : COFF::IMAGE_REL_I386_DIR32; |
| 714 | break; |
| 715 | case FK_Data_8: |
| 716 | if (Is64Bit) |
| 717 | Reloc.Data.Type = COFF::IMAGE_REL_AMD64_ADDR64; |
| 718 | else |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 719 | llvm_unreachable("unsupported relocation type"); |
Michael J. Spencer | 82c84fd | 2010-08-24 21:04:52 +0000 | [diff] [blame] | 720 | break; |
| 721 | default: |
| 722 | llvm_unreachable("unsupported relocation type"); |
| 723 | } |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 724 | |
| 725 | coff_section->Relocations.push_back(Reloc); |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Rafael Espindola | 7070387 | 2010-09-30 02:22:20 +0000 | [diff] [blame] | 728 | bool WinCOFFObjectWriter::IsFixupFullyResolved(const MCAssembler &Asm, |
| 729 | const MCValue Target, |
| 730 | bool IsPCRel, |
| 731 | const MCFragment *DF) const { |
Michael J. Spencer | b225ade | 2010-10-07 23:55:40 +0000 | [diff] [blame] | 732 | // If this is a PCrel relocation, find the section this fixup value is |
| 733 | // relative to. |
| 734 | const MCSection *BaseSection = 0; |
| 735 | if (IsPCRel) { |
| 736 | BaseSection = &DF->getParent()->getSection(); |
| 737 | assert(BaseSection); |
| 738 | } |
| 739 | |
| 740 | const MCSection *SectionA = 0; |
| 741 | const MCSymbol *SymbolA = 0; |
| 742 | if (const MCSymbolRefExpr *A = Target.getSymA()) { |
| 743 | SymbolA = &A->getSymbol(); |
| 744 | SectionA = &SymbolA->getSection(); |
| 745 | } |
| 746 | |
| 747 | const MCSection *SectionB = 0; |
| 748 | if (const MCSymbolRefExpr *B = Target.getSymB()) { |
| 749 | SectionB = &B->getSymbol().getSection(); |
| 750 | } |
| 751 | |
| 752 | if (!BaseSection) |
| 753 | return SectionA == SectionB; |
| 754 | |
| 755 | return !SectionB && BaseSection == SectionA; |
Rafael Espindola | 7070387 | 2010-09-30 02:22:20 +0000 | [diff] [blame] | 756 | } |
| 757 | |
Rafael Espindola | 8f413fa | 2010-10-05 15:11:03 +0000 | [diff] [blame] | 758 | void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm, |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 759 | const MCAsmLayout &Layout) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 760 | // Assign symbol and section indexes and offsets. |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 761 | Header.NumberOfSections = 0; |
| 762 | |
| 763 | for (sections::iterator i = Sections.begin(), |
| 764 | e = Sections.end(); i != e; i++) { |
Rafael Espindola | 85f2ecc | 2010-12-07 00:27:36 +0000 | [diff] [blame] | 765 | if (Layout.getSectionAddressSize((*i)->MCData) > 0) { |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 766 | MakeSectionReal(**i, ++Header.NumberOfSections); |
| 767 | } else { |
| 768 | (*i)->Number = -1; |
| 769 | } |
| 770 | } |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 771 | |
| 772 | Header.NumberOfSymbols = 0; |
| 773 | |
| 774 | for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) { |
| 775 | COFFSymbol *coff_symbol = *i; |
| 776 | MCSymbolData const *SymbolData = coff_symbol->MCData; |
| 777 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 778 | // Update section number & offset for symbols that have them. |
| 779 | if ((SymbolData != NULL) && (SymbolData->Fragment != NULL)) { |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 780 | assert(coff_symbol->Section != NULL); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 781 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 782 | coff_symbol->Data.SectionNumber = coff_symbol->Section->Number; |
Michael J. Spencer | 237f8fe | 2010-08-03 05:02:46 +0000 | [diff] [blame] | 783 | coff_symbol->Data.Value = Layout.getFragmentOffset(SymbolData->Fragment) |
| 784 | + SymbolData->Offset; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 785 | } |
| 786 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 787 | if (coff_symbol->should_keep()) { |
| 788 | MakeSymbolReal(*coff_symbol, Header.NumberOfSymbols++); |
| 789 | |
| 790 | // Update auxiliary symbol info. |
| 791 | coff_symbol->Data.NumberOfAuxSymbols = coff_symbol->Aux.size(); |
| 792 | Header.NumberOfSymbols += coff_symbol->Data.NumberOfAuxSymbols; |
| 793 | } else |
| 794 | coff_symbol->Index = -1; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | // Fixup weak external references. |
| 798 | for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) { |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 799 | COFFSymbol *coff_symbol = *i; |
| 800 | if (coff_symbol->Other != NULL) { |
| 801 | assert(coff_symbol->Index != -1); |
| 802 | assert(coff_symbol->Aux.size() == 1 && |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 803 | "Symbol must contain one aux symbol!"); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 804 | assert(coff_symbol->Aux[0].AuxType == ATWeakExternal && |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 805 | "Symbol's aux symbol must be a Weak External!"); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 806 | coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 807 | } |
| 808 | } |
| 809 | |
| 810 | // Assign file offsets to COFF object file structures. |
| 811 | |
| 812 | unsigned offset = 0; |
| 813 | |
| 814 | offset += COFF::HeaderSize; |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 815 | offset += COFF::SectionSize * Header.NumberOfSections; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 816 | |
| 817 | for (MCAssembler::const_iterator i = Asm.begin(), |
| 818 | e = Asm.end(); |
| 819 | i != e; i++) { |
Michael J. Spencer | 4cee289 | 2010-10-16 08:25:57 +0000 | [diff] [blame] | 820 | COFFSection *Sec = SectionMap[&i->getSection()]; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 821 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 822 | if (Sec->Number == -1) |
| 823 | continue; |
| 824 | |
Michael J. Spencer | 28ca86a | 2010-10-09 16:04:45 +0000 | [diff] [blame] | 825 | Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 826 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 827 | if (IsPhysicalSection(Sec)) { |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 828 | Sec->Header.PointerToRawData = offset; |
| 829 | |
| 830 | offset += Sec->Header.SizeOfRawData; |
| 831 | } |
| 832 | |
| 833 | if (Sec->Relocations.size() > 0) { |
| 834 | Sec->Header.NumberOfRelocations = Sec->Relocations.size(); |
| 835 | Sec->Header.PointerToRelocations = offset; |
| 836 | |
| 837 | offset += COFF::RelocationSize * Sec->Relocations.size(); |
| 838 | |
| 839 | for (relocations::iterator cr = Sec->Relocations.begin(), |
| 840 | er = Sec->Relocations.end(); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 841 | cr != er; ++cr) { |
| 842 | assert((*cr).Symb->Index != -1); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 843 | (*cr).Data.SymbolTableIndex = (*cr).Symb->Index; |
| 844 | } |
| 845 | } |
| 846 | |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 847 | assert(Sec->Symbol->Aux.size() == 1 |
| 848 | && "Section's symbol must have one aux!"); |
| 849 | AuxSymbol &Aux = Sec->Symbol->Aux[0]; |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 850 | assert(Aux.AuxType == ATSectionDefinition && |
| 851 | "Section's symbol's aux symbol must be a Section Definition!"); |
| 852 | Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData; |
| 853 | Aux.Aux.SectionDefinition.NumberOfRelocations = |
| 854 | Sec->Header.NumberOfRelocations; |
| 855 | Aux.Aux.SectionDefinition.NumberOfLinenumbers = |
| 856 | Sec->Header.NumberOfLineNumbers; |
| 857 | } |
| 858 | |
| 859 | Header.PointerToSymbolTable = offset; |
| 860 | |
Michael J. Spencer | ab3de49 | 2010-08-03 04:43:33 +0000 | [diff] [blame] | 861 | Header.TimeDateStamp = sys::TimeValue::now().toEpochTime(); |
| 862 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 863 | // Write it all to disk... |
| 864 | WriteFileHeader(Header); |
| 865 | |
| 866 | { |
| 867 | sections::iterator i, ie; |
| 868 | MCAssembler::const_iterator j, je; |
| 869 | |
| 870 | for (i = Sections.begin(), ie = Sections.end(); i != ie; i++) |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 871 | if ((*i)->Number != -1) |
| 872 | WriteSectionHeader((*i)->Header); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 873 | |
| 874 | for (i = Sections.begin(), ie = Sections.end(), |
| 875 | j = Asm.begin(), je = Asm.end(); |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 876 | (i != ie) && (j != je); ++i, ++j) { |
| 877 | |
| 878 | if ((*i)->Number == -1) |
| 879 | continue; |
| 880 | |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 881 | if ((*i)->Header.PointerToRawData != 0) { |
| 882 | assert(OS.tell() == (*i)->Header.PointerToRawData && |
| 883 | "Section::PointerToRawData is insane!"); |
| 884 | |
Daniel Dunbar | 5d2477c | 2010-12-17 02:45:59 +0000 | [diff] [blame] | 885 | Asm.WriteSectionData(j, Layout); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | if ((*i)->Relocations.size() > 0) { |
| 889 | assert(OS.tell() == (*i)->Header.PointerToRelocations && |
| 890 | "Section::PointerToRelocations is insane!"); |
| 891 | |
| 892 | for (relocations::const_iterator k = (*i)->Relocations.begin(), |
| 893 | ke = (*i)->Relocations.end(); |
| 894 | k != ke; k++) { |
| 895 | WriteRelocation(k->Data); |
| 896 | } |
| 897 | } else |
| 898 | assert((*i)->Header.PointerToRelocations == 0 && |
| 899 | "Section::PointerToRelocations is insane!"); |
| 900 | } |
| 901 | } |
| 902 | |
| 903 | assert(OS.tell() == Header.PointerToSymbolTable && |
| 904 | "Header::PointerToSymbolTable is insane!"); |
| 905 | |
| 906 | for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) |
Michael J. Spencer | a72d878 | 2010-09-27 08:58:26 +0000 | [diff] [blame] | 907 | if ((*i)->Index != -1) |
| 908 | WriteSymbol(*i); |
Michael J. Spencer | 801a359 | 2010-07-26 02:17:32 +0000 | [diff] [blame] | 909 | |
| 910 | OS.write((char const *)&Strings.Data.front(), Strings.Data.size()); |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 911 | } |
| 912 | |
| 913 | //------------------------------------------------------------------------------ |
| 914 | // WinCOFFObjectWriter factory function |
| 915 | |
| 916 | namespace llvm { |
Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 917 | MCObjectWriter *createWinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) { |
| 918 | return new WinCOFFObjectWriter(OS, is64Bit); |
Chris Lattner | b162290 | 2010-07-11 22:07:02 +0000 | [diff] [blame] | 919 | } |
Michael J. Spencer | 933304e | 2010-07-26 03:01:28 +0000 | [diff] [blame] | 920 | } |