1 //===- SymbolicFile.h - Interface that only provides symbols ----*- 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 the SymbolicFile interface.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_OBJECT_SYMBOLICFILE_H
15 #define LLVM_OBJECT_SYMBOLICFILE_H
16 
17 #include "llvm/Object/Binary.h"
18 
19 namespace llvm {
20 namespace object {
21 
22 union DataRefImpl {
23   // This entire union should probably be a
24   // char[max(8, sizeof(uintptr_t))] and require the impl to cast.
25   struct {
26     uint32_t a, b;
27   } d;
28   uintptr_t p;
DataRefImpl()29   DataRefImpl() { std::memset(this, 0, sizeof(DataRefImpl)); }
30 };
31 
32 inline bool operator==(const DataRefImpl &a, const DataRefImpl &b) {
33   // Check bitwise identical. This is the only legal way to compare a union w/o
34   // knowing which member is in use.
35   return std::memcmp(&a, &b, sizeof(DataRefImpl)) == 0;
36 }
37 
38 inline bool operator!=(const DataRefImpl &a, const DataRefImpl &b) {
39   return !operator==(a, b);
40 }
41 
42 inline bool operator<(const DataRefImpl &a, const DataRefImpl &b) {
43   // Check bitwise identical. This is the only legal way to compare a union w/o
44   // knowing which member is in use.
45   return std::memcmp(&a, &b, sizeof(DataRefImpl)) < 0;
46 }
47 
48 template <class content_type>
49 class content_iterator
50     : public std::iterator<std::forward_iterator_tag, content_type> {
51   content_type Current;
52 
53 public:
content_iterator(content_type symb)54   content_iterator(content_type symb) : Current(symb) {}
55 
56   const content_type *operator->() const { return &Current; }
57 
58   const content_type &operator*() const { return Current; }
59 
60   bool operator==(const content_iterator &other) const {
61     return Current == other.Current;
62   }
63 
64   bool operator!=(const content_iterator &other) const {
65     return !(*this == other);
66   }
67 
68   content_iterator &operator++() { // preincrement
69     Current.moveNext();
70     return *this;
71   }
72 };
73 
74 class SymbolicFile;
75 
76 /// This is a value type class that represents a single symbol in the list of
77 /// symbols in the object file.
78 class BasicSymbolRef {
79   DataRefImpl SymbolPimpl;
80   const SymbolicFile *OwningObject;
81 
82 public:
83   // FIXME: should we add a SF_Text?
84   enum Flags : unsigned {
85     SF_None = 0,
86     SF_Undefined = 1U << 0,      // Symbol is defined in another object file
87     SF_Global = 1U << 1,         // Global symbol
88     SF_Weak = 1U << 2,           // Weak symbol
89     SF_Absolute = 1U << 3,       // Absolute symbol
90     SF_Common = 1U << 4,         // Symbol has common linkage
91     SF_Indirect = 1U << 5,       // Symbol is an alias to another symbol
92     SF_Exported = 1U << 6,       // Symbol is visible to other DSOs
93     SF_FormatSpecific = 1U << 7, // Specific to the object file format
94                                  // (e.g. section symbols)
95     SF_Thumb = 1U << 8,          // Thumb symbol in a 32-bit ARM binary
96   };
97 
BasicSymbolRef()98   BasicSymbolRef() : OwningObject(nullptr) { }
99   BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
100 
101   bool operator==(const BasicSymbolRef &Other) const;
102   bool operator<(const BasicSymbolRef &Other) const;
103 
104   void moveNext();
105 
106   std::error_code printName(raw_ostream &OS) const;
107 
108   /// Get symbol flags (bitwise OR of SymbolRef::Flags)
109   uint32_t getFlags() const;
110 
111   DataRefImpl getRawDataRefImpl() const;
112   const SymbolicFile *getObject() const;
113 };
114 
115 typedef content_iterator<BasicSymbolRef> basic_symbol_iterator;
116 
117 const uint64_t UnknownAddressOrSize = ~0ULL;
118 
119 class SymbolicFile : public Binary {
120 public:
121   ~SymbolicFile() override;
122   SymbolicFile(unsigned int Type, MemoryBufferRef Source);
123 
124   // virtual interface.
125   virtual void moveSymbolNext(DataRefImpl &Symb) const = 0;
126 
127   virtual std::error_code printSymbolName(raw_ostream &OS,
128                                           DataRefImpl Symb) const = 0;
129 
130   virtual uint32_t getSymbolFlags(DataRefImpl Symb) const = 0;
131 
132   virtual basic_symbol_iterator symbol_begin_impl() const = 0;
133 
134   virtual basic_symbol_iterator symbol_end_impl() const = 0;
135 
136   // convenience wrappers.
symbol_begin()137   basic_symbol_iterator symbol_begin() const {
138     return symbol_begin_impl();
139   }
symbol_end()140   basic_symbol_iterator symbol_end() const {
141     return symbol_end_impl();
142   }
143   typedef iterator_range<basic_symbol_iterator> basic_symbol_iterator_range;
symbols()144   basic_symbol_iterator_range symbols() const {
145     return basic_symbol_iterator_range(symbol_begin(), symbol_end());
146   }
147 
148   // construction aux.
149   static ErrorOr<std::unique_ptr<SymbolicFile>>
150   createSymbolicFile(MemoryBufferRef Object, sys::fs::file_magic Type,
151                      LLVMContext *Context);
152 
153   static ErrorOr<std::unique_ptr<SymbolicFile>>
createSymbolicFile(MemoryBufferRef Object)154   createSymbolicFile(MemoryBufferRef Object) {
155     return createSymbolicFile(Object, sys::fs::file_magic::unknown, nullptr);
156   }
157   static ErrorOr<OwningBinary<SymbolicFile>>
158   createSymbolicFile(StringRef ObjectPath);
159 
classof(const Binary * v)160   static inline bool classof(const Binary *v) {
161     return v->isSymbolic();
162   }
163 };
164 
BasicSymbolRef(DataRefImpl SymbolP,const SymbolicFile * Owner)165 inline BasicSymbolRef::BasicSymbolRef(DataRefImpl SymbolP,
166                                       const SymbolicFile *Owner)
167     : SymbolPimpl(SymbolP), OwningObject(Owner) {}
168 
169 inline bool BasicSymbolRef::operator==(const BasicSymbolRef &Other) const {
170   return SymbolPimpl == Other.SymbolPimpl;
171 }
172 
173 inline bool BasicSymbolRef::operator<(const BasicSymbolRef &Other) const {
174   return SymbolPimpl < Other.SymbolPimpl;
175 }
176 
moveNext()177 inline void BasicSymbolRef::moveNext() {
178   return OwningObject->moveSymbolNext(SymbolPimpl);
179 }
180 
printName(raw_ostream & OS)181 inline std::error_code BasicSymbolRef::printName(raw_ostream &OS) const {
182   return OwningObject->printSymbolName(OS, SymbolPimpl);
183 }
184 
getFlags()185 inline uint32_t BasicSymbolRef::getFlags() const {
186   return OwningObject->getSymbolFlags(SymbolPimpl);
187 }
188 
getRawDataRefImpl()189 inline DataRefImpl BasicSymbolRef::getRawDataRefImpl() const {
190   return SymbolPimpl;
191 }
192 
getObject()193 inline const SymbolicFile *BasicSymbolRef::getObject() const {
194   return OwningObject;
195 }
196 
197 }
198 }
199 
200 #endif
201