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