564eb7a7a9c3c61afaf84a56d607723c2a434d58
[oota-llvm.git] / include / llvm / Object / COFF.h
1 //===- COFF.h - COFF object file implementation -----------------*- 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 declares the COFFObjectFile class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_COFF_H
15 #define LLVM_OBJECT_COFF_H
16
17 #include "llvm/ADT/PointerUnion.h"
18 #include "llvm/Object/ObjectFile.h"
19 #include "llvm/Support/COFF.h"
20 #include "llvm/Support/Endian.h"
21 #include "llvm/Support/ErrorOr.h"
22
23 namespace llvm {
24 template <typename T> class ArrayRef;
25
26 namespace object {
27 class ImportDirectoryEntryRef;
28 class DelayImportDirectoryEntryRef;
29 class ExportDirectoryEntryRef;
30 class ImportedSymbolRef;
31 class BaseRelocRef;
32 typedef content_iterator<ImportDirectoryEntryRef> import_directory_iterator;
33 typedef content_iterator<DelayImportDirectoryEntryRef>
34     delay_import_directory_iterator;
35 typedef content_iterator<ExportDirectoryEntryRef> export_directory_iterator;
36 typedef content_iterator<ImportedSymbolRef> imported_symbol_iterator;
37 typedef content_iterator<BaseRelocRef> base_reloc_iterator;
38
39 /// The DOS compatible header at the front of all PE/COFF executables.
40 struct dos_header {
41   char                 Magic[2];
42   support::ulittle16_t UsedBytesInTheLastPage;
43   support::ulittle16_t FileSizeInPages;
44   support::ulittle16_t NumberOfRelocationItems;
45   support::ulittle16_t HeaderSizeInParagraphs;
46   support::ulittle16_t MinimumExtraParagraphs;
47   support::ulittle16_t MaximumExtraParagraphs;
48   support::ulittle16_t InitialRelativeSS;
49   support::ulittle16_t InitialSP;
50   support::ulittle16_t Checksum;
51   support::ulittle16_t InitialIP;
52   support::ulittle16_t InitialRelativeCS;
53   support::ulittle16_t AddressOfRelocationTable;
54   support::ulittle16_t OverlayNumber;
55   support::ulittle16_t Reserved[4];
56   support::ulittle16_t OEMid;
57   support::ulittle16_t OEMinfo;
58   support::ulittle16_t Reserved2[10];
59   support::ulittle32_t AddressOfNewExeHeader;
60 };
61
62 struct coff_file_header {
63   support::ulittle16_t Machine;
64   support::ulittle16_t NumberOfSections;
65   support::ulittle32_t TimeDateStamp;
66   support::ulittle32_t PointerToSymbolTable;
67   support::ulittle32_t NumberOfSymbols;
68   support::ulittle16_t SizeOfOptionalHeader;
69   support::ulittle16_t Characteristics;
70
71   bool isImportLibrary() const { return NumberOfSections == 0xffff; }
72 };
73
74 struct coff_bigobj_file_header {
75   support::ulittle16_t Sig1;
76   support::ulittle16_t Sig2;
77   support::ulittle16_t Version;
78   support::ulittle16_t Machine;
79   support::ulittle32_t TimeDateStamp;
80   uint8_t              UUID[16];
81   support::ulittle32_t unused1;
82   support::ulittle32_t unused2;
83   support::ulittle32_t unused3;
84   support::ulittle32_t unused4;
85   support::ulittle32_t NumberOfSections;
86   support::ulittle32_t PointerToSymbolTable;
87   support::ulittle32_t NumberOfSymbols;
88 };
89
90 /// The 32-bit PE header that follows the COFF header.
91 struct pe32_header {
92   support::ulittle16_t Magic;
93   uint8_t MajorLinkerVersion;
94   uint8_t MinorLinkerVersion;
95   support::ulittle32_t SizeOfCode;
96   support::ulittle32_t SizeOfInitializedData;
97   support::ulittle32_t SizeOfUninitializedData;
98   support::ulittle32_t AddressOfEntryPoint;
99   support::ulittle32_t BaseOfCode;
100   support::ulittle32_t BaseOfData;
101   support::ulittle32_t ImageBase;
102   support::ulittle32_t SectionAlignment;
103   support::ulittle32_t FileAlignment;
104   support::ulittle16_t MajorOperatingSystemVersion;
105   support::ulittle16_t MinorOperatingSystemVersion;
106   support::ulittle16_t MajorImageVersion;
107   support::ulittle16_t MinorImageVersion;
108   support::ulittle16_t MajorSubsystemVersion;
109   support::ulittle16_t MinorSubsystemVersion;
110   support::ulittle32_t Win32VersionValue;
111   support::ulittle32_t SizeOfImage;
112   support::ulittle32_t SizeOfHeaders;
113   support::ulittle32_t CheckSum;
114   support::ulittle16_t Subsystem;
115   // FIXME: This should be DllCharacteristics.
116   support::ulittle16_t DLLCharacteristics;
117   support::ulittle32_t SizeOfStackReserve;
118   support::ulittle32_t SizeOfStackCommit;
119   support::ulittle32_t SizeOfHeapReserve;
120   support::ulittle32_t SizeOfHeapCommit;
121   support::ulittle32_t LoaderFlags;
122   // FIXME: This should be NumberOfRvaAndSizes.
123   support::ulittle32_t NumberOfRvaAndSize;
124 };
125
126 /// The 64-bit PE header that follows the COFF header.
127 struct pe32plus_header {
128   support::ulittle16_t Magic;
129   uint8_t MajorLinkerVersion;
130   uint8_t MinorLinkerVersion;
131   support::ulittle32_t SizeOfCode;
132   support::ulittle32_t SizeOfInitializedData;
133   support::ulittle32_t SizeOfUninitializedData;
134   support::ulittle32_t AddressOfEntryPoint;
135   support::ulittle32_t BaseOfCode;
136   support::ulittle64_t ImageBase;
137   support::ulittle32_t SectionAlignment;
138   support::ulittle32_t FileAlignment;
139   support::ulittle16_t MajorOperatingSystemVersion;
140   support::ulittle16_t MinorOperatingSystemVersion;
141   support::ulittle16_t MajorImageVersion;
142   support::ulittle16_t MinorImageVersion;
143   support::ulittle16_t MajorSubsystemVersion;
144   support::ulittle16_t MinorSubsystemVersion;
145   support::ulittle32_t Win32VersionValue;
146   support::ulittle32_t SizeOfImage;
147   support::ulittle32_t SizeOfHeaders;
148   support::ulittle32_t CheckSum;
149   support::ulittle16_t Subsystem;
150   support::ulittle16_t DLLCharacteristics;
151   support::ulittle64_t SizeOfStackReserve;
152   support::ulittle64_t SizeOfStackCommit;
153   support::ulittle64_t SizeOfHeapReserve;
154   support::ulittle64_t SizeOfHeapCommit;
155   support::ulittle32_t LoaderFlags;
156   support::ulittle32_t NumberOfRvaAndSize;
157 };
158
159 struct data_directory {
160   support::ulittle32_t RelativeVirtualAddress;
161   support::ulittle32_t Size;
162 };
163
164 struct import_directory_table_entry {
165   support::ulittle32_t ImportLookupTableRVA;
166   support::ulittle32_t TimeDateStamp;
167   support::ulittle32_t ForwarderChain;
168   support::ulittle32_t NameRVA;
169   support::ulittle32_t ImportAddressTableRVA;
170 };
171
172 template <typename IntTy>
173 struct import_lookup_table_entry {
174   IntTy Data;
175
176   bool isOrdinal() const { return Data < 0; }
177
178   uint16_t getOrdinal() const {
179     assert(isOrdinal() && "ILT entry is not an ordinal!");
180     return Data & 0xFFFF;
181   }
182
183   uint32_t getHintNameRVA() const {
184     assert(!isOrdinal() && "ILT entry is not a Hint/Name RVA!");
185     return Data & 0xFFFFFFFF;
186   }
187 };
188
189 typedef import_lookup_table_entry<support::little32_t>
190     import_lookup_table_entry32;
191 typedef import_lookup_table_entry<support::little64_t>
192     import_lookup_table_entry64;
193
194 struct delay_import_directory_table_entry {
195   // dumpbin reports this field as "Characteristics" instead of "Attributes".
196   support::ulittle32_t Attributes;
197   support::ulittle32_t Name;
198   support::ulittle32_t ModuleHandle;
199   support::ulittle32_t DelayImportAddressTable;
200   support::ulittle32_t DelayImportNameTable;
201   support::ulittle32_t BoundDelayImportTable;
202   support::ulittle32_t UnloadDelayImportTable;
203   support::ulittle32_t TimeStamp;
204 };
205
206 struct export_directory_table_entry {
207   support::ulittle32_t ExportFlags;
208   support::ulittle32_t TimeDateStamp;
209   support::ulittle16_t MajorVersion;
210   support::ulittle16_t MinorVersion;
211   support::ulittle32_t NameRVA;
212   support::ulittle32_t OrdinalBase;
213   support::ulittle32_t AddressTableEntries;
214   support::ulittle32_t NumberOfNamePointers;
215   support::ulittle32_t ExportAddressTableRVA;
216   support::ulittle32_t NamePointerRVA;
217   support::ulittle32_t OrdinalTableRVA;
218 };
219
220 union export_address_table_entry {
221   support::ulittle32_t ExportRVA;
222   support::ulittle32_t ForwarderRVA;
223 };
224
225 typedef support::ulittle32_t export_name_pointer_table_entry;
226 typedef support::ulittle16_t export_ordinal_table_entry;
227
228 struct StringTableOffset {
229   support::ulittle32_t Zeroes;
230   support::ulittle32_t Offset;
231 };
232
233 template <typename SectionNumberType>
234 struct coff_symbol {
235   union {
236     char ShortName[COFF::NameSize];
237     StringTableOffset Offset;
238   } Name;
239
240   support::ulittle32_t Value;
241   SectionNumberType SectionNumber;
242
243   support::ulittle16_t Type;
244
245   uint8_t StorageClass;
246   uint8_t NumberOfAuxSymbols;
247 };
248
249 typedef coff_symbol<support::ulittle16_t> coff_symbol16;
250 typedef coff_symbol<support::ulittle32_t> coff_symbol32;
251
252 class COFFSymbolRef {
253 public:
254   COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS), CS32(nullptr) {}
255   COFFSymbolRef(const coff_symbol32 *CS) : CS16(nullptr), CS32(CS) {}
256   COFFSymbolRef() : CS16(nullptr), CS32(nullptr) {}
257
258   const void *getRawPtr() const {
259     return CS16 ? static_cast<const void *>(CS16) : CS32;
260   }
261
262   friend bool operator<(COFFSymbolRef A, COFFSymbolRef B) {
263     return A.getRawPtr() < B.getRawPtr();
264   }
265
266   bool isBigObj() const {
267     if (CS16)
268       return false;
269     if (CS32)
270       return true;
271     llvm_unreachable("COFFSymbolRef points to nothing!");
272   }
273
274   const char *getShortName() const {
275     return CS16 ? CS16->Name.ShortName : CS32->Name.ShortName;
276   }
277
278   const StringTableOffset &getStringTableOffset() const {
279     assert(isSet() && "COFFSymbolRef points to nothing!");
280     return CS16 ? CS16->Name.Offset : CS32->Name.Offset;
281   }
282
283   uint32_t getValue() const { return CS16 ? CS16->Value : CS32->Value; }
284
285   int32_t getSectionNumber() const {
286     assert(isSet() && "COFFSymbolRef points to nothing!");
287     if (CS16) {
288       // Reserved sections are returned as negative numbers.
289       if (CS16->SectionNumber <= COFF::MaxNumberOfSections16)
290         return CS16->SectionNumber;
291       return static_cast<int16_t>(CS16->SectionNumber);
292     }
293     return static_cast<int32_t>(CS32->SectionNumber);
294   }
295
296   uint16_t getType() const {
297     assert(isSet() && "COFFSymbolRef points to nothing!");
298     return CS16 ? CS16->Type : CS32->Type;
299   }
300
301   uint8_t getStorageClass() const {
302     assert(isSet() && "COFFSymbolRef points to nothing!");
303     return CS16 ? CS16->StorageClass : CS32->StorageClass;
304   }
305
306   uint8_t getNumberOfAuxSymbols() const {
307     assert(isSet() && "COFFSymbolRef points to nothing!");
308     return CS16 ? CS16->NumberOfAuxSymbols : CS32->NumberOfAuxSymbols;
309   }
310
311   uint8_t getBaseType() const { return getType() & 0x0F; }
312
313   uint8_t getComplexType() const {
314     return (getType() & 0xF0) >> COFF::SCT_COMPLEX_TYPE_SHIFT;
315   }
316
317   bool isAbsolute() const {
318     return getSectionNumber() == -1;
319   }
320
321   bool isExternal() const {
322     return getStorageClass() == COFF::IMAGE_SYM_CLASS_EXTERNAL;
323   }
324
325   bool isCommon() const {
326     return isExternal() && getSectionNumber() == COFF::IMAGE_SYM_UNDEFINED &&
327            getValue() != 0;
328   }
329
330   bool isUndefined() const {
331     return isExternal() && getSectionNumber() == COFF::IMAGE_SYM_UNDEFINED &&
332            getValue() == 0;
333   }
334
335   bool isWeakExternal() const {
336     return getStorageClass() == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL;
337   }
338
339   bool isFunctionDefinition() const {
340     return isExternal() && getBaseType() == COFF::IMAGE_SYM_TYPE_NULL &&
341            getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION &&
342            !COFF::isReservedSectionNumber(getSectionNumber());
343   }
344
345   bool isFunctionLineInfo() const {
346     return getStorageClass() == COFF::IMAGE_SYM_CLASS_FUNCTION;
347   }
348
349   bool isAnyUndefined() const {
350     return isUndefined() || isWeakExternal();
351   }
352
353   bool isFileRecord() const {
354     return getStorageClass() == COFF::IMAGE_SYM_CLASS_FILE;
355   }
356
357   bool isSection() const {
358     return getStorageClass() == COFF::IMAGE_SYM_CLASS_SECTION;
359   }
360
361   bool isSectionDefinition() const {
362     // C++/CLI creates external ABS symbols for non-const appdomain globals.
363     // These are also followed by an auxiliary section definition.
364     bool isAppdomainGlobal =
365         getStorageClass() == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
366         getSectionNumber() == COFF::IMAGE_SYM_ABSOLUTE;
367     bool isOrdinarySection = getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC;
368     if (!getNumberOfAuxSymbols())
369       return false;
370     return isAppdomainGlobal || isOrdinarySection;
371   }
372
373   bool isCLRToken() const {
374     return getStorageClass() == COFF::IMAGE_SYM_CLASS_CLR_TOKEN;
375   }
376
377 private:
378   bool isSet() const { return CS16 || CS32; }
379
380   const coff_symbol16 *CS16;
381   const coff_symbol32 *CS32;
382 };
383
384 struct coff_section {
385   char Name[COFF::NameSize];
386   support::ulittle32_t VirtualSize;
387   support::ulittle32_t VirtualAddress;
388   support::ulittle32_t SizeOfRawData;
389   support::ulittle32_t PointerToRawData;
390   support::ulittle32_t PointerToRelocations;
391   support::ulittle32_t PointerToLinenumbers;
392   support::ulittle16_t NumberOfRelocations;
393   support::ulittle16_t NumberOfLinenumbers;
394   support::ulittle32_t Characteristics;
395
396   // Returns true if the actual number of relocations is stored in
397   // VirtualAddress field of the first relocation table entry.
398   bool hasExtendedRelocations() const {
399     return (Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) &&
400            NumberOfRelocations == UINT16_MAX;
401   }
402 };
403
404 struct coff_relocation {
405   support::ulittle32_t VirtualAddress;
406   support::ulittle32_t SymbolTableIndex;
407   support::ulittle16_t Type;
408 };
409
410 struct coff_aux_function_definition {
411   support::ulittle32_t TagIndex;
412   support::ulittle32_t TotalSize;
413   support::ulittle32_t PointerToLinenumber;
414   support::ulittle32_t PointerToNextFunction;
415 };
416
417 struct coff_aux_bf_and_ef_symbol {
418   char Unused1[4];
419   support::ulittle16_t Linenumber;
420   char Unused2[6];
421   support::ulittle32_t PointerToNextFunction;
422 };
423
424 struct coff_aux_weak_external {
425   support::ulittle32_t TagIndex;
426   support::ulittle32_t Characteristics;
427 };
428
429 struct coff_aux_section_definition {
430   support::ulittle32_t Length;
431   support::ulittle16_t NumberOfRelocations;
432   support::ulittle16_t NumberOfLinenumbers;
433   support::ulittle32_t CheckSum;
434   support::ulittle16_t NumberLowPart;
435   uint8_t              Selection;
436   uint8_t              Unused;
437   support::ulittle16_t NumberHighPart;
438   int32_t getNumber(bool IsBigObj) const {
439     uint32_t Number = static_cast<uint32_t>(NumberLowPart);
440     if (IsBigObj)
441       Number |= static_cast<uint32_t>(NumberHighPart) << 16;
442     return static_cast<int32_t>(Number);
443   }
444 };
445
446 struct coff_aux_clr_token {
447   uint8_t              AuxType;
448   uint8_t              Reserved;
449   support::ulittle32_t SymbolTableIndex;
450 };
451
452 struct coff_import_header {
453   support::ulittle16_t Sig1;
454   support::ulittle16_t Sig2;
455   support::ulittle16_t Version;
456   support::ulittle16_t Machine;
457   support::ulittle32_t TimeDateStamp;
458   support::ulittle32_t SizeOfData;
459   support::ulittle16_t OrdinalHint;
460   support::ulittle16_t TypeInfo;
461   int getType() const { return TypeInfo & 0x3; }
462   int getNameType() const { return (TypeInfo & 0x7) >> 2; }
463 };
464
465 struct coff_import_directory_table_entry {
466   support::ulittle32_t ImportLookupTableRVA;
467   support::ulittle32_t TimeDateStamp;
468   support::ulittle32_t ForwarderChain;
469   support::ulittle32_t NameRVA;
470   support::ulittle32_t ImportAddressTableRVA;
471 };
472
473 struct coff_load_configuration32 {
474   support::ulittle32_t Characteristics;
475   support::ulittle32_t TimeDateStamp;
476   support::ulittle16_t MajorVersion;
477   support::ulittle16_t MinorVersion;
478   support::ulittle32_t GlobalFlagsClear;
479   support::ulittle32_t GlobalFlagsSet;
480   support::ulittle32_t CriticalSectionDefaultTimeout;
481   support::ulittle32_t DeCommitFreeBlockThreshold;
482   support::ulittle32_t DeCommitTotalFreeThreshold;
483   support::ulittle32_t LockPrefixTable;
484   support::ulittle32_t MaximumAllocationSize;
485   support::ulittle32_t VirtualMemoryThreshold;
486   support::ulittle32_t ProcessAffinityMask;
487   support::ulittle32_t ProcessHeapFlags;
488   support::ulittle16_t CSDVersion;
489   support::ulittle16_t Reserved;
490   support::ulittle32_t EditList;
491   support::ulittle32_t SecurityCookie;
492   support::ulittle32_t SEHandlerTable;
493   support::ulittle32_t SEHandlerCount;
494 };
495
496 struct coff_runtime_function_x64 {
497   support::ulittle32_t BeginAddress;
498   support::ulittle32_t EndAddress;
499   support::ulittle32_t UnwindInformation;
500 };
501
502 struct coff_base_reloc_block_header {
503   support::ulittle32_t PageRVA;
504   support::ulittle32_t BlockSize;
505 };
506
507 struct coff_base_reloc_block_entry {
508   support::ulittle16_t Data;
509   int getType() const { return Data >> 12; }
510   int getOffset() const { return Data & ((1 << 12) - 1); }
511 };
512
513 class COFFObjectFile : public ObjectFile {
514 private:
515   friend class ImportDirectoryEntryRef;
516   friend class ExportDirectoryEntryRef;
517   const coff_file_header *COFFHeader;
518   const coff_bigobj_file_header *COFFBigObjHeader;
519   const pe32_header *PE32Header;
520   const pe32plus_header *PE32PlusHeader;
521   const data_directory *DataDirectory;
522   const coff_section *SectionTable;
523   const coff_symbol16 *SymbolTable16;
524   const coff_symbol32 *SymbolTable32;
525   const char *StringTable;
526   uint32_t StringTableSize;
527   const import_directory_table_entry *ImportDirectory;
528   uint32_t NumberOfImportDirectory;
529   const delay_import_directory_table_entry *DelayImportDirectory;
530   uint32_t NumberOfDelayImportDirectory;
531   const export_directory_table_entry *ExportDirectory;
532   const coff_base_reloc_block_header *BaseRelocHeader;
533   const coff_base_reloc_block_header *BaseRelocEnd;
534
535   std::error_code getString(uint32_t offset, StringRef &Res) const;
536
537   template <typename coff_symbol_type>
538   const coff_symbol_type *toSymb(DataRefImpl Symb) const;
539   const coff_section *toSec(DataRefImpl Sec) const;
540   const coff_relocation *toRel(DataRefImpl Rel) const;
541
542   std::error_code initSymbolTablePtr();
543   std::error_code initImportTablePtr();
544   std::error_code initDelayImportTablePtr();
545   std::error_code initExportTablePtr();
546   std::error_code initBaseRelocPtr();
547
548 public:
549   uintptr_t getSymbolTable() const {
550     if (SymbolTable16)
551       return reinterpret_cast<uintptr_t>(SymbolTable16);
552     if (SymbolTable32)
553       return reinterpret_cast<uintptr_t>(SymbolTable32);
554     return uintptr_t(0);
555   }
556   uint16_t getMachine() const {
557     if (COFFHeader)
558       return COFFHeader->Machine;
559     if (COFFBigObjHeader)
560       return COFFBigObjHeader->Machine;
561     llvm_unreachable("no COFF header!");
562   }
563   uint16_t getSizeOfOptionalHeader() const {
564     if (COFFHeader)
565       return COFFHeader->isImportLibrary() ? 0
566                                            : COFFHeader->SizeOfOptionalHeader;
567     // bigobj doesn't have this field.
568     if (COFFBigObjHeader)
569       return 0;
570     llvm_unreachable("no COFF header!");
571   }
572   uint16_t getCharacteristics() const {
573     if (COFFHeader)
574       return COFFHeader->isImportLibrary() ? 0 : COFFHeader->Characteristics;
575     // bigobj doesn't have characteristics to speak of,
576     // editbin will silently lie to you if you attempt to set any.
577     if (COFFBigObjHeader)
578       return 0;
579     llvm_unreachable("no COFF header!");
580   }
581   uint32_t getTimeDateStamp() const {
582     if (COFFHeader)
583       return COFFHeader->TimeDateStamp;
584     if (COFFBigObjHeader)
585       return COFFBigObjHeader->TimeDateStamp;
586     llvm_unreachable("no COFF header!");
587   }
588   uint32_t getNumberOfSections() const {
589     if (COFFHeader)
590       return COFFHeader->isImportLibrary() ? 0 : COFFHeader->NumberOfSections;
591     if (COFFBigObjHeader)
592       return COFFBigObjHeader->NumberOfSections;
593     llvm_unreachable("no COFF header!");
594   }
595   uint32_t getPointerToSymbolTable() const {
596     if (COFFHeader)
597       return COFFHeader->isImportLibrary() ? 0
598                                            : COFFHeader->PointerToSymbolTable;
599     if (COFFBigObjHeader)
600       return COFFBigObjHeader->PointerToSymbolTable;
601     llvm_unreachable("no COFF header!");
602   }
603   uint32_t getNumberOfSymbols() const {
604     if (COFFHeader)
605       return COFFHeader->isImportLibrary() ? 0 : COFFHeader->NumberOfSymbols;
606     if (COFFBigObjHeader)
607       return COFFBigObjHeader->NumberOfSymbols;
608     llvm_unreachable("no COFF header!");
609   }
610 protected:
611   void moveSymbolNext(DataRefImpl &Symb) const override;
612   std::error_code getSymbolName(DataRefImpl Symb,
613                                 StringRef &Res) const override;
614   std::error_code getSymbolAddress(DataRefImpl Symb,
615                                    uint64_t &Res) const override;
616   uint64_t getSymbolSize(DataRefImpl Symb) const override;
617   uint32_t getSymbolFlags(DataRefImpl Symb) const override;
618   std::error_code getSymbolType(DataRefImpl Symb,
619                                 SymbolRef::Type &Res) const override;
620   std::error_code getSymbolSection(DataRefImpl Symb,
621                                    section_iterator &Res) const override;
622   void moveSectionNext(DataRefImpl &Sec) const override;
623   std::error_code getSectionName(DataRefImpl Sec,
624                                  StringRef &Res) const override;
625   uint64_t getSectionAddress(DataRefImpl Sec) const override;
626   uint64_t getSectionSize(DataRefImpl Sec) const override;
627   std::error_code getSectionContents(DataRefImpl Sec,
628                                      StringRef &Res) const override;
629   uint64_t getSectionAlignment(DataRefImpl Sec) const override;
630   bool isSectionText(DataRefImpl Sec) const override;
631   bool isSectionData(DataRefImpl Sec) const override;
632   bool isSectionBSS(DataRefImpl Sec) const override;
633   bool isSectionVirtual(DataRefImpl Sec) const override;
634   bool sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb) const override;
635   relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
636   relocation_iterator section_rel_end(DataRefImpl Sec) const override;
637
638   void moveRelocationNext(DataRefImpl &Rel) const override;
639   std::error_code getRelocationAddress(DataRefImpl Rel,
640                                        uint64_t &Res) const override;
641   std::error_code getRelocationOffset(DataRefImpl Rel,
642                                       uint64_t &Res) const override;
643   symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override;
644   section_iterator getRelocationSection(DataRefImpl Rel) const override;
645   std::error_code getRelocationType(DataRefImpl Rel,
646                                     uint64_t &Res) const override;
647   std::error_code
648   getRelocationTypeName(DataRefImpl Rel,
649                         SmallVectorImpl<char> &Result) const override;
650 public:
651   COFFObjectFile(MemoryBufferRef Object, std::error_code &EC);
652   basic_symbol_iterator symbol_begin_impl() const override;
653   basic_symbol_iterator symbol_end_impl() const override;
654   section_iterator section_begin() const override;
655   section_iterator section_end() const override;
656
657   const coff_section *getCOFFSection(const SectionRef &Section) const;
658   COFFSymbolRef getCOFFSymbol(const DataRefImpl &Ref) const;
659   COFFSymbolRef getCOFFSymbol(const SymbolRef &Symbol) const;
660   const coff_relocation *getCOFFRelocation(const RelocationRef &Reloc) const;
661
662   uint8_t getBytesInAddress() const override;
663   StringRef getFileFormatName() const override;
664   unsigned getArch() const override;
665
666   import_directory_iterator import_directory_begin() const;
667   import_directory_iterator import_directory_end() const;
668   delay_import_directory_iterator delay_import_directory_begin() const;
669   delay_import_directory_iterator delay_import_directory_end() const;
670   export_directory_iterator export_directory_begin() const;
671   export_directory_iterator export_directory_end() const;
672   base_reloc_iterator base_reloc_begin() const;
673   base_reloc_iterator base_reloc_end() const;
674
675   iterator_range<import_directory_iterator> import_directories() const;
676   iterator_range<delay_import_directory_iterator>
677       delay_import_directories() const;
678   iterator_range<export_directory_iterator> export_directories() const;
679   iterator_range<base_reloc_iterator> base_relocs() const;
680
681   const dos_header *getDOSHeader() const {
682     if (!PE32Header && !PE32PlusHeader)
683       return nullptr;
684     return reinterpret_cast<const dos_header *>(base());
685   }
686   std::error_code getPE32Header(const pe32_header *&Res) const;
687   std::error_code getPE32PlusHeader(const pe32plus_header *&Res) const;
688   std::error_code getDataDirectory(uint32_t index,
689                                    const data_directory *&Res) const;
690   std::error_code getSection(int32_t index, const coff_section *&Res) const;
691   template <typename coff_symbol_type>
692   std::error_code getSymbol(uint32_t Index,
693                             const coff_symbol_type *&Res) const {
694     if (Index >= getNumberOfSymbols())
695       return object_error::parse_failed;
696
697     Res = reinterpret_cast<coff_symbol_type *>(getSymbolTable()) + Index;
698     return std::error_code();
699   }
700   ErrorOr<COFFSymbolRef> getSymbol(uint32_t index) const {
701     if (SymbolTable16) {
702       const coff_symbol16 *Symb = nullptr;
703       if (std::error_code EC = getSymbol(index, Symb))
704         return EC;
705       return COFFSymbolRef(Symb);
706     }
707     if (SymbolTable32) {
708       const coff_symbol32 *Symb = nullptr;
709       if (std::error_code EC = getSymbol(index, Symb))
710         return EC;
711       return COFFSymbolRef(Symb);
712     }
713     return object_error::parse_failed;
714   }
715   template <typename T>
716   std::error_code getAuxSymbol(uint32_t index, const T *&Res) const {
717     ErrorOr<COFFSymbolRef> s = getSymbol(index);
718     if (std::error_code EC = s.getError())
719       return EC;
720     Res = reinterpret_cast<const T *>(s->getRawPtr());
721     return std::error_code();
722   }
723   std::error_code getSymbolName(COFFSymbolRef Symbol, StringRef &Res) const;
724
725   ArrayRef<uint8_t> getSymbolAuxData(COFFSymbolRef Symbol) const;
726
727   size_t getSymbolTableEntrySize() const {
728     if (COFFHeader)
729       return sizeof(coff_symbol16);
730     if (COFFBigObjHeader)
731       return sizeof(coff_symbol32);
732     llvm_unreachable("null symbol table pointer!");
733   }
734
735   std::error_code getSectionName(const coff_section *Sec, StringRef &Res) const;
736   uint64_t getSectionSize(const coff_section *Sec) const;
737   std::error_code getSectionContents(const coff_section *Sec,
738                                      ArrayRef<uint8_t> &Res) const;
739
740   std::error_code getVaPtr(uint64_t VA, uintptr_t &Res) const;
741   std::error_code getRvaPtr(uint32_t Rva, uintptr_t &Res) const;
742   std::error_code getHintName(uint32_t Rva, uint16_t &Hint,
743                               StringRef &Name) const;
744
745   bool isRelocatableObject() const override;
746   bool is64() const { return PE32PlusHeader; }
747
748   static inline bool classof(const Binary *v) { return v->isCOFF(); }
749 };
750
751 // The iterator for the import directory table.
752 class ImportDirectoryEntryRef {
753 public:
754   ImportDirectoryEntryRef() : OwningObject(nullptr) {}
755   ImportDirectoryEntryRef(const import_directory_table_entry *Table, uint32_t I,
756                           const COFFObjectFile *Owner)
757       : ImportTable(Table), Index(I), OwningObject(Owner) {}
758
759   bool operator==(const ImportDirectoryEntryRef &Other) const;
760   void moveNext();
761
762   imported_symbol_iterator imported_symbol_begin() const;
763   imported_symbol_iterator imported_symbol_end() const;
764   iterator_range<imported_symbol_iterator> imported_symbols() const;
765
766   std::error_code getName(StringRef &Result) const;
767   std::error_code getImportLookupTableRVA(uint32_t &Result) const;
768   std::error_code getImportAddressTableRVA(uint32_t &Result) const;
769
770   std::error_code
771   getImportTableEntry(const import_directory_table_entry *&Result) const;
772
773   std::error_code
774   getImportLookupEntry(const import_lookup_table_entry32 *&Result) const;
775
776 private:
777   const import_directory_table_entry *ImportTable;
778   uint32_t Index;
779   const COFFObjectFile *OwningObject;
780 };
781
782 class DelayImportDirectoryEntryRef {
783 public:
784   DelayImportDirectoryEntryRef() : OwningObject(nullptr) {}
785   DelayImportDirectoryEntryRef(const delay_import_directory_table_entry *T,
786                                uint32_t I, const COFFObjectFile *Owner)
787       : Table(T), Index(I), OwningObject(Owner) {}
788
789   bool operator==(const DelayImportDirectoryEntryRef &Other) const;
790   void moveNext();
791
792   imported_symbol_iterator imported_symbol_begin() const;
793   imported_symbol_iterator imported_symbol_end() const;
794   iterator_range<imported_symbol_iterator> imported_symbols() const;
795
796   std::error_code getName(StringRef &Result) const;
797   std::error_code getDelayImportTable(
798       const delay_import_directory_table_entry *&Result) const;
799   std::error_code getImportAddress(int AddrIndex, uint64_t &Result) const;
800
801 private:
802   const delay_import_directory_table_entry *Table;
803   uint32_t Index;
804   const COFFObjectFile *OwningObject;
805 };
806
807 // The iterator for the export directory table entry.
808 class ExportDirectoryEntryRef {
809 public:
810   ExportDirectoryEntryRef() : OwningObject(nullptr) {}
811   ExportDirectoryEntryRef(const export_directory_table_entry *Table, uint32_t I,
812                           const COFFObjectFile *Owner)
813       : ExportTable(Table), Index(I), OwningObject(Owner) {}
814
815   bool operator==(const ExportDirectoryEntryRef &Other) const;
816   void moveNext();
817
818   std::error_code getDllName(StringRef &Result) const;
819   std::error_code getOrdinalBase(uint32_t &Result) const;
820   std::error_code getOrdinal(uint32_t &Result) const;
821   std::error_code getExportRVA(uint32_t &Result) const;
822   std::error_code getSymbolName(StringRef &Result) const;
823
824 private:
825   const export_directory_table_entry *ExportTable;
826   uint32_t Index;
827   const COFFObjectFile *OwningObject;
828 };
829
830 class ImportedSymbolRef {
831 public:
832   ImportedSymbolRef() : OwningObject(nullptr) {}
833   ImportedSymbolRef(const import_lookup_table_entry32 *Entry, uint32_t I,
834                     const COFFObjectFile *Owner)
835       : Entry32(Entry), Entry64(nullptr), Index(I), OwningObject(Owner) {}
836   ImportedSymbolRef(const import_lookup_table_entry64 *Entry, uint32_t I,
837                     const COFFObjectFile *Owner)
838       : Entry32(nullptr), Entry64(Entry), Index(I), OwningObject(Owner) {}
839
840   bool operator==(const ImportedSymbolRef &Other) const;
841   void moveNext();
842
843   std::error_code getSymbolName(StringRef &Result) const;
844   std::error_code getOrdinal(uint16_t &Result) const;
845
846 private:
847   const import_lookup_table_entry32 *Entry32;
848   const import_lookup_table_entry64 *Entry64;
849   uint32_t Index;
850   const COFFObjectFile *OwningObject;
851 };
852
853 class BaseRelocRef {
854 public:
855   BaseRelocRef() : OwningObject(nullptr) {}
856   BaseRelocRef(const coff_base_reloc_block_header *Header,
857                const COFFObjectFile *Owner)
858       : Header(Header), Index(0), OwningObject(Owner) {}
859
860   bool operator==(const BaseRelocRef &Other) const;
861   void moveNext();
862
863   std::error_code getType(uint8_t &Type) const;
864   std::error_code getRVA(uint32_t &Result) const;
865
866 private:
867   const coff_base_reloc_block_header *Header;
868   uint32_t Index;
869   const COFFObjectFile *OwningObject;
870 };
871
872 } // end namespace object
873 } // end namespace llvm
874
875 #endif