blob: be7a9c8c0d33b76986ad18e0a57d3c301a64eaa7 [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
Rafael Espindola908d2ed2011-12-24 02:14:02 +000014#include "llvm/MC/MCWinCOFFObjectWriter.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/StringMap.h"
17#include "llvm/ADT/StringRef.h"
David Blaikief564ab62014-04-15 05:25:03 +000018#include "llvm/ADT/STLExtras.h"
Nico Riecka37acf72013-07-06 12:13:10 +000019#include "llvm/ADT/Twine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/MC/MCAsmLayout.h"
21#include "llvm/MC/MCAssembler.h"
22#include "llvm/MC/MCContext.h"
23#include "llvm/MC/MCExpr.h"
24#include "llvm/MC/MCObjectWriter.h"
25#include "llvm/MC/MCSection.h"
26#include "llvm/MC/MCSectionCOFF.h"
27#include "llvm/MC/MCSymbol.h"
28#include "llvm/MC/MCValue.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000029#include "llvm/Support/COFF.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000032#include "llvm/Support/TimeValue.h"
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000033#include <cstdio>
34
Chris Lattner2c52b792010-07-11 22:07:02 +000035using namespace llvm;
36
Chandler Carruthf58e3762014-04-22 03:04:17 +000037#define DEBUG_TYPE "WinCOFFObjectWriter"
38
Chris Lattner2c52b792010-07-11 22:07:02 +000039namespace {
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
Craig Topperbb694de2014-04-13 04:57:38 +000085 COFFRelocation() : Symb(nullptr) {}
Michael J. Spencerb5fc1382010-07-26 02:17:32 +000086 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
David Blaikief564ab62014-04-15 05:25:03 +0000122 typedef std::vector<std::unique_ptr<COFFSymbol>> symbols;
123 typedef std::vector<std::unique_ptr<COFFSection>> sections;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000124
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
Ahmed Charles56440fd2014-03-06 05:51:42 +0000128 std::unique_ptr<MCWinCOFFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola908d2ed2011-12-24 02:14:02 +0000129
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);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000141
Michael J. Spencer17990d52010-10-16 08:25:57 +0000142 COFFSymbol *createSymbol(StringRef Name);
143 COFFSymbol *GetOrCreateCOFFSymbol(const MCSymbol * Symbol);
144 COFFSection *createSection(StringRef Name);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000145
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000146 template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000147 object_t *createCOFFEntity(StringRef Name, list_t &List);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000148
149 void DefineSection(MCSectionData const &SectionData);
Reid Klecknerc1e76212013-09-17 23:18:05 +0000150 void DefineSymbol(MCSymbolData const &SymbolData, MCAssembler &Assembler,
151 const MCAsmLayout &Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000152
Michael J. Spencerd6283772010-09-27 08:58:26 +0000153 void MakeSymbolReal(COFFSymbol &S, size_t Index);
154 void MakeSectionReal(COFFSection &S, size_t Number);
155
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000156 bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm);
157
Michael J. Spencerd6283772010-09-27 08:58:26 +0000158 bool IsPhysicalSection(COFFSection *S);
159
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000160 // Entity writing methods.
161
162 void WriteFileHeader(const COFF::header &Header);
David Blaikief564ab62014-04-15 05:25:03 +0000163 void WriteSymbol(const COFFSymbol &S);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000164 void WriteAuxiliarySymbols(const COFFSymbol::AuxiliarySymbols &S);
165 void WriteSectionHeader(const COFF::section &S);
166 void WriteRelocation(const COFF::relocation &R);
167
168 // MCObjectWriter interface implementation.
169
Craig Topper34a61bc2014-03-08 07:02:02 +0000170 void ExecutePostLayoutBinding(MCAssembler &Asm,
171 const MCAsmLayout &Layout) override;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000172
Craig Topper34a61bc2014-03-08 07:02:02 +0000173 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
174 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000175 MCValue Target, bool &IsPCRel,
176 uint64_t &FixedValue) override;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000177
Craig Topper34a61bc2014-03-08 07:02:02 +0000178 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
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())
Craig Topperbb694de2014-04-13 04:57:38 +0000195 , Other(nullptr)
196 , Section(nullptr)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000197 , Relocations(0)
Craig Topperbb694de2014-04-13 04:57:38 +0000198 , MCData(nullptr) {
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
Craig Topperbb694de2014-04-13 04:57:38 +0000217 if (!Section)
Michael J. Spencerd6283772010-09-27 08:58:26 +0000218 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)
Craig Topperbb694de2014-04-13 04:57:38 +0000247 , MCData(nullptr)
248 , Symbol(nullptr) {
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
Michael J. Spencer17990d52010-10-16 08:25:57 +0000311COFFSymbol *WinCOFFObjectWriter::createSymbol(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000312 return createCOFFEntity<COFFSymbol>(Name, Symbols);
313}
314
Michael J. Spencer17990d52010-10-16 08:25:57 +0000315COFFSymbol *WinCOFFObjectWriter::GetOrCreateCOFFSymbol(const MCSymbol * Symbol){
316 symbol_map::iterator i = SymbolMap.find(Symbol);
317 if (i != SymbolMap.end())
318 return i->second;
319 COFFSymbol *RetSymbol
320 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
321 SymbolMap[Symbol] = RetSymbol;
322 return RetSymbol;
323}
324
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000325COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000326 return createCOFFEntity<COFFSection>(Name, Sections);
327}
328
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000329/// A template used to lookup or create a symbol/section, and initialize it if
330/// needed.
331template <typename object_t, typename list_t>
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000332object_t *WinCOFFObjectWriter::createCOFFEntity(StringRef Name,
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000333 list_t &List) {
David Blaikief564ab62014-04-15 05:25:03 +0000334 List.push_back(make_unique<object_t>(Name));
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000335
David Blaikief564ab62014-04-15 05:25:03 +0000336 return List.back().get();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000337}
338
339/// This function takes a section data object from the assembler
340/// and creates the associated COFF section staging object.
341void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
Michael J. Spencerbe52c622010-10-09 11:00:37 +0000342 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
Alp Tokerf907b892013-12-05 05:44:44 +0000343 && "Got non-COFF section in the COFF backend!");
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000344 // FIXME: Not sure how to verify this (at least in a debug build).
345 MCSectionCOFF const &Sec =
346 static_cast<MCSectionCOFF const &>(SectionData.getSection());
347
348 COFFSection *coff_section = createSection(Sec.getSectionName());
349 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
350
Michael J. Spencerd6283772010-09-27 08:58:26 +0000351 coff_section->Symbol = coff_symbol;
352 coff_symbol->Section = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000353 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_STATIC;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000354
355 // In this case the auxiliary symbol is a Section Definition.
356 coff_symbol->Aux.resize(1);
357 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
358 coff_symbol->Aux[0].AuxType = ATSectionDefinition;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000359 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
360
361 coff_section->Header.Characteristics = Sec.getCharacteristics();
362
363 uint32_t &Characteristics = coff_section->Header.Characteristics;
364 switch (SectionData.getAlignment()) {
365 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
366 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
367 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
368 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
369 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
370 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
371 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break;
372 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break;
373 case 256: Characteristics |= COFF::IMAGE_SCN_ALIGN_256BYTES; break;
374 case 512: Characteristics |= COFF::IMAGE_SCN_ALIGN_512BYTES; break;
375 case 1024: Characteristics |= COFF::IMAGE_SCN_ALIGN_1024BYTES; break;
376 case 2048: Characteristics |= COFF::IMAGE_SCN_ALIGN_2048BYTES; break;
377 case 4096: Characteristics |= COFF::IMAGE_SCN_ALIGN_4096BYTES; break;
378 case 8192: Characteristics |= COFF::IMAGE_SCN_ALIGN_8192BYTES; break;
379 default:
380 llvm_unreachable("unsupported section alignment");
381 }
382
383 // Bind internal COFF section to MC section.
384 coff_section->MCData = &SectionData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000385 SectionMap[&SectionData.getSection()] = coff_section;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000386}
387
Rafael Espindolaff68cb72014-05-01 00:10:17 +0000388static uint64_t getSymbolValue(const MCSymbolData &Data,
389 const MCAsmLayout &Layout) {
390 if (Data.isCommon() && Data.isExternal())
391 return Data.getCommonSize();
392
393 uint64_t Res;
394 if (!Layout.getSymbolOffset(&Data, Res))
395 return 0;
396
397 return Res;
398}
399
David Majnemera9bdb322014-04-08 22:33:40 +0000400/// This function takes a symbol data object from the assembler
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000401/// and creates the associated COFF symbol staging object.
Peter Collingbourne89886872013-04-22 18:48:56 +0000402void WinCOFFObjectWriter::DefineSymbol(MCSymbolData const &SymbolData,
Reid Klecknerc1e76212013-09-17 23:18:05 +0000403 MCAssembler &Assembler,
404 const MCAsmLayout &Layout) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000405 MCSymbol const &Symbol = SymbolData.getSymbol();
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000406 COFFSymbol *coff_symbol = GetOrCreateCOFFSymbol(&Symbol);
Peter Collingbourne89886872013-04-22 18:48:56 +0000407 SymbolMap[&Symbol] = coff_symbol;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000408
Michael J. Spencer17990d52010-10-16 08:25:57 +0000409 if (SymbolData.getFlags() & COFF::SF_WeakExternal) {
410 coff_symbol->Data.StorageClass = COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
411
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000412 if (Symbol.isVariable()) {
Peter Collingbourne89886872013-04-22 18:48:56 +0000413 const MCSymbolRefExpr *SymRef =
414 dyn_cast<MCSymbolRefExpr>(Symbol.getVariableValue());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000415
Peter Collingbourne89886872013-04-22 18:48:56 +0000416 if (!SymRef)
417 report_fatal_error("Weak externals may only alias symbols");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000418
Peter Collingbourne89886872013-04-22 18:48:56 +0000419 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymRef->getSymbol());
Michael J. Spencer17990d52010-10-16 08:25:57 +0000420 } else {
421 std::string WeakName = std::string(".weak.")
Michael J. Spencer54b24e12013-01-29 22:10:07 +0000422 + Symbol.getName().str()
Michael J. Spencer17990d52010-10-16 08:25:57 +0000423 + ".default";
424 COFFSymbol *WeakDefault = createSymbol(WeakName);
425 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
426 WeakDefault->Data.StorageClass = COFF::IMAGE_SYM_CLASS_EXTERNAL;
427 WeakDefault->Data.Type = 0;
428 WeakDefault->Data.Value = 0;
429 coff_symbol->Other = WeakDefault;
430 }
431
432 // Setup the Weak External auxiliary symbol.
433 coff_symbol->Aux.resize(1);
434 memset(&coff_symbol->Aux[0], 0, sizeof(coff_symbol->Aux[0]));
435 coff_symbol->Aux[0].AuxType = ATWeakExternal;
436 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = 0;
437 coff_symbol->Aux[0].Aux.WeakExternal.Characteristics =
438 COFF::IMAGE_WEAK_EXTERN_SEARCH_LIBRARY;
Peter Collingbourne89886872013-04-22 18:48:56 +0000439
440 coff_symbol->MCData = &SymbolData;
441 } else {
442 const MCSymbolData &ResSymData =
443 Assembler.getSymbolData(Symbol.AliasedSymbol());
Rafael Espindolaff68cb72014-05-01 00:10:17 +0000444 coff_symbol->Data.Value = getSymbolValue(ResSymData, Layout);
Reid Klecknerc1e76212013-09-17 23:18:05 +0000445
Peter Collingbourne89886872013-04-22 18:48:56 +0000446 coff_symbol->Data.Type = (ResSymData.getFlags() & 0x0000FFFF) >> 0;
447 coff_symbol->Data.StorageClass = (ResSymData.getFlags() & 0x00FF0000) >> 16;
448
449 // If no storage class was specified in the streamer, define it here.
450 if (coff_symbol->Data.StorageClass == 0) {
Craig Topperbb694de2014-04-13 04:57:38 +0000451 bool external = ResSymData.isExternal() || !ResSymData.Fragment;
Peter Collingbourne89886872013-04-22 18:48:56 +0000452
453 coff_symbol->Data.StorageClass =
454 external ? COFF::IMAGE_SYM_CLASS_EXTERNAL : COFF::IMAGE_SYM_CLASS_STATIC;
455 }
456
Reid Klecknerc1e76212013-09-17 23:18:05 +0000457 if (Symbol.isAbsolute() || Symbol.AliasedSymbol().isVariable())
458 coff_symbol->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE;
Craig Topperbb694de2014-04-13 04:57:38 +0000459 else if (ResSymData.Fragment)
Peter Collingbourne89886872013-04-22 18:48:56 +0000460 coff_symbol->Section =
461 SectionMap[&ResSymData.Fragment->getParent()->getSection()];
462
463 coff_symbol->MCData = &ResSymData;
Michael J. Spencer17990d52010-10-16 08:25:57 +0000464 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000465}
466
Nico Rieck01143f92014-02-25 09:50:40 +0000467// Maximum offsets for different string table entry encodings.
468static const unsigned Max6DecimalOffset = 999999;
469static const unsigned Max7DecimalOffset = 9999999;
470static const uint64_t MaxBase64Offset = 0xFFFFFFFFFULL; // 64^6, including 0
471
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000472// Encode a string table entry offset in base 64, padded to 6 chars, and
473// prefixed with a double slash: '//AAAAAA', '//AAAAAB', ...
474// Buffer must be at least 8 bytes large. No terminating null appended.
475static void encodeBase64StringEntry(char* Buffer, uint64_t Value) {
Nico Rieck01143f92014-02-25 09:50:40 +0000476 assert(Value > Max7DecimalOffset && Value <= MaxBase64Offset &&
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000477 "Illegal section name encoding for value");
478
479 static const char Alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
480 "abcdefghijklmnopqrstuvwxyz"
481 "0123456789+/";
482
483 Buffer[0] = '/';
484 Buffer[1] = '/';
485
486 char* Ptr = Buffer + 7;
487 for (unsigned i = 0; i < 6; ++i) {
488 unsigned Rem = Value % 64;
489 Value /= 64;
490 *(Ptr--) = Alphabet[Rem];
491 }
492}
493
Michael J. Spencerd6283772010-09-27 08:58:26 +0000494/// making a section real involves assigned it a number and putting
495/// name into the string table if needed
496void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
497 if (S.Name.size() > COFF::NameSize) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000498 uint64_t StringTableEntry = Strings.insert(S.Name.c_str());
Michael J. Spencerd6283772010-09-27 08:58:26 +0000499
Nico Rieck01143f92014-02-25 09:50:40 +0000500 if (StringTableEntry <= Max6DecimalOffset) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000501 std::sprintf(S.Header.Name, "/%d", unsigned(StringTableEntry));
Nico Rieck01143f92014-02-25 09:50:40 +0000502 } else if (StringTableEntry <= Max7DecimalOffset) {
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000503 // With seven digits, we have to skip the terminating null. Because
504 // sprintf always appends it, we use a larger temporary buffer.
505 char buffer[9] = { };
506 std::sprintf(buffer, "/%d", unsigned(StringTableEntry));
507 std::memcpy(S.Header.Name, buffer, 8);
Nico Rieck01143f92014-02-25 09:50:40 +0000508 } else if (StringTableEntry <= MaxBase64Offset) {
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000509 // Starting with 10,000,000, offsets are encoded as base64.
510 encodeBase64StringEntry(S.Header.Name, StringTableEntry);
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000511 } else {
Nico Rieck9d2c15e2014-02-22 16:12:20 +0000512 report_fatal_error("COFF string table is greater than 64 GB.");
Nico Rieck2c9c89b2013-07-29 12:30:12 +0000513 }
Michael J. Spencerd6283772010-09-27 08:58:26 +0000514 } else
515 std::memcpy(S.Header.Name, S.Name.c_str(), S.Name.size());
516
517 S.Number = Number;
518 S.Symbol->Data.SectionNumber = S.Number;
519 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
520}
521
522void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
523 if (S.Name.size() > COFF::NameSize) {
524 size_t StringTableEntry = Strings.insert(S.Name.c_str());
525
526 S.set_name_offset(StringTableEntry);
527 } else
528 std::memcpy(S.Data.Name, S.Name.c_str(), S.Name.size());
529 S.Index = Index;
530}
531
Reid Kleckner8b2ad2a2013-11-18 23:08:12 +0000532bool WinCOFFObjectWriter::ExportSymbol(MCSymbolData const &SymbolData,
533 MCAssembler &Asm) {
534 // This doesn't seem to be right. Strings referred to from the .data section
535 // need symbols so they can be linked to code in the .text section right?
536
537 // return Asm.isSymbolLinkerVisible (&SymbolData);
538
539 // For now, all non-variable symbols are exported,
540 // the linker will sort the rest out for us.
541 return SymbolData.isExternal() || !SymbolData.getSymbol().isVariable();
542}
543
Michael J. Spencerd6283772010-09-27 08:58:26 +0000544bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
545 return (S->Header.Characteristics
546 & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000547}
548
549//------------------------------------------------------------------------------
550// entity writing methods
551
552void WinCOFFObjectWriter::WriteFileHeader(const COFF::header &Header) {
553 WriteLE16(Header.Machine);
554 WriteLE16(Header.NumberOfSections);
555 WriteLE32(Header.TimeDateStamp);
556 WriteLE32(Header.PointerToSymbolTable);
557 WriteLE32(Header.NumberOfSymbols);
558 WriteLE16(Header.SizeOfOptionalHeader);
559 WriteLE16(Header.Characteristics);
560}
561
David Blaikief564ab62014-04-15 05:25:03 +0000562void WinCOFFObjectWriter::WriteSymbol(const COFFSymbol &S) {
563 WriteBytes(StringRef(S.Data.Name, COFF::NameSize));
564 WriteLE32(S.Data.Value);
565 WriteLE16(S.Data.SectionNumber);
566 WriteLE16(S.Data.Type);
567 Write8(S.Data.StorageClass);
568 Write8(S.Data.NumberOfAuxSymbols);
569 WriteAuxiliarySymbols(S.Aux);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000570}
571
572void WinCOFFObjectWriter::WriteAuxiliarySymbols(
573 const COFFSymbol::AuxiliarySymbols &S) {
574 for(COFFSymbol::AuxiliarySymbols::const_iterator i = S.begin(), e = S.end();
575 i != e; ++i) {
576 switch(i->AuxType) {
577 case ATFunctionDefinition:
578 WriteLE32(i->Aux.FunctionDefinition.TagIndex);
579 WriteLE32(i->Aux.FunctionDefinition.TotalSize);
580 WriteLE32(i->Aux.FunctionDefinition.PointerToLinenumber);
581 WriteLE32(i->Aux.FunctionDefinition.PointerToNextFunction);
582 WriteZeros(sizeof(i->Aux.FunctionDefinition.unused));
583 break;
584 case ATbfAndefSymbol:
585 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused1));
586 WriteLE16(i->Aux.bfAndefSymbol.Linenumber);
587 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused2));
588 WriteLE32(i->Aux.bfAndefSymbol.PointerToNextFunction);
589 WriteZeros(sizeof(i->Aux.bfAndefSymbol.unused3));
590 break;
591 case ATWeakExternal:
592 WriteLE32(i->Aux.WeakExternal.TagIndex);
593 WriteLE32(i->Aux.WeakExternal.Characteristics);
594 WriteZeros(sizeof(i->Aux.WeakExternal.unused));
595 break;
596 case ATFile:
597 WriteBytes(StringRef(reinterpret_cast<const char *>(i->Aux.File.FileName),
598 sizeof(i->Aux.File.FileName)));
599 break;
600 case ATSectionDefinition:
601 WriteLE32(i->Aux.SectionDefinition.Length);
602 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
603 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
604 WriteLE32(i->Aux.SectionDefinition.CheckSum);
605 WriteLE16(i->Aux.SectionDefinition.Number);
606 Write8(i->Aux.SectionDefinition.Selection);
607 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
608 break;
609 }
610 }
611}
612
613void WinCOFFObjectWriter::WriteSectionHeader(const COFF::section &S) {
614 WriteBytes(StringRef(S.Name, COFF::NameSize));
615
616 WriteLE32(S.VirtualSize);
617 WriteLE32(S.VirtualAddress);
618 WriteLE32(S.SizeOfRawData);
619 WriteLE32(S.PointerToRawData);
620 WriteLE32(S.PointerToRelocations);
621 WriteLE32(S.PointerToLineNumbers);
622 WriteLE16(S.NumberOfRelocations);
623 WriteLE16(S.NumberOfLineNumbers);
624 WriteLE32(S.Characteristics);
625}
626
627void WinCOFFObjectWriter::WriteRelocation(const COFF::relocation &R) {
628 WriteLE32(R.VirtualAddress);
629 WriteLE32(R.SymbolTableIndex);
630 WriteLE16(R.Type);
Chris Lattner2c52b792010-07-11 22:07:02 +0000631}
632
633////////////////////////////////////////////////////////////////////////////////
634// MCObjectWriter interface implementations
635
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000636void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
637 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000638 // "Define" each section & symbol. This creates section & symbol
Michael J. Spencerd6283772010-09-27 08:58:26 +0000639 // entries in the staging area.
Saleem Abdulrasool1614b262014-04-17 06:17:20 +0000640
Craig Topper353eda42014-04-24 06:44:33 +0000641 static_assert(sizeof(((COFF::AuxiliaryFile *)nullptr)->FileName) == COFF::SymbolSize,
Saleem Abdulrasoola2bf05a2014-04-16 04:15:32 +0000642 "size mismatch for COFF::AuxiliaryFile::FileName");
643 for (auto FI = Asm.file_names_begin(), FE = Asm.file_names_end();
644 FI != FE; ++FI) {
645 // round up to calculate the number of auxiliary symbols required
Saleem Abdulrasool057094c2014-04-16 06:22:53 +0000646 unsigned Count = (FI->size() + COFF::SymbolSize - 1) / COFF::SymbolSize;
Saleem Abdulrasoola2bf05a2014-04-16 04:15:32 +0000647
648 COFFSymbol *file = createSymbol(".file");
649 file->Data.StorageClass = COFF::IMAGE_SYM_CLASS_FILE;
650 file->Aux.resize(Count);
651
652 unsigned Offset = 0;
653 unsigned Length = FI->size();
654 for (auto & Aux : file->Aux) {
655 Aux.AuxType = ATFile;
656
657 if (Length > COFF::SymbolSize) {
658 memcpy(Aux.Aux.File.FileName, FI->c_str() + Offset, COFF::SymbolSize);
659 Length = Length - COFF::SymbolSize;
660 } else {
661 memcpy(Aux.Aux.File.FileName, FI->c_str() + Offset, Length);
662 memset(&Aux.Aux.File.FileName[Length], 0, COFF::SymbolSize - Length);
663 Length = 0;
664 }
665
666 Offset = Offset + COFF::SymbolSize;
667 }
668 }
669
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000670 for (const auto & Section : Asm)
671 DefineSection(Section);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000672
David Blaikie583a31c2014-04-18 18:24:25 +0000673 for (MCSymbolData &SD : Asm.symbols())
674 if (ExportSymbol(SD, Asm))
675 DefineSymbol(SD, Asm, Layout);
Chris Lattner2c52b792010-07-11 22:07:02 +0000676}
677
678void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
679 const MCAsmLayout &Layout,
680 const MCFragment *Fragment,
681 const MCFixup &Fixup,
682 MCValue Target,
Rafael Espindola5904e122014-03-29 06:26:49 +0000683 bool &IsPCRel,
Chris Lattner2c52b792010-07-11 22:07:02 +0000684 uint64_t &FixedValue) {
Craig Topperbb694de2014-04-13 04:57:38 +0000685 assert(Target.getSymA() && "Relocation must reference a symbol!");
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000686
Reid Klecknerdae7b4e2013-07-15 19:41:21 +0000687 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
688 const MCSymbol &A = Symbol.AliasedSymbol();
Timur Iskhodzhanov3e4ac4e2014-01-30 21:13:05 +0000689 if (!Asm.hasSymbolData(A))
690 Asm.getContext().FatalError(
691 Fixup.getLoc(),
692 Twine("symbol '") + A.getName() + "' can not be undefined");
693
David Blaikie908f4d42014-04-24 16:59:40 +0000694 const MCSymbolData &A_SD = Asm.getSymbolData(A);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000695
696 MCSectionData const *SectionData = Fragment->getParent();
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000697
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000698 // Mark this symbol as requiring an entry in the symbol table.
Michael J. Spencer17990d52010-10-16 08:25:57 +0000699 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000700 "Section must already have been defined in ExecutePostLayoutBinding!");
Michael J. Spencer17990d52010-10-16 08:25:57 +0000701 assert(SymbolMap.find(&A_SD.getSymbol()) != SymbolMap.end() &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000702 "Symbol must already have been defined in ExecutePostLayoutBinding!");
703
Michael J. Spencer17990d52010-10-16 08:25:57 +0000704 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
705 COFFSymbol *coff_symbol = SymbolMap[&A_SD.getSymbol()];
Rafael Espindolaed164772011-04-20 14:01:45 +0000706 const MCSymbolRefExpr *SymB = Target.getSymB();
David Majnemera45a1762014-01-06 07:39:46 +0000707 bool CrossSection = false;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000708
David Majnemera45a1762014-01-06 07:39:46 +0000709 if (SymB) {
710 const MCSymbol *B = &SymB->getSymbol();
David Blaikie908f4d42014-04-24 16:59:40 +0000711 const MCSymbolData &B_SD = Asm.getSymbolData(*B);
David Majnemera45a1762014-01-06 07:39:46 +0000712 if (!B_SD.getFragment())
713 Asm.getContext().FatalError(
714 Fixup.getLoc(),
715 Twine("symbol '") + B->getName() +
716 "' can not be undefined in a subtraction expression");
717
718 if (!A_SD.getFragment())
719 Asm.getContext().FatalError(
720 Fixup.getLoc(),
721 Twine("symbol '") + Symbol.getName() +
722 "' can not be undefined in a subtraction expression");
723
724 CrossSection = &Symbol.getSection() != &B->getSection();
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000725
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000726 // Offset of the symbol in the section
727 int64_t a = Layout.getSymbolOffset(&B_SD);
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000728
Rafael Espindolac3dc4862011-04-21 18:36:50 +0000729 // Ofeset of the relocation in the section
730 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
731
732 FixedValue = b - a;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000733 // In the case where we have SymbA and SymB, we just need to store the delta
734 // between the two symbols. Update FixedValue to account for the delta, and
735 // skip recording the relocation.
Rafael Espindolaed164772011-04-20 14:01:45 +0000736 if (!CrossSection)
737 return;
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000738 } else {
739 FixedValue = Target.getConstant();
740 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000741
742 COFFRelocation Reloc;
743
Daniel Dunbar727be432010-07-31 21:08:54 +0000744 Reloc.Data.SymbolTableIndex = 0;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000745 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000746
Michael J. Spencera65d17a2010-10-05 19:48:12 +0000747 // Turn relocations for temporary symbols into section relocations.
Rafael Espindolaed164772011-04-20 14:01:45 +0000748 if (coff_symbol->MCData->getSymbol().isTemporary() || CrossSection) {
Michael J. Spencerd6283772010-09-27 08:58:26 +0000749 Reloc.Symb = coff_symbol->Section->Symbol;
Michael J. Spencera3b34ed2010-10-05 19:48:03 +0000750 FixedValue += Layout.getFragmentOffset(coff_symbol->MCData->Fragment)
751 + coff_symbol->MCData->getOffset();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000752 } else
753 Reloc.Symb = coff_symbol;
754
755 ++Reloc.Symb->Relocations;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000756
757 Reloc.Data.VirtualAddress += Fixup.getOffset();
Nico Rieck1da45292013-04-10 23:28:17 +0000758 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
759 CrossSection);
Rafael Espindolae61724a2011-12-22 22:21:47 +0000760
761 // FIXME: Can anyone explain what this does other than adjust for the size
762 // of the offset?
Saleem Abdulrasool2c080512014-04-13 20:47:55 +0000763 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 &&
764 Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32) ||
765 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 &&
766 Reloc.Data.Type == COFF::IMAGE_REL_I386_REL32))
Michael J. Spencerccd28d02010-08-24 21:04:52 +0000767 FixedValue += 4;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000768
Saleem Abdulrasool84b952b2014-04-27 03:48:22 +0000769 if (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) {
770 switch (Reloc.Data.Type) {
771 case COFF::IMAGE_REL_ARM_ABSOLUTE:
772 case COFF::IMAGE_REL_ARM_ADDR32:
773 case COFF::IMAGE_REL_ARM_ADDR32NB:
774 case COFF::IMAGE_REL_ARM_TOKEN:
775 case COFF::IMAGE_REL_ARM_SECTION:
776 case COFF::IMAGE_REL_ARM_SECREL:
777 break;
778 case COFF::IMAGE_REL_ARM_BRANCH11:
779 case COFF::IMAGE_REL_ARM_BLX11:
780 // IMAGE_REL_ARM_BRANCH11 and IMAGE_REL_ARM_BLX11 are only used for
781 // pre-ARMv7, which implicitly rules it out of ARMNT (it would be valid
782 // for Windows CE).
783 case COFF::IMAGE_REL_ARM_BRANCH24:
784 case COFF::IMAGE_REL_ARM_BLX24:
785 case COFF::IMAGE_REL_ARM_MOV32A:
786 // IMAGE_REL_ARM_BRANCH24, IMAGE_REL_ARM_BLX24, IMAGE_REL_ARM_MOV32A are
787 // only used for ARM mode code, which is documented as being unsupported
788 // by Windows on ARM. Emperical proof indicates that masm is able to
789 // generate the relocations however the rest of the MSVC toolchain is
790 // unable to handle it.
791 llvm_unreachable("unsupported relocation");
792 break;
793 case COFF::IMAGE_REL_ARM_MOV32T:
794 break;
795 case COFF::IMAGE_REL_ARM_BRANCH20T:
796 case COFF::IMAGE_REL_ARM_BRANCH24T:
797 case COFF::IMAGE_REL_ARM_BLX23T:
798 // IMAGE_REL_BRANCH20T, IMAGE_REL_ARM_BRANCH24T, IMAGE_REL_ARM_BLX23T all
799 // perform a 4 byte adjustment to the relocation. Relative branches are
800 // offset by 4 on ARM, however, because there is no RELA relocations, all
801 // branches are offset by 4.
802 FixedValue = FixedValue + 4;
803 break;
804 }
805 }
806
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000807 coff_section->Relocations.push_back(Reloc);
Chris Lattner2c52b792010-07-11 22:07:02 +0000808}
809
Rafael Espindolabce26a12010-10-05 15:11:03 +0000810void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
Chris Lattner2c52b792010-07-11 22:07:02 +0000811 const MCAsmLayout &Layout) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000812 // Assign symbol and section indexes and offsets.
Michael J. Spencerd6283772010-09-27 08:58:26 +0000813 Header.NumberOfSections = 0;
814
Nico Riecka37acf72013-07-06 12:13:10 +0000815 DenseMap<COFFSection *, uint16_t> SectionIndices;
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000816 for (auto & Section : Sections) {
817 if (Layout.getSectionAddressSize(Section->MCData) > 0) {
Nico Riecka37acf72013-07-06 12:13:10 +0000818 size_t Number = ++Header.NumberOfSections;
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000819 SectionIndices[Section.get()] = Number;
820 MakeSectionReal(*Section, Number);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000821 } else {
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000822 Section->Number = -1;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000823 }
824 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000825
826 Header.NumberOfSymbols = 0;
827
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000828 for (auto & Symbol : Symbols) {
829 MCSymbolData const *SymbolData = Symbol->MCData;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000830
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000831 // Update section number & offset for symbols that have them.
Craig Topperbb694de2014-04-13 04:57:38 +0000832 if (SymbolData && SymbolData->Fragment) {
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000833 assert(Symbol->Section != nullptr);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000834
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000835 Symbol->Data.SectionNumber = Symbol->Section->Number;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000836 }
837
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000838 if (Symbol->should_keep()) {
839 MakeSymbolReal(*Symbol, Header.NumberOfSymbols++);
Michael J. Spencerd6283772010-09-27 08:58:26 +0000840
841 // Update auxiliary symbol info.
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000842 Symbol->Data.NumberOfAuxSymbols = Symbol->Aux.size();
843 Header.NumberOfSymbols += Symbol->Data.NumberOfAuxSymbols;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000844 } else
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000845 Symbol->Index = -1;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000846 }
847
848 // Fixup weak external references.
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000849 for (auto & Symbol : Symbols) {
850 if (Symbol->Other) {
851 assert(Symbol->Index != -1);
852 assert(Symbol->Aux.size() == 1 && "Symbol must contain one aux symbol!");
853 assert(Symbol->Aux[0].AuxType == ATWeakExternal &&
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000854 "Symbol's aux symbol must be a Weak External!");
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000855 Symbol->Aux[0].Aux.WeakExternal.TagIndex = Symbol->Other->Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000856 }
857 }
858
Nico Riecka37acf72013-07-06 12:13:10 +0000859 // Fixup associative COMDAT sections.
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000860 for (auto & Section : Sections) {
861 if (Section->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
Nico Riecka37acf72013-07-06 12:13:10 +0000862 COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
863 continue;
864
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000865 const MCSectionCOFF &MCSec =
866 static_cast<const MCSectionCOFF &>(Section->MCData->getSection());
Nico Riecka37acf72013-07-06 12:13:10 +0000867
868 COFFSection *Assoc = SectionMap.lookup(MCSec.getAssocSection());
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000869 if (!Assoc)
Nico Riecka37acf72013-07-06 12:13:10 +0000870 report_fatal_error(Twine("Missing associated COMDAT section ") +
871 MCSec.getAssocSection()->getSectionName() +
872 " for section " + MCSec.getSectionName());
Nico Riecka37acf72013-07-06 12:13:10 +0000873
874 // Skip this section if the associated section is unused.
875 if (Assoc->Number == -1)
876 continue;
877
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000878 Section->Symbol->Aux[0].Aux.SectionDefinition.Number = SectionIndices[Assoc];
Nico Riecka37acf72013-07-06 12:13:10 +0000879 }
880
881
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000882 // Assign file offsets to COFF object file structures.
883
884 unsigned offset = 0;
885
886 offset += COFF::HeaderSize;
Michael J. Spencerd6283772010-09-27 08:58:26 +0000887 offset += COFF::SectionSize * Header.NumberOfSections;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000888
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000889 for (const auto & Section : Asm) {
890 COFFSection *Sec = SectionMap[&Section.getSection()];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000891
Michael J. Spencerd6283772010-09-27 08:58:26 +0000892 if (Sec->Number == -1)
893 continue;
894
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000895 Sec->Header.SizeOfRawData = Layout.getSectionAddressSize(&Section);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000896
Michael J. Spencerd6283772010-09-27 08:58:26 +0000897 if (IsPhysicalSection(Sec)) {
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000898 Sec->Header.PointerToRawData = offset;
899
900 offset += Sec->Header.SizeOfRawData;
901 }
902
903 if (Sec->Relocations.size() > 0) {
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000904 bool RelocationsOverflow = Sec->Relocations.size() >= 0xffff;
905
906 if (RelocationsOverflow) {
907 // Signal overflow by setting NumberOfSections to max value. Actual
908 // size is found in reloc #0. Microsoft tools understand this.
909 Sec->Header.NumberOfRelocations = 0xffff;
910 } else {
911 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
912 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000913 Sec->Header.PointerToRelocations = offset;
914
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000915 if (RelocationsOverflow) {
916 // Reloc #0 will contain actual count, so make room for it.
917 offset += COFF::RelocationSize;
918 }
919
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000920 offset += COFF::RelocationSize * Sec->Relocations.size();
921
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000922 for (auto & Relocation : Sec->Relocations) {
923 assert(Relocation.Symb->Index != -1);
924 Relocation.Data.SymbolTableIndex = Relocation.Symb->Index;
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000925 }
926 }
927
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000928 assert(Sec->Symbol->Aux.size() == 1 &&
929 "Section's symbol must have one aux!");
Michael J. Spencerd6283772010-09-27 08:58:26 +0000930 AuxSymbol &Aux = Sec->Symbol->Aux[0];
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000931 assert(Aux.AuxType == ATSectionDefinition &&
932 "Section's symbol's aux symbol must be a Section Definition!");
933 Aux.Aux.SectionDefinition.Length = Sec->Header.SizeOfRawData;
934 Aux.Aux.SectionDefinition.NumberOfRelocations =
935 Sec->Header.NumberOfRelocations;
936 Aux.Aux.SectionDefinition.NumberOfLinenumbers =
937 Sec->Header.NumberOfLineNumbers;
938 }
939
940 Header.PointerToSymbolTable = offset;
941
Rafael Espindola5ac4ad22013-12-04 02:26:54 +0000942 // We want a deterministic output. It looks like GNU as also writes 0 in here.
Rafael Espindola9201e6b2013-12-04 02:02:55 +0000943 Header.TimeDateStamp = 0;
Michael J. Spencera6cfbeb2010-08-03 04:43:33 +0000944
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000945 // Write it all to disk...
946 WriteFileHeader(Header);
947
948 {
949 sections::iterator i, ie;
950 MCAssembler::const_iterator j, je;
951
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000952 for (auto & Section : Sections) {
953 if (Section->Number != -1) {
954 if (Section->Relocations.size() >= 0xffff)
955 Section->Header.Characteristics |= COFF::IMAGE_SCN_LNK_NRELOC_OVFL;
956 WriteSectionHeader(Section->Header);
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000957 }
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000958 }
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000959
960 for (i = Sections.begin(), ie = Sections.end(),
961 j = Asm.begin(), je = Asm.end();
Michael J. Spencerd6283772010-09-27 08:58:26 +0000962 (i != ie) && (j != je); ++i, ++j) {
963
964 if ((*i)->Number == -1)
965 continue;
966
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000967 if ((*i)->Header.PointerToRawData != 0) {
968 assert(OS.tell() == (*i)->Header.PointerToRawData &&
969 "Section::PointerToRawData is insane!");
970
Jim Grosbach18e2fe42011-12-06 00:03:48 +0000971 Asm.writeSectionData(j, Layout);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000972 }
973
974 if ((*i)->Relocations.size() > 0) {
975 assert(OS.tell() == (*i)->Header.PointerToRelocations &&
976 "Section::PointerToRelocations is insane!");
977
Michael J. Spencerfa39bd22012-03-15 09:03:03 +0000978 if ((*i)->Relocations.size() >= 0xffff) {
979 // In case of overflow, write actual relocation count as first
980 // relocation. Including the synthetic reloc itself (+ 1).
981 COFF::relocation r;
982 r.VirtualAddress = (*i)->Relocations.size() + 1;
983 r.SymbolTableIndex = 0;
984 r.Type = 0;
985 WriteRelocation(r);
986 }
987
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000988 for (const auto & Relocation : (*i)->Relocations)
989 WriteRelocation(Relocation.Data);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +0000990 } else
991 assert((*i)->Header.PointerToRelocations == 0 &&
992 "Section::PointerToRelocations is insane!");
993 }
994 }
995
996 assert(OS.tell() == Header.PointerToSymbolTable &&
997 "Header::PointerToSymbolTable is insane!");
998
Saleem Abdulrasool09ced5f2014-04-28 03:34:48 +0000999 for (auto & Symbol : Symbols)
1000 if (Symbol->Index != -1)
1001 WriteSymbol(*Symbol);
Michael J. Spencerb5fc1382010-07-26 02:17:32 +00001002
1003 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
Chris Lattner2c52b792010-07-11 22:07:02 +00001004}
1005
Rafael Espindola908d2ed2011-12-24 02:14:02 +00001006MCWinCOFFObjectTargetWriter::MCWinCOFFObjectTargetWriter(unsigned Machine_) :
1007 Machine(Machine_) {
1008}
1009
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +00001010// Pin the vtable to this file.
1011void MCWinCOFFObjectTargetWriter::anchor() {}
1012
Chris Lattner2c52b792010-07-11 22:07:02 +00001013//------------------------------------------------------------------------------
1014// WinCOFFObjectWriter factory function
1015
1016namespace llvm {
Rafael Espindola908d2ed2011-12-24 02:14:02 +00001017 MCObjectWriter *createWinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
1018 raw_ostream &OS) {
1019 return new WinCOFFObjectWriter(MOTW, OS);
Chris Lattner2c52b792010-07-11 22:07:02 +00001020 }
Michael J. Spencerc2129372010-07-26 03:01:28 +00001021}