Added support in serializer and deserializer to create arbitrary blocks.
[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   bool ReadBool() {
99     return ReadInt() ? true : false;
100   }
101
102   template <typename T>
103   inline T& Read(T& X) {
104     SerializeTrait<T>::Read(*this,X);
105     return X;
106   }
107
108   template <typename T>
109   inline T* Materialize() {
110     return SerializeTrait<T>::Materialize(*this);
111   }
112   
113   char* ReadCStr(char* cstr = NULL, unsigned MaxLen=0, bool isNullTerm=true);
114   void ReadCStr(std::vector<char>& buff, bool isNullTerm=false);
115
116   template <typename T>
117   inline T* ReadOwnedPtr() {    
118     unsigned PtrId = ReadInt();
119
120     if (PtrId == 0)
121       return NULL;
122     
123     T* x = SerializeTrait<T>::Materialize(*this);
124     RegisterPtr(PtrId,x);
125     return x;
126   }
127   
128   template <typename T>
129   inline void ReadOwnedPtr(T*& Ptr) {
130     Ptr = ReadOwnedPtr<T>();
131   }
132   
133   template <typename T>
134   void ReadPtr(T*& PtrRef) {
135     ReadUIntPtr(reinterpret_cast<uintptr_t&>(PtrRef));
136   }
137   
138   template <typename T>
139   void ReadPtr(const T*& PtrRef) {
140     ReadPtr(const_cast<T*&>(PtrRef));
141   }            
142
143   void ReadUIntPtr(uintptr_t& PtrRef);
144   
145   template <typename T>
146   T& ReadRef() {
147     T* p = reinterpret_cast<T*>(ReadInternalRefPtr());
148     return *p;
149   }
150
151   void RegisterPtr(unsigned PtrId, const void* Ptr);
152   
153   void RegisterPtr(const void* Ptr) {
154     RegisterPtr(ReadInt(),Ptr);
155   }
156   
157   bool AtEnd();
158
159 private:
160   void ReadRecord();  
161   bool inRecord();
162   uintptr_t ReadInternalRefPtr();
163   
164   static inline bool HasFinalPtr(MapTy::value_type& V) {
165     return V.first.hasFinalPtr();
166   }
167   
168   static inline uintptr_t GetFinalPtr(MapTy::value_type& V) {
169     return reinterpret_cast<uintptr_t>(V.second.Ptr);
170   }
171   
172   static inline BPNode* GetBPNode(MapTy::value_type& V) {
173     return V.second.Head;
174   }
175     
176   static inline void SetBPNode(MapTy::value_type& V, BPNode* N) {
177     V.second.Head = N;
178   }
179   
180   void SetPtr(MapTy::value_type& V, const void* P) {
181     V.first.MarkFinal();
182     V.second.SetPtr(FreeList,const_cast<void*>(P));
183   }
184 };
185     
186 } // end namespace llvm
187
188 #endif