xref: /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ObjectFile.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1 //===- ObjectFile.h - File format independent object file -------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file declares a file format independent ObjectFile class.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_OBJECT_OBJECTFILE_H
14 #define LLVM_OBJECT_OBJECTFILE_H
15 
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/ADT/Hashing.h"
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/ADT/iterator_range.h"
20 #include "llvm/BinaryFormat/Magic.h"
21 #include "llvm/BinaryFormat/Swift.h"
22 #include "llvm/Object/Binary.h"
23 #include "llvm/Object/Error.h"
24 #include "llvm/Object/SymbolicFile.h"
25 #include "llvm/Support/Casting.h"
26 #include "llvm/Support/Error.h"
27 #include "llvm/Support/MemoryBufferRef.h"
28 #include "llvm/TargetParser/Triple.h"
29 #include <cassert>
30 #include <cstdint>
31 #include <memory>
32 
33 namespace llvm {
34 
35 class SubtargetFeatures;
36 
37 namespace object {
38 
39 class COFFObjectFile;
40 class MachOObjectFile;
41 class ObjectFile;
42 class SectionRef;
43 class SymbolRef;
44 class symbol_iterator;
45 class WasmObjectFile;
46 
47 using section_iterator = content_iterator<SectionRef>;
48 
49 typedef std::function<bool(const SectionRef &)> SectionFilterPredicate;
50 /// This is a value type class that represents a single relocation in the list
51 /// of relocations in the object file.
52 class RelocationRef {
53   DataRefImpl RelocationPimpl;
54   const ObjectFile *OwningObject = nullptr;
55 
56 public:
57   RelocationRef() = default;
58   RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
59 
60   bool operator==(const RelocationRef &Other) const;
61 
62   void moveNext();
63 
64   uint64_t getOffset() const;
65   symbol_iterator getSymbol() const;
66   uint64_t getType() const;
67 
68   /// Get a string that represents the type of this relocation.
69   ///
70   /// This is for display purposes only.
71   void getTypeName(SmallVectorImpl<char> &Result) const;
72 
73   DataRefImpl getRawDataRefImpl() const;
74   const ObjectFile *getObject() const;
75 };
76 
77 using relocation_iterator = content_iterator<RelocationRef>;
78 
79 /// This is a value type class that represents a single section in the list of
80 /// sections in the object file.
81 class SectionRef {
82   friend class SymbolRef;
83 
84   DataRefImpl SectionPimpl;
85   const ObjectFile *OwningObject = nullptr;
86 
87 public:
88   SectionRef() = default;
89   SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
90 
91   bool operator==(const SectionRef &Other) const;
92   bool operator!=(const SectionRef &Other) const;
93   bool operator<(const SectionRef &Other) const;
94 
95   void moveNext();
96 
97   Expected<StringRef> getName() const;
98   uint64_t getAddress() const;
99   uint64_t getIndex() const;
100   uint64_t getSize() const;
101   Expected<StringRef> getContents() const;
102 
103   /// Get the alignment of this section.
104   Align getAlignment() const;
105 
106   bool isCompressed() const;
107   /// Whether this section contains instructions.
108   bool isText() const;
109   /// Whether this section contains data, not instructions.
110   bool isData() const;
111   /// Whether this section contains BSS uninitialized data.
112   bool isBSS() const;
113   bool isVirtual() const;
114   bool isBitcode() const;
115   bool isStripped() const;
116 
117   /// Whether this section will be placed in the text segment, according to the
118   /// Berkeley size format. This is true if the section is allocatable, and
119   /// contains either code or readonly data.
120   bool isBerkeleyText() const;
121   /// Whether this section will be placed in the data segment, according to the
122   /// Berkeley size format. This is true if the section is allocatable and
123   /// contains data (e.g. PROGBITS), but is not text.
124   bool isBerkeleyData() const;
125 
126   /// Whether this section is a debug section.
127   bool isDebugSection() const;
128 
129   bool containsSymbol(SymbolRef S) const;
130 
131   relocation_iterator relocation_begin() const;
132   relocation_iterator relocation_end() const;
relocations()133   iterator_range<relocation_iterator> relocations() const {
134     return make_range(relocation_begin(), relocation_end());
135   }
136 
137   /// Returns the related section if this section contains relocations. The
138   /// returned section may or may not have applied its relocations.
139   Expected<section_iterator> getRelocatedSection() const;
140 
141   DataRefImpl getRawDataRefImpl() const;
142   const ObjectFile *getObject() const;
143 };
144 
145 struct SectionedAddress {
146   const static uint64_t UndefSection = UINT64_MAX;
147 
148   uint64_t Address = 0;
149   uint64_t SectionIndex = UndefSection;
150 };
151 
152 inline bool operator<(const SectionedAddress &LHS,
153                       const SectionedAddress &RHS) {
154   return std::tie(LHS.SectionIndex, LHS.Address) <
155          std::tie(RHS.SectionIndex, RHS.Address);
156 }
157 
158 inline bool operator==(const SectionedAddress &LHS,
159                        const SectionedAddress &RHS) {
160   return std::tie(LHS.SectionIndex, LHS.Address) ==
161          std::tie(RHS.SectionIndex, RHS.Address);
162 }
163 
164 raw_ostream &operator<<(raw_ostream &OS, const SectionedAddress &Addr);
165 
166 /// This is a value type class that represents a single symbol in the list of
167 /// symbols in the object file.
168 class SymbolRef : public BasicSymbolRef {
169   friend class SectionRef;
170 
171 public:
172   enum Type {
173     ST_Unknown, // Type not specified
174     ST_Other,
175     ST_Data,
176     ST_Debug,
177     ST_File,
178     ST_Function,
179   };
180 
181   SymbolRef() = default;
182   SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
SymbolRef(const BasicSymbolRef & B)183   SymbolRef(const BasicSymbolRef &B) : BasicSymbolRef(B) {
184     assert(isa<ObjectFile>(BasicSymbolRef::getObject()));
185   }
186 
187   Expected<StringRef> getName() const;
188   /// Returns the symbol virtual address (i.e. address at which it will be
189   /// mapped).
190   Expected<uint64_t> getAddress() const;
191 
192   /// Return the value of the symbol depending on the object this can be an
193   /// offset or a virtual address.
194   Expected<uint64_t> getValue() const;
195 
196   /// Get the alignment of this symbol as the actual value (not log 2).
197   uint32_t getAlignment() const;
198   uint64_t getCommonSize() const;
199   Expected<SymbolRef::Type> getType() const;
200 
201   /// Get section this symbol is defined in reference to. Result is
202   /// end_sections() if it is undefined or is an absolute symbol.
203   Expected<section_iterator> getSection() const;
204 
205   const ObjectFile *getObject() const;
206 };
207 
208 class symbol_iterator : public basic_symbol_iterator {
209 public:
symbol_iterator(SymbolRef Sym)210   symbol_iterator(SymbolRef Sym) : basic_symbol_iterator(Sym) {}
symbol_iterator(const basic_symbol_iterator & B)211   symbol_iterator(const basic_symbol_iterator &B)
212       : basic_symbol_iterator(SymbolRef(B->getRawDataRefImpl(),
213                                         cast<ObjectFile>(B->getObject()))) {}
214 
215   const SymbolRef *operator->() const {
216     const BasicSymbolRef &P = basic_symbol_iterator::operator *();
217     return static_cast<const SymbolRef*>(&P);
218   }
219 
220   const SymbolRef &operator*() const {
221     const BasicSymbolRef &P = basic_symbol_iterator::operator *();
222     return static_cast<const SymbolRef&>(P);
223   }
224 };
225 
226 /// This class is the base class for all object file types. Concrete instances
227 /// of this object are created by createObjectFile, which figures out which type
228 /// to create.
229 class ObjectFile : public SymbolicFile {
230   virtual void anchor();
231 
232 protected:
233   ObjectFile(unsigned int Type, MemoryBufferRef Source);
234 
base()235   const uint8_t *base() const {
236     return reinterpret_cast<const uint8_t *>(Data.getBufferStart());
237   }
238 
239   // These functions are for SymbolRef to call internally. The main goal of
240   // this is to allow SymbolRef::SymbolPimpl to point directly to the symbol
241   // entry in the memory mapped object file. SymbolPimpl cannot contain any
242   // virtual functions because then it could not point into the memory mapped
243   // file.
244   //
245   // Implementations assume that the DataRefImpl is valid and has not been
246   // modified externally. It's UB otherwise.
247   friend class SymbolRef;
248 
249   virtual Expected<StringRef> getSymbolName(DataRefImpl Symb) const = 0;
250   Error printSymbolName(raw_ostream &OS,
251                                   DataRefImpl Symb) const override;
252   virtual Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const = 0;
253   virtual uint64_t getSymbolValueImpl(DataRefImpl Symb) const = 0;
254   virtual uint32_t getSymbolAlignment(DataRefImpl Symb) const;
255   virtual uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const = 0;
256   virtual Expected<SymbolRef::Type> getSymbolType(DataRefImpl Symb) const = 0;
257   virtual Expected<section_iterator>
258   getSymbolSection(DataRefImpl Symb) const = 0;
259 
260   // Same as above for SectionRef.
261   friend class SectionRef;
262 
263   virtual void moveSectionNext(DataRefImpl &Sec) const = 0;
264   virtual Expected<StringRef> getSectionName(DataRefImpl Sec) const = 0;
265   virtual uint64_t getSectionAddress(DataRefImpl Sec) const = 0;
266   virtual uint64_t getSectionIndex(DataRefImpl Sec) const = 0;
267   virtual uint64_t getSectionSize(DataRefImpl Sec) const = 0;
268   virtual Expected<ArrayRef<uint8_t>>
269   getSectionContents(DataRefImpl Sec) const = 0;
270   virtual uint64_t getSectionAlignment(DataRefImpl Sec) const = 0;
271   virtual bool isSectionCompressed(DataRefImpl Sec) const = 0;
272   virtual bool isSectionText(DataRefImpl Sec) const = 0;
273   virtual bool isSectionData(DataRefImpl Sec) const = 0;
274   virtual bool isSectionBSS(DataRefImpl Sec) const = 0;
275   // A section is 'virtual' if its contents aren't present in the object image.
276   virtual bool isSectionVirtual(DataRefImpl Sec) const = 0;
277   virtual bool isSectionBitcode(DataRefImpl Sec) const;
278   virtual bool isSectionStripped(DataRefImpl Sec) const;
279   virtual bool isBerkeleyText(DataRefImpl Sec) const;
280   virtual bool isBerkeleyData(DataRefImpl Sec) const;
281   virtual bool isDebugSection(DataRefImpl Sec) const;
282   virtual relocation_iterator section_rel_begin(DataRefImpl Sec) const = 0;
283   virtual relocation_iterator section_rel_end(DataRefImpl Sec) const = 0;
284   virtual Expected<section_iterator> getRelocatedSection(DataRefImpl Sec) const;
285 
286   // Same as above for RelocationRef.
287   friend class RelocationRef;
288   virtual void moveRelocationNext(DataRefImpl &Rel) const = 0;
289   virtual uint64_t getRelocationOffset(DataRefImpl Rel) const = 0;
290   virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const = 0;
291   virtual uint64_t getRelocationType(DataRefImpl Rel) const = 0;
292   virtual void getRelocationTypeName(DataRefImpl Rel,
293                                      SmallVectorImpl<char> &Result) const = 0;
294 
295   virtual llvm::binaryformat::Swift5ReflectionSectionKind
mapReflectionSectionNameToEnumValue(StringRef SectionName)296   mapReflectionSectionNameToEnumValue(StringRef SectionName) const {
297     return llvm::binaryformat::Swift5ReflectionSectionKind::unknown;
298   };
299 
300   Expected<uint64_t> getSymbolValue(DataRefImpl Symb) const;
301 
302 public:
303   ObjectFile() = delete;
304   ObjectFile(const ObjectFile &other) = delete;
305   ObjectFile &operator=(const ObjectFile &other) = delete;
306 
getCommonSymbolSize(DataRefImpl Symb)307   uint64_t getCommonSymbolSize(DataRefImpl Symb) const {
308     Expected<uint32_t> SymbolFlagsOrErr = getSymbolFlags(Symb);
309     if (!SymbolFlagsOrErr)
310       // TODO: Actually report errors helpfully.
311       report_fatal_error(SymbolFlagsOrErr.takeError());
312     assert(*SymbolFlagsOrErr & SymbolRef::SF_Common);
313     return getCommonSymbolSizeImpl(Symb);
314   }
315 
dynamic_relocation_sections()316   virtual std::vector<SectionRef> dynamic_relocation_sections() const {
317     return std::vector<SectionRef>();
318   }
319 
320   using symbol_iterator_range = iterator_range<symbol_iterator>;
symbols()321   symbol_iterator_range symbols() const {
322     return symbol_iterator_range(symbol_begin(), symbol_end());
323   }
324 
325   virtual section_iterator section_begin() const = 0;
326   virtual section_iterator section_end() const = 0;
327 
328   using section_iterator_range = iterator_range<section_iterator>;
sections()329   section_iterator_range sections() const {
330     return section_iterator_range(section_begin(), section_end());
331   }
332 
333   virtual bool hasDebugInfo() const;
334 
335   /// The number of bytes used to represent an address in this object
336   ///        file format.
337   virtual uint8_t getBytesInAddress() const = 0;
338 
339   virtual StringRef getFileFormatName() const = 0;
340   virtual Triple::ArchType getArch() const = 0;
getOS()341   virtual Triple::OSType getOS() const { return Triple::UnknownOS; }
342   virtual Expected<SubtargetFeatures> getFeatures() const = 0;
tryGetCPUName()343   virtual std::optional<StringRef> tryGetCPUName() const {
344     return std::nullopt;
345   };
setARMSubArch(Triple & TheTriple)346   virtual void setARMSubArch(Triple &TheTriple) const { }
getStartAddress()347   virtual Expected<uint64_t> getStartAddress() const {
348     return errorCodeToError(object_error::parse_failed);
349   };
350 
351   /// Create a triple from the data in this object file.
352   Triple makeTriple() const;
353 
354   /// Maps a debug section name to a standard DWARF section name.
mapDebugSectionName(StringRef Name)355   virtual StringRef mapDebugSectionName(StringRef Name) const { return Name; }
356 
357   /// True if this is a relocatable object (.o/.obj).
358   virtual bool isRelocatableObject() const = 0;
359 
360   /// True if the reflection section can be stripped by the linker.
361   bool isReflectionSectionStrippable(
362       llvm::binaryformat::Swift5ReflectionSectionKind ReflectionSectionKind)
363       const;
364 
365   /// @returns Pointer to ObjectFile subclass to handle this type of object.
366   /// @param ObjectPath The path to the object file. ObjectPath.isObject must
367   ///        return true.
368   /// Create ObjectFile from path.
369   static Expected<OwningBinary<ObjectFile>>
370   createObjectFile(StringRef ObjectPath);
371 
372   static Expected<std::unique_ptr<ObjectFile>>
373   createObjectFile(MemoryBufferRef Object, llvm::file_magic Type,
374                    bool InitContent = true);
375   static Expected<std::unique_ptr<ObjectFile>>
createObjectFile(MemoryBufferRef Object)376   createObjectFile(MemoryBufferRef Object) {
377     return createObjectFile(Object, llvm::file_magic::unknown);
378   }
379 
classof(const Binary * v)380   static bool classof(const Binary *v) {
381     return v->isObject();
382   }
383 
384   static Expected<std::unique_ptr<COFFObjectFile>>
385   createCOFFObjectFile(MemoryBufferRef Object);
386 
387   static Expected<std::unique_ptr<ObjectFile>>
388   createXCOFFObjectFile(MemoryBufferRef Object, unsigned FileType);
389 
390   static Expected<std::unique_ptr<ObjectFile>>
391   createELFObjectFile(MemoryBufferRef Object, bool InitContent = true);
392 
393   static Expected<std::unique_ptr<MachOObjectFile>>
394   createMachOObjectFile(MemoryBufferRef Object, uint32_t UniversalCputype = 0,
395                         uint32_t UniversalIndex = 0,
396                         size_t MachOFilesetEntryOffset = 0);
397 
398   static Expected<std::unique_ptr<ObjectFile>>
399   createGOFFObjectFile(MemoryBufferRef Object);
400 
401   static Expected<std::unique_ptr<WasmObjectFile>>
402   createWasmObjectFile(MemoryBufferRef Object);
403 };
404 
405 /// A filtered iterator for SectionRefs that skips sections based on some given
406 /// predicate.
407 class SectionFilterIterator {
408 public:
SectionFilterIterator(SectionFilterPredicate Pred,const section_iterator & Begin,const section_iterator & End)409   SectionFilterIterator(SectionFilterPredicate Pred,
410                         const section_iterator &Begin,
411                         const section_iterator &End)
412       : Predicate(std::move(Pred)), Iterator(Begin), End(End) {
413     scanPredicate();
414   }
415   const SectionRef &operator*() const { return *Iterator; }
416   SectionFilterIterator &operator++() {
417     ++Iterator;
418     scanPredicate();
419     return *this;
420   }
421   bool operator!=(const SectionFilterIterator &Other) const {
422     return Iterator != Other.Iterator;
423   }
424 
425 private:
scanPredicate()426   void scanPredicate() {
427     while (Iterator != End && !Predicate(*Iterator)) {
428       ++Iterator;
429     }
430   }
431   SectionFilterPredicate Predicate;
432   section_iterator Iterator;
433   section_iterator End;
434 };
435 
436 /// Creates an iterator range of SectionFilterIterators for a given Object and
437 /// predicate.
438 class SectionFilter {
439 public:
SectionFilter(SectionFilterPredicate Pred,const ObjectFile & Obj)440   SectionFilter(SectionFilterPredicate Pred, const ObjectFile &Obj)
441       : Predicate(std::move(Pred)), Object(Obj) {}
begin()442   SectionFilterIterator begin() {
443     return SectionFilterIterator(Predicate, Object.section_begin(),
444                                  Object.section_end());
445   }
end()446   SectionFilterIterator end() {
447     return SectionFilterIterator(Predicate, Object.section_end(),
448                                  Object.section_end());
449   }
450 
451 private:
452   SectionFilterPredicate Predicate;
453   const ObjectFile &Object;
454 };
455 
456 // Inline function definitions.
SymbolRef(DataRefImpl SymbolP,const ObjectFile * Owner)457 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
458     : BasicSymbolRef(SymbolP, Owner) {}
459 
getName()460 inline Expected<StringRef> SymbolRef::getName() const {
461   return getObject()->getSymbolName(getRawDataRefImpl());
462 }
463 
getAddress()464 inline Expected<uint64_t> SymbolRef::getAddress() const {
465   return getObject()->getSymbolAddress(getRawDataRefImpl());
466 }
467 
getValue()468 inline Expected<uint64_t> SymbolRef::getValue() const {
469   return getObject()->getSymbolValue(getRawDataRefImpl());
470 }
471 
getAlignment()472 inline uint32_t SymbolRef::getAlignment() const {
473   return getObject()->getSymbolAlignment(getRawDataRefImpl());
474 }
475 
getCommonSize()476 inline uint64_t SymbolRef::getCommonSize() const {
477   return getObject()->getCommonSymbolSize(getRawDataRefImpl());
478 }
479 
getSection()480 inline Expected<section_iterator> SymbolRef::getSection() const {
481   return getObject()->getSymbolSection(getRawDataRefImpl());
482 }
483 
getType()484 inline Expected<SymbolRef::Type> SymbolRef::getType() const {
485   return getObject()->getSymbolType(getRawDataRefImpl());
486 }
487 
getObject()488 inline const ObjectFile *SymbolRef::getObject() const {
489   const SymbolicFile *O = BasicSymbolRef::getObject();
490   return cast<ObjectFile>(O);
491 }
492 
493 /// SectionRef
SectionRef(DataRefImpl SectionP,const ObjectFile * Owner)494 inline SectionRef::SectionRef(DataRefImpl SectionP,
495                               const ObjectFile *Owner)
496   : SectionPimpl(SectionP)
497   , OwningObject(Owner) {}
498 
499 inline bool SectionRef::operator==(const SectionRef &Other) const {
500   return OwningObject == Other.OwningObject &&
501          SectionPimpl == Other.SectionPimpl;
502 }
503 
504 inline bool SectionRef::operator!=(const SectionRef &Other) const {
505   return !(*this == Other);
506 }
507 
508 inline bool SectionRef::operator<(const SectionRef &Other) const {
509   assert(OwningObject == Other.OwningObject);
510   return SectionPimpl < Other.SectionPimpl;
511 }
512 
moveNext()513 inline void SectionRef::moveNext() {
514   return OwningObject->moveSectionNext(SectionPimpl);
515 }
516 
getName()517 inline Expected<StringRef> SectionRef::getName() const {
518   return OwningObject->getSectionName(SectionPimpl);
519 }
520 
getAddress()521 inline uint64_t SectionRef::getAddress() const {
522   return OwningObject->getSectionAddress(SectionPimpl);
523 }
524 
getIndex()525 inline uint64_t SectionRef::getIndex() const {
526   return OwningObject->getSectionIndex(SectionPimpl);
527 }
528 
getSize()529 inline uint64_t SectionRef::getSize() const {
530   return OwningObject->getSectionSize(SectionPimpl);
531 }
532 
getContents()533 inline Expected<StringRef> SectionRef::getContents() const {
534   Expected<ArrayRef<uint8_t>> Res =
535       OwningObject->getSectionContents(SectionPimpl);
536   if (!Res)
537     return Res.takeError();
538   return StringRef(reinterpret_cast<const char *>(Res->data()), Res->size());
539 }
540 
getAlignment()541 inline Align SectionRef::getAlignment() const {
542   return MaybeAlign(OwningObject->getSectionAlignment(SectionPimpl))
543       .valueOrOne();
544 }
545 
isCompressed()546 inline bool SectionRef::isCompressed() const {
547   return OwningObject->isSectionCompressed(SectionPimpl);
548 }
549 
isText()550 inline bool SectionRef::isText() const {
551   return OwningObject->isSectionText(SectionPimpl);
552 }
553 
isData()554 inline bool SectionRef::isData() const {
555   return OwningObject->isSectionData(SectionPimpl);
556 }
557 
isBSS()558 inline bool SectionRef::isBSS() const {
559   return OwningObject->isSectionBSS(SectionPimpl);
560 }
561 
isVirtual()562 inline bool SectionRef::isVirtual() const {
563   return OwningObject->isSectionVirtual(SectionPimpl);
564 }
565 
isBitcode()566 inline bool SectionRef::isBitcode() const {
567   return OwningObject->isSectionBitcode(SectionPimpl);
568 }
569 
isStripped()570 inline bool SectionRef::isStripped() const {
571   return OwningObject->isSectionStripped(SectionPimpl);
572 }
573 
isBerkeleyText()574 inline bool SectionRef::isBerkeleyText() const {
575   return OwningObject->isBerkeleyText(SectionPimpl);
576 }
577 
isBerkeleyData()578 inline bool SectionRef::isBerkeleyData() const {
579   return OwningObject->isBerkeleyData(SectionPimpl);
580 }
581 
isDebugSection()582 inline bool SectionRef::isDebugSection() const {
583   return OwningObject->isDebugSection(SectionPimpl);
584 }
585 
relocation_begin()586 inline relocation_iterator SectionRef::relocation_begin() const {
587   return OwningObject->section_rel_begin(SectionPimpl);
588 }
589 
relocation_end()590 inline relocation_iterator SectionRef::relocation_end() const {
591   return OwningObject->section_rel_end(SectionPimpl);
592 }
593 
getRelocatedSection()594 inline Expected<section_iterator> SectionRef::getRelocatedSection() const {
595   return OwningObject->getRelocatedSection(SectionPimpl);
596 }
597 
getRawDataRefImpl()598 inline DataRefImpl SectionRef::getRawDataRefImpl() const {
599   return SectionPimpl;
600 }
601 
getObject()602 inline const ObjectFile *SectionRef::getObject() const {
603   return OwningObject;
604 }
605 
606 /// RelocationRef
RelocationRef(DataRefImpl RelocationP,const ObjectFile * Owner)607 inline RelocationRef::RelocationRef(DataRefImpl RelocationP,
608                               const ObjectFile *Owner)
609   : RelocationPimpl(RelocationP)
610   , OwningObject(Owner) {}
611 
612 inline bool RelocationRef::operator==(const RelocationRef &Other) const {
613   return RelocationPimpl == Other.RelocationPimpl;
614 }
615 
moveNext()616 inline void RelocationRef::moveNext() {
617   return OwningObject->moveRelocationNext(RelocationPimpl);
618 }
619 
getOffset()620 inline uint64_t RelocationRef::getOffset() const {
621   return OwningObject->getRelocationOffset(RelocationPimpl);
622 }
623 
getSymbol()624 inline symbol_iterator RelocationRef::getSymbol() const {
625   return OwningObject->getRelocationSymbol(RelocationPimpl);
626 }
627 
getType()628 inline uint64_t RelocationRef::getType() const {
629   return OwningObject->getRelocationType(RelocationPimpl);
630 }
631 
getTypeName(SmallVectorImpl<char> & Result)632 inline void RelocationRef::getTypeName(SmallVectorImpl<char> &Result) const {
633   return OwningObject->getRelocationTypeName(RelocationPimpl, Result);
634 }
635 
getRawDataRefImpl()636 inline DataRefImpl RelocationRef::getRawDataRefImpl() const {
637   return RelocationPimpl;
638 }
639 
getObject()640 inline const ObjectFile *RelocationRef::getObject() const {
641   return OwningObject;
642 }
643 
644 } // end namespace object
645 
646 template <> struct DenseMapInfo<object::SectionRef> {
647   static bool isEqual(const object::SectionRef &A,
648                       const object::SectionRef &B) {
649     return A == B;
650   }
651   static object::SectionRef getEmptyKey() {
652     return object::SectionRef({}, nullptr);
653   }
654   static object::SectionRef getTombstoneKey() {
655     object::DataRefImpl TS;
656     TS.p = (uintptr_t)-1;
657     return object::SectionRef(TS, nullptr);
658   }
659   static unsigned getHashValue(const object::SectionRef &Sec) {
660     object::DataRefImpl Raw = Sec.getRawDataRefImpl();
661     return hash_combine(Raw.p, Raw.d.a, Raw.d.b);
662   }
663 };
664 
665 } // end namespace llvm
666 
667 #endif // LLVM_OBJECT_OBJECTFILE_H
668