Support for function summary index bitcode sections and files.
[oota-llvm.git] / include / llvm / Object / Binary.h
1 //===- Binary.h - A generic binary 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 the Binary class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_BINARY_H
15 #define LLVM_OBJECT_BINARY_H
16
17 #include "llvm/Object/Error.h"
18 #include "llvm/Support/ErrorOr.h"
19 #include "llvm/Support/FileSystem.h"
20 #include "llvm/Support/MemoryBuffer.h"
21
22 namespace llvm {
23
24 class LLVMContext;
25 class StringRef;
26
27 namespace object {
28
29 class Binary {
30 private:
31   Binary() = delete;
32   Binary(const Binary &other) = delete;
33
34   unsigned int TypeID;
35
36 protected:
37   MemoryBufferRef Data;
38
39   Binary(unsigned int Type, MemoryBufferRef Source);
40
41   enum {
42     ID_Archive,
43     ID_MachOUniversalBinary,
44     ID_COFFImportFile,
45     ID_IR, // LLVM IR
46     ID_FunctionIndex, // Function summary index
47
48     // Object and children.
49     ID_StartObjects,
50     ID_COFF,
51
52     ID_ELF32L, // ELF 32-bit, little endian
53     ID_ELF32B, // ELF 32-bit, big endian
54     ID_ELF64L, // ELF 64-bit, little endian
55     ID_ELF64B, // ELF 64-bit, big endian
56
57     ID_MachO32L, // MachO 32-bit, little endian
58     ID_MachO32B, // MachO 32-bit, big endian
59     ID_MachO64L, // MachO 64-bit, little endian
60     ID_MachO64B, // MachO 64-bit, big endian
61
62     ID_EndObjects
63   };
64
65   static inline unsigned int getELFType(bool isLE, bool is64Bits) {
66     if (isLE)
67       return is64Bits ? ID_ELF64L : ID_ELF32L;
68     else
69       return is64Bits ? ID_ELF64B : ID_ELF32B;
70   }
71
72   static unsigned int getMachOType(bool isLE, bool is64Bits) {
73     if (isLE)
74       return is64Bits ? ID_MachO64L : ID_MachO32L;
75     else
76       return is64Bits ? ID_MachO64B : ID_MachO32B;
77   }
78
79 public:
80   virtual ~Binary();
81
82   StringRef getData() const;
83   StringRef getFileName() const;
84   MemoryBufferRef getMemoryBufferRef() const;
85
86   // Cast methods.
87   unsigned int getType() const { return TypeID; }
88
89   // Convenience methods
90   bool isObject() const {
91     return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
92   }
93
94   bool isSymbolic() const {
95     return isIR() || isObject();
96   }
97
98   bool isArchive() const {
99     return TypeID == ID_Archive;
100   }
101
102   bool isMachOUniversalBinary() const {
103     return TypeID == ID_MachOUniversalBinary;
104   }
105
106   bool isELF() const {
107     return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
108   }
109
110   bool isMachO() const {
111     return TypeID >= ID_MachO32L && TypeID <= ID_MachO64B;
112   }
113
114   bool isCOFF() const {
115     return TypeID == ID_COFF;
116   }
117
118   bool isCOFFImportFile() const {
119     return TypeID == ID_COFFImportFile;
120   }
121
122   bool isIR() const {
123     return TypeID == ID_IR;
124   }
125
126   bool isFunctionIndex() const {
127     return TypeID == ID_FunctionIndex;
128   }
129
130   bool isLittleEndian() const {
131     return !(TypeID == ID_ELF32B || TypeID == ID_ELF64B ||
132              TypeID == ID_MachO32B || TypeID == ID_MachO64B);
133   }
134 };
135
136 /// @brief Create a Binary from Source, autodetecting the file type.
137 ///
138 /// @param Source The data to create the Binary from.
139 ErrorOr<std::unique_ptr<Binary>> createBinary(MemoryBufferRef Source,
140                                               LLVMContext *Context = nullptr);
141
142 template <typename T> class OwningBinary {
143   std::unique_ptr<T> Bin;
144   std::unique_ptr<MemoryBuffer> Buf;
145
146 public:
147   OwningBinary();
148   OwningBinary(std::unique_ptr<T> Bin, std::unique_ptr<MemoryBuffer> Buf);
149   OwningBinary(OwningBinary<T>&& Other);
150   OwningBinary<T> &operator=(OwningBinary<T> &&Other);
151
152   std::pair<std::unique_ptr<T>, std::unique_ptr<MemoryBuffer>> takeBinary();
153
154   T* getBinary();
155   const T* getBinary() const;
156 };
157
158 template <typename T>
159 OwningBinary<T>::OwningBinary(std::unique_ptr<T> Bin,
160                               std::unique_ptr<MemoryBuffer> Buf)
161     : Bin(std::move(Bin)), Buf(std::move(Buf)) {}
162
163 template <typename T> OwningBinary<T>::OwningBinary() {}
164
165 template <typename T>
166 OwningBinary<T>::OwningBinary(OwningBinary &&Other)
167     : Bin(std::move(Other.Bin)), Buf(std::move(Other.Buf)) {}
168
169 template <typename T>
170 OwningBinary<T> &OwningBinary<T>::operator=(OwningBinary &&Other) {
171   Bin = std::move(Other.Bin);
172   Buf = std::move(Other.Buf);
173   return *this;
174 }
175
176 template <typename T>
177 std::pair<std::unique_ptr<T>, std::unique_ptr<MemoryBuffer>>
178 OwningBinary<T>::takeBinary() {
179   return std::make_pair(std::move(Bin), std::move(Buf));
180 }
181
182 template <typename T> T* OwningBinary<T>::getBinary() {
183   return Bin.get();
184 }
185
186 template <typename T> const T* OwningBinary<T>::getBinary() const {
187   return Bin.get();
188 }
189
190 ErrorOr<OwningBinary<Binary>> createBinary(StringRef Path);
191 }
192 }
193
194 #endif