Simplify another function that doesn't fail.
[oota-llvm.git] / include / llvm / Object / ObjectFile.h
1 //===- ObjectFile.h - File format independent object file -------*- 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 a file format independent ObjectFile class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_OBJECTFILE_H
15 #define LLVM_OBJECT_OBJECTFILE_H
16
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/Object/SymbolicFile.h"
19 #include "llvm/Support/DataTypes.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/FileSystem.h"
22 #include "llvm/Support/MemoryBuffer.h"
23 #include <cstring>
24 #include <vector>
25
26 namespace llvm {
27 namespace object {
28
29 class ObjectFile;
30 class COFFObjectFile;
31 class MachOObjectFile;
32
33 class SymbolRef;
34 class symbol_iterator;
35 class SectionRef;
36 typedef content_iterator<SectionRef> section_iterator;
37
38 /// RelocationRef - This is a value type class that represents a single
39 /// relocation in the list of relocations in the object file.
40 class RelocationRef {
41   DataRefImpl RelocationPimpl;
42   const ObjectFile *OwningObject;
43
44 public:
45   RelocationRef() : OwningObject(nullptr) { }
46
47   RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
48
49   bool operator==(const RelocationRef &Other) const;
50
51   void moveNext();
52
53   std::error_code getAddress(uint64_t &Result) const;
54   std::error_code getOffset(uint64_t &Result) const;
55   symbol_iterator getSymbol() const;
56   section_iterator getSection() const;
57   std::error_code getType(uint64_t &Result) const;
58
59   /// @brief Indicates whether this relocation should hidden when listing
60   /// relocations, usually because it is the trailing part of a multipart
61   /// relocation that will be printed as part of the leading relocation.
62   std::error_code getHidden(bool &Result) const;
63
64   /// @brief Get a string that represents the type of this relocation.
65   ///
66   /// This is for display purposes only.
67   std::error_code getTypeName(SmallVectorImpl<char> &Result) const;
68
69   /// @brief Get a string that represents the calculation of the value of this
70   ///        relocation.
71   ///
72   /// This is for display purposes only.
73   std::error_code getValueString(SmallVectorImpl<char> &Result) const;
74
75   DataRefImpl getRawDataRefImpl() const;
76   const ObjectFile *getObjectFile() const;
77 };
78 typedef content_iterator<RelocationRef> relocation_iterator;
79
80 /// SectionRef - This is a value type class that represents a single section in
81 /// the list of sections in the object file.
82 class SectionRef {
83   friend class SymbolRef;
84   DataRefImpl SectionPimpl;
85   const ObjectFile *OwningObject;
86
87 public:
88   SectionRef() : OwningObject(nullptr) { }
89
90   SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
91
92   bool operator==(const SectionRef &Other) const;
93   bool operator!=(const SectionRef &Other) const;
94   bool operator<(const SectionRef &Other) const;
95
96   void moveNext();
97
98   std::error_code getName(StringRef &Result) const;
99   uint64_t getAddress() const;
100   uint64_t getSize() const;
101   std::error_code getContents(StringRef &Result) const;
102
103   /// @brief Get the alignment of this section as the actual value (not log 2).
104   uint64_t getAlignment() const;
105
106   bool isText() const;
107   bool isData() const;
108   bool isBSS() const;
109   bool isVirtual() const;
110
111   bool containsSymbol(SymbolRef S) const;
112
113   relocation_iterator relocation_begin() const;
114   relocation_iterator relocation_end() const;
115   iterator_range<relocation_iterator> relocations() const {
116     return iterator_range<relocation_iterator>(relocation_begin(),
117                                                relocation_end());
118   }
119   section_iterator getRelocatedSection() const;
120
121   DataRefImpl getRawDataRefImpl() const;
122   const ObjectFile *getObject() const;
123 };
124
125 /// SymbolRef - This is a value type class that represents a single symbol in
126 /// the list of symbols in the object file.
127 class SymbolRef : public BasicSymbolRef {
128   friend class SectionRef;
129
130 public:
131   SymbolRef() : BasicSymbolRef() {}
132
133   enum Type {
134     ST_Unknown, // Type not specified
135     ST_Data,
136     ST_Debug,
137     ST_File,
138     ST_Function,
139     ST_Other
140   };
141
142   SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
143
144   std::error_code getName(StringRef &Result) const;
145   /// Returns the symbol virtual address (i.e. address at which it will be
146   /// mapped).
147   std::error_code getAddress(uint64_t &Result) const;
148   /// @brief Get the alignment of this symbol as the actual value (not log 2).
149   uint32_t getAlignment() const;
150   uint64_t getSize() const;
151   std::error_code getType(SymbolRef::Type &Result) const;
152   std::error_code getOther(uint8_t &Result) const;
153
154   /// @brief Get section this symbol is defined in reference to. Result is
155   /// end_sections() if it is undefined or is an absolute symbol.
156   std::error_code getSection(section_iterator &Result) const;
157
158   const ObjectFile *getObject() const;
159 };
160
161 class symbol_iterator : public basic_symbol_iterator {
162 public:
163   symbol_iterator(SymbolRef Sym) : basic_symbol_iterator(Sym) {}
164   symbol_iterator(const basic_symbol_iterator &B)
165       : basic_symbol_iterator(SymbolRef(B->getRawDataRefImpl(),
166                                         cast<ObjectFile>(B->getObject()))) {}
167
168   const SymbolRef *operator->() const {
169     const BasicSymbolRef &P = basic_symbol_iterator::operator *();
170     return static_cast<const SymbolRef*>(&P);
171   }
172
173   const SymbolRef &operator*() const {
174     const BasicSymbolRef &P = basic_symbol_iterator::operator *();
175     return static_cast<const SymbolRef&>(P);
176   }
177 };
178
179 /// ObjectFile - This class is the base class for all object file types.
180 /// Concrete instances of this object are created by createObjectFile, which
181 /// figures out which type to create.
182 class ObjectFile : public SymbolicFile {
183   virtual void anchor();
184   ObjectFile() = delete;
185   ObjectFile(const ObjectFile &other) = delete;
186
187 protected:
188   ObjectFile(unsigned int Type, MemoryBufferRef Source);
189
190   const uint8_t *base() const {
191     return reinterpret_cast<const uint8_t *>(Data.getBufferStart());
192   }
193
194   // These functions are for SymbolRef to call internally. The main goal of
195   // this is to allow SymbolRef::SymbolPimpl to point directly to the symbol
196   // entry in the memory mapped object file. SymbolPimpl cannot contain any
197   // virtual functions because then it could not point into the memory mapped
198   // file.
199   //
200   // Implementations assume that the DataRefImpl is valid and has not been
201   // modified externally. It's UB otherwise.
202   friend class SymbolRef;
203   virtual std::error_code getSymbolName(DataRefImpl Symb,
204                                         StringRef &Res) const = 0;
205   std::error_code printSymbolName(raw_ostream &OS,
206                                   DataRefImpl Symb) const override;
207   virtual std::error_code getSymbolAddress(DataRefImpl Symb,
208                                            uint64_t &Res) const = 0;
209   virtual uint32_t getSymbolAlignment(DataRefImpl Symb) const;
210   virtual uint64_t getSymbolSize(DataRefImpl Symb) const = 0;
211   virtual std::error_code getSymbolType(DataRefImpl Symb,
212                                         SymbolRef::Type &Res) const = 0;
213   virtual std::error_code getSymbolSection(DataRefImpl Symb,
214                                            section_iterator &Res) const = 0;
215   virtual std::error_code getSymbolOther(DataRefImpl Symb,
216                                          uint8_t &Res) const {
217     return object_error::invalid_file_type;
218   }
219
220   // Same as above for SectionRef.
221   friend class SectionRef;
222   virtual void moveSectionNext(DataRefImpl &Sec) const = 0;
223   virtual std::error_code getSectionName(DataRefImpl Sec,
224                                          StringRef &Res) const = 0;
225   virtual uint64_t getSectionAddress(DataRefImpl Sec) const = 0;
226   virtual uint64_t getSectionSize(DataRefImpl Sec) const = 0;
227   virtual std::error_code getSectionContents(DataRefImpl Sec,
228                                              StringRef &Res) const = 0;
229   virtual uint64_t getSectionAlignment(DataRefImpl Sec) const = 0;
230   virtual bool isSectionText(DataRefImpl Sec) const = 0;
231   virtual bool isSectionData(DataRefImpl Sec) const = 0;
232   virtual bool isSectionBSS(DataRefImpl Sec) const = 0;
233   // A section is 'virtual' if its contents aren't present in the object image.
234   virtual bool isSectionVirtual(DataRefImpl Sec) const = 0;
235   virtual bool sectionContainsSymbol(DataRefImpl Sec,
236                                      DataRefImpl Symb) const = 0;
237   virtual relocation_iterator section_rel_begin(DataRefImpl Sec) const = 0;
238   virtual relocation_iterator section_rel_end(DataRefImpl Sec) const = 0;
239   virtual section_iterator getRelocatedSection(DataRefImpl Sec) const;
240
241   // Same as above for RelocationRef.
242   friend class RelocationRef;
243   virtual void moveRelocationNext(DataRefImpl &Rel) const = 0;
244   virtual std::error_code getRelocationAddress(DataRefImpl Rel,
245                                                uint64_t &Res) const = 0;
246   virtual std::error_code getRelocationOffset(DataRefImpl Rel,
247                                               uint64_t &Res) const = 0;
248   virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const = 0;
249   virtual section_iterator getRelocationSection(DataRefImpl Rel) const = 0;
250   virtual std::error_code getRelocationType(DataRefImpl Rel,
251                                             uint64_t &Res) const = 0;
252   virtual std::error_code
253   getRelocationTypeName(DataRefImpl Rel,
254                         SmallVectorImpl<char> &Result) const = 0;
255   virtual std::error_code
256   getRelocationValueString(DataRefImpl Rel,
257                            SmallVectorImpl<char> &Result) const = 0;
258   virtual std::error_code getRelocationHidden(DataRefImpl Rel,
259                                               bool &Result) const {
260     Result = false;
261     return object_error::success;
262   }
263
264 public:
265   typedef iterator_range<symbol_iterator> symbol_iterator_range;
266   symbol_iterator_range symbols() const {
267     return symbol_iterator_range(symbol_begin(), symbol_end());
268   }
269
270   virtual section_iterator section_begin() const = 0;
271   virtual section_iterator section_end() const = 0;
272
273   typedef iterator_range<section_iterator> section_iterator_range;
274   section_iterator_range sections() const {
275     return section_iterator_range(section_begin(), section_end());
276   }
277
278   /// @brief The number of bytes used to represent an address in this object
279   ///        file format.
280   virtual uint8_t getBytesInAddress() const = 0;
281
282   virtual StringRef getFileFormatName() const = 0;
283   virtual /* Triple::ArchType */ unsigned getArch() const = 0;
284
285   /// Returns platform-specific object flags, if any.
286   virtual std::error_code getPlatformFlags(unsigned &Result) const {
287     Result = 0;
288     return object_error::invalid_file_type;
289   }
290
291   /// True if this is a relocatable object (.o/.obj).
292   virtual bool isRelocatableObject() const = 0;
293
294   /// @returns Pointer to ObjectFile subclass to handle this type of object.
295   /// @param ObjectPath The path to the object file. ObjectPath.isObject must
296   ///        return true.
297   /// @brief Create ObjectFile from path.
298   static ErrorOr<OwningBinary<ObjectFile>>
299   createObjectFile(StringRef ObjectPath);
300
301   static ErrorOr<std::unique_ptr<ObjectFile>>
302   createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type);
303   static ErrorOr<std::unique_ptr<ObjectFile>>
304   createObjectFile(MemoryBufferRef Object) {
305     return createObjectFile(Object, sys::fs::file_magic::unknown);
306   }
307
308
309   static inline bool classof(const Binary *v) {
310     return v->isObject();
311   }
312
313   static ErrorOr<std::unique_ptr<COFFObjectFile>>
314   createCOFFObjectFile(MemoryBufferRef Object);
315
316   static ErrorOr<std::unique_ptr<ObjectFile>>
317   createELFObjectFile(MemoryBufferRef Object);
318
319   static ErrorOr<std::unique_ptr<MachOObjectFile>>
320   createMachOObjectFile(MemoryBufferRef Object);
321 };
322
323 // Inline function definitions.
324 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
325     : BasicSymbolRef(SymbolP, Owner) {}
326
327 inline std::error_code SymbolRef::getName(StringRef &Result) const {
328   return getObject()->getSymbolName(getRawDataRefImpl(), Result);
329 }
330
331 inline std::error_code SymbolRef::getAddress(uint64_t &Result) const {
332   return getObject()->getSymbolAddress(getRawDataRefImpl(), Result);
333 }
334
335 inline uint32_t SymbolRef::getAlignment() const {
336   return getObject()->getSymbolAlignment(getRawDataRefImpl());
337 }
338
339 inline uint64_t SymbolRef::getSize() const {
340   return getObject()->getSymbolSize(getRawDataRefImpl());
341 }
342
343 inline std::error_code SymbolRef::getSection(section_iterator &Result) const {
344   return getObject()->getSymbolSection(getRawDataRefImpl(), Result);
345 }
346
347 inline std::error_code SymbolRef::getType(SymbolRef::Type &Result) const {
348   return getObject()->getSymbolType(getRawDataRefImpl(), Result);
349 }
350
351 inline std::error_code SymbolRef::getOther(uint8_t &Result) const {
352   return getObject()->getSymbolOther(getRawDataRefImpl(), Result);
353 }
354
355 inline const ObjectFile *SymbolRef::getObject() const {
356   const SymbolicFile *O = BasicSymbolRef::getObject();
357   return cast<ObjectFile>(O);
358 }
359
360
361 /// SectionRef
362 inline SectionRef::SectionRef(DataRefImpl SectionP,
363                               const ObjectFile *Owner)
364   : SectionPimpl(SectionP)
365   , OwningObject(Owner) {}
366
367 inline bool SectionRef::operator==(const SectionRef &Other) const {
368   return SectionPimpl == Other.SectionPimpl;
369 }
370
371 inline bool SectionRef::operator!=(const SectionRef &Other) const {
372   return SectionPimpl != Other.SectionPimpl;
373 }
374
375 inline bool SectionRef::operator<(const SectionRef &Other) const {
376   return SectionPimpl < Other.SectionPimpl;
377 }
378
379 inline void SectionRef::moveNext() {
380   return OwningObject->moveSectionNext(SectionPimpl);
381 }
382
383 inline std::error_code SectionRef::getName(StringRef &Result) const {
384   return OwningObject->getSectionName(SectionPimpl, Result);
385 }
386
387 inline uint64_t SectionRef::getAddress() const {
388   return OwningObject->getSectionAddress(SectionPimpl);
389 }
390
391 inline uint64_t SectionRef::getSize() const {
392   return OwningObject->getSectionSize(SectionPimpl);
393 }
394
395 inline std::error_code SectionRef::getContents(StringRef &Result) const {
396   return OwningObject->getSectionContents(SectionPimpl, Result);
397 }
398
399 inline uint64_t SectionRef::getAlignment() const {
400   return OwningObject->getSectionAlignment(SectionPimpl);
401 }
402
403 inline bool SectionRef::isText() const {
404   return OwningObject->isSectionText(SectionPimpl);
405 }
406
407 inline bool SectionRef::isData() const {
408   return OwningObject->isSectionData(SectionPimpl);
409 }
410
411 inline bool SectionRef::isBSS() const {
412   return OwningObject->isSectionBSS(SectionPimpl);
413 }
414
415 inline bool SectionRef::isVirtual() const {
416   return OwningObject->isSectionVirtual(SectionPimpl);
417 }
418
419 inline bool SectionRef::containsSymbol(SymbolRef S) const {
420   return OwningObject->sectionContainsSymbol(SectionPimpl,
421                                              S.getRawDataRefImpl());
422 }
423
424 inline relocation_iterator SectionRef::relocation_begin() const {
425   return OwningObject->section_rel_begin(SectionPimpl);
426 }
427
428 inline relocation_iterator SectionRef::relocation_end() const {
429   return OwningObject->section_rel_end(SectionPimpl);
430 }
431
432 inline section_iterator SectionRef::getRelocatedSection() const {
433   return OwningObject->getRelocatedSection(SectionPimpl);
434 }
435
436 inline DataRefImpl SectionRef::getRawDataRefImpl() const {
437   return SectionPimpl;
438 }
439
440 inline const ObjectFile *SectionRef::getObject() const {
441   return OwningObject;
442 }
443
444 /// RelocationRef
445 inline RelocationRef::RelocationRef(DataRefImpl RelocationP,
446                               const ObjectFile *Owner)
447   : RelocationPimpl(RelocationP)
448   , OwningObject(Owner) {}
449
450 inline bool RelocationRef::operator==(const RelocationRef &Other) const {
451   return RelocationPimpl == Other.RelocationPimpl;
452 }
453
454 inline void RelocationRef::moveNext() {
455   return OwningObject->moveRelocationNext(RelocationPimpl);
456 }
457
458 inline std::error_code RelocationRef::getAddress(uint64_t &Result) const {
459   return OwningObject->getRelocationAddress(RelocationPimpl, Result);
460 }
461
462 inline std::error_code RelocationRef::getOffset(uint64_t &Result) const {
463   return OwningObject->getRelocationOffset(RelocationPimpl, Result);
464 }
465
466 inline symbol_iterator RelocationRef::getSymbol() const {
467   return OwningObject->getRelocationSymbol(RelocationPimpl);
468 }
469
470 inline section_iterator RelocationRef::getSection() const {
471   return OwningObject->getRelocationSection(RelocationPimpl);
472 }
473
474 inline std::error_code RelocationRef::getType(uint64_t &Result) const {
475   return OwningObject->getRelocationType(RelocationPimpl, Result);
476 }
477
478 inline std::error_code
479 RelocationRef::getTypeName(SmallVectorImpl<char> &Result) const {
480   return OwningObject->getRelocationTypeName(RelocationPimpl, Result);
481 }
482
483 inline std::error_code
484 RelocationRef::getValueString(SmallVectorImpl<char> &Result) const {
485   return OwningObject->getRelocationValueString(RelocationPimpl, Result);
486 }
487
488 inline std::error_code RelocationRef::getHidden(bool &Result) const {
489   return OwningObject->getRelocationHidden(RelocationPimpl, Result);
490 }
491
492 inline DataRefImpl RelocationRef::getRawDataRefImpl() const {
493   return RelocationPimpl;
494 }
495
496 inline const ObjectFile *RelocationRef::getObjectFile() const {
497   return OwningObject;
498 }
499
500
501 } // end namespace object
502 } // end namespace llvm
503
504 #endif