eliminate uses of deprecated mangler apis
[oota-llvm.git] / lib / VMCore / LLVMContextImpl.h
1 //===-- LLVMContextImpl.h - The LLVMContextImpl opaque class --------------===//
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 LLVMContextImpl, the opaque implementation 
11 //  of LLVMContext.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_LLVMCONTEXT_IMPL_H
16 #define LLVM_LLVMCONTEXT_IMPL_H
17
18 #include "ConstantsContext.h"
19 #include "LeaksContext.h"
20 #include "TypesContext.h"
21 #include "llvm/LLVMContext.h"
22 #include "llvm/Metadata.h"
23 #include "llvm/Constants.h"
24 #include "llvm/DerivedTypes.h"
25 #include "llvm/Assembly/Writer.h"
26 #include "llvm/Support/ValueHandle.h"
27 #include "llvm/ADT/APFloat.h"
28 #include "llvm/ADT/APInt.h"
29 #include "llvm/ADT/DenseMap.h"
30 #include "llvm/ADT/FoldingSet.h"
31 #include "llvm/ADT/SmallPtrSet.h"
32 #include "llvm/ADT/StringMap.h"
33 #include <vector>
34
35 namespace llvm {
36
37 class ConstantInt;
38 class ConstantFP;
39 class MDString;
40 class MDNode;
41 class LLVMContext;
42 class Type;
43 class Value;
44
45 struct DenseMapAPIntKeyInfo {
46   struct KeyTy {
47     APInt val;
48     const Type* type;
49     KeyTy(const APInt& V, const Type* Ty) : val(V), type(Ty) {}
50     KeyTy(const KeyTy& that) : val(that.val), type(that.type) {}
51     bool operator==(const KeyTy& that) const {
52       return type == that.type && this->val == that.val;
53     }
54     bool operator!=(const KeyTy& that) const {
55       return !this->operator==(that);
56     }
57   };
58   static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); }
59   static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); }
60   static unsigned getHashValue(const KeyTy &Key) {
61     return DenseMapInfo<void*>::getHashValue(Key.type) ^ 
62       Key.val.getHashValue();
63   }
64   static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
65     return LHS == RHS;
66   }
67 };
68
69 struct DenseMapAPFloatKeyInfo {
70   struct KeyTy {
71     APFloat val;
72     KeyTy(const APFloat& V) : val(V){}
73     KeyTy(const KeyTy& that) : val(that.val) {}
74     bool operator==(const KeyTy& that) const {
75       return this->val.bitwiseIsEqual(that.val);
76     }
77     bool operator!=(const KeyTy& that) const {
78       return !this->operator==(that);
79     }
80   };
81   static inline KeyTy getEmptyKey() { 
82     return KeyTy(APFloat(APFloat::Bogus,1));
83   }
84   static inline KeyTy getTombstoneKey() { 
85     return KeyTy(APFloat(APFloat::Bogus,2)); 
86   }
87   static unsigned getHashValue(const KeyTy &Key) {
88     return Key.val.getHashValue();
89   }
90   static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
91     return LHS == RHS;
92   }
93 };
94
95 class LLVMContextImpl {
96 public:
97   typedef DenseMap<DenseMapAPIntKeyInfo::KeyTy, ConstantInt*, 
98                          DenseMapAPIntKeyInfo> IntMapTy;
99   IntMapTy IntConstants;
100   
101   typedef DenseMap<DenseMapAPFloatKeyInfo::KeyTy, ConstantFP*, 
102                          DenseMapAPFloatKeyInfo> FPMapTy;
103   FPMapTy FPConstants;
104   
105   StringMap<MDString*> MDStringCache;
106   
107   FoldingSet<MDNode> MDNodeSet;
108   
109   ConstantUniqueMap<char, Type, ConstantAggregateZero> AggZeroConstants;
110
111   typedef ConstantUniqueMap<std::vector<Constant*>, ArrayType,
112     ConstantArray, true /*largekey*/> ArrayConstantsTy;
113   ArrayConstantsTy ArrayConstants;
114   
115   typedef ConstantUniqueMap<std::vector<Constant*>, StructType,
116     ConstantStruct, true /*largekey*/> StructConstantsTy;
117   StructConstantsTy StructConstants;
118   
119   typedef ConstantUniqueMap<std::vector<Constant*>, VectorType,
120                             ConstantVector> VectorConstantsTy;
121   VectorConstantsTy VectorConstants;
122   
123   ConstantUniqueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
124   
125   ConstantUniqueMap<char, Type, UndefValue> UndefValueConstants;
126   
127   DenseMap<std::pair<Function*, BasicBlock*> , BlockAddress*> BlockAddresses;
128   ConstantUniqueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
129   
130   ConstantInt *TheTrueVal;
131   ConstantInt *TheFalseVal;
132   
133   LeakDetectorImpl<Value> LLVMObjects;
134   
135   // Basic type instances.
136   const Type VoidTy;
137   const Type LabelTy;
138   const Type FloatTy;
139   const Type DoubleTy;
140   const Type MetadataTy;
141   const Type X86_FP80Ty;
142   const Type FP128Ty;
143   const Type PPC_FP128Ty;
144   const IntegerType Int1Ty;
145   const IntegerType Int8Ty;
146   const IntegerType Int16Ty;
147   const IntegerType Int32Ty;
148   const IntegerType Int64Ty;
149
150   // Concrete/Abstract TypeDescriptions - We lazily calculate type descriptions
151   // for types as they are needed.  Because resolution of types must invalidate
152   // all of the abstract type descriptions, we keep them in a seperate map to 
153   // make this easy.
154   TypePrinting ConcreteTypeDescriptions;
155   TypePrinting AbstractTypeDescriptions;
156   
157   TypeMap<ArrayValType, ArrayType> ArrayTypes;
158   TypeMap<VectorValType, VectorType> VectorTypes;
159   TypeMap<PointerValType, PointerType> PointerTypes;
160   TypeMap<FunctionValType, FunctionType> FunctionTypes;
161   TypeMap<StructValType, StructType> StructTypes;
162   TypeMap<IntegerValType, IntegerType> IntegerTypes;
163
164   // Opaque types are not structurally uniqued, so don't use TypeMap.
165   typedef SmallPtrSet<const OpaqueType*, 8> OpaqueTypesTy;
166   OpaqueTypesTy OpaqueTypes;
167   
168
169   /// ValueHandles - This map keeps track of all of the value handles that are
170   /// watching a Value*.  The Value::HasValueHandle bit is used to know
171   // whether or not a value has an entry in this map.
172   typedef DenseMap<Value*, ValueHandleBase*> ValueHandlesTy;
173   ValueHandlesTy ValueHandles;
174   
175   /// CustomMDKindNames - Map to hold the metadata string to ID mapping.
176   StringMap<unsigned> CustomMDKindNames;
177   
178   typedef std::pair<unsigned, TrackingVH<MDNode> > MDPairTy;
179   typedef SmallVector<MDPairTy, 2> MDMapTy;
180
181   /// MetadataStore - Collection of per-instruction metadata used in this
182   /// context.
183   DenseMap<const Instruction *, MDMapTy> MetadataStore;
184   
185   
186   LLVMContextImpl(LLVMContext &C) : TheTrueVal(0), TheFalseVal(0),
187     VoidTy(C, Type::VoidTyID),
188     LabelTy(C, Type::LabelTyID),
189     FloatTy(C, Type::FloatTyID),
190     DoubleTy(C, Type::DoubleTyID),
191     MetadataTy(C, Type::MetadataTyID),
192     X86_FP80Ty(C, Type::X86_FP80TyID),
193     FP128Ty(C, Type::FP128TyID),
194     PPC_FP128Ty(C, Type::PPC_FP128TyID),
195     Int1Ty(C, 1),
196     Int8Ty(C, 8),
197     Int16Ty(C, 16),
198     Int32Ty(C, 32),
199     Int64Ty(C, 64) { }
200
201   ~LLVMContextImpl() {
202     ExprConstants.freeConstants();
203     ArrayConstants.freeConstants();
204     StructConstants.freeConstants();
205     VectorConstants.freeConstants();
206     AggZeroConstants.freeConstants();
207     NullPtrConstants.freeConstants();
208     UndefValueConstants.freeConstants();
209     for (IntMapTy::iterator I = IntConstants.begin(), E = IntConstants.end(); 
210          I != E; ++I) {
211       if (I->second->use_empty())
212         delete I->second;
213     }
214     for (FPMapTy::iterator I = FPConstants.begin(), E = FPConstants.end(); 
215          I != E; ++I) {
216       if (I->second->use_empty())
217         delete I->second;
218     }
219     MDNodeSet.clear();
220     for (OpaqueTypesTy::iterator I = OpaqueTypes.begin(), E = OpaqueTypes.end();
221         I != E; ++I) {
222       (*I)->AbstractTypeUsers.clear();
223       delete *I;
224     }
225   }
226 };
227
228 }
229
230 #endif