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