8a9be99199ff39fae24705b67354b65004e95697
[oota-llvm.git] / include / llvm / Bitcode / Deserialize.h
1 //=- Deserialize.h - Generic Object Deserialization from Bitcode --*- C++ -*-=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Ted Kremenek and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interface for generic object deserialization from
11 // LLVM bitcode.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_BITCODE_SERIALIZE_INPUT
16 #define LLVM_BITCODE_SERIALIZE_INPUT
17
18 #include "llvm/Bitcode/BitstreamReader.h"
19 #include "llvm/Bitcode/Serialization.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/Support/Allocator.h"
23 #include "llvm/Support/DataTypes.h"
24 #include <vector>
25
26 namespace llvm {
27   
28 class Deserializer {  
29
30   //===----------------------------------------------------------===//
31   // Internal type definitions.
32   //===----------------------------------------------------------===//
33   
34   struct BPNode {
35     BPNode* Next;
36     uintptr_t& PtrRef;
37     
38     BPNode(BPNode* n, uintptr_t& pref) 
39       : Next(n), PtrRef(pref) {
40         PtrRef = 0;
41       }
42   };
43   
44   struct BPEntry { 
45     union { BPNode* Head; void* Ptr; };
46     
47     BPEntry() : Head(NULL) {}
48     
49     static inline bool isPod() { return true; }
50     
51     void SetPtr(BPNode*& FreeList, void* P);    
52   };  
53   
54   class BPKey {
55     unsigned Raw;
56     
57   public:
58     BPKey(SerializedPtrID PtrId) : Raw(PtrId << 1) { assert (PtrId > 0); }
59     BPKey(unsigned code, unsigned) : Raw(code) {}
60     
61     void MarkFinal() { Raw |= 0x1; }
62     bool hasFinalPtr() const { return Raw & 0x1 ? true : false; }
63     SerializedPtrID getID() const { return Raw >> 1; }
64     
65     static inline BPKey getEmptyKey() { return BPKey(0,0); }
66     static inline BPKey getTombstoneKey() { return BPKey(1,0); }
67     static inline unsigned getHashValue(const BPKey& K) { return K.Raw & ~0x1; }
68
69     static bool isEqual(const BPKey& K1, const BPKey& K2) {
70       return (K1.Raw ^ K2.Raw) & ~0x1 ? false : true;
71     }
72     
73     static bool isPod() { return true; }
74   };
75   
76   typedef llvm::DenseMap<BPKey,BPEntry,BPKey,BPEntry> MapTy;
77
78   //===----------------------------------------------------------===//
79   // Publicly visible types.
80   //===----------------------------------------------------------===//
81   
82 public:  
83   struct Location {
84     uint64_t BitNo;
85     unsigned BlockID;
86     unsigned NumWords;
87     
88     Location(uint64_t bit, unsigned bid, unsigned words) 
89     : BitNo(bit), BlockID(bid), NumWords(words) {}
90     
91     Location() : BitNo(0), BlockID(0), NumWords(0) {}
92
93     Location& operator=(Location& RHS) {
94       BitNo = RHS.BitNo;
95       BlockID = RHS.BlockID;
96       NumWords = RHS.NumWords;
97       return *this;
98     }
99     
100     bool operator==(const Location& RHS) const { return BitNo == RHS.BitNo; }    
101     bool operator!=(const Location& RHS) const { return BitNo != RHS.BitNo; }
102     
103     bool contains(const Location& RHS) const {
104       if (RHS.BitNo < BitNo)
105         return false;
106
107       if ((RHS.BitNo - BitNo) >> 5 < NumWords)
108         return true;
109       
110       return false;
111     }
112   };
113   
114   //===----------------------------------------------------------===//
115   // Internal data members.
116   //===----------------------------------------------------------===//
117
118 private:
119   BitstreamReader& Stream;
120   SmallVector<uint64_t,20> Record;
121   unsigned RecIdx;
122   BumpPtrAllocator Allocator;
123   BPNode* FreeList;
124   MapTy BPatchMap;
125   llvm::SmallVector<Location,8> BlockStack;
126   unsigned AbbrevNo;
127   unsigned RecordCode;
128   Location StreamStart;
129   
130   //===----------------------------------------------------------===//
131   // Public Interface.
132   //===----------------------------------------------------------===//
133   
134 public:  
135   Deserializer(BitstreamReader& stream);
136   ~Deserializer();
137
138   uint64_t ReadInt();
139   int64_t ReadSInt();
140   SerializedPtrID ReadPtrID() { return (SerializedPtrID) ReadInt(); }
141   
142   
143   bool ReadBool() {
144     return ReadInt() ? true : false;
145   }
146
147   template <typename T>
148   inline T& Read(T& X) {
149     SerializeTrait<T>::Read(*this,X);
150     return X;
151   }
152
153   template <typename T>
154   inline T* Materialize() {
155     return SerializeTrait<T>::Materialize(*this);
156   }
157   
158   char* ReadCStr(char* cstr = NULL, unsigned MaxLen=0, bool isNullTerm=true);
159   void ReadCStr(std::vector<char>& buff, bool isNullTerm=false);
160
161   template <typename T>
162   inline T* ReadOwnedPtr(bool AutoRegister = true) {
163     SerializedPtrID PtrID = ReadPtrID();    
164
165     if (!PtrID)
166       return NULL;
167     
168     T* x = SerializeTrait<T>::Materialize(*this);
169
170     if (AutoRegister)
171       RegisterPtr(PtrID,x);
172     
173     return x;
174   }
175   
176   template <typename T>
177   inline void ReadOwnedPtr(T*& Ptr, bool AutoRegister = true) {
178     Ptr = ReadOwnedPtr<T>(AutoRegister);
179   }
180   
181   template <typename T1, typename T2>
182   void BatchReadOwnedPtrs(T1*& P1, T2*& P2,
183                           bool A1=true, bool A2=true) {
184
185     SerializedPtrID ID1 = ReadPtrID();
186     SerializedPtrID ID2 = ReadPtrID();
187
188     P1 = (ID1) ? SerializeTrait<T1>::Materialize(*this) : NULL;
189     if (ID1 && A1) RegisterPtr(ID1,P1);
190
191     P2 = (ID2) ? SerializeTrait<T2>::Materialize(*this) : NULL;
192     if (ID2 && A2) RegisterPtr(ID2,P2);
193   }
194
195   template <typename T1, typename T2, typename T3>
196   void BatchReadOwnedPtrs(T1*& P1, T2*& P2, T3*& P3,
197                           bool A1=true, bool A2=true, bool A3=true) {
198     
199     SerializedPtrID ID1 = ReadPtrID();
200     SerializedPtrID ID2 = ReadPtrID();
201     SerializedPtrID ID3 = ReadPtrID();
202     
203     P1 = (ID1) ? SerializeTrait<T1>::Materialize(*this) : NULL;
204     if (ID1 && A1) RegisterPtr(ID1,P1);    
205     
206     P2 = (ID2) ? SerializeTrait<T2>::Materialize(*this) : NULL;
207     if (ID2 && A2) RegisterPtr(ID2,P2);
208     
209     P3 = (ID3) ? SerializeTrait<T2>::Materialize(*this) : NULL;
210     if (ID3 && A3) RegisterPtr(ID3,P3);
211   }
212   
213   template <typename T>
214   void BatchReadOwnedPtrs(unsigned NumPtrs, T** Ptrs, bool AutoRegister=true) {
215     for (unsigned i = 0; i < NumPtrs; ++i)
216       reinterpret_cast<SerializedPtrID&>(Ptrs[i]) = ReadPtrID();
217     
218     for (unsigned i = 0; i < NumPtrs; ++i) {
219       SerializedPtrID PtrID = reinterpret_cast<SerializedPtrID>(Ptrs[i]);
220       T* p = PtrID ? SerializeTrait<T>::Materialize(*this) : NULL;
221       
222       if (PtrID && AutoRegister)
223         RegisterPtr(PtrID,p);
224       
225       Ptrs[i] = p;
226     }
227   }    
228   
229   template <typename T>
230   void ReadPtr(T*& PtrRef, bool AllowBackpatch = true) {
231     ReadUIntPtr(reinterpret_cast<uintptr_t&>(PtrRef), AllowBackpatch);
232   }
233   
234   template <typename T>
235   void ReadPtr(const T*& PtrRef, bool AllowBackpatch = true) {
236     ReadPtr(const_cast<T*&>(PtrRef), AllowBackpatch);
237   }
238   
239   template <typename T>
240   T* ReadPtr() { T* x; ReadPtr<T>(x,false); return x; }
241
242   void ReadUIntPtr(uintptr_t& PtrRef, bool AllowBackpatch = true);
243   
244   template <typename T>
245   T& ReadRef() {
246     T* p = reinterpret_cast<T*>(ReadInternalRefPtr());
247     return *p;
248   }
249
250   void RegisterPtr(SerializedPtrID PtrId, const void* Ptr);
251   
252   void RegisterPtr(const void* Ptr) {
253     RegisterPtr(ReadPtrID(),Ptr);
254   }
255   
256   template<typename T>
257   void RegisterRef(const T& x) {
258     RegisterPtr(&x);
259   }
260   
261   template<typename T>
262   void RegisterRef(SerializedPtrID PtrID, const T& x) {
263     RegisterPtr(PtrID,&x);
264   }  
265   
266   Location getCurrentBlockLocation();
267   unsigned getCurrentBlockID();
268   unsigned getAbbrevNo();
269   
270   bool FinishedBlock(Location BlockLoc);
271   bool JumpTo(const Location& BlockLoc);
272   void Rewind() { JumpTo(StreamStart); }
273   
274   bool AtEnd();
275   bool inRecord();
276   void SkipBlock();
277   bool SkipToBlock(unsigned BlockID);
278   
279   unsigned getRecordCode();
280   
281   BitstreamReader& getStream() { return Stream; }
282   
283 private:
284   bool AdvanceStream();  
285   void ReadRecord();
286   
287   uintptr_t ReadInternalRefPtr();
288   
289   static inline bool HasFinalPtr(MapTy::value_type& V) {
290     return V.first.hasFinalPtr();
291   }
292   
293   static inline uintptr_t GetFinalPtr(MapTy::value_type& V) {
294     return reinterpret_cast<uintptr_t>(V.second.Ptr);
295   }
296   
297   static inline BPNode* GetBPNode(MapTy::value_type& V) {
298     return V.second.Head;
299   }
300     
301   static inline void SetBPNode(MapTy::value_type& V, BPNode* N) {
302     V.second.Head = N;
303   }
304   
305   void SetPtr(MapTy::value_type& V, const void* P) {
306     V.first.MarkFinal();
307     V.second.SetPtr(FreeList,const_cast<void*>(P));
308   }
309 };
310     
311 } // end namespace llvm
312
313 #endif