blob: f0f7836e23b3ec35af874b0e3f5be59357180c23 [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"
Rafael Espindola908d2ed2011-12-24 02:14:02 +000018#include "llvm/ADT/OwningPtr.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000019#include "llvm/ADT/StringMap.h"
20#include "llvm/ADT/StringRef.h"
Nico Riecka37acf72013-07-06 12:13:10 +000021#include "llvm/ADT/Twine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/MC/MCAsmLayout.h"
23#include "llvm/MC/MCAssembler.h"
24#include "llvm/MC/MCContext.h"
25#include "llvm/MC/MCExpr.h"
26#include "llvm/MC/MCObjectWriter.h"
27#include "llvm/MC/MCSection.h"
28#include "llvm/MC/MCSectionCOFF.h"
29#include "llvm/MC/MCSymbol.h"
30#include "llvm/MC/MCValue.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000031#include "llvm/Support/COFF.h"
32#include "llvm/Support/Debug.h"
33#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000034#include "llvm/Support/TimeValue.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000035#include <cstdio>
36
Chris Lattner2c52b792010-07-11 22:07:02 +000037using namespace llvm;
38
39namespace {
Dmitri Gribenko226fea52013-01-13 16:01:15 +000040typedef SmallString<COFF::NameSize> name;
Chris Lattner2c52b792010-07-11 22:07:02 +000041
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000042enum AuxiliaryType {
43 ATFunctionDefinition,
44 ATbfAndefSymbol,
45 ATWeakExternal,
46 ATFile,
47 ATSectionDefinition
48};
Chris Lattner2c52b792010-07-11 22:07:02 +000049
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000050struct AuxSymbol {
51 AuxiliaryType AuxType;
52 COFF::Auxiliary Aux;
53};
Chris Lattner2c52b792010-07-11 22:07:02 +000054
Michael J. Spencerd6283772010-09-27 08:58:26 +000055class COFFSymbol;
56class COFFSection;
57
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000058class COFFSymbol {
59public:
60 COFF::symbol Data;
Chris Lattner2c52b792010-07-11 22:07:02 +000061
Dmitri Gribenko226fea52013-01-13 16:01:15 +000062 typedef SmallVector<AuxSymbol, 1> AuxiliarySymbols;
Chris Lattner2c52b792010-07-11 22:07:02 +000063
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000064 name Name;
Michael J. Spencerce2e5352010-09-27 21:17:39 +000065 int Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000066 AuxiliarySymbols Aux;
67 COFFSymbol *Other;
Michael J. Spencerd6283772010-09-27 08:58:26 +000068 COFFSection *Section;
69 int Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000070
71 MCSymbolData const *MCData;
72
Dmitri Gribenko226fea52013-01-13 16:01:15 +000073 COFFSymbol(StringRef name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000074 size_t size() const;
75 void set_name_offset(uint32_t Offset);
Michael J. Spencerd6283772010-09-27 08:58:26 +000076
77 bool should_keep() const;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000078};
79
80// This class contains staging data for a COFF relocation entry.
81struct COFFRelocation {
82 COFF::relocation Data;
83 COFFSymbol *Symb;
84
85 COFFRelocation() : Symb(NULL) {}
86 static size_t size() { return COFF::RelocationSize; }
87};
88
89typedef std::vector<COFFRelocation> relocations;
90
91class COFFSection {
92public:
93 COFF::section Header;
94
95 std::string Name;
Michael J. Spencerce2e5352010-09-27 21:17:39 +000096 int Number;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000097 MCSectionData const *MCData;
Michael J. Spencerd6283772010-09-27 08:58:26 +000098 COFFSymbol *Symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000099 relocations Relocations;
100
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000101 COFFSection(StringRef name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000102 static size_t size();
103};
104
105// This class holds the COFF string table.
106class StringTable {
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000107 typedef StringMap<size_t> map;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000108 map Map;
109
110 void update_length();
111public:
112 std::vector<char> Data;
113
114 StringTable();
115 size_t size() const;
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000116 size_t insert(StringRef String);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000117};
118
119class WinCOFFObjectWriter : public MCObjectWriter {
120public:
121
122 typedef std::vector<COFFSymbol*> symbols;
123 typedef std::vector<COFFSection*> sections;
124
Michael J. Spencer17990d52010-10-16 08:25:57 +0000125 typedef DenseMap<MCSymbol const *, COFFSymbol *> symbol_map;
126 typedef DenseMap<MCSection const *, COFFSection *> section_map;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000127
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000128 llvm::OwningPtr<MCWinCOFFObjectTargetWriter> TargetObjectWriter;
129
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000130 // Root level file contents.
131 COFF::header Header;
132 sections Sections;
133 symbols Symbols;
134 StringTable Strings;
135
136 // Maps used during object file creation.
137 section_map SectionMap;
138 symbol_map SymbolMap;
139
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000140 WinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW, raw_ostream &OS);
Alexey Samsonov49109a22013-11-18 09:31:53 +0000141 ~WinCOFFObjectWriter();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000142
Michael J. Spencer17990d52010-10-16 08:25:57 +0000143 COFFSymbol *createSymbol(StringRef Name);
144 COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol);
145 COFFSection *createSection(StringRef Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000146
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000147 template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000148 object_t *createCOFFEntity(StringRef Name, list_t &List);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000149
150 void DefineSection(MCSectionData const &SectionData);
Reid Klecknerc1e76212013-09-17 23:18:05 +0000151 void DefineSymbol(MCSymbolData const &SymbolData, MCAssembler &Assembler,
152 const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000153
Michael J. Spencerd6283772010-09-27 08:58:26 +0000154 void MakeSymbolReal(COFFSymbol &S, size_t Index);
155 void MakeSectionReal(COFFSection &S, size_t Number);
156
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000157 bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm);
158
Michael J. Spencerd6283772010-09-27 08:58:26 +0000159 bool IsPhysicalSection(COFFSection *S);
160
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000161 // Entity writing methods.
162
163 void WriteFileHeader(const COFF::header &Header);
164 void WriteSymbol(const COFFSymbol *S);
165 void WriteAuxiliarySymbols(const COFFSymbol::AuxiliarySymbols &S);
166 void WriteSectionHeader(const COFF::section &S);
167 void WriteRelocation(const COFF::relocation &R);
168
169 // MCObjectWriter interface implementation.
170
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000171 void ExecutePostLayoutBinding(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000172
173 void RecordRelocation(const MCAssembler &Asm,
174 const MCAsmLayout &Layout,
175 const MCFragment *Fragment,
176 const MCFixup &Fixup,
177 MCValue Target,
178 uint64_t &FixedValue);
179
Rafael Espindolabce26a12010-10-05 15:11:03 +0000180 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000181};
Chris Lattner2c52b792010-07-11 22:07:02 +0000182}
183
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000184static inline void write_uint32_le(void *Data, uint32_t const &Value) {
185 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
186 Ptr[0] = (Value & 0x000000FF) >> 0;
187 Ptr[1] = (Value & 0x0000FF00) >> 8;
188 Ptr[2] = (Value & 0x00FF0000) >> 16;
189 Ptr[3] = (Value & 0xFF000000) >> 24;
190}
191
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000192//------------------------------------------------------------------------------
193// Symbol class implementation
194
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000195COFFSymbol::COFFSymbol(StringRef name)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000196 : Name(name.begin(), name.end())
197 , Other(NULL)
198 , Section(NULL)
199 , Relocations(0)
200 , MCData(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000201 memset(&Data, 0, sizeof(Data));
202}
203
204size_t COFFSymbol::size() const {
205 return COFF::SymbolSize + (Data.NumberOfAuxSymbols * COFF::SymbolSize);
206}
207
208// In the case that the name does not fit within 8 bytes, the offset
209// into the string table is stored in the last 4 bytes instead, leaving
210// the first 4 bytes as 0.
211void COFFSymbol::set_name_offset(uint32_t Offset) {
212 write_uint32_le(Data.Name + 0, 0);
213 write_uint32_le(Data.Name + 4, Offset);
214}
215
Michael J. Spencerd6283772010-09-27 08:58:26 +0000216/// logic to decide if the symbol should be reported in the symbol table
217bool COFFSymbol::should_keep() const {
218 // no section means its external, keep it
219 if (Section == NULL)
220 return true;
221
222 // if it has relocations pointing at it, keep it
223 if (Relocations > 0) {
224 assert(Section->Number != -1 && "Sections with relocations must be real!");
225 return true;
226 }
227
228 // if the section its in is being droped, drop it
229 if (Section->Number == -1)
230 return false;
231
232 // if it is the section symbol, keep it
233 if (Section->Symbol == this)
234 return true;
235
236 // if its temporary, drop it
237 if (MCData && MCData->getSymbol().isTemporary())
238 return false;
239
240 // otherwise, keep it
241 return true;
242}
243
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000244//------------------------------------------------------------------------------
245// Section class implementation
246
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000247COFFSection::COFFSection(StringRef name)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000248 : Name(name)
249 , MCData(NULL)
250 , Symbol(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000251 memset(&Header, 0, sizeof(Header));
252}
253
254size_t COFFSection::size() {
255 return COFF::SectionSize;
256}
257
258//------------------------------------------------------------------------------
259// StringTable class implementation
260
261/// Write the length of the string table into Data.
262/// The length of the string table includes uint32 length header.
263void StringTable::update_length() {
264 write_uint32_le(&Data.front(), Data.size());
265}
266
267StringTable::StringTable() {
268 // The string table data begins with the length of the entire string table
269 // including the length header. Allocate space for this header.
270 Data.resize(4);
Michael J. Spencer5ca95bc2011-11-08 19:52:32 +0000271 update_length();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000272}
273
274size_t StringTable::size() const {
275 return Data.size();
276}
277
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000278/// Add String to the table iff it is not already there.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000279/// @returns the index into the string table where the string is now located.
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000280size_t StringTable::insert(StringRef String) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000281 map::iterator i = Map.find(String);
282
283 if (i != Map.end())
284 return i->second;
285
286 size_t Offset = Data.size();
287
288 // Insert string data into string table.
289 Data.insert(Data.end(), String.begin(), String.end());
290 Data.push_back('\0');
291
292 // Put a reference to it in the map.
293 Map[String] = Offset;
294
295 // Update the internal length field.
296 update_length();
297
298 return Offset;
299}
300
301//------------------------------------------------------------------------------
302// WinCOFFObjectWriter class implementation
303
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000304WinCOFFObjectWriter::WinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
305 raw_ostream &OS)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000306 : MCObjectWriter(OS, true)
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000307 , TargetObjectWriter(MOTW) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000308 memset(&Header, 0, sizeof(Header));
Michael J. Spencer377aa202010-08-21 05:58:13 +0000309
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000310 Header.Machine = TargetObjectWriter->getMachine();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000311}
312
Benjamin Kramerc2997dd2010-07-29 11:57:59 +0000313WinCOFFObjectWriter::~WinCOFFObjectWriter() {
314 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
315 delete *I;
316 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
317 delete *I;
318}
319
Michael J. Spencer17990d52010-10-16 08:25:57 +0000320COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000321 return createCOFFEntity<COFFSymbol>(Name, Symbols);
322}
323
Michael J. Spencer17990d52010-10-16 08:25:57 +0000324COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
325 symbol_map::iterator i = SymbolMap.find(Symbol);
326 if (i != SymbolMap.end())
327 return i->second;
328 COFFSymbol *RetSymbol
329 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
330 SymbolMap[Symbol] = RetSymbol;
331 return RetSymbol;
332}
333
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000334COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000335 return createCOFFEntity<COFFSection>(Name, Sections);
336}
337
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000338/// A template used to lookup or create a symbol/section, and initialize it if
339/// needed.
340template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000341object_t *WinCOFFObjectWriter::createCOFFEntity(StringRef Name,
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000342 list_t &List) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000343 object_t *Object = new object_t(Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000344
345 List.push_back(Object);
346
347 return Object;
348}
349
350/// This function takes a section data object from the assembler
351/// and creates the associated COFF section staging object.
352void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
Michael J. Spencerbe52c622010-10-09 11:00:37 +0000353 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
354 && "Got non COFF section in the COFF backend!");
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000355 // FIXME: Not sure how to verify this (at least in a debug build).
356 MCSectionCOFF const &Sec =
357 static_cast<MCSectionCOFF const &>(SectionData.getSection());
358
359 COFFSection *coff_section = createSection(Sec.getSectionName());
360 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
361
Michael J. Spencerd6283772010-09-27 08:58:26 +0000362 coff_section->Symbol = coff_symbol;
363 coff_symbol->Section = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000364 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000365
366 // In this case the auxiliary symbol is a Section Definition.
367 coff_symbol->Aux.resize(1);
368 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
369 coff_symbol->Aux[0].AuxType = ATSectionDefinition;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000370 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
371
372 coff_section->Header.Characteristics = Sec.getCharacteristics();
373
374 uint32_t &Characteristics = coff_section->Header.Characteristics;
375 switch (SectionData.getAlignment()) {
376 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
377 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
378 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
379 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
380 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
381 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
382 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break;
383 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break;
384 case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break;
385 case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break;
386 case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break;
387 case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break;
388 case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break;
389 case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break;
390 default:
391 llvm_unreachable("unsupported section alignment");
392 }
393
394 // Bind internal COFF section to MC section.
395 coff_section->MCData = &SectionData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000396 SectionMap[&SectionData.getSection()] = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000397}
398
399/// This function takes a section data object from the assembler
400/// and creates the associated COFF symbol staging object.
Peter Collingbourne89886872013-04-22 18:48:56 +0000401void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData,
Reid Klecknerc1e76212013-09-17 23:18:05 +0000402 MCAssembler &Assembler,
403 const MCAsmLayout &Layout) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000404 MCSymbol const &Symbol = SymbolData.getSymbol();
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000405 COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&Symbol);
Peter Collingbourne89886872013-04-22 18:48:56 +0000406 SymbolMap[&Symbol] = coff_symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000407
Michael J. Spencer17990d52010-10-16 08:25:57 +0000408 if (SymbolData.getFlags() & COFF::SF_WeakExternal) {
409 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
410
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000411 if (Symbol.isVariable()) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000412 const MCSymbolRefExpr *SymRef =
413 dyn_cast<MCSymbolRefExpr>(Symbol.getVariableValue());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000414
Peter Collingbourne89886872013-04-22 18:48:56 +0000415 if (!SymRef)
416 report_fatal_error("Weak externals may only alias symbols");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000417
Peter Collingbourne89886872013-04-22 18:48:56 +0000418 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymRef->getSymbol());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000419 } else {
420 std::string WeakName = std::string(".weak.")
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000421 + Symbol.getName().str()
Michael J. Spencer17990d52010-10-16 08:25:57 +0000422 + ".default";
423 COFFSymbol *WeakDefault = createSymbol(WeakName);
424 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
425 WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL;
426 WeakDefault->Data.Type = 0;
427 WeakDefault->Data.Value = 0;
428 coff_symbol->Other = WeakDefault;
429 }
430
431 // Setup the Weak External auxiliary symbol.
432 coff_symbol->Aux.resize(1);
433 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
434 coff_symbol->Aux[0].AuxType = ATWeakExternal;
435 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0;
436 coff_symbol->Aux[0].Aux.WeakExternal.Characteristics =
437 COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY;
Peter Collingbourne89886872013-04-22 18:48:56 +0000438
439 coff_symbol->MCData = &SymbolData;
440 } else {
441 const MCSymbolData &ResSymData =
442 Assembler.getSymbolData(Symbol.AliasedSymbol());
443
Reid Klecknerc1e76212013-09-17 23:18:05 +0000444 if (Symbol.isVariable()) {
445 int64_t Addr;
446 if (Symbol.getVariableValue()->EvaluateAsAbsolute(Addr, Layout))
447 coff_symbol->Data.Value = Addr;
448 }
449
Peter Collingbourne89886872013-04-22 18:48:56 +0000450 coff_symbol->Data.Type = (ResSymData.getFlags() & 0x0000FFFF) >> 0;
451 coff_symbol->Data.StorageClass = (ResSymData.getFlags() & 0x00FF0000) >> 16;
452
453 // If no storage class was specified in the streamer, define it here.
454 if (coff_symbol->Data.StorageClass == 0) {
455 bool external = ResSymData.isExternal() || (ResSymData.Fragment == NULL);
456
457 coff_symbol->Data.StorageClass =
458 external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC;
459 }
460
Reid Klecknerc1e76212013-09-17 23:18:05 +0000461 if (Symbol.isAbsolute() || Symbol.AliasedSymbol().isVariable())
462 coff_symbol->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
463 else if (ResSymData.Fragment != NULL)
Peter Collingbourne89886872013-04-22 18:48:56 +0000464 coff_symbol->Section =
465 SectionMap[&ResSymData.Fragment->getParent()->getSection()];
466
467 coff_symbol->MCData = &ResSymData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000468 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000469}
470
Michael J. Spencerd6283772010-09-27 08:58:26 +0000471/// making a section real involves assigned it a number and putting
472/// name into the string table if needed
473void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
474 if (S.Name.size() > COFF::NameSize) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000475 const unsigned Max6DecimalSize = 999999;
476 const unsigned Max7DecimalSize = 9999999;
477 uint64_t StringTableEntry = Strings.insert(S.Name.c_str());
Michael J. Spencerd6283772010-09-27 08:58:26 +0000478
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000479 if (StringTableEntry <= Max6DecimalSize) {
480 std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry));
481 } else if (StringTableEntry <= Max7DecimalSize) {
482 // With seven digits, we have to skip the terminating null. Because
483 // sprintf always appends it, we use a larger temporary buffer.
484 char buffer[9] = { };
485 std::sprintf(buffer, "/%d", unsigned(StringTableEntry));
486 std::memcpy(S.Header.Name, buffer, 8);
487 } else {
488 report_fatal_error("COFF string table is greater than 9,999,999 bytes.");
489 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000490 } else
491 std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size());
492
493 S.Number = Number;
494 S.Symbol->Data.SectionNumber = S.Number;
495 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
496}
497
498void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
499 if (S.Name.size() > COFF::NameSize) {
500 size_t StringTableEntry = Strings.insert(S.Name.c_str());
501
502 S.set_name_offset(StringTableEntry);
503 } else
504 std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size());
505 S.Index = Index;
506}
507
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000508bool 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
515 // For now, all non-variable symbols are exported,
516 // the linker will sort the rest out for us.
517 return SymbolData.isExternal() || !SymbolData.getSymbol().isVariable();
518}
519
Michael J. Spencerd6283772010-09-27 08:58:26 +0000520bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
521 return (S->Header.Characteristics
522 & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000523}
524
525//------------------------------------------------------------------------------
526// entity writing methods
527
528void 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
538void 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
548void 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
589void 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
603void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) {
604 WriteLE32(R.VirtualAddress);
605 WriteLE32(R.SymbolTableIndex);
606 WriteLE16(R.Type);
Chris Lattner2c52b792010-07-11 22:07:02 +0000607}
608
609////////////////////////////////////////////////////////////////////////////////
610// MCObjectWriter interface implementations
611
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000612void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
613 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000614 // "Define" each section & symbol. This creates section & symbol
Michael J. Spencerd6283772010-09-27 08:58:26 +0000615 // entries in the staging area.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000616
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(),
Reid Kleckner3ea536f2013-09-17 21:24:44 +0000621 e = Asm.symbol_end();
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000622 i != e; i++) {
623 if (ExportSymbol(*i, Asm)) {
624 DefineSymbol(*i, Asm, Layout);
625 }
626 }
Chris Lattner2c52b792010-07-11 22:07:02 +0000627}
628
629void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
630 const MCAsmLayout &Layout,
631 const MCFragment *Fragment,
632 const MCFixup &Fixup,
633 MCValue Target,
634 uint64_t &FixedValue) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000635 assert(Target.getSymA() != NULL && "Relocation must reference a symbol!");
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000636
Reid Klecknerdae7b4e2013-07-15 19:41:21 +0000637 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
638 const MCSymbol &A = Symbol.AliasedSymbol();
639 MCSymbolData &A_SD = Asm.getSymbolData(A);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000640
641 MCSectionData const *SectionData = Fragment->getParent();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000642
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000643 // Mark this symbol as requiring an entry in the symbol table.
Michael J. Spencer17990d52010-10-16 08:25:57 +0000644 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000645 "Section must already have been defined in ExecutePostLayoutBinding!");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000646 assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000647 "Symbol must already have been defined in ExecutePostLayoutBinding!");
648
Michael J. Spencer17990d52010-10-16 08:25:57 +0000649 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
650 COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()];
Rafael Espindolaed164772011-04-20 14:01:45 +0000651 const MCSymbolRefExpr *SymA = Target.getSymA();
652 const MCSymbolRefExpr *SymB = Target.getSymB();
653 const bool CrossSection = SymB &&
654 &SymA->getSymbol().getSection() != &SymB->getSymbol().getSection();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000655
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000656 if (Target.getSymB()) {
657 const MCSymbol *B = &Target.getSymB()->getSymbol();
658 MCSymbolData &B_SD = Asm.getSymbolData(*B);
659
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000660 // Offset of the symbol in the section
661 int64_t a = Layout.getSymbolOffset(&B_SD);
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000662
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000663 // Ofeset of the relocation in the section
664 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
665
666 FixedValue = b - a;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000667 // In the case where we have SymbA and SymB, we just need to store the delta
668 // between the two symbols. Update FixedValue to account for the delta, and
669 // skip recording the relocation.
Rafael Espindolaed164772011-04-20 14:01:45 +0000670 if (!CrossSection)
671 return;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000672 } else {
673 FixedValue = Target.getConstant();
674 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000675
676 COFFRelocation Reloc;
677
Daniel Dunbar727be432010-07-31 21:08:54 +0000678 Reloc.Data.SymbolTableIndex = 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000679 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000680
Michael J. Spencera65d17a2010-10-05 19:48:12 +0000681 // Turn relocations for temporary symbols into section relocations.
Rafael Espindolaed164772011-04-20 14:01:45 +0000682 if (coff_symbol->MCData->getSymbol().isTemporary() || CrossSection) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000683 Reloc.Symb = coff_symbol->Section->Symbol;
Michael J. Spencera3b34ed2010-10-05 19:48:03 +0000684 FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment)
685 + coff_symbol->MCData->getOffset();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000686 } else
687 Reloc.Symb = coff_symbol;
688
689 ++Reloc.Symb->Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000690
691 Reloc.Data.VirtualAddress += Fixup.getOffset();
Nico Rieck1da45292013-04-10 23:28:17 +0000692 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
693 CrossSection);
Rafael Espindolae61724a2011-12-22 22:21:47 +0000694
695 // FIXME: Can anyone explain what this does other than adjust for the size
696 // of the offset?
697 if (Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32 ||
698 Reloc.Data.Type == COFF::IMAGE_REL_I386_REL32)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000699 FixedValue += 4;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000700
701 coff_section->Relocations.push_back(Reloc);
Chris Lattner2c52b792010-07-11 22:07:02 +0000702}
703
Rafael Espindolabce26a12010-10-05 15:11:03 +0000704void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
Chris Lattner2c52b792010-07-11 22:07:02 +0000705 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000706 // Assign symbol and section indexes and offsets.
Michael J. Spencerd6283772010-09-27 08:58:26 +0000707 Header.NumberOfSections = 0;
708
Nico Riecka37acf72013-07-06 12:13:10 +0000709 DenseMap<COFFSection *, uint16_t> SectionIndices;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000710 for (sections::iterator i = Sections.begin(),
711 e = Sections.end(); i != e; i++) {
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000712 if (Layout.getSectionAddressSize((*i)->MCData) > 0) {
Nico Riecka37acf72013-07-06 12:13:10 +0000713 size_t Number = ++Header.NumberOfSections;
714 SectionIndices[*i] = Number;
715 MakeSectionReal(**i, Number);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000716 } else {
717 (*i)->Number = -1;
718 }
719 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000720
721 Header.NumberOfSymbols = 0;
722
723 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
724 COFFSymbol *coff_symbol = *i;
725 MCSymbolData const *SymbolData = coff_symbol->MCData;
726
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000727 // Update section number & offset for symbols that have them.
728 if ((SymbolData != NULL) && (SymbolData->Fragment != NULL)) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000729 assert(coff_symbol->Section != NULL);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000730
Michael J. Spencerd6283772010-09-27 08:58:26 +0000731 coff_symbol->Data.SectionNumber = coff_symbol->Section->Number;
Michael J. Spencer54cfd422010-08-03 05:02:46 +0000732 coff_symbol->Data.Value = Layout.getFragmentOffset(SymbolData->Fragment)
733 + SymbolData->Offset;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000734 }
735
Michael J. Spencerd6283772010-09-27 08:58:26 +0000736 if (coff_symbol->should_keep()) {
737 MakeSymbolReal(*coff_symbol, Header.NumberOfSymbols++);
738
739 // Update auxiliary symbol info.
740 coff_symbol->Data.NumberOfAuxSymbols = coff_symbol->Aux.size();
741 Header.NumberOfSymbols += coff_symbol->Data.NumberOfAuxSymbols;
742 } else
743 coff_symbol->Index = -1;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000744 }
745
746 // Fixup weak external references.
747 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000748 COFFSymbol *coff_symbol = *i;
749 if (coff_symbol->Other != NULL) {
750 assert(coff_symbol->Index != -1);
751 assert(coff_symbol->Aux.size() == 1 &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000752 "Symbol must contain one aux symbol!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000753 assert(coff_symbol->Aux[0].AuxType == ATWeakExternal &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000754 "Symbol's aux symbol must be a Weak External!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000755 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000756 }
757 }
758
Nico Riecka37acf72013-07-06 12:13:10 +0000759 // Fixup associative COMDAT sections.
760 for (sections::iterator i = Sections.begin(),
761 e = Sections.end(); i != e; i++) {
762 if ((*i)->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
763 COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
764 continue;
765
766 const MCSectionCOFF &MCSec = static_cast<const MCSectionCOFF &>(
767 (*i)->MCData->getSection());
768
769 COFFSection *Assoc = SectionMap.lookup(MCSec.getAssocSection());
770 if (!Assoc) {
771 report_fatal_error(Twine("Missing associated COMDAT section ") +
772 MCSec.getAssocSection()->getSectionName() +
773 " for section " + MCSec.getSectionName());
774 }
775
776 // Skip this section if the associated section is unused.
777 if (Assoc->Number == -1)
778 continue;
779
780 (*i)->Symbol->Aux[0].Aux.SectionDefinition.Number = SectionIndices[Assoc];
781 }
782
783
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000784 // Assign file offsets to COFF object file structures.
785
786 unsigned offset = 0;
787
788 offset += COFF::HeaderSize;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000789 offset += COFF::SectionSize * Header.NumberOfSections;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000790
791 for (MCAssembler::const_iterator i = Asm.begin(),
792 e = Asm.end();
793 i != e; i++) {
Michael J. Spencer17990d52010-10-16 08:25:57 +0000794 COFFSection *Sec = SectionMap[&i->getSection()];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000795
Michael J. Spencerd6283772010-09-27 08:58:26 +0000796 if (Sec->Number == -1)
797 continue;
798
Michael J. Spencera6a984b2010-10-09 16:04:45 +0000799 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000800
Michael J. Spencerd6283772010-09-27 08:58:26 +0000801 if (IsPhysicalSection(Sec)) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000802 Sec->Header.PointerToRawData = offset;
803
804 offset += Sec->Header.SizeOfRawData;
805 }
806
807 if (Sec->Relocations.size() > 0) {
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000808 bool RelocationsOverflow = Sec->Relocations.size() >= 0xffff;
809
810 if (RelocationsOverflow) {
811 // Signal overflow by setting NumberOfSections to max value. Actual
812 // size is found in reloc #0. Microsoft tools understand this.
813 Sec->Header.NumberOfRelocations = 0xffff;
814 } else {
815 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
816 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000817 Sec->Header.PointerToRelocations = offset;
818
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000819 if (RelocationsOverflow) {
820 // Reloc #0 will contain actual count, so make room for it.
821 offset += COFF::RelocationSize;
822 }
823
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000824 offset += COFF::RelocationSize * Sec->Relocations.size();
825
826 for (relocations::iterator cr = Sec->Relocations.begin(),
827 er = Sec->Relocations.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000828 cr != er; ++cr) {
829 assert((*cr).Symb->Index != -1);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000830 (*cr).Data.SymbolTableIndex = (*cr).Symb->Index;
831 }
832 }
833
Michael J. Spencerd6283772010-09-27 08:58:26 +0000834 assert(Sec->Symbol->Aux.size() == 1
835 && "Section's symbol must have one aux!");
836 AuxSymbol &Aux = Sec->Symbol->Aux[0];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000837 assert(Aux.AuxType == ATSectionDefinition &&
838 "Section's symbol's aux symbol must be a Section Definition!");
839 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
840 Aux.Aux.SectionDefinition.NumberOfRelocations =
841 Sec->Header.NumberOfRelocations;
842 Aux.Aux.SectionDefinition.NumberOfLinenumbers =
843 Sec->Header.NumberOfLineNumbers;
844 }
845
846 Header.PointerToSymbolTable = offset;
847
Michael J. Spencera6cfbeb2010-08-03 04:43:33 +0000848 Header.TimeDateStamp = sys::TimeValue::now().toEpochTime();
849
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000850 // Write it all to disk...
851 WriteFileHeader(Header);
852
853 {
854 sections::iterator i, ie;
855 MCAssembler::const_iterator j, je;
856
857 for (i = Sections.begin(), ie = Sections.end(); i != ie; i++)
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000858 if ((*i)->Number != -1) {
859 if ((*i)->Relocations.size() >= 0xffff) {
860 (*i)->Header.Characteristics |= COFF::IMAGE_SCN_LNK_NRELOC_OVFL;
861 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000862 WriteSectionHeader((*i)->Header);
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000863 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000864
865 for (i = Sections.begin(), ie = Sections.end(),
866 j = Asm.begin(), je = Asm.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000867 (i != ie) && (j != je); ++i, ++j) {
868
869 if ((*i)->Number == -1)
870 continue;
871
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000872 if ((*i)->Header.PointerToRawData != 0) {
873 assert(OS.tell() == (*i)->Header.PointerToRawData &&
874 "Section::PointerToRawData is insane!");
875
Jim Grosbach18e2fe42011-12-06 00:03:48 +0000876 Asm.writeSectionData(j, Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000877 }
878
879 if ((*i)->Relocations.size() > 0) {
880 assert(OS.tell() == (*i)->Header.PointerToRelocations &&
881 "Section::PointerToRelocations is insane!");
882
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000883 if ((*i)->Relocations.size() >= 0xffff) {
884 // In case of overflow, write actual relocation count as first
885 // relocation. Including the synthetic reloc itself (+ 1).
886 COFF::relocation r;
887 r.VirtualAddress = (*i)->Relocations.size() + 1;
888 r.SymbolTableIndex = 0;
889 r.Type = 0;
890 WriteRelocation(r);
891 }
892
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000893 for (relocations::const_iterator k = (*i)->Relocations.begin(),
894 ke = (*i)->Relocations.end();
895 k != ke; k++) {
896 WriteRelocation(k->Data);
897 }
898 } else
899 assert((*i)->Header.PointerToRelocations == 0 &&
900 "Section::PointerToRelocations is insane!");
901 }
902 }
903
904 assert(OS.tell() == Header.PointerToSymbolTable &&
905 "Header::PointerToSymbolTable is insane!");
906
907 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000908 if ((*i)->Index != -1)
909 WriteSymbol(*i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000910
911 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
Chris Lattner2c52b792010-07-11 22:07:02 +0000912}
913
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000914MCWinCOFFObjectTargetWriter::MCWinCOFFObjectTargetWriter(unsigned Machine_) :
915 Machine(Machine_) {
916}
917
Chris Lattner2c52b792010-07-11 22:07:02 +0000918//------------------------------------------------------------------------------
919// WinCOFFObjectWriter factory function
920
921namespace llvm {
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000922 MCObjectWriter *createWinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
923 raw_ostream &OS) {
924 return new WinCOFFObjectWriter(MOTW, OS);
Chris Lattner2c52b792010-07-11 22:07:02 +0000925 }
Michael J. Spencerc2129372010-07-26 03:01:28 +0000926}