Added versions of ReadPtr that takes an explicit SerializedPtrID. This allows
[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   std::vector<SerializedPtrID> BatchIDVec;
130   
131   //===----------------------------------------------------------===//
132   // Public Interface.
133   //===----------------------------------------------------------===//
134   
135 public:  
136   Deserializer(BitstreamReader& stream);
137   ~Deserializer();
138
139   uint64_t ReadInt();
140   int64_t ReadSInt();
141   SerializedPtrID ReadPtrID() { return (SerializedPtrID) ReadInt(); }
142   
143   
144   bool ReadBool() {
145     return ReadInt() ? true : false;
146   }
147
148   template <typename T>
149   inline T& Read(T& X) {
150     SerializeTrait<T>::Read(*this,X);
151     return X;
152   }
153
154   template <typename T>
155   inline T* Materialize() {
156     return SerializeTrait<T>::Materialize(*this);
157   }
158   
159   char* ReadCStr(char* cstr = NULL, unsigned MaxLen=0, bool isNullTerm=true);
160   void ReadCStr(std::vector<char>& buff, bool isNullTerm=false);
161
162   template <typename T>
163   inline T* ReadOwnedPtr(bool AutoRegister = true) {
164     SerializedPtrID PtrID = ReadPtrID();    
165
166     if (!PtrID)
167       return NULL;
168     
169     T* x = SerializeTrait<T>::Materialize(*this);
170
171     if (AutoRegister)
172       RegisterPtr(PtrID,x);
173     
174     return x;
175   }
176   
177   template <typename T>
178   inline void ReadOwnedPtr(T*& Ptr, bool AutoRegister = true) {
179     Ptr = ReadOwnedPtr<T>(AutoRegister);
180   }
181   
182   template <typename T1, typename T2>
183   void BatchReadOwnedPtrs(T1*& P1, T2*& P2,
184                           bool A1=true, bool A2=true) {
185
186     SerializedPtrID ID1 = ReadPtrID();
187     SerializedPtrID ID2 = ReadPtrID();
188
189     P1 = (ID1) ? SerializeTrait<T1>::Materialize(*this) : NULL;
190     if (ID1 && A1) RegisterPtr(ID1,P1);
191
192     P2 = (ID2) ? SerializeTrait<T2>::Materialize(*this) : NULL;
193     if (ID2 && A2) RegisterPtr(ID2,P2);
194   }
195
196   template <typename T1, typename T2, typename T3>
197   void BatchReadOwnedPtrs(T1*& P1, T2*& P2, T3*& P3,
198                           bool A1=true, bool A2=true, bool A3=true) {
199     
200     SerializedPtrID ID1 = ReadPtrID();
201     SerializedPtrID ID2 = ReadPtrID();
202     SerializedPtrID ID3 = ReadPtrID();
203     
204     P1 = (ID1) ? SerializeTrait<T1>::Materialize(*this) : NULL;
205     if (ID1 && A1) RegisterPtr(ID1,P1);    
206     
207     P2 = (ID2) ? SerializeTrait<T2>::Materialize(*this) : NULL;
208     if (ID2 && A2) RegisterPtr(ID2,P2);
209     
210     P3 = (ID3) ? SerializeTrait<T2>::Materialize(*this) : NULL;
211     if (ID3 && A3) RegisterPtr(ID3,P3);
212   }
213   
214   template <typename T>
215   void BatchReadOwnedPtrs(unsigned NumPtrs, T** Ptrs, bool AutoRegister=true) {
216     BatchIDVec.clear();
217     
218     for (unsigned i = 0; i < NumPtrs; ++i)
219       BatchIDVec.push_back(ReadPtrID());
220     
221     for (unsigned i = 0; i < NumPtrs; ++i) {
222       SerializedPtrID& PtrID = BatchIDVec[i];
223       
224       T* p = PtrID ? SerializeTrait<T>::Materialize(*this) : NULL;
225       
226       if (PtrID && AutoRegister)
227         RegisterPtr(PtrID,p);
228       
229       Ptrs[i] = p;
230     }
231   }    
232   
233   template <typename T>
234   void ReadPtr(T*& PtrRef, bool AllowBackpatch = true) {
235     ReadUIntPtr(reinterpret_cast<uintptr_t&>(PtrRef), AllowBackpatch);
236   }
237   
238   template <typename T>
239   void ReadPtr(const T*& PtrRef, bool AllowBackpatch = true) {
240     ReadPtr(const_cast<T*&>(PtrRef), AllowBackpatch);
241   }
242   
243   
244   template <typename T>
245   void ReadPtr(T*& PtrRef, const SerializedPtrID& PtrID, bool AllowBackpatch = true) {
246     ReadUIntPtr(reinterpret_cast<uintptr_t&>(PtrRef), PtrID, AllowBackpatch);
247   }
248   
249   template <typename T>
250   void ReadPtr(const T*& PtrRef, const SerializedPtrID& PtrID, 
251                bool AllowBackpatch = true) {
252     
253     ReadPtr(const_cast<T*&>(PtrRef), PtrID, AllowBackpatch);
254   }
255   
256   template <typename T>
257   T* ReadPtr() { T* x; ReadPtr<T>(x,false); return x; }
258
259   void ReadUIntPtr(uintptr_t& PtrRef, const SerializedPtrID& PtrID, 
260                    bool AllowBackpatch = true);
261   
262   void ReadUIntPtr(uintptr_t& PtrRef, bool AllowBackpatch = true) {
263     ReadUIntPtr(PtrRef,ReadPtrID(),AllowBackpatch);
264   }
265   
266   template <typename T>
267   T& ReadRef() {
268     T* p = reinterpret_cast<T*>(ReadInternalRefPtr());
269     return *p;
270   }
271
272   void RegisterPtr(const SerializedPtrID& PtrID, const void* Ptr);
273   
274   void RegisterPtr(const void* Ptr) {
275     RegisterPtr(ReadPtrID(),Ptr);
276   }
277   
278   template<typename T>
279   void RegisterRef(const T& x) {
280     RegisterPtr(&x);
281   }
282   
283   template<typename T>
284   void RegisterRef(const SerializedPtrID& PtrID, const T& x) {
285     RegisterPtr(PtrID,&x);
286   }  
287   
288   Location getCurrentBlockLocation();
289   unsigned getCurrentBlockID();
290   unsigned getAbbrevNo();
291   
292   bool FinishedBlock(Location BlockLoc);
293   bool JumpTo(const Location& BlockLoc);
294   void Rewind() { JumpTo(StreamStart); }
295   
296   bool AtEnd();
297   bool inRecord();
298   void SkipBlock();
299   bool SkipToBlock(unsigned BlockID);
300   
301   unsigned getRecordCode();
302   
303   BitstreamReader& getStream() { return Stream; }
304   
305 private:
306   bool AdvanceStream();  
307   void ReadRecord();
308   
309   uintptr_t ReadInternalRefPtr();
310   
311   static inline bool HasFinalPtr(MapTy::value_type& V) {
312     return V.first.hasFinalPtr();
313   }
314   
315   static inline uintptr_t GetFinalPtr(MapTy::value_type& V) {
316     return reinterpret_cast<uintptr_t>(V.second.Ptr);
317   }
318   
319   static inline BPNode* GetBPNode(MapTy::value_type& V) {
320     return V.second.Head;
321   }
322     
323   static inline void SetBPNode(MapTy::value_type& V, BPNode* N) {
324     V.second.Head = N;
325   }
326   
327   void SetPtr(MapTy::value_type& V, const void* P) {
328     V.first.MarkFinal();
329     V.second.SetPtr(FreeList,const_cast<void*>(P));
330   }
331 };
332     
333 } // end namespace llvm
334
335 #endif