blob: 48a7c3bd64e8b475bebfe0e1c5843e21973b6241 [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
Chris Lattner2c52b792010-07-11 22:07:02 +000016#include "llvm/MC/MCObjectWriter.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000017#include "llvm/MC/MCSection.h"
18#include "llvm/MC/MCContext.h"
19#include "llvm/MC/MCSymbol.h"
20#include "llvm/MC/MCExpr.h"
Chris Lattner2c52b792010-07-11 22:07:02 +000021#include "llvm/MC/MCValue.h"
22#include "llvm/MC/MCAssembler.h"
23#include "llvm/MC/MCAsmLayout.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000024#include "llvm/MC/MCSectionCOFF.h"
25
26#include "llvm/ADT/DenseMap.h"
27#include "llvm/ADT/StringMap.h"
28#include "llvm/ADT/StringRef.h"
29
30#include "llvm/Support/COFF.h"
31#include "llvm/Support/Debug.h"
32#include "llvm/Support/ErrorHandling.h"
33
Michael J. Spencer447762d2010-11-29 18:16:10 +000034#include "llvm/Support/TimeValue.h"
Michael J. Spencera6cfbeb2010-08-03 04:43:33 +000035
Michael J. Spencer377aa202010-08-21 05:58:13 +000036#include "../Target/X86/X86FixupKinds.h"
37
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000038#include <cstdio>
39
Chris Lattner2c52b792010-07-11 22:07:02 +000040using namespace llvm;
41
42namespace {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000043typedef llvm::SmallString<COFF::NameSize> name;
Chris Lattner2c52b792010-07-11 22:07:02 +000044
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000045enum AuxiliaryType {
46 ATFunctionDefinition,
47 ATbfAndefSymbol,
48 ATWeakExternal,
49 ATFile,
50 ATSectionDefinition
51};
Chris Lattner2c52b792010-07-11 22:07:02 +000052
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000053struct AuxSymbol {
54 AuxiliaryType AuxType;
55 COFF::Auxiliary Aux;
56};
Chris Lattner2c52b792010-07-11 22:07:02 +000057
Michael J. Spencerd6283772010-09-27 08:58:26 +000058class COFFSymbol;
59class COFFSection;
60
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000061class COFFSymbol {
62public:
63 COFF::symbol Data;
Chris Lattner2c52b792010-07-11 22:07:02 +000064
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000065 typedef llvm::SmallVector<AuxSymbol, 1> AuxiliarySymbols;
Chris Lattner2c52b792010-07-11 22:07:02 +000066
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000067 name Name;
Michael J. Spencerce2e5352010-09-27 21:17:39 +000068 int Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000069 AuxiliarySymbols Aux;
70 COFFSymbol *Other;
Michael J. Spencerd6283772010-09-27 08:58:26 +000071 COFFSection *Section;
72 int Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000073
74 MCSymbolData const *MCData;
75
Michael J. Spencerd6283772010-09-27 08:58:26 +000076 COFFSymbol(llvm::StringRef name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000077 size_t size() const;
78 void set_name_offset(uint32_t Offset);
Michael J. Spencerd6283772010-09-27 08:58:26 +000079
80 bool should_keep() const;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000081};
82
83// This class contains staging data for a COFF relocation entry.
84struct COFFRelocation {
85 COFF::relocation Data;
86 COFFSymbol *Symb;
87
88 COFFRelocation() : Symb(NULL) {}
89 static size_t size() { return COFF::RelocationSize; }
90};
91
92typedef std::vector<COFFRelocation> relocations;
93
94class COFFSection {
95public:
96 COFF::section Header;
97
98 std::string Name;
Michael J. Spencerce2e5352010-09-27 21:17:39 +000099 int Number;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000100 MCSectionData const *MCData;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000101 COFFSymbol *Symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000102 relocations Relocations;
103
Michael J. Spencerd6283772010-09-27 08:58:26 +0000104 COFFSection(llvm::StringRef name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000105 static size_t size();
106};
107
108// This class holds the COFF string table.
109class StringTable {
110 typedef llvm::StringMap<size_t> map;
111 map Map;
112
113 void update_length();
114public:
115 std::vector<char> Data;
116
117 StringTable();
118 size_t size() const;
119 size_t insert(llvm::StringRef String);
120};
121
122class WinCOFFObjectWriter : public MCObjectWriter {
123public:
124
125 typedef std::vector<COFFSymbol*> symbols;
126 typedef std::vector<COFFSection*> sections;
127
Michael J. Spencer17990d52010-10-16 08:25:57 +0000128 typedef DenseMap<MCSymbol const *, COFFSymbol *> symbol_map;
129 typedef DenseMap<MCSection const *, COFFSection *> section_map;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000130
131 // Root level file contents.
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000132 bool Is64Bit;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000133 COFF::header Header;
134 sections Sections;
135 symbols Symbols;
136 StringTable Strings;
137
138 // Maps used during object file creation.
139 section_map SectionMap;
140 symbol_map SymbolMap;
141
Michael J. Spencer377aa202010-08-21 05:58:13 +0000142 WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit);
Benjamin Kramerc2997dd2010-07-29 11:57:59 +0000143 ~WinCOFFObjectWriter();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000144
Michael J. Spencer17990d52010-10-16 08:25:57 +0000145 COFFSymbol *createSymbol(StringRef Name);
146 COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol);
147 COFFSection *createSection(StringRef Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000148
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000149 template <typename object_t, typename list_t>
150 object_t *createCOFFEntity(llvm::StringRef Name, list_t &List);
151
152 void DefineSection(MCSectionData const &SectionData);
153 void DefineSymbol(MCSymbolData const &SymbolData, MCAssembler &Assembler);
154
Michael J. Spencerd6283772010-09-27 08:58:26 +0000155 void MakeSymbolReal(COFFSymbol &S, size_t Index);
156 void MakeSectionReal(COFFSection &S, size_t Number);
157
158 bool ExportSection(COFFSection const *S);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000159 bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm);
160
Michael J. Spencerd6283772010-09-27 08:58:26 +0000161 bool IsPhysicalSection(COFFSection *S);
162
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000163 // Entity writing methods.
164
165 void WriteFileHeader(const COFF::header &Header);
166 void WriteSymbol(const COFFSymbol *S);
167 void WriteAuxiliarySymbols(const COFFSymbol::AuxiliarySymbols &S);
168 void WriteSectionHeader(const COFF::section &S);
169 void WriteRelocation(const COFF::relocation &R);
170
171 // MCObjectWriter interface implementation.
172
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000173 void ExecutePostLayoutBinding(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000174
175 void RecordRelocation(const MCAssembler &Asm,
176 const MCAsmLayout &Layout,
177 const MCFragment *Fragment,
178 const MCFixup &Fixup,
179 MCValue Target,
180 uint64_t &FixedValue);
181
Rafael Espindola0f8abeb2010-12-24 21:22:02 +0000182 virtual bool
183 IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
184 const MCSymbolData &DataA,
185 const MCFragment &FB,
186 bool InSet,
187 bool IsPCRel) const;
Rafael Espindola2ebaee92010-09-30 02:22:20 +0000188
Rafael Espindolabce26a12010-10-05 15:11:03 +0000189 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000190};
Chris Lattner2c52b792010-07-11 22:07:02 +0000191}
192
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000193static inline void write_uint32_le(void *Data, uint32_t const &Value) {
194 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
195 Ptr[0] = (Value & 0x000000FF) >> 0;
196 Ptr[1] = (Value & 0x0000FF00) >> 8;
197 Ptr[2] = (Value & 0x00FF0000) >> 16;
198 Ptr[3] = (Value & 0xFF000000) >> 24;
199}
200
201static inline void write_uint16_le(void *Data, uint16_t const &Value) {
202 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
203 Ptr[0] = (Value & 0x00FF) >> 0;
204 Ptr[1] = (Value & 0xFF00) >> 8;
205}
206
207static inline void write_uint8_le(void *Data, uint8_t const &Value) {
208 uint8_t *Ptr = reinterpret_cast<uint8_t *>(Data);
209 Ptr[0] = (Value & 0xFF) >> 0;
210}
211
212//------------------------------------------------------------------------------
213// Symbol class implementation
214
Michael J. Spencerd6283772010-09-27 08:58:26 +0000215COFFSymbol::COFFSymbol(llvm::StringRef name)
216 : Name(name.begin(), name.end())
217 , Other(NULL)
218 , Section(NULL)
219 , Relocations(0)
220 , MCData(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000221 memset(&Data, 0, sizeof(Data));
222}
223
224size_t COFFSymbol::size() const {
225 return COFF::SymbolSize + (Data.NumberOfAuxSymbols * COFF::SymbolSize);
226}
227
228// In the case that the name does not fit within 8 bytes, the offset
229// into the string table is stored in the last 4 bytes instead, leaving
230// the first 4 bytes as 0.
231void COFFSymbol::set_name_offset(uint32_t Offset) {
232 write_uint32_le(Data.Name + 0, 0);
233 write_uint32_le(Data.Name + 4, Offset);
234}
235
Michael J. Spencerd6283772010-09-27 08:58:26 +0000236/// logic to decide if the symbol should be reported in the symbol table
237bool COFFSymbol::should_keep() const {
238 // no section means its external, keep it
239 if (Section == NULL)
240 return true;
241
242 // if it has relocations pointing at it, keep it
243 if (Relocations > 0) {
244 assert(Section->Number != -1 && "Sections with relocations must be real!");
245 return true;
246 }
247
248 // if the section its in is being droped, drop it
249 if (Section->Number == -1)
250 return false;
251
252 // if it is the section symbol, keep it
253 if (Section->Symbol == this)
254 return true;
255
256 // if its temporary, drop it
257 if (MCData && MCData->getSymbol().isTemporary())
258 return false;
259
260 // otherwise, keep it
261 return true;
262}
263
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000264//------------------------------------------------------------------------------
265// Section class implementation
266
Michael J. Spencerd6283772010-09-27 08:58:26 +0000267COFFSection::COFFSection(llvm::StringRef name)
268 : Name(name)
269 , MCData(NULL)
270 , Symbol(NULL) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000271 memset(&Header, 0, sizeof(Header));
272}
273
274size_t COFFSection::size() {
275 return COFF::SectionSize;
276}
277
278//------------------------------------------------------------------------------
279// StringTable class implementation
280
281/// Write the length of the string table into Data.
282/// The length of the string table includes uint32 length header.
283void StringTable::update_length() {
284 write_uint32_le(&Data.front(), Data.size());
285}
286
287StringTable::StringTable() {
288 // The string table data begins with the length of the entire string table
289 // including the length header. Allocate space for this header.
290 Data.resize(4);
291}
292
293size_t StringTable::size() const {
294 return Data.size();
295}
296
297/// Add String to the table iff it is not already there.
298/// @returns the index into the string table where the string is now located.
299size_t StringTable::insert(llvm::StringRef String) {
300 map::iterator i = Map.find(String);
301
302 if (i != Map.end())
303 return i->second;
304
305 size_t Offset = Data.size();
306
307 // Insert string data into string table.
308 Data.insert(Data.end(), String.begin(), String.end());
309 Data.push_back('\0');
310
311 // Put a reference to it in the map.
312 Map[String] = Offset;
313
314 // Update the internal length field.
315 update_length();
316
317 return Offset;
318}
319
320//------------------------------------------------------------------------------
321// WinCOFFObjectWriter class implementation
322
Michael J. Spencer377aa202010-08-21 05:58:13 +0000323WinCOFFObjectWriter::WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit)
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000324 : MCObjectWriter(OS, true)
325 , Is64Bit(is64Bit) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000326 memset(&Header, 0, sizeof(Header));
Michael J. Spencer377aa202010-08-21 05:58:13 +0000327
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000328 Is64Bit ? Header.Machine = COFF::IMAGE_FILE_MACHINE_AMD64
Michael J. Spencer377aa202010-08-21 05:58:13 +0000329 : Header.Machine = COFF::IMAGE_FILE_MACHINE_I386;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000330}
331
Benjamin Kramerc2997dd2010-07-29 11:57:59 +0000332WinCOFFObjectWriter::~WinCOFFObjectWriter() {
333 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
334 delete *I;
335 for (sections::iterator I = Sections.begin(), E = Sections.end(); I != E; ++I)
336 delete *I;
337}
338
Michael J. Spencer17990d52010-10-16 08:25:57 +0000339COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000340 return createCOFFEntity<COFFSymbol>(Name, Symbols);
341}
342
Michael J. Spencer17990d52010-10-16 08:25:57 +0000343COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
344 symbol_map::iterator i = SymbolMap.find(Symbol);
345 if (i != SymbolMap.end())
346 return i->second;
347 COFFSymbol *RetSymbol
348 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
349 SymbolMap[Symbol] = RetSymbol;
350 return RetSymbol;
351}
352
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000353COFFSection *WinCOFFObjectWriter::createSection(llvm::StringRef Name) {
354 return createCOFFEntity<COFFSection>(Name, Sections);
355}
356
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000357/// A template used to lookup or create a symbol/section, and initialize it if
358/// needed.
359template <typename object_t, typename list_t>
360object_t *WinCOFFObjectWriter::createCOFFEntity(llvm::StringRef Name,
361 list_t &List) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000362 object_t *Object = new object_t(Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000363
364 List.push_back(Object);
365
366 return Object;
367}
368
369/// This function takes a section data object from the assembler
370/// and creates the associated COFF section staging object.
371void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
Michael J. Spencerbe52c622010-10-09 11:00:37 +0000372 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
373 && "Got non COFF section in the COFF backend!");
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000374 // FIXME: Not sure how to verify this (at least in a debug build).
375 MCSectionCOFF const &Sec =
376 static_cast<MCSectionCOFF const &>(SectionData.getSection());
377
378 COFFSection *coff_section = createSection(Sec.getSectionName());
379 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
380
Michael J. Spencerd6283772010-09-27 08:58:26 +0000381 coff_section->Symbol = coff_symbol;
382 coff_symbol->Section = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000383 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000384
385 // In this case the auxiliary symbol is a Section Definition.
386 coff_symbol->Aux.resize(1);
387 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
388 coff_symbol->Aux[0].AuxType = ATSectionDefinition;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000389 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
390
391 coff_section->Header.Characteristics = Sec.getCharacteristics();
392
393 uint32_t &Characteristics = coff_section->Header.Characteristics;
394 switch (SectionData.getAlignment()) {
395 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
396 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
397 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
398 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
399 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
400 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
401 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break;
402 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break;
403 case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break;
404 case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break;
405 case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break;
406 case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break;
407 case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break;
408 case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break;
409 default:
410 llvm_unreachable("unsupported section alignment");
411 }
412
413 // Bind internal COFF section to MC section.
414 coff_section->MCData = &SectionData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000415 SectionMap[&SectionData.getSection()] = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000416}
417
418/// This function takes a section data object from the assembler
419/// and creates the associated COFF symbol staging object.
420void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData,
Michael J. Spencerd6283772010-09-27 08:58:26 +0000421 MCAssembler &Assembler) {
Michael J. Spencer17990d52010-10-16 08:25:57 +0000422 COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&SymbolData.getSymbol());
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000423
424 coff_symbol->Data.Type = (SymbolData.getFlags() & 0x0000FFFF) >> 0;
425 coff_symbol->Data.StorageClass = (SymbolData.getFlags() & 0x00FF0000) >> 16;
426
Michael J. Spencer17990d52010-10-16 08:25:57 +0000427 if (SymbolData.getFlags() & COFF::SF_WeakExternal) {
428 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
429
430 if (SymbolData.getSymbol().isVariable()) {
431 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
432 const MCExpr *Value = SymbolData.getSymbol().getVariableValue();
433
434 // FIXME: This assert message isn't very good.
435 assert(Value->getKind() == MCExpr::SymbolRef &&
436 "Value must be a SymbolRef!");
437
438 const MCSymbolRefExpr *SymbolRef =
439 static_cast<const MCSymbolRefExpr *>(Value);
440 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymbolRef->getSymbol());
441 } else {
442 std::string WeakName = std::string(".weak.")
443 + SymbolData.getSymbol().getName().str()
444 + ".default";
445 COFFSymbol *WeakDefault = createSymbol(WeakName);
446 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
447 WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL;
448 WeakDefault->Data.Type = 0;
449 WeakDefault->Data.Value = 0;
450 coff_symbol->Other = WeakDefault;
451 }
452
453 // Setup the Weak External auxiliary symbol.
454 coff_symbol->Aux.resize(1);
455 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
456 coff_symbol->Aux[0].AuxType = ATWeakExternal;
457 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0;
458 coff_symbol->Aux[0].Aux.WeakExternal.Characteristics =
459 COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY;
460 }
461
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000462 // If no storage class was specified in the streamer, define it here.
463 if (coff_symbol->Data.StorageClass == 0) {
464 bool external = SymbolData.isExternal() || (SymbolData.Fragment == NULL);
465
466 coff_symbol->Data.StorageClass =
Michael J. Spencer86a62222010-09-29 03:13:41 +0000467 external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000468 }
469
Michael J. Spencerd6283772010-09-27 08:58:26 +0000470 if (SymbolData.Fragment != NULL)
Michael J. Spencer17990d52010-10-16 08:25:57 +0000471 coff_symbol->Section =
472 SectionMap[&SymbolData.Fragment->getParent()->getSection()];
Michael J. Spencerd6283772010-09-27 08:58:26 +0000473
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000474 // Bind internal COFF symbol to MC symbol.
475 coff_symbol->MCData = &SymbolData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000476 SymbolMap[&SymbolData.getSymbol()] = coff_symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000477}
478
Michael J. Spencerd6283772010-09-27 08:58:26 +0000479/// making a section real involves assigned it a number and putting
480/// name into the string table if needed
481void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
482 if (S.Name.size() > COFF::NameSize) {
483 size_t StringTableEntry = Strings.insert(S.Name.c_str());
484
485 // FIXME: Why is this number 999999? This number is never mentioned in the
486 // spec. I'm assuming this is due to the printed value needing to fit into
487 // the S.Header.Name field. In which case why not 9999999 (7 9's instead of
488 // 6)? The spec does not state if this entry should be null terminated in
489 // this case, and thus this seems to be the best way to do it. I think I
490 // just solved my own FIXME...
491 if (StringTableEntry > 999999)
492 report_fatal_error("COFF string table is greater than 999999 bytes.");
493
494 std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry));
495 } else
496 std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size());
497
498 S.Number = Number;
499 S.Symbol->Data.SectionNumber = S.Number;
500 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
501}
502
503void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
504 if (S.Name.size() > COFF::NameSize) {
505 size_t StringTableEntry = Strings.insert(S.Name.c_str());
506
507 S.set_name_offset(StringTableEntry);
508 } else
509 std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size());
510 S.Index = Index;
511}
512
513bool WinCOFFObjectWriter::ExportSection(COFFSection const *S) {
514 return !S->MCData->getFragmentList().empty();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000515}
516
517bool WinCOFFObjectWriter::ExportSymbol(MCSymbolData const &SymbolData,
518 MCAssembler &Asm) {
519 // This doesn't seem to be right. Strings referred to from the .data section
520 // need symbols so they can be linked to code in the .text section right?
521
522 // return Asm.isSymbolLinkerVisible (&SymbolData);
523
Michael J. Spencerd6283772010-09-27 08:58:26 +0000524 // For now, all non-variable symbols are exported,
525 // the linker will sort the rest out for us.
Michael J. Spencer17990d52010-10-16 08:25:57 +0000526 return SymbolData.isExternal() || !SymbolData.getSymbol().isVariable();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000527}
528
529bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
530 return (S->Header.Characteristics
531 & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000532}
533
534//------------------------------------------------------------------------------
535// entity writing methods
536
537void WinCOFFObjectWriter::WriteFileHeader(const COFF::header &Header) {
538 WriteLE16(Header.Machine);
539 WriteLE16(Header.NumberOfSections);
540 WriteLE32(Header.TimeDateStamp);
541 WriteLE32(Header.PointerToSymbolTable);
542 WriteLE32(Header.NumberOfSymbols);
543 WriteLE16(Header.SizeOfOptionalHeader);
544 WriteLE16(Header.Characteristics);
545}
546
547void WinCOFFObjectWriter::WriteSymbol(const COFFSymbol *S) {
548 WriteBytes(StringRef(S->Data.Name, COFF::NameSize));
549 WriteLE32(S->Data.Value);
550 WriteLE16(S->Data.SectionNumber);
551 WriteLE16(S->Data.Type);
552 Write8(S->Data.StorageClass);
553 Write8(S->Data.NumberOfAuxSymbols);
554 WriteAuxiliarySymbols(S->Aux);
555}
556
557void WinCOFFObjectWriter::WriteAuxiliarySymbols(
558 const COFFSymbol::AuxiliarySymbols &S) {
559 for(COFFSymbol::AuxiliarySymbols::const_iterator i = S.begin(), e = S.end();
560 i != e; ++i) {
561 switch(i->AuxType) {
562 case ATFunctionDefinition:
563 WriteLE32(i->Aux.FunctionDefinition.TagIndex);
564 WriteLE32(i->Aux.FunctionDefinition.TotalSize);
565 WriteLE32(i->Aux.FunctionDefinition.PointerToLinenumber);
566 WriteLE32(i->Aux.FunctionDefinition.PointerToNextFunction);
567 WriteZeros(sizeof(i->Aux.FunctionDefinition.unused));
568 break;
569 case ATbfAndefSymbol:
570 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused1));
571 WriteLE16(i->Aux.bfAndefSymbol.Linenumber);
572 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused2));
573 WriteLE32(i->Aux.bfAndefSymbol.PointerToNextFunction);
574 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused3));
575 break;
576 case ATWeakExternal:
577 WriteLE32(i->Aux.WeakExternal.TagIndex);
578 WriteLE32(i->Aux.WeakExternal.Characteristics);
579 WriteZeros(sizeof(i->Aux.WeakExternal.unused));
580 break;
581 case ATFile:
582 WriteBytes(StringRef(reinterpret_cast<const char *>(i->Aux.File.FileName),
583 sizeof(i->Aux.File.FileName)));
584 break;
585 case ATSectionDefinition:
586 WriteLE32(i->Aux.SectionDefinition.Length);
587 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
588 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
589 WriteLE32(i->Aux.SectionDefinition.CheckSum);
590 WriteLE16(i->Aux.SectionDefinition.Number);
591 Write8(i->Aux.SectionDefinition.Selection);
592 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
593 break;
594 }
595 }
596}
597
598void WinCOFFObjectWriter::WriteSectionHeader(const COFF::section &S) {
599 WriteBytes(StringRef(S.Name, COFF::NameSize));
600
601 WriteLE32(S.VirtualSize);
602 WriteLE32(S.VirtualAddress);
603 WriteLE32(S.SizeOfRawData);
604 WriteLE32(S.PointerToRawData);
605 WriteLE32(S.PointerToRelocations);
606 WriteLE32(S.PointerToLineNumbers);
607 WriteLE16(S.NumberOfRelocations);
608 WriteLE16(S.NumberOfLineNumbers);
609 WriteLE32(S.Characteristics);
610}
611
612void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) {
613 WriteLE32(R.VirtualAddress);
614 WriteLE32(R.SymbolTableIndex);
615 WriteLE16(R.Type);
Chris Lattner2c52b792010-07-11 22:07:02 +0000616}
617
618////////////////////////////////////////////////////////////////////////////////
619// MCObjectWriter interface implementations
620
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000621void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
622 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000623 // "Define" each section & symbol. This creates section & symbol
Michael J. Spencerd6283772010-09-27 08:58:26 +0000624 // entries in the staging area.
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000625
626 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e; i++)
627 DefineSection(*i);
628
629 for (MCAssembler::const_symbol_iterator i = Asm.symbol_begin(),
630 e = Asm.symbol_end(); i != e; i++) {
631 if (ExportSymbol(*i, Asm))
632 DefineSymbol(*i, Asm);
633 }
Chris Lattner2c52b792010-07-11 22:07:02 +0000634}
635
636void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
637 const MCAsmLayout &Layout,
638 const MCFragment *Fragment,
639 const MCFixup &Fixup,
640 MCValue Target,
641 uint64_t &FixedValue) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000642 assert(Target.getSymA() != NULL && "Relocation must reference a symbol!");
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000643
644 const MCSymbol *A = &Target.getSymA()->getSymbol();
645 MCSymbolData &A_SD = Asm.getSymbolData(*A);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000646
647 MCSectionData const *SectionData = Fragment->getParent();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000648
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000649 // Mark this symbol as requiring an entry in the symbol table.
Michael J. Spencer17990d52010-10-16 08:25:57 +0000650 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000651 "Section must already have been defined in ExecutePostLayoutBinding!");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000652 assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000653 "Symbol must already have been defined in ExecutePostLayoutBinding!");
654
Michael J. Spencer17990d52010-10-16 08:25:57 +0000655 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
656 COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000657
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000658 if (Target.getSymB()) {
Michael J. Spenceraaf46432010-10-07 23:55:40 +0000659 if (&Target.getSymA()->getSymbol().getSection()
660 != &Target.getSymB()->getSymbol().getSection()) {
661 llvm_unreachable("Symbol relative relocations are only allowed between "
662 "symbols in the same section");
663 }
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000664 const MCSymbol *B = &Target.getSymB()->getSymbol();
665 MCSymbolData &B_SD = Asm.getSymbolData(*B);
666
Rafael Espindola45790b82010-12-06 03:24:04 +0000667 FixedValue = Layout.getSymbolOffset(&A_SD) - Layout.getSymbolOffset(&B_SD);
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000668
669 // In the case where we have SymbA and SymB, we just need to store the delta
670 // between the two symbols. Update FixedValue to account for the delta, and
671 // skip recording the relocation.
672 return;
673 } else {
674 FixedValue = Target.getConstant();
675 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000676
677 COFFRelocation Reloc;
678
Daniel Dunbar727be432010-07-31 21:08:54 +0000679 Reloc.Data.SymbolTableIndex = 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000680 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000681
Michael J. Spencera65d17a2010-10-05 19:48:12 +0000682 // Turn relocations for temporary symbols into section relocations.
Michael J. Spencerd6283772010-09-27 08:58:26 +0000683 if (coff_symbol->MCData->getSymbol().isTemporary()) {
684 Reloc.Symb = coff_symbol->Section->Symbol;
Michael J. Spencera3b34ed2010-10-05 19:48:03 +0000685 FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment)
686 + coff_symbol->MCData->getOffset();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000687 } else
688 Reloc.Symb = coff_symbol;
689
690 ++Reloc.Symb->Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000691
692 Reloc.Data.VirtualAddress += Fixup.getOffset();
693
Michael J. Spencer31041a92010-10-21 20:49:38 +0000694 switch ((unsigned)Fixup.getKind()) {
Rafael Espindola8a3a7922010-11-28 14:17:56 +0000695 case FK_PCRel_4:
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000696 case X86::reloc_riprel_4byte:
697 case X86::reloc_riprel_4byte_movq_load:
698 Reloc.Data.Type = Is64Bit ? COFF::IMAGE_REL_AMD64_REL32
699 : COFF::IMAGE_REL_I386_REL32;
700 // FIXME: Can anyone explain what this does other than adjust for the size
701 // of the offset?
702 FixedValue += 4;
703 break;
704 case FK_Data_4:
Rafael Espindola70d6e0e2010-09-30 03:11:42 +0000705 case X86::reloc_signed_4byte:
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000706 Reloc.Data.Type = Is64Bit ? COFF::IMAGE_REL_AMD64_ADDR32
707 : COFF::IMAGE_REL_I386_DIR32;
708 break;
709 case FK_Data_8:
710 if (Is64Bit)
711 Reloc.Data.Type = COFF::IMAGE_REL_AMD64_ADDR64;
712 else
Michael J. Spencer377aa202010-08-21 05:58:13 +0000713 llvm_unreachable("unsupported relocation type");
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000714 break;
715 default:
716 llvm_unreachable("unsupported relocation type");
717 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000718
719 coff_section->Relocations.push_back(Reloc);
Chris Lattner2c52b792010-07-11 22:07:02 +0000720}
721
Rafael Espindola0f8abeb2010-12-24 21:22:02 +0000722bool
723WinCOFFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
724 const MCAssembler &Asm,
725 const MCSymbolData &DataA,
726 const MCFragment &FB,
727 bool InSet,
728 bool IsPCRel) const {
729 const MCSection &SecA = DataA.getSymbol().AliasedSymbol().getSection();
730 const MCSection &SecB = FB.getParent()->getSection();
731 // On COFF A - B is absolute if A and B are in the same section.
732 return &SecA == &SecB;
Rafael Espindola2ebaee92010-09-30 02:22:20 +0000733}
734
Rafael Espindolabce26a12010-10-05 15:11:03 +0000735void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
Chris Lattner2c52b792010-07-11 22:07:02 +0000736 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000737 // Assign symbol and section indexes and offsets.
Michael J. Spencerd6283772010-09-27 08:58:26 +0000738 Header.NumberOfSections = 0;
739
740 for (sections::iterator i = Sections.begin(),
741 e = Sections.end(); i != e; i++) {
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000742 if (Layout.getSectionAddressSize((*i)->MCData) > 0) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000743 MakeSectionReal(**i, ++Header.NumberOfSections);
744 } else {
745 (*i)->Number = -1;
746 }
747 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000748
749 Header.NumberOfSymbols = 0;
750
751 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
752 COFFSymbol *coff_symbol = *i;
753 MCSymbolData const *SymbolData = coff_symbol->MCData;
754
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000755 // Update section number & offset for symbols that have them.
756 if ((SymbolData != NULL) && (SymbolData->Fragment != NULL)) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000757 assert(coff_symbol->Section != NULL);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000758
Michael J. Spencerd6283772010-09-27 08:58:26 +0000759 coff_symbol->Data.SectionNumber = coff_symbol->Section->Number;
Michael J. Spencer54cfd422010-08-03 05:02:46 +0000760 coff_symbol->Data.Value = Layout.getFragmentOffset(SymbolData->Fragment)
761 + SymbolData->Offset;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000762 }
763
Michael J. Spencerd6283772010-09-27 08:58:26 +0000764 if (coff_symbol->should_keep()) {
765 MakeSymbolReal(*coff_symbol, Header.NumberOfSymbols++);
766
767 // Update auxiliary symbol info.
768 coff_symbol->Data.NumberOfAuxSymbols = coff_symbol->Aux.size();
769 Header.NumberOfSymbols += coff_symbol->Data.NumberOfAuxSymbols;
770 } else
771 coff_symbol->Index = -1;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000772 }
773
774 // Fixup weak external references.
775 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000776 COFFSymbol *coff_symbol = *i;
777 if (coff_symbol->Other != NULL) {
778 assert(coff_symbol->Index != -1);
779 assert(coff_symbol->Aux.size() == 1 &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000780 "Symbol must contain one aux symbol!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000781 assert(coff_symbol->Aux[0].AuxType == ATWeakExternal &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000782 "Symbol's aux symbol must be a Weak External!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000783 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000784 }
785 }
786
787 // Assign file offsets to COFF object file structures.
788
789 unsigned offset = 0;
790
791 offset += COFF::HeaderSize;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000792 offset += COFF::SectionSize * Header.NumberOfSections;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000793
794 for (MCAssembler::const_iterator i = Asm.begin(),
795 e = Asm.end();
796 i != e; i++) {
Michael J. Spencer17990d52010-10-16 08:25:57 +0000797 COFFSection *Sec = SectionMap[&i->getSection()];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000798
Michael J. Spencerd6283772010-09-27 08:58:26 +0000799 if (Sec->Number == -1)
800 continue;
801
Michael J. Spencera6a984b2010-10-09 16:04:45 +0000802 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000803
Michael J. Spencerd6283772010-09-27 08:58:26 +0000804 if (IsPhysicalSection(Sec)) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000805 Sec->Header.PointerToRawData = offset;
806
807 offset += Sec->Header.SizeOfRawData;
808 }
809
810 if (Sec->Relocations.size() > 0) {
811 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
812 Sec->Header.PointerToRelocations = offset;
813
814 offset += COFF::RelocationSize * Sec->Relocations.size();
815
816 for (relocations::iterator cr = Sec->Relocations.begin(),
817 er = Sec->Relocations.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000818 cr != er; ++cr) {
819 assert((*cr).Symb->Index != -1);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000820 (*cr).Data.SymbolTableIndex = (*cr).Symb->Index;
821 }
822 }
823
Michael J. Spencerd6283772010-09-27 08:58:26 +0000824 assert(Sec->Symbol->Aux.size() == 1
825 && "Section's symbol must have one aux!");
826 AuxSymbol &Aux = Sec->Symbol->Aux[0];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000827 assert(Aux.AuxType == ATSectionDefinition &&
828 "Section's symbol's aux symbol must be a Section Definition!");
829 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
830 Aux.Aux.SectionDefinition.NumberOfRelocations =
831 Sec->Header.NumberOfRelocations;
832 Aux.Aux.SectionDefinition.NumberOfLinenumbers =
833 Sec->Header.NumberOfLineNumbers;
834 }
835
836 Header.PointerToSymbolTable = offset;
837
Michael J. Spencera6cfbeb2010-08-03 04:43:33 +0000838 Header.TimeDateStamp = sys::TimeValue::now().toEpochTime();
839
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000840 // Write it all to disk...
841 WriteFileHeader(Header);
842
843 {
844 sections::iterator i, ie;
845 MCAssembler::const_iterator j, je;
846
847 for (i = Sections.begin(), ie = Sections.end(); i != ie; i++)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000848 if ((*i)->Number != -1)
849 WriteSectionHeader((*i)->Header);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000850
851 for (i = Sections.begin(), ie = Sections.end(),
852 j = Asm.begin(), je = Asm.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000853 (i != ie) && (j != je); ++i, ++j) {
854
855 if ((*i)->Number == -1)
856 continue;
857
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000858 if ((*i)->Header.PointerToRawData != 0) {
859 assert(OS.tell() == (*i)->Header.PointerToRawData &&
860 "Section::PointerToRawData is insane!");
861
Daniel Dunbar50269282010-12-17 02:45:59 +0000862 Asm.WriteSectionData(j, Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000863 }
864
865 if ((*i)->Relocations.size() > 0) {
866 assert(OS.tell() == (*i)->Header.PointerToRelocations &&
867 "Section::PointerToRelocations is insane!");
868
869 for (relocations::const_iterator k = (*i)->Relocations.begin(),
870 ke = (*i)->Relocations.end();
871 k != ke; k++) {
872 WriteRelocation(k->Data);
873 }
874 } else
875 assert((*i)->Header.PointerToRelocations == 0 &&
876 "Section::PointerToRelocations is insane!");
877 }
878 }
879
880 assert(OS.tell() == Header.PointerToSymbolTable &&
881 "Header::PointerToSymbolTable is insane!");
882
883 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000884 if ((*i)->Index != -1)
885 WriteSymbol(*i);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000886
887 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
Chris Lattner2c52b792010-07-11 22:07:02 +0000888}
889
890//------------------------------------------------------------------------------
891// WinCOFFObjectWriter factory function
892
893namespace llvm {
Michael J. Spencer377aa202010-08-21 05:58:13 +0000894 MCObjectWriter *createWinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) {
895 return new WinCOFFObjectWriter(OS, is64Bit);
Chris Lattner2c52b792010-07-11 22:07:02 +0000896 }
Michael J. Spencerc2129372010-07-26 03:01:28 +0000897}