blob: 263151c6afa6e479de75b8ab24d039556b9cfc0d [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);
Benjamin Kramerc2997dd2010-07-29 11:57:59 +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);
Peter Collingbourne89886872013-04-22 18:48:56 +0000151 void DefineSymbol(MCSymbolData const &SymbolData,
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000152 MCAssembler &Assembler);
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
Michael J. Spencerd6283772010-09-27 08:58:26 +0000157 bool IsPhysicalSection(COFFSection *S);
158
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000159 // Entity writing methods.
160
161 void WriteFileHeader(const COFF::header &Header);
162 void WriteSymbol(const COFFSymbol *S);
163 void WriteAuxiliarySymbols(const COFFSymbol::AuxiliarySymbols &S);
164 void WriteSectionHeader(const COFF::section &S);
165 void WriteRelocation(const COFF::relocation &R);
166
167 // MCObjectWriter interface implementation.
168
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000169 void ExecutePostLayoutBinding(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000170
171 void RecordRelocation(const MCAssembler &Asm,
172 const MCAsmLayout &Layout,
173 const MCFragment *Fragment,
174 const MCFixup &Fixup,
175 MCValue Target,
176 uint64_t &FixedValue);
177
Rafael Espindolabce26a12010-10-05 15:11:03 +0000178 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000179};
Chris Lattner2c52b792010-07-11 22:07:02 +0000180}
181
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000182static inline void write_uint32_le(void *Data, uint32_t const &Value) {
183 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
184 Ptr[0] = (Value & 0x000000FF) >> 0;
185 Ptr[1] = (Value & 0x0000FF00) >> 8;
186 Ptr[2] = (Value & 0x00FF0000) >> 16;
187 Ptr[3] = (Value & 0xFF000000) >> 24;
188}
189
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000190//------------------------------------------------------------------------------
191// Symbol class implementation
192
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000193COFFSymbol::COFFSymbol(StringRef name)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000194 : Name(name.begin(), name.end())
195 , Other(NULL)
196 , Section(NULL)
197 , Relocations(0)
198 , MCData(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000199 memset(&Data, 0, sizeof(Data));
200}
201
202size_t COFFSymbol::size() const {
203 return COFF::SymbolSize + (Data.NumberOfAuxSymbols * COFF::SymbolSize);
204}
205
206// In the case that the name does not fit within 8 bytes, the offset
207// into the string table is stored in the last 4 bytes instead, leaving
208// the first 4 bytes as 0.
209void COFFSymbol::set_name_offset(uint32_t Offset) {
210 write_uint32_le(Data.Name + 0, 0);
211 write_uint32_le(Data.Name + 4, Offset);
212}
213
Michael J. Spencerd6283772010-09-27 08:58:26 +0000214/// logic to decide if the symbol should be reported in the symbol table
215bool COFFSymbol::should_keep() const {
216 // no section means its external, keep it
217 if (Section == NULL)
218 return true;
219
220 // if it has relocations pointing at it, keep it
221 if (Relocations > 0) {
222 assert(Section->Number != -1 && "Sections with relocations must be real!");
223 return true;
224 }
225
226 // if the section its in is being droped, drop it
227 if (Section->Number == -1)
228 return false;
229
230 // if it is the section symbol, keep it
231 if (Section->Symbol == this)
232 return true;
233
234 // if its temporary, drop it
235 if (MCData && MCData->getSymbol().isTemporary())
236 return false;
237
238 // otherwise, keep it
239 return true;
240}
241
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000242//------------------------------------------------------------------------------
243// Section class implementation
244
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000245COFFSection::COFFSection(StringRef name)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000246 : Name(name)
247 , MCData(NULL)
248 , Symbol(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000249 memset(&Header, 0, sizeof(Header));
250}
251
252size_t COFFSection::size() {
253 return COFF::SectionSize;
254}
255
256//------------------------------------------------------------------------------
257// StringTable class implementation
258
259/// Write the length of the string table into Data.
260/// The length of the string table includes uint32 length header.
261void StringTable::update_length() {
262 write_uint32_le(&Data.front(), Data.size());
263}
264
265StringTable::StringTable() {
266 // The string table data begins with the length of the entire string table
267 // including the length header. Allocate space for this header.
268 Data.resize(4);
Michael J. Spencer5ca95bc2011-11-08 19:52:32 +0000269 update_length();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000270}
271
272size_t StringTable::size() const {
273 return Data.size();
274}
275
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000276/// Add String to the table iff it is not already there.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000277/// @returns the index into the string table where the string is now located.
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000278size_t StringTable::insert(StringRef String) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000279 map::iterator i = Map.find(String);
280
281 if (i != Map.end())
282 return i->second;
283
284 size_t Offset = Data.size();
285
286 // Insert string data into string table.
287 Data.insert(Data.end(), String.begin(), String.end());
288 Data.push_back('\0');
289
290 // Put a reference to it in the map.
291 Map[String] = Offset;
292
293 // Update the internal length field.
294 update_length();
295
296 return Offset;
297}
298
299//------------------------------------------------------------------------------
300// WinCOFFObjectWriter class implementation
301
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000302WinCOFFObjectWriter::WinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
303 raw_ostream &OS)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000304 : MCObjectWriter(OS, true)
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000305 , TargetObjectWriter(MOTW) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000306 memset(&Header, 0, sizeof(Header));
Michael J. Spencer377aa202010-08-21 05:58:13 +0000307
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000308 Header.Machine = TargetObjectWriter->getMachine();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000309}
310
Benjamin Kramerc2997dd2010-07-29 11:57:59 +0000311WinCOFFObjectWriter::~WinCOFFObjectWriter() {
312 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
313 delete *I;
314 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
315 delete *I;
316}
317
Michael J. Spencer17990d52010-10-16 08:25:57 +0000318COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000319 return createCOFFEntity<COFFSymbol>(Name, Symbols);
320}
321
Michael J. Spencer17990d52010-10-16 08:25:57 +0000322COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
323 symbol_map::iterator i = SymbolMap.find(Symbol);
324 if (i != SymbolMap.end())
325 return i->second;
326 COFFSymbol *RetSymbol
327 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
328 SymbolMap[Symbol] = RetSymbol;
329 return RetSymbol;
330}
331
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000332COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000333 return createCOFFEntity<COFFSection>(Name, Sections);
334}
335
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000336/// A template used to lookup or create a symbol/section, and initialize it if
337/// needed.
338template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000339object_t *WinCOFFObjectWriter::createCOFFEntity(StringRef Name,
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000340 list_t &List) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000341 object_t *Object = new object_t(Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000342
343 List.push_back(Object);
344
345 return Object;
346}
347
348/// This function takes a section data object from the assembler
349/// and creates the associated COFF section staging object.
350void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
Michael J. Spencerbe52c622010-10-09 11:00:37 +0000351 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
352 && "Got non COFF section in the COFF backend!");
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000353 // FIXME: Not sure how to verify this (at least in a debug build).
354 MCSectionCOFF const &Sec =
355 static_cast<MCSectionCOFF const &>(SectionData.getSection());
356
357 COFFSection *coff_section = createSection(Sec.getSectionName());
358 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
359
Michael J. Spencerd6283772010-09-27 08:58:26 +0000360 coff_section->Symbol = coff_symbol;
361 coff_symbol->Section = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000362 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000363
364 // In this case the auxiliary symbol is a Section Definition.
365 coff_symbol->Aux.resize(1);
366 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
367 coff_symbol->Aux[0].AuxType = ATSectionDefinition;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000368 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
369
370 coff_section->Header.Characteristics = Sec.getCharacteristics();
371
372 uint32_t &Characteristics = coff_section->Header.Characteristics;
373 switch (SectionData.getAlignment()) {
374 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
375 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
376 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
377 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
378 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
379 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
380 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break;
381 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break;
382 case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break;
383 case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break;
384 case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break;
385 case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break;
386 case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break;
387 case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break;
388 default:
389 llvm_unreachable("unsupported section alignment");
390 }
391
392 // Bind internal COFF section to MC section.
393 coff_section->MCData = &SectionData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000394 SectionMap[&SectionData.getSection()] = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000395}
396
397/// This function takes a section data object from the assembler
398/// and creates the associated COFF symbol staging object.
Peter Collingbourne89886872013-04-22 18:48:56 +0000399void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData,
Michael J. Spencerd6283772010-09-27 08:58:26 +0000400 MCAssembler &Assembler) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000401 MCSymbol const &Symbol = SymbolData.getSymbol();
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000402 COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&Symbol);
Peter Collingbourne89886872013-04-22 18:48:56 +0000403 SymbolMap[&Symbol] = coff_symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000404
Michael J. Spencer17990d52010-10-16 08:25:57 +0000405 if (SymbolData.getFlags() & COFF::SF_WeakExternal) {
406 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
407
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000408 if (Symbol.isVariable()) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000409 const MCSymbolRefExpr *SymRef =
410 dyn_cast<MCSymbolRefExpr>(Symbol.getVariableValue());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000411
Peter Collingbourne89886872013-04-22 18:48:56 +0000412 if (!SymRef)
413 report_fatal_error("Weak externals may only alias symbols");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000414
Peter Collingbourne89886872013-04-22 18:48:56 +0000415 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymRef->getSymbol());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000416 } else {
417 std::string WeakName = std::string(".weak.")
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000418 + Symbol.getName().str()
Michael J. Spencer17990d52010-10-16 08:25:57 +0000419 + ".default";
420 COFFSymbol *WeakDefault = createSymbol(WeakName);
421 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
422 WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL;
423 WeakDefault->Data.Type = 0;
424 WeakDefault->Data.Value = 0;
425 coff_symbol->Other = WeakDefault;
426 }
427
428 // Setup the Weak External auxiliary symbol.
429 coff_symbol->Aux.resize(1);
430 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
431 coff_symbol->Aux[0].AuxType = ATWeakExternal;
432 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0;
433 coff_symbol->Aux[0].Aux.WeakExternal.Characteristics =
434 COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY;
Peter Collingbourne89886872013-04-22 18:48:56 +0000435
436 coff_symbol->MCData = &SymbolData;
437 } else {
438 const MCSymbolData &ResSymData =
439 Assembler.getSymbolData(Symbol.AliasedSymbol());
440
441 coff_symbol->Data.Type = (ResSymData.getFlags() & 0x0000FFFF) >> 0;
442 coff_symbol->Data.StorageClass = (ResSymData.getFlags() & 0x00FF0000) >> 16;
443
444 // If no storage class was specified in the streamer, define it here.
445 if (coff_symbol->Data.StorageClass == 0) {
446 bool external = ResSymData.isExternal() || (ResSymData.Fragment == NULL);
447
448 coff_symbol->Data.StorageClass =
449 external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC;
450 }
451
452 if (ResSymData.Fragment != NULL)
453 coff_symbol->Section =
454 SectionMap[&ResSymData.Fragment->getParent()->getSection()];
455
456 coff_symbol->MCData = &ResSymData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000457 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000458}
459
Michael J. Spencerd6283772010-09-27 08:58:26 +0000460/// making a section real involves assigned it a number and putting
461/// name into the string table if needed
462void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
463 if (S.Name.size() > COFF::NameSize) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000464 const unsigned Max6DecimalSize = 999999;
465 const unsigned Max7DecimalSize = 9999999;
466 uint64_t StringTableEntry = Strings.insert(S.Name.c_str());
Michael J. Spencerd6283772010-09-27 08:58:26 +0000467
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000468 if (StringTableEntry <= Max6DecimalSize) {
469 std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry));
470 } else if (StringTableEntry <= Max7DecimalSize) {
471 // With seven digits, we have to skip the terminating null. Because
472 // sprintf always appends it, we use a larger temporary buffer.
473 char buffer[9] = { };
474 std::sprintf(buffer, "/%d", unsigned(StringTableEntry));
475 std::memcpy(S.Header.Name, buffer, 8);
476 } else {
477 report_fatal_error("COFF string table is greater than 9,999,999 bytes.");
478 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000479 } else
480 std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size());
481
482 S.Number = Number;
483 S.Symbol->Data.SectionNumber = S.Number;
484 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
485}
486
487void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
488 if (S.Name.size() > COFF::NameSize) {
489 size_t StringTableEntry = Strings.insert(S.Name.c_str());
490
491 S.set_name_offset(StringTableEntry);
492 } else
493 std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size());
494 S.Index = Index;
495}
496
Michael J. Spencerd6283772010-09-27 08:58:26 +0000497bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
498 return (S->Header.Characteristics
499 & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000500}
501
502//------------------------------------------------------------------------------
503// entity writing methods
504
505void WinCOFFObjectWriter::WriteFileHeader(const COFF::header &Header) {
506 WriteLE16(Header.Machine);
507 WriteLE16(Header.NumberOfSections);
508 WriteLE32(Header.TimeDateStamp);
509 WriteLE32(Header.PointerToSymbolTable);
510 WriteLE32(Header.NumberOfSymbols);
511 WriteLE16(Header.SizeOfOptionalHeader);
512 WriteLE16(Header.Characteristics);
513}
514
515void WinCOFFObjectWriter::WriteSymbol(const COFFSymbol *S) {
516 WriteBytes(StringRef(S->Data.Name, COFF::NameSize));
517 WriteLE32(S->Data.Value);
518 WriteLE16(S->Data.SectionNumber);
519 WriteLE16(S->Data.Type);
520 Write8(S->Data.StorageClass);
521 Write8(S->Data.NumberOfAuxSymbols);
522 WriteAuxiliarySymbols(S->Aux);
523}
524
525void WinCOFFObjectWriter::WriteAuxiliarySymbols(
526 const COFFSymbol::AuxiliarySymbols &S) {
527 for(COFFSymbol::AuxiliarySymbols::const_iterator i = S.begin(), e = S.end();
528 i != e; ++i) {
529 switch(i->AuxType) {
530 case ATFunctionDefinition:
531 WriteLE32(i->Aux.FunctionDefinition.TagIndex);
532 WriteLE32(i->Aux.FunctionDefinition.TotalSize);
533 WriteLE32(i->Aux.FunctionDefinition.PointerToLinenumber);
534 WriteLE32(i->Aux.FunctionDefinition.PointerToNextFunction);
535 WriteZeros(sizeof(i->Aux.FunctionDefinition.unused));
536 break;
537 case ATbfAndefSymbol:
538 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused1));
539 WriteLE16(i->Aux.bfAndefSymbol.Linenumber);
540 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused2));
541 WriteLE32(i->Aux.bfAndefSymbol.PointerToNextFunction);
542 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused3));
543 break;
544 case ATWeakExternal:
545 WriteLE32(i->Aux.WeakExternal.TagIndex);
546 WriteLE32(i->Aux.WeakExternal.Characteristics);
547 WriteZeros(sizeof(i->Aux.WeakExternal.unused));
548 break;
549 case ATFile:
550 WriteBytes(StringRef(reinterpret_cast<const char *>(i->Aux.File.FileName),
551 sizeof(i->Aux.File.FileName)));
552 break;
553 case ATSectionDefinition:
554 WriteLE32(i->Aux.SectionDefinition.Length);
555 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
556 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
557 WriteLE32(i->Aux.SectionDefinition.CheckSum);
558 WriteLE16(i->Aux.SectionDefinition.Number);
559 Write8(i->Aux.SectionDefinition.Selection);
560 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
561 break;
562 }
563 }
564}
565
566void WinCOFFObjectWriter::WriteSectionHeader(const COFF::section &S) {
567 WriteBytes(StringRef(S.Name, COFF::NameSize));
568
569 WriteLE32(S.VirtualSize);
570 WriteLE32(S.VirtualAddress);
571 WriteLE32(S.SizeOfRawData);
572 WriteLE32(S.PointerToRawData);
573 WriteLE32(S.PointerToRelocations);
574 WriteLE32(S.PointerToLineNumbers);
575 WriteLE16(S.NumberOfRelocations);
576 WriteLE16(S.NumberOfLineNumbers);
577 WriteLE32(S.Characteristics);
578}
579
580void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) {
581 WriteLE32(R.VirtualAddress);
582 WriteLE32(R.SymbolTableIndex);
583 WriteLE16(R.Type);
Chris Lattner2c52b792010-07-11 22:07:02 +0000584}
585
586////////////////////////////////////////////////////////////////////////////////
587// MCObjectWriter interface implementations
588
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000589void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
590 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000591 // "Define" each section & symbol. This creates section & symbol
Michael J. Spencerd6283772010-09-27 08:58:26 +0000592 // entries in the staging area.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000593
594 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e; i++)
595 DefineSection(*i);
596
597 for (MCAssembler::const_symbol_iterator i = Asm.symbol_begin(),
Reid Kleckner3ea536f2013-09-17 21:24:44 +0000598 e = Asm.symbol_end();
599 i != e; i++)
600 DefineSymbol(*i, Asm);
Chris Lattner2c52b792010-07-11 22:07:02 +0000601}
602
603void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
604 const MCAsmLayout &Layout,
605 const MCFragment *Fragment,
606 const MCFixup &Fixup,
607 MCValue Target,
608 uint64_t &FixedValue) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000609 assert(Target.getSymA() != NULL && "Relocation must reference a symbol!");
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000610
Reid Klecknerdae7b4e2013-07-15 19:41:21 +0000611 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
612 const MCSymbol &A = Symbol.AliasedSymbol();
613 MCSymbolData &A_SD = Asm.getSymbolData(A);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000614
615 MCSectionData const *SectionData = Fragment->getParent();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000616
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000617 // Mark this symbol as requiring an entry in the symbol table.
Michael J. Spencer17990d52010-10-16 08:25:57 +0000618 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000619 "Section must already have been defined in ExecutePostLayoutBinding!");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000620 assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000621 "Symbol must already have been defined in ExecutePostLayoutBinding!");
622
Michael J. Spencer17990d52010-10-16 08:25:57 +0000623 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
624 COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()];
Rafael Espindolaed164772011-04-20 14:01:45 +0000625 const MCSymbolRefExpr *SymA = Target.getSymA();
626 const MCSymbolRefExpr *SymB = Target.getSymB();
627 const bool CrossSection = SymB &&
628 &SymA->getSymbol().getSection() != &SymB->getSymbol().getSection();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000629
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000630 if (Target.getSymB()) {
631 const MCSymbol *B = &Target.getSymB()->getSymbol();
632 MCSymbolData &B_SD = Asm.getSymbolData(*B);
633
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000634 // Offset of the symbol in the section
635 int64_t a = Layout.getSymbolOffset(&B_SD);
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000636
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000637 // Ofeset of the relocation in the section
638 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
639
640 FixedValue = b - a;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000641 // In the case where we have SymbA and SymB, we just need to store the delta
642 // between the two symbols. Update FixedValue to account for the delta, and
643 // skip recording the relocation.
Rafael Espindolaed164772011-04-20 14:01:45 +0000644 if (!CrossSection)
645 return;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000646 } else {
647 FixedValue = Target.getConstant();
648 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000649
650 COFFRelocation Reloc;
651
Daniel Dunbar727be432010-07-31 21:08:54 +0000652 Reloc.Data.SymbolTableIndex = 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000653 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000654
Michael J. Spencera65d17a2010-10-05 19:48:12 +0000655 // Turn relocations for temporary symbols into section relocations.
Rafael Espindolaed164772011-04-20 14:01:45 +0000656 if (coff_symbol->MCData->getSymbol().isTemporary() || CrossSection) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000657 Reloc.Symb = coff_symbol->Section->Symbol;
Michael J. Spencera3b34ed2010-10-05 19:48:03 +0000658 FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment)
659 + coff_symbol->MCData->getOffset();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000660 } else
661 Reloc.Symb = coff_symbol;
662
663 ++Reloc.Symb->Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000664
665 Reloc.Data.VirtualAddress += Fixup.getOffset();
Nico Rieck1da45292013-04-10 23:28:17 +0000666 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
667 CrossSection);
Rafael Espindolae61724a2011-12-22 22:21:47 +0000668
669 // FIXME: Can anyone explain what this does other than adjust for the size
670 // of the offset?
671 if (Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32 ||
672 Reloc.Data.Type == COFF::IMAGE_REL_I386_REL32)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000673 FixedValue += 4;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000674
675 coff_section->Relocations.push_back(Reloc);
Chris Lattner2c52b792010-07-11 22:07:02 +0000676}
677
Rafael Espindolabce26a12010-10-05 15:11:03 +0000678void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
Chris Lattner2c52b792010-07-11 22:07:02 +0000679 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000680 // Assign symbol and section indexes and offsets.
Michael J. Spencerd6283772010-09-27 08:58:26 +0000681 Header.NumberOfSections = 0;
682
Nico Riecka37acf72013-07-06 12:13:10 +0000683 DenseMap<COFFSection *, uint16_t> SectionIndices;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000684 for (sections::iterator i = Sections.begin(),
685 e = Sections.end(); i != e; i++) {
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000686 if (Layout.getSectionAddressSize((*i)->MCData) > 0) {
Nico Riecka37acf72013-07-06 12:13:10 +0000687 size_t Number = ++Header.NumberOfSections;
688 SectionIndices[*i] = Number;
689 MakeSectionReal(**i, Number);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000690 } else {
691 (*i)->Number = -1;
692 }
693 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000694
695 Header.NumberOfSymbols = 0;
696
697 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
698 COFFSymbol *coff_symbol = *i;
699 MCSymbolData const *SymbolData = coff_symbol->MCData;
700
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000701 // Update section number & offset for symbols that have them.
702 if ((SymbolData != NULL) && (SymbolData->Fragment != NULL)) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000703 assert(coff_symbol->Section != NULL);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000704
Michael J. Spencerd6283772010-09-27 08:58:26 +0000705 coff_symbol->Data.SectionNumber = coff_symbol->Section->Number;
Michael J. Spencer54cfd422010-08-03 05:02:46 +0000706 coff_symbol->Data.Value = Layout.getFragmentOffset(SymbolData->Fragment)
707 + SymbolData->Offset;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000708 }
709
Michael J. Spencerd6283772010-09-27 08:58:26 +0000710 if (coff_symbol->should_keep()) {
711 MakeSymbolReal(*coff_symbol, Header.NumberOfSymbols++);
712
713 // Update auxiliary symbol info.
714 coff_symbol->Data.NumberOfAuxSymbols = coff_symbol->Aux.size();
715 Header.NumberOfSymbols += coff_symbol->Data.NumberOfAuxSymbols;
716 } else
717 coff_symbol->Index = -1;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000718 }
719
720 // Fixup weak external references.
721 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000722 COFFSymbol *coff_symbol = *i;
723 if (coff_symbol->Other != NULL) {
724 assert(coff_symbol->Index != -1);
725 assert(coff_symbol->Aux.size() == 1 &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000726 "Symbol must contain one aux symbol!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000727 assert(coff_symbol->Aux[0].AuxType == ATWeakExternal &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000728 "Symbol's aux symbol must be a Weak External!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000729 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000730 }
731 }
732
Nico Riecka37acf72013-07-06 12:13:10 +0000733 // Fixup associative COMDAT sections.
734 for (sections::iterator i = Sections.begin(),
735 e = Sections.end(); i != e; i++) {
736 if ((*i)->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
737 COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
738 continue;
739
740 const MCSectionCOFF &MCSec = static_cast<const MCSectionCOFF &>(
741 (*i)->MCData->getSection());
742
743 COFFSection *Assoc = SectionMap.lookup(MCSec.getAssocSection());
744 if (!Assoc) {
745 report_fatal_error(Twine("Missing associated COMDAT section ") +
746 MCSec.getAssocSection()->getSectionName() +
747 " for section " + MCSec.getSectionName());
748 }
749
750 // Skip this section if the associated section is unused.
751 if (Assoc->Number == -1)
752 continue;
753
754 (*i)->Symbol->Aux[0].Aux.SectionDefinition.Number = SectionIndices[Assoc];
755 }
756
757
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000758 // Assign file offsets to COFF object file structures.
759
760 unsigned offset = 0;
761
762 offset += COFF::HeaderSize;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000763 offset += COFF::SectionSize * Header.NumberOfSections;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000764
765 for (MCAssembler::const_iterator i = Asm.begin(),
766 e = Asm.end();
767 i != e; i++) {
Michael J. Spencer17990d52010-10-16 08:25:57 +0000768 COFFSection *Sec = SectionMap[&i->getSection()];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000769
Michael J. Spencerd6283772010-09-27 08:58:26 +0000770 if (Sec->Number == -1)
771 continue;
772
Michael J. Spencera6a984b2010-10-09 16:04:45 +0000773 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000774
Michael J. Spencerd6283772010-09-27 08:58:26 +0000775 if (IsPhysicalSection(Sec)) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000776 Sec->Header.PointerToRawData = offset;
777
778 offset += Sec->Header.SizeOfRawData;
779 }
780
781 if (Sec->Relocations.size() > 0) {
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000782 bool RelocationsOverflow = Sec->Relocations.size() >= 0xffff;
783
784 if (RelocationsOverflow) {
785 // Signal overflow by setting NumberOfSections to max value. Actual
786 // size is found in reloc #0. Microsoft tools understand this.
787 Sec->Header.NumberOfRelocations = 0xffff;
788 } else {
789 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
790 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000791 Sec->Header.PointerToRelocations = offset;
792
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000793 if (RelocationsOverflow) {
794 // Reloc #0 will contain actual count, so make room for it.
795 offset += COFF::RelocationSize;
796 }
797
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000798 offset += COFF::RelocationSize * Sec->Relocations.size();
799
800 for (relocations::iterator cr = Sec->Relocations.begin(),
801 er = Sec->Relocations.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000802 cr != er; ++cr) {
803 assert((*cr).Symb->Index != -1);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000804 (*cr).Data.SymbolTableIndex = (*cr).Symb->Index;
805 }
806 }
807
Michael J. Spencerd6283772010-09-27 08:58:26 +0000808 assert(Sec->Symbol->Aux.size() == 1
809 && "Section's symbol must have one aux!");
810 AuxSymbol &Aux = Sec->Symbol->Aux[0];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000811 assert(Aux.AuxType == ATSectionDefinition &&
812 "Section's symbol's aux symbol must be a Section Definition!");
813 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
814 Aux.Aux.SectionDefinition.NumberOfRelocations =
815 Sec->Header.NumberOfRelocations;
816 Aux.Aux.SectionDefinition.NumberOfLinenumbers =
817 Sec->Header.NumberOfLineNumbers;
818 }
819
820 Header.PointerToSymbolTable = offset;
821
Michael J. Spencera6cfbeb2010-08-03 04:43:33 +0000822 Header.TimeDateStamp = sys::TimeValue::now().toEpochTime();
823
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000824 // Write it all to disk...
825 WriteFileHeader(Header);
826
827 {
828 sections::iterator i, ie;
829 MCAssembler::const_iterator j, je;
830
831 for (i = Sections.begin(), ie = Sections.end(); i != ie; i++)
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000832 if ((*i)->Number != -1) {
833 if ((*i)->Relocations.size() >= 0xffff) {
834 (*i)->Header.Characteristics |= COFF::IMAGE_SCN_LNK_NRELOC_OVFL;
835 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000836 WriteSectionHeader((*i)->Header);
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000837 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000838
839 for (i = Sections.begin(), ie = Sections.end(),
840 j = Asm.begin(), je = Asm.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000841 (i != ie) && (j != je); ++i, ++j) {
842
843 if ((*i)->Number == -1)
844 continue;
845
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000846 if ((*i)->Header.PointerToRawData != 0) {
847 assert(OS.tell() == (*i)->Header.PointerToRawData &&
848 "Section::PointerToRawData is insane!");
849
Jim Grosbach18e2fe42011-12-06 00:03:48 +0000850 Asm.writeSectionData(j, Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000851 }
852
853 if ((*i)->Relocations.size() > 0) {
854 assert(OS.tell() == (*i)->Header.PointerToRelocations &&
855 "Section::PointerToRelocations is insane!");
856
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000857 if ((*i)->Relocations.size() >= 0xffff) {
858 // In case of overflow, write actual relocation count as first
859 // relocation. Including the synthetic reloc itself (+ 1).
860 COFF::relocation r;
861 r.VirtualAddress = (*i)->Relocations.size() + 1;
862 r.SymbolTableIndex = 0;
863 r.Type = 0;
864 WriteRelocation(r);
865 }
866
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000867 for (relocations::const_iterator k = (*i)->Relocations.begin(),
868 ke = (*i)->Relocations.end();
869 k != ke; k++) {
870 WriteRelocation(k->Data);
871 }
872 } else
873 assert((*i)->Header.PointerToRelocations == 0 &&
874 "Section::PointerToRelocations is insane!");
875 }
876 }
877
878 assert(OS.tell() == Header.PointerToSymbolTable &&
879 "Header::PointerToSymbolTable is insane!");
880
881 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000882 if ((*i)->Index != -1)
883 WriteSymbol(*i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000884
885 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
Chris Lattner2c52b792010-07-11 22:07:02 +0000886}
887
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000888MCWinCOFFObjectTargetWriter::MCWinCOFFObjectTargetWriter(unsigned Machine_) :
889 Machine(Machine_) {
890}
891
Chris Lattner2c52b792010-07-11 22:07:02 +0000892//------------------------------------------------------------------------------
893// WinCOFFObjectWriter factory function
894
895namespace llvm {
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000896 MCObjectWriter *createWinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
897 raw_ostream &OS) {
898 return new WinCOFFObjectWriter(MOTW, OS);
Chris Lattner2c52b792010-07-11 22:07:02 +0000899 }
Michael J. Spencerc2129372010-07-26 03:01:28 +0000900}