blob: d0a014cca960cfbc6fbf7dee45d192ebdb84d376 [file] [log] [blame]
Chris Lattner2c52b792010-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. Spencerb5fc1382010-07-26 02:17:32 +000015
Rafael Espindola908d2ed2011-12-24 02:14:02 +000016#include "llvm/MC/MCWinCOFFObjectWriter.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/StringMap.h"
19#include "llvm/ADT/StringRef.h"
Nico Riecka37acf72013-07-06 12:13:10 +000020#include "llvm/ADT/Twine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#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. Spencerb5fc1382010-07-26 02:17:32 +000030#include "llvm/Support/COFF.h"
31#include "llvm/Support/Debug.h"
32#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000033#include "llvm/Support/TimeValue.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000034#include <cstdio>
35
Chris Lattner2c52b792010-07-11 22:07:02 +000036using namespace llvm;
37
38namespace {
Dmitri Gribenko226fea52013-01-13 16:01:15 +000039typedef SmallString<COFF::NameSize> name;
Chris Lattner2c52b792010-07-11 22:07:02 +000040
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000041enum AuxiliaryType {
42 ATFunctionDefinition,
43 ATbfAndefSymbol,
44 ATWeakExternal,
45 ATFile,
46 ATSectionDefinition
47};
Chris Lattner2c52b792010-07-11 22:07:02 +000048
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000049struct AuxSymbol {
50 AuxiliaryType AuxType;
51 COFF::Auxiliary Aux;
52};
Chris Lattner2c52b792010-07-11 22:07:02 +000053
Michael J. Spencerd6283772010-09-27 08:58:26 +000054class COFFSymbol;
55class COFFSection;
56
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000057class COFFSymbol {
58public:
59 COFF::symbol Data;
Chris Lattner2c52b792010-07-11 22:07:02 +000060
Dmitri Gribenko226fea52013-01-13 16:01:15 +000061 typedef SmallVector<AuxSymbol, 1> AuxiliarySymbols;
Chris Lattner2c52b792010-07-11 22:07:02 +000062
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000063 name Name;
Michael J. Spencerce2e5352010-09-27 21:17:39 +000064 int Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000065 AuxiliarySymbols Aux;
66 COFFSymbol *Other;
Michael J. Spencerd6283772010-09-27 08:58:26 +000067 COFFSection *Section;
68 int Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000069
70 MCSymbolData const *MCData;
71
Dmitri Gribenko226fea52013-01-13 16:01:15 +000072 COFFSymbol(StringRef name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000073 size_t size() const;
74 void set_name_offset(uint32_t Offset);
Michael J. Spencerd6283772010-09-27 08:58:26 +000075
76 bool should_keep() const;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000077};
78
79// This class contains staging data for a COFF relocation entry.
80struct COFFRelocation {
81 COFF::relocation Data;
82 COFFSymbol *Symb;
83
84 COFFRelocation() : Symb(NULL) {}
85 static size_t size() { return COFF::RelocationSize; }
86};
87
88typedef std::vector<COFFRelocation> relocations;
89
90class COFFSection {
91public:
92 COFF::section Header;
93
94 std::string Name;
Michael J. Spencerce2e5352010-09-27 21:17:39 +000095 int Number;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000096 MCSectionData const *MCData;
Michael J. Spencerd6283772010-09-27 08:58:26 +000097 COFFSymbol *Symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000098 relocations Relocations;
99
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000100 COFFSection(StringRef name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000101 static size_t size();
102};
103
104// This class holds the COFF string table.
105class StringTable {
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000106 typedef StringMap<size_t> map;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000107 map Map;
108
109 void update_length();
110public:
111 std::vector<char> Data;
112
113 StringTable();
114 size_t size() const;
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000115 size_t insert(StringRef String);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000116};
117
118class WinCOFFObjectWriter : public MCObjectWriter {
119public:
120
121 typedef std::vector<COFFSymbol*> symbols;
122 typedef std::vector<COFFSection*> sections;
123
Michael J. Spencer17990d52010-10-16 08:25:57 +0000124 typedef DenseMap<MCSymbol const *, COFFSymbol *> symbol_map;
125 typedef DenseMap<MCSection const *, COFFSection *> section_map;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000126
Ahmed Charles56440fd2014-03-06 05:51:42 +0000127 std::unique_ptr<MCWinCOFFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000128
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000129 // 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 Espindola908d2ed2011-12-24 02:14:02 +0000139 WinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW, raw_ostream &OS);
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +0000140 virtual ~WinCOFFObjectWriter();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000141
Michael J. Spencer17990d52010-10-16 08:25:57 +0000142 COFFSymbol *createSymbol(StringRef Name);
143 COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol);
144 COFFSection *createSection(StringRef Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000145
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000146 template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000147 object_t *createCOFFEntity(StringRef Name, list_t &List);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000148
149 void DefineSection(MCSectionData const &SectionData);
Reid Klecknerc1e76212013-09-17 23:18:05 +0000150 void DefineSymbol(MCSymbolData const &SymbolData, MCAssembler &Assembler,
151 const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000152
Michael J. Spencerd6283772010-09-27 08:58:26 +0000153 void MakeSymbolReal(COFFSymbol &S, size_t Index);
154 void MakeSectionReal(COFFSection &S, size_t Number);
155
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000156 bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm);
157
Michael J. Spencerd6283772010-09-27 08:58:26 +0000158 bool IsPhysicalSection(COFFSection *S);
159
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000160 // 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 Espindola93e3cf02010-12-07 00:27:36 +0000170 void ExecutePostLayoutBinding(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000171
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 Espindolabce26a12010-10-05 15:11:03 +0000179 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000180};
Chris Lattner2c52b792010-07-11 22:07:02 +0000181}
182
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000183static 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
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000191//------------------------------------------------------------------------------
192// Symbol class implementation
193
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000194COFFSymbol::COFFSymbol(StringRef name)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000195 : Name(name.begin(), name.end())
196 , Other(NULL)
197 , Section(NULL)
198 , Relocations(0)
199 , MCData(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000200 memset(&Data, 0, sizeof(Data));
201}
202
203size_t COFFSymbol::size() const {
204 return COFF::SymbolSize + (Data.NumberOfAuxSymbols * COFF::SymbolSize);
205}
206
207// In the case that the name does not fit within 8 bytes, the offset
208// into the string table is stored in the last 4 bytes instead, leaving
209// the first 4 bytes as 0.
210void COFFSymbol::set_name_offset(uint32_t Offset) {
211 write_uint32_le(Data.Name + 0, 0);
212 write_uint32_le(Data.Name + 4, Offset);
213}
214
Michael J. Spencerd6283772010-09-27 08:58:26 +0000215/// logic to decide if the symbol should be reported in the symbol table
216bool COFFSymbol::should_keep() const {
217 // no section means its external, keep it
218 if (Section == NULL)
219 return true;
220
221 // if it has relocations pointing at it, keep it
222 if (Relocations > 0) {
223 assert(Section->Number != -1 && "Sections with relocations must be real!");
224 return true;
225 }
226
227 // if the section its in is being droped, drop it
228 if (Section->Number == -1)
229 return false;
230
231 // if it is the section symbol, keep it
232 if (Section->Symbol == this)
233 return true;
234
235 // if its temporary, drop it
236 if (MCData && MCData->getSymbol().isTemporary())
237 return false;
238
239 // otherwise, keep it
240 return true;
241}
242
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000243//------------------------------------------------------------------------------
244// Section class implementation
245
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000246COFFSection::COFFSection(StringRef name)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000247 : Name(name)
248 , MCData(NULL)
249 , Symbol(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000250 memset(&Header, 0, sizeof(Header));
251}
252
253size_t COFFSection::size() {
254 return COFF::SectionSize;
255}
256
257//------------------------------------------------------------------------------
258// StringTable class implementation
259
260/// Write the length of the string table into Data.
261/// The length of the string table includes uint32 length header.
262void StringTable::update_length() {
263 write_uint32_le(&Data.front(), Data.size());
264}
265
266StringTable::StringTable() {
267 // The string table data begins with the length of the entire string table
268 // including the length header. Allocate space for this header.
269 Data.resize(4);
Michael J. Spencer5ca95bc2011-11-08 19:52:32 +0000270 update_length();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000271}
272
273size_t StringTable::size() const {
274 return Data.size();
275}
276
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000277/// Add String to the table iff it is not already there.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000278/// @returns the index into the string table where the string is now located.
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000279size_t StringTable::insert(StringRef String) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000280 map::iterator i = Map.find(String);
281
282 if (i != Map.end())
283 return i->second;
284
285 size_t Offset = Data.size();
286
287 // Insert string data into string table.
288 Data.insert(Data.end(), String.begin(), String.end());
289 Data.push_back('\0');
290
291 // Put a reference to it in the map.
292 Map[String] = Offset;
293
294 // Update the internal length field.
295 update_length();
296
297 return Offset;
298}
299
300//------------------------------------------------------------------------------
301// WinCOFFObjectWriter class implementation
302
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000303WinCOFFObjectWriter::WinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
304 raw_ostream &OS)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000305 : MCObjectWriter(OS, true)
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000306 , TargetObjectWriter(MOTW) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000307 memset(&Header, 0, sizeof(Header));
Michael J. Spencer377aa202010-08-21 05:58:13 +0000308
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000309 Header.Machine = TargetObjectWriter->getMachine();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000310}
311
Benjamin Kramerc2997dd2010-07-29 11:57:59 +0000312WinCOFFObjectWriter::~WinCOFFObjectWriter() {
313 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
314 delete *I;
315 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
316 delete *I;
317}
318
Michael J. Spencer17990d52010-10-16 08:25:57 +0000319COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000320 return createCOFFEntity<COFFSymbol>(Name, Symbols);
321}
322
Michael J. Spencer17990d52010-10-16 08:25:57 +0000323COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
324 symbol_map::iterator i = SymbolMap.find(Symbol);
325 if (i != SymbolMap.end())
326 return i->second;
327 COFFSymbol *RetSymbol
328 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
329 SymbolMap[Symbol] = RetSymbol;
330 return RetSymbol;
331}
332
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000333COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000334 return createCOFFEntity<COFFSection>(Name, Sections);
335}
336
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000337/// A template used to lookup or create a symbol/section, and initialize it if
338/// needed.
339template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000340object_t *WinCOFFObjectWriter::createCOFFEntity(StringRef Name,
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000341 list_t &List) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000342 object_t *Object = new object_t(Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000343
344 List.push_back(Object);
345
346 return Object;
347}
348
349/// This function takes a section data object from the assembler
350/// and creates the associated COFF section staging object.
351void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
Michael J. Spencerbe52c622010-10-09 11:00:37 +0000352 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
Alp Tokerf907b892013-12-05 05:44:44 +0000353 && "Got non-COFF section in the COFF backend!");
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000354 // FIXME: Not sure how to verify this (at least in a debug build).
355 MCSectionCOFF const &Sec =
356 static_cast<MCSectionCOFF const &>(SectionData.getSection());
357
358 COFFSection *coff_section = createSection(Sec.getSectionName());
359 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
360
Michael J. Spencerd6283772010-09-27 08:58:26 +0000361 coff_section->Symbol = coff_symbol;
362 coff_symbol->Section = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000363 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000364
365 // In this case the auxiliary symbol is a Section Definition.
366 coff_symbol->Aux.resize(1);
367 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
368 coff_symbol->Aux[0].AuxType = ATSectionDefinition;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000369 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
370
371 coff_section->Header.Characteristics = Sec.getCharacteristics();
372
373 uint32_t &Characteristics = coff_section->Header.Characteristics;
374 switch (SectionData.getAlignment()) {
375 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
376 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
377 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
378 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
379 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
380 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
381 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break;
382 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break;
383 case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break;
384 case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break;
385 case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break;
386 case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break;
387 case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break;
388 case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break;
389 default:
390 llvm_unreachable("unsupported section alignment");
391 }
392
393 // Bind internal COFF section to MC section.
394 coff_section->MCData = &SectionData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000395 SectionMap[&SectionData.getSection()] = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000396}
397
398/// This function takes a section data object from the assembler
399/// and creates the associated COFF symbol staging object.
Peter Collingbourne89886872013-04-22 18:48:56 +0000400void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData,
Reid Klecknerc1e76212013-09-17 23:18:05 +0000401 MCAssembler &Assembler,
402 const MCAsmLayout &Layout) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000403 MCSymbol const &Symbol = SymbolData.getSymbol();
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000404 COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&Symbol);
Peter Collingbourne89886872013-04-22 18:48:56 +0000405 SymbolMap[&Symbol] = coff_symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000406
Michael J. Spencer17990d52010-10-16 08:25:57 +0000407 if (SymbolData.getFlags() & COFF::SF_WeakExternal) {
408 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
409
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000410 if (Symbol.isVariable()) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000411 const MCSymbolRefExpr *SymRef =
412 dyn_cast<MCSymbolRefExpr>(Symbol.getVariableValue());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000413
Peter Collingbourne89886872013-04-22 18:48:56 +0000414 if (!SymRef)
415 report_fatal_error("Weak externals may only alias symbols");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000416
Peter Collingbourne89886872013-04-22 18:48:56 +0000417 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymRef->getSymbol());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000418 } else {
419 std::string WeakName = std::string(".weak.")
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000420 + Symbol.getName().str()
Michael J. Spencer17990d52010-10-16 08:25:57 +0000421 + ".default";
422 COFFSymbol *WeakDefault = createSymbol(WeakName);
423 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
424 WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL;
425 WeakDefault->Data.Type = 0;
426 WeakDefault->Data.Value = 0;
427 coff_symbol->Other = WeakDefault;
428 }
429
430 // Setup the Weak External auxiliary symbol.
431 coff_symbol->Aux.resize(1);
432 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
433 coff_symbol->Aux[0].AuxType = ATWeakExternal;
434 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0;
435 coff_symbol->Aux[0].Aux.WeakExternal.Characteristics =
436 COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY;
Peter Collingbourne89886872013-04-22 18:48:56 +0000437
438 coff_symbol->MCData = &SymbolData;
439 } else {
440 const MCSymbolData &ResSymData =
441 Assembler.getSymbolData(Symbol.AliasedSymbol());
442
Reid Klecknerc1e76212013-09-17 23:18:05 +0000443 if (Symbol.isVariable()) {
444 int64_t Addr;
445 if (Symbol.getVariableValue()->EvaluateAsAbsolute(Addr, Layout))
446 coff_symbol->Data.Value = Addr;
447 }
448
Peter Collingbourne89886872013-04-22 18:48:56 +0000449 coff_symbol->Data.Type = (ResSymData.getFlags() & 0x0000FFFF) >> 0;
450 coff_symbol->Data.StorageClass = (ResSymData.getFlags() & 0x00FF0000) >> 16;
451
452 // If no storage class was specified in the streamer, define it here.
453 if (coff_symbol->Data.StorageClass == 0) {
454 bool external = ResSymData.isExternal() || (ResSymData.Fragment == NULL);
455
456 coff_symbol->Data.StorageClass =
457 external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC;
458 }
459
Reid Klecknerc1e76212013-09-17 23:18:05 +0000460 if (Symbol.isAbsolute() || Symbol.AliasedSymbol().isVariable())
461 coff_symbol->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
462 else if (ResSymData.Fragment != NULL)
Peter Collingbourne89886872013-04-22 18:48:56 +0000463 coff_symbol->Section =
464 SectionMap[&ResSymData.Fragment->getParent()->getSection()];
465
466 coff_symbol->MCData = &ResSymData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000467 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000468}
469
Nico Rieck01143f92014-02-25 09:50:40 +0000470// Maximum offsets for different string table entry encodings.
471static const unsigned Max6DecimalOffset = 999999;
472static const unsigned Max7DecimalOffset = 9999999;
473static const uint64_t MaxBase64Offset = 0xFFFFFFFFFULL; // 64^6, including 0
474
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000475// Encode a string table entry offset in base 64, padded to 6 chars, and
476// prefixed with a double slash: '//AAAAAA', '//AAAAAB', ...
477// Buffer must be at least 8 bytes large. No terminating null appended.
478static void encodeBase64StringEntry(char* Buffer, uint64_t Value) {
Nico Rieck01143f92014-02-25 09:50:40 +0000479 assert(Value > Max7DecimalOffset && Value <= MaxBase64Offset &&
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000480 "Illegal section name encoding for value");
481
482 static const char Alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
483 "abcdefghijklmnopqrstuvwxyz"
484 "0123456789+/";
485
486 Buffer[0] = '/';
487 Buffer[1] = '/';
488
489 char* Ptr = Buffer + 7;
490 for (unsigned i = 0; i < 6; ++i) {
491 unsigned Rem = Value % 64;
492 Value /= 64;
493 *(Ptr--) = Alphabet[Rem];
494 }
495}
496
Michael J. Spencerd6283772010-09-27 08:58:26 +0000497/// making a section real involves assigned it a number and putting
498/// name into the string table if needed
499void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
500 if (S.Name.size() > COFF::NameSize) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000501 uint64_t StringTableEntry = Strings.insert(S.Name.c_str());
Michael J. Spencerd6283772010-09-27 08:58:26 +0000502
Nico Rieck01143f92014-02-25 09:50:40 +0000503 if (StringTableEntry <= Max6DecimalOffset) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000504 std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry));
Nico Rieck01143f92014-02-25 09:50:40 +0000505 } else if (StringTableEntry <= Max7DecimalOffset) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000506 // With seven digits, we have to skip the terminating null. Because
507 // sprintf always appends it, we use a larger temporary buffer.
508 char buffer[9] = { };
509 std::sprintf(buffer, "/%d", unsigned(StringTableEntry));
510 std::memcpy(S.Header.Name, buffer, 8);
Nico Rieck01143f92014-02-25 09:50:40 +0000511 } else if (StringTableEntry <= MaxBase64Offset) {
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000512 // Starting with 10,000,000, offsets are encoded as base64.
513 encodeBase64StringEntry(S.Header.Name, StringTableEntry);
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000514 } else {
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000515 report_fatal_error("COFF string table is greater than 64 GB.");
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000516 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000517 } else
518 std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size());
519
520 S.Number = Number;
521 S.Symbol->Data.SectionNumber = S.Number;
522 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
523}
524
525void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
526 if (S.Name.size() > COFF::NameSize) {
527 size_t StringTableEntry = Strings.insert(S.Name.c_str());
528
529 S.set_name_offset(StringTableEntry);
530 } else
531 std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size());
532 S.Index = Index;
533}
534
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000535bool WinCOFFObjectWriter::ExportSymbol(MCSymbolData const &SymbolData,
536 MCAssembler &Asm) {
537 // This doesn't seem to be right. Strings referred to from the .data section
538 // need symbols so they can be linked to code in the .text section right?
539
540 // return Asm.isSymbolLinkerVisible (&SymbolData);
541
542 // For now, all non-variable symbols are exported,
543 // the linker will sort the rest out for us.
544 return SymbolData.isExternal() || !SymbolData.getSymbol().isVariable();
545}
546
Michael J. Spencerd6283772010-09-27 08:58:26 +0000547bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
548 return (S->Header.Characteristics
549 & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000550}
551
552//------------------------------------------------------------------------------
553// entity writing methods
554
555void WinCOFFObjectWriter::WriteFileHeader(const COFF::header &Header) {
556 WriteLE16(Header.Machine);
557 WriteLE16(Header.NumberOfSections);
558 WriteLE32(Header.TimeDateStamp);
559 WriteLE32(Header.PointerToSymbolTable);
560 WriteLE32(Header.NumberOfSymbols);
561 WriteLE16(Header.SizeOfOptionalHeader);
562 WriteLE16(Header.Characteristics);
563}
564
565void WinCOFFObjectWriter::WriteSymbol(const COFFSymbol *S) {
566 WriteBytes(StringRef(S->Data.Name, COFF::NameSize));
567 WriteLE32(S->Data.Value);
568 WriteLE16(S->Data.SectionNumber);
569 WriteLE16(S->Data.Type);
570 Write8(S->Data.StorageClass);
571 Write8(S->Data.NumberOfAuxSymbols);
572 WriteAuxiliarySymbols(S->Aux);
573}
574
575void WinCOFFObjectWriter::WriteAuxiliarySymbols(
576 const COFFSymbol::AuxiliarySymbols &S) {
577 for(COFFSymbol::AuxiliarySymbols::const_iterator i = S.begin(), e = S.end();
578 i != e; ++i) {
579 switch(i->AuxType) {
580 case ATFunctionDefinition:
581 WriteLE32(i->Aux.FunctionDefinition.TagIndex);
582 WriteLE32(i->Aux.FunctionDefinition.TotalSize);
583 WriteLE32(i->Aux.FunctionDefinition.PointerToLinenumber);
584 WriteLE32(i->Aux.FunctionDefinition.PointerToNextFunction);
585 WriteZeros(sizeof(i->Aux.FunctionDefinition.unused));
586 break;
587 case ATbfAndefSymbol:
588 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused1));
589 WriteLE16(i->Aux.bfAndefSymbol.Linenumber);
590 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused2));
591 WriteLE32(i->Aux.bfAndefSymbol.PointerToNextFunction);
592 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused3));
593 break;
594 case ATWeakExternal:
595 WriteLE32(i->Aux.WeakExternal.TagIndex);
596 WriteLE32(i->Aux.WeakExternal.Characteristics);
597 WriteZeros(sizeof(i->Aux.WeakExternal.unused));
598 break;
599 case ATFile:
600 WriteBytes(StringRef(reinterpret_cast<const char *>(i->Aux.File.FileName),
601 sizeof(i->Aux.File.FileName)));
602 break;
603 case ATSectionDefinition:
604 WriteLE32(i->Aux.SectionDefinition.Length);
605 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
606 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
607 WriteLE32(i->Aux.SectionDefinition.CheckSum);
608 WriteLE16(i->Aux.SectionDefinition.Number);
609 Write8(i->Aux.SectionDefinition.Selection);
610 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
611 break;
612 }
613 }
614}
615
616void WinCOFFObjectWriter::WriteSectionHeader(const COFF::section &S) {
617 WriteBytes(StringRef(S.Name, COFF::NameSize));
618
619 WriteLE32(S.VirtualSize);
620 WriteLE32(S.VirtualAddress);
621 WriteLE32(S.SizeOfRawData);
622 WriteLE32(S.PointerToRawData);
623 WriteLE32(S.PointerToRelocations);
624 WriteLE32(S.PointerToLineNumbers);
625 WriteLE16(S.NumberOfRelocations);
626 WriteLE16(S.NumberOfLineNumbers);
627 WriteLE32(S.Characteristics);
628}
629
630void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) {
631 WriteLE32(R.VirtualAddress);
632 WriteLE32(R.SymbolTableIndex);
633 WriteLE16(R.Type);
Chris Lattner2c52b792010-07-11 22:07:02 +0000634}
635
636////////////////////////////////////////////////////////////////////////////////
637// MCObjectWriter interface implementations
638
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000639void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
640 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000641 // "Define" each section & symbol. This creates section & symbol
Michael J. Spencerd6283772010-09-27 08:58:26 +0000642 // entries in the staging area.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000643
644 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e; i++)
645 DefineSection(*i);
646
647 for (MCAssembler::const_symbol_iterator i = Asm.symbol_begin(),
Reid Kleckner3ea536f2013-09-17 21:24:44 +0000648 e = Asm.symbol_end();
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000649 i != e; i++) {
650 if (ExportSymbol(*i, Asm)) {
651 DefineSymbol(*i, Asm, Layout);
652 }
653 }
Chris Lattner2c52b792010-07-11 22:07:02 +0000654}
655
656void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
657 const MCAsmLayout &Layout,
658 const MCFragment *Fragment,
659 const MCFixup &Fixup,
660 MCValue Target,
661 uint64_t &FixedValue) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000662 assert(Target.getSymA() != NULL && "Relocation must reference a symbol!");
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000663
Reid Klecknerdae7b4e2013-07-15 19:41:21 +0000664 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
665 const MCSymbol &A = Symbol.AliasedSymbol();
Timur Iskhodzhanov3e4ac4e2014-01-30 21:13:05 +0000666 if (!Asm.hasSymbolData(A))
667 Asm.getContext().FatalError(
668 Fixup.getLoc(),
669 Twine("symbol '") + A.getName() + "' can not be undefined");
670
Reid Klecknerdae7b4e2013-07-15 19:41:21 +0000671 MCSymbolData &A_SD = Asm.getSymbolData(A);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000672
673 MCSectionData const *SectionData = Fragment->getParent();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000674
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000675 // Mark this symbol as requiring an entry in the symbol table.
Michael J. Spencer17990d52010-10-16 08:25:57 +0000676 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000677 "Section must already have been defined in ExecutePostLayoutBinding!");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000678 assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000679 "Symbol must already have been defined in ExecutePostLayoutBinding!");
680
Michael J. Spencer17990d52010-10-16 08:25:57 +0000681 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
682 COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()];
Rafael Espindolaed164772011-04-20 14:01:45 +0000683 const MCSymbolRefExpr *SymB = Target.getSymB();
David Majnemera45a1762014-01-06 07:39:46 +0000684 bool CrossSection = false;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000685
David Majnemera45a1762014-01-06 07:39:46 +0000686 if (SymB) {
687 const MCSymbol *B = &SymB->getSymbol();
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000688 MCSymbolData &B_SD = Asm.getSymbolData(*B);
David Majnemera45a1762014-01-06 07:39:46 +0000689 if (!B_SD.getFragment())
690 Asm.getContext().FatalError(
691 Fixup.getLoc(),
692 Twine("symbol '") + B->getName() +
693 "' can not be undefined in a subtraction expression");
694
695 if (!A_SD.getFragment())
696 Asm.getContext().FatalError(
697 Fixup.getLoc(),
698 Twine("symbol '") + Symbol.getName() +
699 "' can not be undefined in a subtraction expression");
700
701 CrossSection = &Symbol.getSection() != &B->getSection();
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000702
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000703 // Offset of the symbol in the section
704 int64_t a = Layout.getSymbolOffset(&B_SD);
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000705
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000706 // Ofeset of the relocation in the section
707 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
708
709 FixedValue = b - a;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000710 // In the case where we have SymbA and SymB, we just need to store the delta
711 // between the two symbols. Update FixedValue to account for the delta, and
712 // skip recording the relocation.
Rafael Espindolaed164772011-04-20 14:01:45 +0000713 if (!CrossSection)
714 return;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000715 } else {
716 FixedValue = Target.getConstant();
717 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000718
719 COFFRelocation Reloc;
720
Daniel Dunbar727be432010-07-31 21:08:54 +0000721 Reloc.Data.SymbolTableIndex = 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000722 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000723
Michael J. Spencera65d17a2010-10-05 19:48:12 +0000724 // Turn relocations for temporary symbols into section relocations.
Rafael Espindolaed164772011-04-20 14:01:45 +0000725 if (coff_symbol->MCData->getSymbol().isTemporary() || CrossSection) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000726 Reloc.Symb = coff_symbol->Section->Symbol;
Michael J. Spencera3b34ed2010-10-05 19:48:03 +0000727 FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment)
728 + coff_symbol->MCData->getOffset();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000729 } else
730 Reloc.Symb = coff_symbol;
731
732 ++Reloc.Symb->Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000733
734 Reloc.Data.VirtualAddress += Fixup.getOffset();
Nico Rieck1da45292013-04-10 23:28:17 +0000735 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
736 CrossSection);
Rafael Espindolae61724a2011-12-22 22:21:47 +0000737
738 // FIXME: Can anyone explain what this does other than adjust for the size
739 // of the offset?
740 if (Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32 ||
741 Reloc.Data.Type == COFF::IMAGE_REL_I386_REL32)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000742 FixedValue += 4;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000743
744 coff_section->Relocations.push_back(Reloc);
Chris Lattner2c52b792010-07-11 22:07:02 +0000745}
746
Rafael Espindolabce26a12010-10-05 15:11:03 +0000747void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
Chris Lattner2c52b792010-07-11 22:07:02 +0000748 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000749 // Assign symbol and section indexes and offsets.
Michael J. Spencerd6283772010-09-27 08:58:26 +0000750 Header.NumberOfSections = 0;
751
Nico Riecka37acf72013-07-06 12:13:10 +0000752 DenseMap<COFFSection *, uint16_t> SectionIndices;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000753 for (sections::iterator i = Sections.begin(),
754 e = Sections.end(); i != e; i++) {
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000755 if (Layout.getSectionAddressSize((*i)->MCData) > 0) {
Nico Riecka37acf72013-07-06 12:13:10 +0000756 size_t Number = ++Header.NumberOfSections;
757 SectionIndices[*i] = Number;
758 MakeSectionReal(**i, Number);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000759 } else {
760 (*i)->Number = -1;
761 }
762 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000763
764 Header.NumberOfSymbols = 0;
765
766 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
767 COFFSymbol *coff_symbol = *i;
768 MCSymbolData const *SymbolData = coff_symbol->MCData;
769
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000770 // Update section number & offset for symbols that have them.
771 if ((SymbolData != NULL) && (SymbolData->Fragment != NULL)) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000772 assert(coff_symbol->Section != NULL);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000773
Michael J. Spencerd6283772010-09-27 08:58:26 +0000774 coff_symbol->Data.SectionNumber = coff_symbol->Section->Number;
Michael J. Spencer54cfd422010-08-03 05:02:46 +0000775 coff_symbol->Data.Value = Layout.getFragmentOffset(SymbolData->Fragment)
776 + SymbolData->Offset;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000777 }
778
Michael J. Spencerd6283772010-09-27 08:58:26 +0000779 if (coff_symbol->should_keep()) {
780 MakeSymbolReal(*coff_symbol, Header.NumberOfSymbols++);
781
782 // Update auxiliary symbol info.
783 coff_symbol->Data.NumberOfAuxSymbols = coff_symbol->Aux.size();
784 Header.NumberOfSymbols += coff_symbol->Data.NumberOfAuxSymbols;
785 } else
786 coff_symbol->Index = -1;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000787 }
788
789 // Fixup weak external references.
790 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000791 COFFSymbol *coff_symbol = *i;
792 if (coff_symbol->Other != NULL) {
793 assert(coff_symbol->Index != -1);
794 assert(coff_symbol->Aux.size() == 1 &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000795 "Symbol must contain one aux symbol!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000796 assert(coff_symbol->Aux[0].AuxType == ATWeakExternal &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000797 "Symbol's aux symbol must be a Weak External!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000798 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000799 }
800 }
801
Nico Riecka37acf72013-07-06 12:13:10 +0000802 // Fixup associative COMDAT sections.
803 for (sections::iterator i = Sections.begin(),
804 e = Sections.end(); i != e; i++) {
805 if ((*i)->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
806 COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
807 continue;
808
809 const MCSectionCOFF &MCSec = static_cast<const MCSectionCOFF &>(
810 (*i)->MCData->getSection());
811
812 COFFSection *Assoc = SectionMap.lookup(MCSec.getAssocSection());
813 if (!Assoc) {
814 report_fatal_error(Twine("Missing associated COMDAT section ") +
815 MCSec.getAssocSection()->getSectionName() +
816 " for section " + MCSec.getSectionName());
817 }
818
819 // Skip this section if the associated section is unused.
820 if (Assoc->Number == -1)
821 continue;
822
823 (*i)->Symbol->Aux[0].Aux.SectionDefinition.Number = SectionIndices[Assoc];
824 }
825
826
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000827 // Assign file offsets to COFF object file structures.
828
829 unsigned offset = 0;
830
831 offset += COFF::HeaderSize;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000832 offset += COFF::SectionSize * Header.NumberOfSections;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000833
834 for (MCAssembler::const_iterator i = Asm.begin(),
835 e = Asm.end();
836 i != e; i++) {
Michael J. Spencer17990d52010-10-16 08:25:57 +0000837 COFFSection *Sec = SectionMap[&i->getSection()];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000838
Michael J. Spencerd6283772010-09-27 08:58:26 +0000839 if (Sec->Number == -1)
840 continue;
841
Michael J. Spencera6a984b2010-10-09 16:04:45 +0000842 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000843
Michael J. Spencerd6283772010-09-27 08:58:26 +0000844 if (IsPhysicalSection(Sec)) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000845 Sec->Header.PointerToRawData = offset;
846
847 offset += Sec->Header.SizeOfRawData;
848 }
849
850 if (Sec->Relocations.size() > 0) {
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000851 bool RelocationsOverflow = Sec->Relocations.size() >= 0xffff;
852
853 if (RelocationsOverflow) {
854 // Signal overflow by setting NumberOfSections to max value. Actual
855 // size is found in reloc #0. Microsoft tools understand this.
856 Sec->Header.NumberOfRelocations = 0xffff;
857 } else {
858 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
859 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000860 Sec->Header.PointerToRelocations = offset;
861
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000862 if (RelocationsOverflow) {
863 // Reloc #0 will contain actual count, so make room for it.
864 offset += COFF::RelocationSize;
865 }
866
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000867 offset += COFF::RelocationSize * Sec->Relocations.size();
868
869 for (relocations::iterator cr = Sec->Relocations.begin(),
870 er = Sec->Relocations.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000871 cr != er; ++cr) {
872 assert((*cr).Symb->Index != -1);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000873 (*cr).Data.SymbolTableIndex = (*cr).Symb->Index;
874 }
875 }
876
Michael J. Spencerd6283772010-09-27 08:58:26 +0000877 assert(Sec->Symbol->Aux.size() == 1
878 && "Section's symbol must have one aux!");
879 AuxSymbol &Aux = Sec->Symbol->Aux[0];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000880 assert(Aux.AuxType == ATSectionDefinition &&
881 "Section's symbol's aux symbol must be a Section Definition!");
882 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
883 Aux.Aux.SectionDefinition.NumberOfRelocations =
884 Sec->Header.NumberOfRelocations;
885 Aux.Aux.SectionDefinition.NumberOfLinenumbers =
886 Sec->Header.NumberOfLineNumbers;
887 }
888
889 Header.PointerToSymbolTable = offset;
890
Rafael Espindola5ac4ad22013-12-04 02:26:54 +0000891 // We want a deterministic output. It looks like GNU as also writes 0 in here.
Rafael Espindola9201e6b2013-12-04 02:02:55 +0000892 Header.TimeDateStamp = 0;
Michael J. Spencera6cfbeb2010-08-03 04:43:33 +0000893
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000894 // Write it all to disk...
895 WriteFileHeader(Header);
896
897 {
898 sections::iterator i, ie;
899 MCAssembler::const_iterator j, je;
900
901 for (i = Sections.begin(), ie = Sections.end(); i != ie; i++)
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000902 if ((*i)->Number != -1) {
903 if ((*i)->Relocations.size() >= 0xffff) {
904 (*i)->Header.Characteristics |= COFF::IMAGE_SCN_LNK_NRELOC_OVFL;
905 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000906 WriteSectionHeader((*i)->Header);
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000907 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000908
909 for (i = Sections.begin(), ie = Sections.end(),
910 j = Asm.begin(), je = Asm.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000911 (i != ie) && (j != je); ++i, ++j) {
912
913 if ((*i)->Number == -1)
914 continue;
915
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000916 if ((*i)->Header.PointerToRawData != 0) {
917 assert(OS.tell() == (*i)->Header.PointerToRawData &&
918 "Section::PointerToRawData is insane!");
919
Jim Grosbach18e2fe42011-12-06 00:03:48 +0000920 Asm.writeSectionData(j, Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000921 }
922
923 if ((*i)->Relocations.size() > 0) {
924 assert(OS.tell() == (*i)->Header.PointerToRelocations &&
925 "Section::PointerToRelocations is insane!");
926
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000927 if ((*i)->Relocations.size() >= 0xffff) {
928 // In case of overflow, write actual relocation count as first
929 // relocation. Including the synthetic reloc itself (+ 1).
930 COFF::relocation r;
931 r.VirtualAddress = (*i)->Relocations.size() + 1;
932 r.SymbolTableIndex = 0;
933 r.Type = 0;
934 WriteRelocation(r);
935 }
936
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000937 for (relocations::const_iterator k = (*i)->Relocations.begin(),
938 ke = (*i)->Relocations.end();
939 k != ke; k++) {
940 WriteRelocation(k->Data);
941 }
942 } else
943 assert((*i)->Header.PointerToRelocations == 0 &&
944 "Section::PointerToRelocations is insane!");
945 }
946 }
947
948 assert(OS.tell() == Header.PointerToSymbolTable &&
949 "Header::PointerToSymbolTable is insane!");
950
951 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000952 if ((*i)->Index != -1)
953 WriteSymbol(*i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000954
955 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
Chris Lattner2c52b792010-07-11 22:07:02 +0000956}
957
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000958MCWinCOFFObjectTargetWriter::MCWinCOFFObjectTargetWriter(unsigned Machine_) :
959 Machine(Machine_) {
960}
961
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +0000962// Pin the vtable to this file.
963void MCWinCOFFObjectTargetWriter::anchor() {}
964
Chris Lattner2c52b792010-07-11 22:07:02 +0000965//------------------------------------------------------------------------------
966// WinCOFFObjectWriter factory function
967
968namespace llvm {
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000969 MCObjectWriter *createWinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
970 raw_ostream &OS) {
971 return new WinCOFFObjectWriter(MOTW, OS);
Chris Lattner2c52b792010-07-11 22:07:02 +0000972 }
Michael J. Spencerc2129372010-07-26 03:01:28 +0000973}