Simplify interface of 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   std::error_code getSize(uint64_t &Result) 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 std::error_code getSymbolSize(DataRefImpl Symb,
211                                         uint64_t &Res) const = 0;
212   virtual std::error_code getSymbolType(DataRefImpl Symb,
213                                         SymbolRef::Type &Res) const = 0;
214   virtual std::error_code getSymbolSection(DataRefImpl Symb,
215                                            section_iterator &Res) const = 0;
216   virtual std::error_code getSymbolOther(DataRefImpl Symb,
217                                          uint8_t &Res) const {
218     return object_error::invalid_file_type;
219   }
220
221   // Same as above for SectionRef.
222   friend class SectionRef;
223   virtual void moveSectionNext(DataRefImpl &Sec) const = 0;
224   virtual std::error_code getSectionName(DataRefImpl Sec,
225                                          StringRef &Res) const = 0;
226   virtual uint64_t getSectionAddress(DataRefImpl Sec) const = 0;
227   virtual uint64_t getSectionSize(DataRefImpl Sec) const = 0;
228   virtual std::error_code getSectionContents(DataRefImpl Sec,
229                                              StringRef &Res) const = 0;
230   virtual uint64_t getSectionAlignment(DataRefImpl Sec) const = 0;
231   virtual bool isSectionText(DataRefImpl Sec) const = 0;
232   virtual bool isSectionData(DataRefImpl Sec) const = 0;
233   virtual bool isSectionBSS(DataRefImpl Sec) const = 0;
234   // A section is 'virtual' if its contents aren't present in the object image.
235   virtual bool isSectionVirtual(DataRefImpl Sec) const = 0;
236   virtual bool sectionContainsSymbol(DataRefImpl Sec,
237                                      DataRefImpl Symb) const = 0;
238   virtual relocation_iterator section_rel_begin(DataRefImpl Sec) const = 0;
239   virtual relocation_iterator section_rel_end(DataRefImpl Sec) const = 0;
240   virtual section_iterator getRelocatedSection(DataRefImpl Sec) const;
241
242   // Same as above for RelocationRef.
243   friend class RelocationRef;
244   virtual void moveRelocationNext(DataRefImpl &Rel) const = 0;
245   virtual std::error_code getRelocationAddress(DataRefImpl Rel,
246                                                uint64_t &Res) const = 0;
247   virtual std::error_code getRelocationOffset(DataRefImpl Rel,
248                                               uint64_t &Res) const = 0;
249   virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const = 0;
250   virtual section_iterator getRelocationSection(DataRefImpl Rel) const = 0;
251   virtual std::error_code getRelocationType(DataRefImpl Rel,
252                                             uint64_t &Res) const = 0;
253   virtual std::error_code
254   getRelocationTypeName(DataRefImpl Rel,
255                         SmallVectorImpl<char> &Result) const = 0;
256   virtual std::error_code
257   getRelocationValueString(DataRefImpl Rel,
258                            SmallVectorImpl<char> &Result) const = 0;
259   virtual std::error_code getRelocationHidden(DataRefImpl Rel,
260                                               bool &Result) const {
261     Result = false;
262     return object_error::success;
263   }
264
265 public:
266   typedef iterator_range<symbol_iterator> symbol_iterator_range;
267   symbol_iterator_range symbols() const {
268     return symbol_iterator_range(symbol_begin(), symbol_end());
269   }
270
271   virtual section_iterator section_begin() const = 0;
272   virtual section_iterator section_end() const = 0;
273
274   typedef iterator_range<section_iterator> section_iterator_range;
275   section_iterator_range sections() const {
276     return section_iterator_range(section_begin(), section_end());
277   }
278
279   /// @brief The number of bytes used to represent an address in this object
280   ///        file format.
281   virtual uint8_t getBytesInAddress() const = 0;
282
283   virtual StringRef getFileFormatName() const = 0;
284   virtual /* Triple::ArchType */ unsigned getArch() const = 0;
285
286   /// Returns platform-specific object flags, if any.
287   virtual std::error_code getPlatformFlags(unsigned &Result) const {
288     Result = 0;
289     return object_error::invalid_file_type;
290   }
291
292   /// True if this is a relocatable object (.o/.obj).
293   virtual bool isRelocatableObject() const = 0;
294
295   /// @returns Pointer to ObjectFile subclass to handle this type of object.
296   /// @param ObjectPath The path to the object file. ObjectPath.isObject must
297   ///        return true.
298   /// @brief Create ObjectFile from path.
299   static ErrorOr<OwningBinary<ObjectFile>>
300   createObjectFile(StringRef ObjectPath);
301
302   static ErrorOr<std::unique_ptr<ObjectFile>>
303   createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type);
304   static ErrorOr<std::unique_ptr<ObjectFile>>
305   createObjectFile(MemoryBufferRef Object) {
306     return createObjectFile(Object, sys::fs::file_magic::unknown);
307   }
308
309
310   static inline bool classof(const Binary *v) {
311     return v->isObject();
312   }
313
314   static ErrorOr<std::unique_ptr<COFFObjectFile>>
315   createCOFFObjectFile(MemoryBufferRef Object);
316
317   static ErrorOr<std::unique_ptr<ObjectFile>>
318   createELFObjectFile(MemoryBufferRef Object);
319
320   static ErrorOr<std::unique_ptr<MachOObjectFile>>
321   createMachOObjectFile(MemoryBufferRef Object);
322 };
323
324 // Inline function definitions.
325 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
326     : BasicSymbolRef(SymbolP, Owner) {}
327
328 inline std::error_code SymbolRef::getName(StringRef &Result) const {
329   return getObject()->getSymbolName(getRawDataRefImpl(), Result);
330 }
331
332 inline std::error_code SymbolRef::getAddress(uint64_t &Result) const {
333   return getObject()->getSymbolAddress(getRawDataRefImpl(), Result);
334 }
335
336 inline uint32_t SymbolRef::getAlignment() const {
337   return getObject()->getSymbolAlignment(getRawDataRefImpl());
338 }
339
340 inline std::error_code SymbolRef::getSize(uint64_t &Result) const {
341   return getObject()->getSymbolSize(getRawDataRefImpl(), Result);
342 }
343
344 inline std::error_code SymbolRef::getSection(section_iterator &Result) const {
345   return getObject()->getSymbolSection(getRawDataRefImpl(), Result);
346 }
347
348 inline std::error_code SymbolRef::getType(SymbolRef::Type &Result) const {
349   return getObject()->getSymbolType(getRawDataRefImpl(), Result);
350 }
351
352 inline std::error_code SymbolRef::getOther(uint8_t &Result) const {
353   return getObject()->getSymbolOther(getRawDataRefImpl(), Result);
354 }
355
356 inline const ObjectFile *SymbolRef::getObject() const {
357   const SymbolicFile *O = BasicSymbolRef::getObject();
358   return cast<ObjectFile>(O);
359 }
360
361
362 /// SectionRef
363 inline SectionRef::SectionRef(DataRefImpl SectionP,
364                               const ObjectFile *Owner)
365   : SectionPimpl(SectionP)
366   , OwningObject(Owner) {}
367
368 inline bool SectionRef::operator==(const SectionRef &Other) const {
369   return SectionPimpl == Other.SectionPimpl;
370 }
371
372 inline bool SectionRef::operator!=(const SectionRef &Other) const {
373   return SectionPimpl != Other.SectionPimpl;
374 }
375
376 inline bool SectionRef::operator<(const SectionRef &Other) const {
377   return SectionPimpl < Other.SectionPimpl;
378 }
379
380 inline void SectionRef::moveNext() {
381   return OwningObject->moveSectionNext(SectionPimpl);
382 }
383
384 inline std::error_code SectionRef::getName(StringRef &Result) const {
385   return OwningObject->getSectionName(SectionPimpl, Result);
386 }
387
388 inline uint64_t SectionRef::getAddress() const {
389   return OwningObject->getSectionAddress(SectionPimpl);
390 }
391
392 inline uint64_t SectionRef::getSize() const {
393   return OwningObject->getSectionSize(SectionPimpl);
394 }
395
396 inline std::error_code SectionRef::getContents(StringRef &Result) const {
397   return OwningObject->getSectionContents(SectionPimpl, Result);
398 }
399
400 inline uint64_t SectionRef::getAlignment() const {
401   return OwningObject->getSectionAlignment(SectionPimpl);
402 }
403
404 inline bool SectionRef::isText() const {
405   return OwningObject->isSectionText(SectionPimpl);
406 }
407
408 inline bool SectionRef::isData() const {
409   return OwningObject->isSectionData(SectionPimpl);
410 }
411
412 inline bool SectionRef::isBSS() const {
413   return OwningObject->isSectionBSS(SectionPimpl);
414 }
415
416 inline bool SectionRef::isVirtual() const {
417   return OwningObject->isSectionVirtual(SectionPimpl);
418 }
419
420 inline bool SectionRef::containsSymbol(SymbolRef S) const {
421   return OwningObject->sectionContainsSymbol(SectionPimpl,
422                                              S.getRawDataRefImpl());
423 }
424
425 inline relocation_iterator SectionRef::relocation_begin() const {
426   return OwningObject->section_rel_begin(SectionPimpl);
427 }
428
429 inline relocation_iterator SectionRef::relocation_end() const {
430   return OwningObject->section_rel_end(SectionPimpl);
431 }
432
433 inline section_iterator SectionRef::getRelocatedSection() const {
434   return OwningObject->getRelocatedSection(SectionPimpl);
435 }
436
437 inline DataRefImpl SectionRef::getRawDataRefImpl() const {
438   return SectionPimpl;
439 }
440
441 inline const ObjectFile *SectionRef::getObject() const {
442   return OwningObject;
443 }
444
445 /// RelocationRef
446 inline RelocationRef::RelocationRef(DataRefImpl RelocationP,
447                               const ObjectFile *Owner)
448   : RelocationPimpl(RelocationP)
449   , OwningObject(Owner) {}
450
451 inline bool RelocationRef::operator==(const RelocationRef &Other) const {
452   return RelocationPimpl == Other.RelocationPimpl;
453 }
454
455 inline void RelocationRef::moveNext() {
456   return OwningObject->moveRelocationNext(RelocationPimpl);
457 }
458
459 inline std::error_code RelocationRef::getAddress(uint64_t &Result) const {
460   return OwningObject->getRelocationAddress(RelocationPimpl, Result);
461 }
462
463 inline std::error_code RelocationRef::getOffset(uint64_t &Result) const {
464   return OwningObject->getRelocationOffset(RelocationPimpl, Result);
465 }
466
467 inline symbol_iterator RelocationRef::getSymbol() const {
468   return OwningObject->getRelocationSymbol(RelocationPimpl);
469 }
470
471 inline section_iterator RelocationRef::getSection() const {
472   return OwningObject->getRelocationSection(RelocationPimpl);
473 }
474
475 inline std::error_code RelocationRef::getType(uint64_t &Result) const {
476   return OwningObject->getRelocationType(RelocationPimpl, Result);
477 }
478
479 inline std::error_code
480 RelocationRef::getTypeName(SmallVectorImpl<char> &Result) const {
481   return OwningObject->getRelocationTypeName(RelocationPimpl, Result);
482 }
483
484 inline std::error_code
485 RelocationRef::getValueString(SmallVectorImpl<char> &Result) const {
486   return OwningObject->getRelocationValueString(RelocationPimpl, Result);
487 }
488
489 inline std::error_code RelocationRef::getHidden(bool &Result) const {
490   return OwningObject->getRelocationHidden(RelocationPimpl, Result);
491 }
492
493 inline DataRefImpl RelocationRef::getRawDataRefImpl() const {
494   return RelocationPimpl;
495 }
496
497 inline const ObjectFile *RelocationRef::getObjectFile() const {
498   return OwningObject;
499 }
500
501
502 } // end namespace object
503 } // end namespace llvm
504
505 #endif