blob: fd79203fdacb87a29169d3d61a378ed3680b0aa5 [file] [log] [blame]
Chris Lattnerb1622902010-07-11 22:07:02 +00001//===-- 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. Spencer801a3592010-07-26 02:17:32 +000015
Chris Lattnerb1622902010-07-11 22:07:02 +000016#include "llvm/MC/MCObjectWriter.h"
Michael J. Spencer801a3592010-07-26 02:17:32 +000017#include "llvm/MC/MCSection.h"
18#include "llvm/MC/MCContext.h"
19#include "llvm/MC/MCSymbol.h"
20#include "llvm/MC/MCExpr.h"
Chris Lattnerb1622902010-07-11 22:07:02 +000021#include "llvm/MC/MCValue.h"
22#include "llvm/MC/MCAssembler.h"
23#include "llvm/MC/MCAsmLayout.h"
Michael J. Spencer801a3592010-07-26 02:17:32 +000024#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. Spencerab3de492010-08-03 04:43:33 +000034#include "llvm/System/TimeValue.h"
35
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +000036#include "../Target/X86/X86FixupKinds.h"
37
Michael J. Spencer801a3592010-07-26 02:17:32 +000038#include <cstdio>
39
Chris Lattnerb1622902010-07-11 22:07:02 +000040using namespace llvm;
41
42namespace {
Michael J. Spencer801a3592010-07-26 02:17:32 +000043typedef llvm::SmallString<COFF::NameSize> name;
Chris Lattnerb1622902010-07-11 22:07:02 +000044
Michael J. Spencer801a3592010-07-26 02:17:32 +000045enum AuxiliaryType {
46 ATFunctionDefinition,
47 ATbfAndefSymbol,
48 ATWeakExternal,
49 ATFile,
50 ATSectionDefinition
51};
Chris Lattnerb1622902010-07-11 22:07:02 +000052
Michael J. Spencer801a3592010-07-26 02:17:32 +000053struct AuxSymbol {
54 AuxiliaryType AuxType;
55 COFF::Auxiliary Aux;
56};
Chris Lattnerb1622902010-07-11 22:07:02 +000057
Michael J. Spencera72d8782010-09-27 08:58:26 +000058class COFFSymbol;
59class COFFSection;
60
Michael J. Spencer801a3592010-07-26 02:17:32 +000061class COFFSymbol {
62public:
63 COFF::symbol Data;
Chris Lattnerb1622902010-07-11 22:07:02 +000064
Michael J. Spencer801a3592010-07-26 02:17:32 +000065 typedef llvm::SmallVector<AuxSymbol, 1> AuxiliarySymbols;
Chris Lattnerb1622902010-07-11 22:07:02 +000066
Michael J. Spencer801a3592010-07-26 02:17:32 +000067 name Name;
Michael J. Spencer9cf23a92010-09-27 21:17:39 +000068 int Index;
Michael J. Spencer801a3592010-07-26 02:17:32 +000069 AuxiliarySymbols Aux;
70 COFFSymbol *Other;
Michael J. Spencera72d8782010-09-27 08:58:26 +000071 COFFSection *Section;
72 int Relocations;
Michael J. Spencer801a3592010-07-26 02:17:32 +000073
74 MCSymbolData const *MCData;
75
Michael J. Spencera72d8782010-09-27 08:58:26 +000076 COFFSymbol(llvm::StringRef name);
Michael J. Spencer801a3592010-07-26 02:17:32 +000077 size_t size() const;
78 void set_name_offset(uint32_t Offset);
Michael J. Spencera72d8782010-09-27 08:58:26 +000079
80 bool should_keep() const;
Michael J. Spencer801a3592010-07-26 02:17:32 +000081};
82
83// This class contains staging data for a COFF relocation entry.
84struct COFFRelocation {
85 COFF::relocation Data;
86 COFFSymbol *Symb;
87
88 COFFRelocation() : Symb(NULL) {}
89 static size_t size() { return COFF::RelocationSize; }
90};
91
92typedef std::vector<COFFRelocation> relocations;
93
94class COFFSection {
95public:
96 COFF::section Header;
97
98 std::string Name;
Michael J. Spencer9cf23a92010-09-27 21:17:39 +000099 int Number;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000100 MCSectionData const *MCData;
Michael J. Spencera72d8782010-09-27 08:58:26 +0000101 COFFSymbol *Symbol;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000102 relocations Relocations;
103
Michael J. Spencera72d8782010-09-27 08:58:26 +0000104 COFFSection(llvm::StringRef name);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000105 static size_t size();
106};
107
108// This class holds the COFF string table.
109class StringTable {
110 typedef llvm::StringMap<size_t> map;
111 map Map;
112
113 void update_length();
114public:
115 std::vector<char> Data;
116
117 StringTable();
118 size_t size() const;
119 size_t insert(llvm::StringRef String);
120};
121
122class WinCOFFObjectWriter : public MCObjectWriter {
123public:
124
125 typedef std::vector<COFFSymbol*> symbols;
126 typedef std::vector<COFFSection*> sections;
127
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000128 typedef DenseMap<MCSymbol const *, COFFSymbol *> symbol_map;
129 typedef DenseMap<MCSection const *, COFFSection *> section_map;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000130
131 // Root level file contents.
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000132 bool Is64Bit;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000133 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. Spencerda0bfcd2010-08-21 05:58:13 +0000142 WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit);
Benjamin Kramer808ecfc2010-07-29 11:57:59 +0000143 ~WinCOFFObjectWriter();
Michael J. Spencer801a3592010-07-26 02:17:32 +0000144
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000145 COFFSymbol *createSymbol(StringRef Name);
146 COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol);
147 COFFSection *createSection(StringRef Name);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000148
Michael J. Spencer801a3592010-07-26 02:17:32 +0000149 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. Spencera72d8782010-09-27 08:58:26 +0000155 void MakeSymbolReal(COFFSymbol &S, size_t Index);
156 void MakeSectionReal(COFFSection &S, size_t Number);
157
158 bool ExportSection(COFFSection const *S);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000159 bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm);
160
Michael J. Spencera72d8782010-09-27 08:58:26 +0000161 bool IsPhysicalSection(COFFSection *S);
162
Michael J. Spencer801a3592010-07-26 02:17:32 +0000163 // 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
173 void ExecutePostLayoutBinding(MCAssembler &Asm);
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
Rafael Espindola70703872010-09-30 02:22:20 +0000182 virtual bool IsFixupFullyResolved(const MCAssembler &Asm,
183 const MCValue Target,
184 bool IsPCRel,
185 const MCFragment *DF) const;
186
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000187 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000188};
Chris Lattnerb1622902010-07-11 22:07:02 +0000189}
190
Michael J. Spencer801a3592010-07-26 02:17:32 +0000191static inline void write_uint32_le(void *Data, uint32_t const &Value) {
192 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
193 Ptr[0] = (Value & 0x000000FF) >> 0;
194 Ptr[1] = (Value & 0x0000FF00) >> 8;
195 Ptr[2] = (Value & 0x00FF0000) >> 16;
196 Ptr[3] = (Value & 0xFF000000) >> 24;
197}
198
199static inline void write_uint16_le(void *Data, uint16_t const &Value) {
200 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
201 Ptr[0] = (Value & 0x00FF) >> 0;
202 Ptr[1] = (Value & 0xFF00) >> 8;
203}
204
205static inline void write_uint8_le(void *Data, uint8_t const &Value) {
206 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
207 Ptr[0] = (Value & 0xFF) >> 0;
208}
209
210//------------------------------------------------------------------------------
211// Symbol class implementation
212
Michael J. Spencera72d8782010-09-27 08:58:26 +0000213COFFSymbol::COFFSymbol(llvm::StringRef name)
214 : Name(name.begin(), name.end())
215 , Other(NULL)
216 , Section(NULL)
217 , Relocations(0)
218 , MCData(NULL) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000219 memset(&Data, 0, sizeof(Data));
220}
221
222size_t COFFSymbol::size() const {
223 return COFF::SymbolSize + (Data.NumberOfAuxSymbols * COFF::SymbolSize);
224}
225
226// In the case that the name does not fit within 8 bytes, the offset
227// into the string table is stored in the last 4 bytes instead, leaving
228// the first 4 bytes as 0.
229void COFFSymbol::set_name_offset(uint32_t Offset) {
230 write_uint32_le(Data.Name + 0, 0);
231 write_uint32_le(Data.Name + 4, Offset);
232}
233
Michael J. Spencera72d8782010-09-27 08:58:26 +0000234/// logic to decide if the symbol should be reported in the symbol table
235bool COFFSymbol::should_keep() const {
236 // no section means its external, keep it
237 if (Section == NULL)
238 return true;
239
240 // if it has relocations pointing at it, keep it
241 if (Relocations > 0) {
242 assert(Section->Number != -1 && "Sections with relocations must be real!");
243 return true;
244 }
245
246 // if the section its in is being droped, drop it
247 if (Section->Number == -1)
248 return false;
249
250 // if it is the section symbol, keep it
251 if (Section->Symbol == this)
252 return true;
253
254 // if its temporary, drop it
255 if (MCData && MCData->getSymbol().isTemporary())
256 return false;
257
258 // otherwise, keep it
259 return true;
260}
261
Michael J. Spencer801a3592010-07-26 02:17:32 +0000262//------------------------------------------------------------------------------
263// Section class implementation
264
Michael J. Spencera72d8782010-09-27 08:58:26 +0000265COFFSection::COFFSection(llvm::StringRef name)
266 : Name(name)
267 , MCData(NULL)
268 , Symbol(NULL) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000269 memset(&Header, 0, sizeof(Header));
270}
271
272size_t COFFSection::size() {
273 return COFF::SectionSize;
274}
275
276//------------------------------------------------------------------------------
277// StringTable class implementation
278
279/// Write the length of the string table into Data.
280/// The length of the string table includes uint32 length header.
281void StringTable::update_length() {
282 write_uint32_le(&Data.front(), Data.size());
283}
284
285StringTable::StringTable() {
286 // The string table data begins with the length of the entire string table
287 // including the length header. Allocate space for this header.
288 Data.resize(4);
289}
290
291size_t StringTable::size() const {
292 return Data.size();
293}
294
295/// Add String to the table iff it is not already there.
296/// @returns the index into the string table where the string is now located.
297size_t StringTable::insert(llvm::StringRef String) {
298 map::iterator i = Map.find(String);
299
300 if (i != Map.end())
301 return i->second;
302
303 size_t Offset = Data.size();
304
305 // Insert string data into string table.
306 Data.insert(Data.end(), String.begin(), String.end());
307 Data.push_back('\0');
308
309 // Put a reference to it in the map.
310 Map[String] = Offset;
311
312 // Update the internal length field.
313 update_length();
314
315 return Offset;
316}
317
318//------------------------------------------------------------------------------
319// WinCOFFObjectWriter class implementation
320
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000321WinCOFFObjectWriter::WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit)
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000322 : MCObjectWriter(OS, true)
323 , Is64Bit(is64Bit) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000324 memset(&Header, 0, sizeof(Header));
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000325
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000326 Is64Bit ? Header.Machine = COFF::IMAGE_FILE_MACHINE_AMD64
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000327 : Header.Machine = COFF::IMAGE_FILE_MACHINE_I386;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000328}
329
Benjamin Kramer808ecfc2010-07-29 11:57:59 +0000330WinCOFFObjectWriter::~WinCOFFObjectWriter() {
331 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
332 delete *I;
333 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
334 delete *I;
335}
336
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000337COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000338 return createCOFFEntity<COFFSymbol>(Name, Symbols);
339}
340
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000341COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
342 symbol_map::iterator i = SymbolMap.find(Symbol);
343 if (i != SymbolMap.end())
344 return i->second;
345 COFFSymbol *RetSymbol
346 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
347 SymbolMap[Symbol] = RetSymbol;
348 return RetSymbol;
349}
350
Michael J. Spencer801a3592010-07-26 02:17:32 +0000351COFFSection *WinCOFFObjectWriter::createSection(llvm::StringRef Name) {
352 return createCOFFEntity<COFFSection>(Name, Sections);
353}
354
Michael J. Spencer801a3592010-07-26 02:17:32 +0000355/// A template used to lookup or create a symbol/section, and initialize it if
356/// needed.
357template <typename object_t, typename list_t>
358object_t *WinCOFFObjectWriter::createCOFFEntity(llvm::StringRef Name,
359 list_t &List) {
Michael J. Spencera72d8782010-09-27 08:58:26 +0000360 object_t *Object = new object_t(Name);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000361
362 List.push_back(Object);
363
364 return Object;
365}
366
367/// This function takes a section data object from the assembler
368/// and creates the associated COFF section staging object.
369void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000370 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
371 && "Got non COFF section in the COFF backend!");
Michael J. Spencer801a3592010-07-26 02:17:32 +0000372 // FIXME: Not sure how to verify this (at least in a debug build).
373 MCSectionCOFF const &Sec =
374 static_cast<MCSectionCOFF const &>(SectionData.getSection());
375
376 COFFSection *coff_section = createSection(Sec.getSectionName());
377 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
378
Michael J. Spencera72d8782010-09-27 08:58:26 +0000379 coff_section->Symbol = coff_symbol;
380 coff_symbol->Section = coff_section;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000381 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000382
383 // In this case the auxiliary symbol is a Section Definition.
384 coff_symbol->Aux.resize(1);
385 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
386 coff_symbol->Aux[0].AuxType = ATSectionDefinition;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000387 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
388
389 coff_section->Header.Characteristics = Sec.getCharacteristics();
390
391 uint32_t &Characteristics = coff_section->Header.Characteristics;
392 switch (SectionData.getAlignment()) {
393 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
394 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
395 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
396 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
397 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
398 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
399 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break;
400 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break;
401 case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break;
402 case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break;
403 case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break;
404 case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break;
405 case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break;
406 case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break;
407 default:
408 llvm_unreachable("unsupported section alignment");
409 }
410
411 // Bind internal COFF section to MC section.
412 coff_section->MCData = &SectionData;
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000413 SectionMap[&SectionData.getSection()] = coff_section;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000414}
415
416/// This function takes a section data object from the assembler
417/// and creates the associated COFF symbol staging object.
418void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData,
Michael J. Spencera72d8782010-09-27 08:58:26 +0000419 MCAssembler &Assembler) {
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000420 COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&SymbolData.getSymbol());
Michael J. Spencer801a3592010-07-26 02:17:32 +0000421
422 coff_symbol->Data.Type = (SymbolData.getFlags() & 0x0000FFFF) >> 0;
423 coff_symbol->Data.StorageClass = (SymbolData.getFlags() & 0x00FF0000) >> 16;
424
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000425 if (SymbolData.getFlags() & COFF::SF_WeakExternal) {
426 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
427
428 if (SymbolData.getSymbol().isVariable()) {
429 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
430 const MCExpr *Value = SymbolData.getSymbol().getVariableValue();
431
432 // FIXME: This assert message isn't very good.
433 assert(Value->getKind() == MCExpr::SymbolRef &&
434 "Value must be a SymbolRef!");
435
436 const MCSymbolRefExpr *SymbolRef =
437 static_cast<const MCSymbolRefExpr *>(Value);
438 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymbolRef->getSymbol());
439 } else {
440 std::string WeakName = std::string(".weak.")
441 + SymbolData.getSymbol().getName().str()
442 + ".default";
443 COFFSymbol *WeakDefault = createSymbol(WeakName);
444 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
445 WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL;
446 WeakDefault->Data.Type = 0;
447 WeakDefault->Data.Value = 0;
448 coff_symbol->Other = WeakDefault;
449 }
450
451 // Setup the Weak External auxiliary symbol.
452 coff_symbol->Aux.resize(1);
453 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
454 coff_symbol->Aux[0].AuxType = ATWeakExternal;
455 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0;
456 coff_symbol->Aux[0].Aux.WeakExternal.Characteristics =
457 COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY;
458 }
459
Michael J. Spencer801a3592010-07-26 02:17:32 +0000460 // If no storage class was specified in the streamer, define it here.
461 if (coff_symbol->Data.StorageClass == 0) {
462 bool external = SymbolData.isExternal() || (SymbolData.Fragment == NULL);
463
464 coff_symbol->Data.StorageClass =
Michael J. Spencer81100d02010-09-29 03:13:41 +0000465 external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000466 }
467
Michael J. Spencera72d8782010-09-27 08:58:26 +0000468 if (SymbolData.Fragment != NULL)
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000469 coff_symbol->Section =
470 SectionMap[&SymbolData.Fragment->getParent()->getSection()];
Michael J. Spencera72d8782010-09-27 08:58:26 +0000471
Michael J. Spencer801a3592010-07-26 02:17:32 +0000472 // Bind internal COFF symbol to MC symbol.
473 coff_symbol->MCData = &SymbolData;
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000474 SymbolMap[&SymbolData.getSymbol()] = coff_symbol;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000475}
476
Michael J. Spencera72d8782010-09-27 08:58:26 +0000477/// making a section real involves assigned it a number and putting
478/// name into the string table if needed
479void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
480 if (S.Name.size() > COFF::NameSize) {
481 size_t StringTableEntry = Strings.insert(S.Name.c_str());
482
483 // FIXME: Why is this number 999999? This number is never mentioned in the
484 // spec. I'm assuming this is due to the printed value needing to fit into
485 // the S.Header.Name field. In which case why not 9999999 (7 9's instead of
486 // 6)? The spec does not state if this entry should be null terminated in
487 // this case, and thus this seems to be the best way to do it. I think I
488 // just solved my own FIXME...
489 if (StringTableEntry > 999999)
490 report_fatal_error("COFF string table is greater than 999999 bytes.");
491
492 std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry));
493 } else
494 std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size());
495
496 S.Number = Number;
497 S.Symbol->Data.SectionNumber = S.Number;
498 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
499}
500
501void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
502 if (S.Name.size() > COFF::NameSize) {
503 size_t StringTableEntry = Strings.insert(S.Name.c_str());
504
505 S.set_name_offset(StringTableEntry);
506 } else
507 std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size());
508 S.Index = Index;
509}
510
511bool WinCOFFObjectWriter::ExportSection(COFFSection const *S) {
512 return !S->MCData->getFragmentList().empty();
Michael J. Spencer801a3592010-07-26 02:17:32 +0000513}
514
515bool WinCOFFObjectWriter::ExportSymbol(MCSymbolData const &SymbolData,
516 MCAssembler &Asm) {
517 // This doesn't seem to be right. Strings referred to from the .data section
518 // need symbols so they can be linked to code in the .text section right?
519
520 // return Asm.isSymbolLinkerVisible (&SymbolData);
521
Michael J. Spencera72d8782010-09-27 08:58:26 +0000522 // For now, all non-variable symbols are exported,
523 // the linker will sort the rest out for us.
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000524 return SymbolData.isExternal() || !SymbolData.getSymbol().isVariable();
Michael J. Spencera72d8782010-09-27 08:58:26 +0000525}
526
527bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
528 return (S->Header.Characteristics
529 & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000530}
531
532//------------------------------------------------------------------------------
533// entity writing methods
534
535void WinCOFFObjectWriter::WriteFileHeader(const COFF::header &Header) {
536 WriteLE16(Header.Machine);
537 WriteLE16(Header.NumberOfSections);
538 WriteLE32(Header.TimeDateStamp);
539 WriteLE32(Header.PointerToSymbolTable);
540 WriteLE32(Header.NumberOfSymbols);
541 WriteLE16(Header.SizeOfOptionalHeader);
542 WriteLE16(Header.Characteristics);
543}
544
545void WinCOFFObjectWriter::WriteSymbol(const COFFSymbol *S) {
546 WriteBytes(StringRef(S->Data.Name, COFF::NameSize));
547 WriteLE32(S->Data.Value);
548 WriteLE16(S->Data.SectionNumber);
549 WriteLE16(S->Data.Type);
550 Write8(S->Data.StorageClass);
551 Write8(S->Data.NumberOfAuxSymbols);
552 WriteAuxiliarySymbols(S->Aux);
553}
554
555void WinCOFFObjectWriter::WriteAuxiliarySymbols(
556 const COFFSymbol::AuxiliarySymbols &S) {
557 for(COFFSymbol::AuxiliarySymbols::const_iterator i = S.begin(), e = S.end();
558 i != e; ++i) {
559 switch(i->AuxType) {
560 case ATFunctionDefinition:
561 WriteLE32(i->Aux.FunctionDefinition.TagIndex);
562 WriteLE32(i->Aux.FunctionDefinition.TotalSize);
563 WriteLE32(i->Aux.FunctionDefinition.PointerToLinenumber);
564 WriteLE32(i->Aux.FunctionDefinition.PointerToNextFunction);
565 WriteZeros(sizeof(i->Aux.FunctionDefinition.unused));
566 break;
567 case ATbfAndefSymbol:
568 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused1));
569 WriteLE16(i->Aux.bfAndefSymbol.Linenumber);
570 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused2));
571 WriteLE32(i->Aux.bfAndefSymbol.PointerToNextFunction);
572 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused3));
573 break;
574 case ATWeakExternal:
575 WriteLE32(i->Aux.WeakExternal.TagIndex);
576 WriteLE32(i->Aux.WeakExternal.Characteristics);
577 WriteZeros(sizeof(i->Aux.WeakExternal.unused));
578 break;
579 case ATFile:
580 WriteBytes(StringRef(reinterpret_cast<const char *>(i->Aux.File.FileName),
581 sizeof(i->Aux.File.FileName)));
582 break;
583 case ATSectionDefinition:
584 WriteLE32(i->Aux.SectionDefinition.Length);
585 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
586 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
587 WriteLE32(i->Aux.SectionDefinition.CheckSum);
588 WriteLE16(i->Aux.SectionDefinition.Number);
589 Write8(i->Aux.SectionDefinition.Selection);
590 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
591 break;
592 }
593 }
594}
595
596void WinCOFFObjectWriter::WriteSectionHeader(const COFF::section &S) {
597 WriteBytes(StringRef(S.Name, COFF::NameSize));
598
599 WriteLE32(S.VirtualSize);
600 WriteLE32(S.VirtualAddress);
601 WriteLE32(S.SizeOfRawData);
602 WriteLE32(S.PointerToRawData);
603 WriteLE32(S.PointerToRelocations);
604 WriteLE32(S.PointerToLineNumbers);
605 WriteLE16(S.NumberOfRelocations);
606 WriteLE16(S.NumberOfLineNumbers);
607 WriteLE32(S.Characteristics);
608}
609
610void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) {
611 WriteLE32(R.VirtualAddress);
612 WriteLE32(R.SymbolTableIndex);
613 WriteLE16(R.Type);
Chris Lattnerb1622902010-07-11 22:07:02 +0000614}
615
616////////////////////////////////////////////////////////////////////////////////
617// MCObjectWriter interface implementations
618
619void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000620 // "Define" each section & symbol. This creates section & symbol
Michael J. Spencera72d8782010-09-27 08:58:26 +0000621 // entries in the staging area.
Michael J. Spencer801a3592010-07-26 02:17:32 +0000622
623 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e; i++)
624 DefineSection(*i);
625
626 for (MCAssembler::const_symbol_iterator i = Asm.symbol_begin(),
627 e = Asm.symbol_end(); i != e; i++) {
628 if (ExportSymbol(*i, Asm))
629 DefineSymbol(*i, Asm);
630 }
Chris Lattnerb1622902010-07-11 22:07:02 +0000631}
632
633void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
634 const MCAsmLayout &Layout,
635 const MCFragment *Fragment,
636 const MCFixup &Fixup,
637 MCValue Target,
638 uint64_t &FixedValue) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000639 assert(Target.getSymA() != NULL && "Relocation must reference a symbol!");
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000640
641 const MCSymbol *A = &Target.getSymA()->getSymbol();
642 MCSymbolData &A_SD = Asm.getSymbolData(*A);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000643
644 MCSectionData const *SectionData = Fragment->getParent();
Michael J. Spencer801a3592010-07-26 02:17:32 +0000645
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000646 // Mark this symbol as requiring an entry in the symbol table.
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000647 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
Michael J. Spencer801a3592010-07-26 02:17:32 +0000648 "Section must already have been defined in ExecutePostLayoutBinding!");
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000649 assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() &&
Michael J. Spencer801a3592010-07-26 02:17:32 +0000650 "Symbol must already have been defined in ExecutePostLayoutBinding!");
651
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000652 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
653 COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()];
Michael J. Spencer801a3592010-07-26 02:17:32 +0000654
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000655 if (Target.getSymB()) {
Michael J. Spencerb225ade2010-10-07 23:55:40 +0000656 if (&Target.getSymA()->getSymbol().getSection()
657 != &Target.getSymB()->getSymbol().getSection()) {
658 llvm_unreachable("Symbol relative relocations are only allowed between "
659 "symbols in the same section");
660 }
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000661 const MCSymbol *B = &Target.getSymB()->getSymbol();
662 MCSymbolData &B_SD = Asm.getSymbolData(*B);
663
664 FixedValue = Layout.getSymbolAddress(&A_SD) - Layout.getSymbolAddress(&B_SD);
665
666 // In the case where we have SymbA and SymB, we just need to store the delta
667 // between the two symbols. Update FixedValue to account for the delta, and
668 // skip recording the relocation.
669 return;
670 } else {
671 FixedValue = Target.getConstant();
672 }
Michael J. Spencer801a3592010-07-26 02:17:32 +0000673
674 COFFRelocation Reloc;
675
Daniel Dunbar425f6342010-07-31 21:08:54 +0000676 Reloc.Data.SymbolTableIndex = 0;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000677 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
Michael J. Spencera72d8782010-09-27 08:58:26 +0000678
Michael J. Spencerea1104a2010-10-05 19:48:12 +0000679 // Turn relocations for temporary symbols into section relocations.
Michael J. Spencera72d8782010-09-27 08:58:26 +0000680 if (coff_symbol->MCData->getSymbol().isTemporary()) {
681 Reloc.Symb = coff_symbol->Section->Symbol;
Michael J. Spencereb6e77f2010-10-05 19:48:03 +0000682 FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment)
683 + coff_symbol->MCData->getOffset();
Michael J. Spencera72d8782010-09-27 08:58:26 +0000684 } else
685 Reloc.Symb = coff_symbol;
686
687 ++Reloc.Symb->Relocations;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000688
689 Reloc.Data.VirtualAddress += Fixup.getOffset();
690
Michael J. Spenceref0401a2010-10-21 20:49:38 +0000691 switch ((unsigned)Fixup.getKind()) {
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000692 case X86::reloc_pcrel_4byte:
693 case X86::reloc_riprel_4byte:
694 case X86::reloc_riprel_4byte_movq_load:
695 Reloc.Data.Type = Is64Bit ? COFF::IMAGE_REL_AMD64_REL32
696 : COFF::IMAGE_REL_I386_REL32;
697 // FIXME: Can anyone explain what this does other than adjust for the size
698 // of the offset?
699 FixedValue += 4;
700 break;
701 case FK_Data_4:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +0000702 case X86::reloc_signed_4byte:
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000703 Reloc.Data.Type = Is64Bit ? COFF::IMAGE_REL_AMD64_ADDR32
704 : COFF::IMAGE_REL_I386_DIR32;
705 break;
706 case FK_Data_8:
707 if (Is64Bit)
708 Reloc.Data.Type = COFF::IMAGE_REL_AMD64_ADDR64;
709 else
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000710 llvm_unreachable("unsupported relocation type");
Michael J. Spencer82c84fd2010-08-24 21:04:52 +0000711 break;
712 default:
713 llvm_unreachable("unsupported relocation type");
714 }
Michael J. Spencer801a3592010-07-26 02:17:32 +0000715
716 coff_section->Relocations.push_back(Reloc);
Chris Lattnerb1622902010-07-11 22:07:02 +0000717}
718
Rafael Espindola70703872010-09-30 02:22:20 +0000719bool WinCOFFObjectWriter::IsFixupFullyResolved(const MCAssembler &Asm,
720 const MCValue Target,
721 bool IsPCRel,
722 const MCFragment *DF) const {
Michael J. Spencerb225ade2010-10-07 23:55:40 +0000723 // If this is a PCrel relocation, find the section this fixup value is
724 // relative to.
725 const MCSection *BaseSection = 0;
726 if (IsPCRel) {
727 BaseSection = &DF->getParent()->getSection();
728 assert(BaseSection);
729 }
730
731 const MCSection *SectionA = 0;
732 const MCSymbol *SymbolA = 0;
733 if (const MCSymbolRefExpr *A = Target.getSymA()) {
734 SymbolA = &A->getSymbol();
735 SectionA = &SymbolA->getSection();
736 }
737
738 const MCSection *SectionB = 0;
739 if (const MCSymbolRefExpr *B = Target.getSymB()) {
740 SectionB = &B->getSymbol().getSection();
741 }
742
743 if (!BaseSection)
744 return SectionA == SectionB;
745
746 return !SectionB && BaseSection == SectionA;
Rafael Espindola70703872010-09-30 02:22:20 +0000747}
748
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000749void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
Chris Lattnerb1622902010-07-11 22:07:02 +0000750 const MCAsmLayout &Layout) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000751 // Assign symbol and section indexes and offsets.
Michael J. Spencera72d8782010-09-27 08:58:26 +0000752 Header.NumberOfSections = 0;
753
754 for (sections::iterator i = Sections.begin(),
755 e = Sections.end(); i != e; i++) {
756 if (Layout.getSectionSize((*i)->MCData) > 0) {
757 MakeSectionReal(**i, ++Header.NumberOfSections);
758 } else {
759 (*i)->Number = -1;
760 }
761 }
Michael J. Spencer801a3592010-07-26 02:17:32 +0000762
763 Header.NumberOfSymbols = 0;
764
765 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
766 COFFSymbol *coff_symbol = *i;
767 MCSymbolData const *SymbolData = coff_symbol->MCData;
768
Michael J. Spencer801a3592010-07-26 02:17:32 +0000769 // Update section number & offset for symbols that have them.
770 if ((SymbolData != NULL) && (SymbolData->Fragment != NULL)) {
Michael J. Spencera72d8782010-09-27 08:58:26 +0000771 assert(coff_symbol->Section != NULL);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000772
Michael J. Spencera72d8782010-09-27 08:58:26 +0000773 coff_symbol->Data.SectionNumber = coff_symbol->Section->Number;
Michael J. Spencer237f8fe2010-08-03 05:02:46 +0000774 coff_symbol->Data.Value = Layout.getFragmentOffset(SymbolData->Fragment)
775 + SymbolData->Offset;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000776 }
777
Michael J. Spencera72d8782010-09-27 08:58:26 +0000778 if (coff_symbol->should_keep()) {
779 MakeSymbolReal(*coff_symbol, Header.NumberOfSymbols++);
780
781 // Update auxiliary symbol info.
782 coff_symbol->Data.NumberOfAuxSymbols = coff_symbol->Aux.size();
783 Header.NumberOfSymbols += coff_symbol->Data.NumberOfAuxSymbols;
784 } else
785 coff_symbol->Index = -1;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000786 }
787
788 // Fixup weak external references.
789 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
Michael J. Spencera72d8782010-09-27 08:58:26 +0000790 COFFSymbol *coff_symbol = *i;
791 if (coff_symbol->Other != NULL) {
792 assert(coff_symbol->Index != -1);
793 assert(coff_symbol->Aux.size() == 1 &&
Michael J. Spencer801a3592010-07-26 02:17:32 +0000794 "Symbol must contain one aux symbol!");
Michael J. Spencera72d8782010-09-27 08:58:26 +0000795 assert(coff_symbol->Aux[0].AuxType == ATWeakExternal &&
Michael J. Spencer801a3592010-07-26 02:17:32 +0000796 "Symbol's aux symbol must be a Weak External!");
Michael J. Spencera72d8782010-09-27 08:58:26 +0000797 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000798 }
799 }
800
801 // Assign file offsets to COFF object file structures.
802
803 unsigned offset = 0;
804
805 offset += COFF::HeaderSize;
Michael J. Spencera72d8782010-09-27 08:58:26 +0000806 offset += COFF::SectionSize * Header.NumberOfSections;
Michael J. Spencer801a3592010-07-26 02:17:32 +0000807
808 for (MCAssembler::const_iterator i = Asm.begin(),
809 e = Asm.end();
810 i != e; i++) {
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000811 COFFSection *Sec = SectionMap[&i->getSection()];
Michael J. Spencer801a3592010-07-26 02:17:32 +0000812
Michael J. Spencera72d8782010-09-27 08:58:26 +0000813 if (Sec->Number == -1)
814 continue;
815
Michael J. Spencer28ca86a2010-10-09 16:04:45 +0000816 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000817
Michael J. Spencera72d8782010-09-27 08:58:26 +0000818 if (IsPhysicalSection(Sec)) {
Michael J. Spencer801a3592010-07-26 02:17:32 +0000819 Sec->Header.PointerToRawData = offset;
820
821 offset += Sec->Header.SizeOfRawData;
822 }
823
824 if (Sec->Relocations.size() > 0) {
825 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
826 Sec->Header.PointerToRelocations = offset;
827
828 offset += COFF::RelocationSize * Sec->Relocations.size();
829
830 for (relocations::iterator cr = Sec->Relocations.begin(),
831 er = Sec->Relocations.end();
Michael J. Spencera72d8782010-09-27 08:58:26 +0000832 cr != er; ++cr) {
833 assert((*cr).Symb->Index != -1);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000834 (*cr).Data.SymbolTableIndex = (*cr).Symb->Index;
835 }
836 }
837
Michael J. Spencera72d8782010-09-27 08:58:26 +0000838 assert(Sec->Symbol->Aux.size() == 1
839 && "Section's symbol must have one aux!");
840 AuxSymbol &Aux = Sec->Symbol->Aux[0];
Michael J. Spencer801a3592010-07-26 02:17:32 +0000841 assert(Aux.AuxType == ATSectionDefinition &&
842 "Section's symbol's aux symbol must be a Section Definition!");
843 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
844 Aux.Aux.SectionDefinition.NumberOfRelocations =
845 Sec->Header.NumberOfRelocations;
846 Aux.Aux.SectionDefinition.NumberOfLinenumbers =
847 Sec->Header.NumberOfLineNumbers;
848 }
849
850 Header.PointerToSymbolTable = offset;
851
Michael J. Spencerab3de492010-08-03 04:43:33 +0000852 Header.TimeDateStamp = sys::TimeValue::now().toEpochTime();
853
Michael J. Spencer801a3592010-07-26 02:17:32 +0000854 // Write it all to disk...
855 WriteFileHeader(Header);
856
857 {
858 sections::iterator i, ie;
859 MCAssembler::const_iterator j, je;
860
861 for (i = Sections.begin(), ie = Sections.end(); i != ie; i++)
Michael J. Spencera72d8782010-09-27 08:58:26 +0000862 if ((*i)->Number != -1)
863 WriteSectionHeader((*i)->Header);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000864
865 for (i = Sections.begin(), ie = Sections.end(),
866 j = Asm.begin(), je = Asm.end();
Michael J. Spencera72d8782010-09-27 08:58:26 +0000867 (i != ie) && (j != je); ++i, ++j) {
868
869 if ((*i)->Number == -1)
870 continue;
871
Michael J. Spencer801a3592010-07-26 02:17:32 +0000872 if ((*i)->Header.PointerToRawData != 0) {
873 assert(OS.tell() == (*i)->Header.PointerToRawData &&
874 "Section::PointerToRawData is insane!");
875
876 Asm.WriteSectionData(j, Layout, this);
877 }
878
879 if ((*i)->Relocations.size() > 0) {
880 assert(OS.tell() == (*i)->Header.PointerToRelocations &&
881 "Section::PointerToRelocations is insane!");
882
883 for (relocations::const_iterator k = (*i)->Relocations.begin(),
884 ke = (*i)->Relocations.end();
885 k != ke; k++) {
886 WriteRelocation(k->Data);
887 }
888 } else
889 assert((*i)->Header.PointerToRelocations == 0 &&
890 "Section::PointerToRelocations is insane!");
891 }
892 }
893
894 assert(OS.tell() == Header.PointerToSymbolTable &&
895 "Header::PointerToSymbolTable is insane!");
896
897 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++)
Michael J. Spencera72d8782010-09-27 08:58:26 +0000898 if ((*i)->Index != -1)
899 WriteSymbol(*i);
Michael J. Spencer801a3592010-07-26 02:17:32 +0000900
901 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
Chris Lattnerb1622902010-07-11 22:07:02 +0000902}
903
904//------------------------------------------------------------------------------
905// WinCOFFObjectWriter factory function
906
907namespace llvm {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000908 MCObjectWriter *createWinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) {
909 return new WinCOFFObjectWriter(OS, is64Bit);
Chris Lattnerb1622902010-07-11 22:07:02 +0000910 }
Michael J. Spencer933304e2010-07-26 03:01:28 +0000911}