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