9808a152c0bfe3e817f965859d680b1720786c9f
[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(unsigned 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     unsigned 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   // Internal data members.
80   //===----------------------------------------------------------===//
81   
82   BitstreamReader& Stream;
83   SmallVector<uint64_t,10> Record;
84   unsigned RecIdx;
85   BumpPtrAllocator Allocator;
86   BPNode* FreeList;
87   MapTy BPatchMap;  
88   
89   //===----------------------------------------------------------===//
90   // Public Interface.
91   //===----------------------------------------------------------===//
92   
93 public:
94   Deserializer(BitstreamReader& stream);
95   ~Deserializer();
96
97   uint64_t ReadInt();
98   int64_t ReadSInt();
99   
100   bool ReadBool() {
101     return ReadInt() ? true : false;
102   }
103
104   template <typename T>
105   inline T& Read(T& X) {
106     SerializeTrait<T>::Read(*this,X);
107     return X;
108   }
109
110   template <typename T>
111   inline T* Materialize() {
112     return SerializeTrait<T>::Materialize(*this);
113   }
114   
115   char* ReadCStr(char* cstr = NULL, unsigned MaxLen=0, bool isNullTerm=true);
116   void ReadCStr(std::vector<char>& buff, bool isNullTerm=false);
117
118   template <typename T>
119   inline T* ReadOwnedPtr(bool AutoRegister = true) {
120     unsigned PtrId = ReadInt();
121
122     if (PtrId == 0)
123       return NULL;
124     
125     T* x = SerializeTrait<T>::Materialize(*this);
126     
127     if (AutoRegister)
128       RegisterPtr(PtrId,x);
129     
130     return x;
131   }
132   
133   template <typename T>
134   inline void ReadOwnedPtr(T*& Ptr, bool AutoRegister = true) {
135     Ptr = ReadOwnedPtr<T>(AutoRegister);
136   }
137   
138   template <typename T>
139   void ReadPtr(T*& PtrRef, bool AllowBackpatch = true) {
140     ReadUIntPtr(reinterpret_cast<uintptr_t&>(PtrRef), AllowBackpatch);
141   }
142   
143   template <typename T>
144   void ReadPtr(const T*& PtrRef, bool AllowBackpatch = true) {
145     ReadPtr(const_cast<T*&>(PtrRef), AllowBackpatch);
146   }
147   
148   template <typename T>
149   T* ReadPtr() { T* x; ReadPtr<T>(x,false); return x; }
150
151   void ReadUIntPtr(uintptr_t& PtrRef, bool AllowBackpatch = true);
152   
153   template <typename T>
154   T& ReadRef() {
155     T* p = reinterpret_cast<T*>(ReadInternalRefPtr());
156     return *p;
157   }
158
159   void RegisterPtr(unsigned PtrId, const void* Ptr);
160   
161   void RegisterPtr(const void* Ptr) {
162     RegisterPtr(ReadInt(),Ptr);
163   }
164   
165   bool AtEnd();
166
167   bool inRecord();
168 private:
169   void ReadRecord();  
170   uintptr_t ReadInternalRefPtr();
171   
172   static inline bool HasFinalPtr(MapTy::value_type& V) {
173     return V.first.hasFinalPtr();
174   }
175   
176   static inline uintptr_t GetFinalPtr(MapTy::value_type& V) {
177     return reinterpret_cast<uintptr_t>(V.second.Ptr);
178   }
179   
180   static inline BPNode* GetBPNode(MapTy::value_type& V) {
181     return V.second.Head;
182   }
183     
184   static inline void SetBPNode(MapTy::value_type& V, BPNode* N) {
185     V.second.Head = N;
186   }
187   
188   void SetPtr(MapTy::value_type& V, const void* P) {
189     V.first.MarkFinal();
190     V.second.SetPtr(FreeList,const_cast<void*>(P));
191   }
192 };
193     
194 } // end namespace llvm
195
196 #endif