1 //===-- LLVMContextImpl.h - The LLVMContextImpl opaque class --------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares LLVMContextImpl, the opaque implementation
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_LLVMCONTEXT_IMPL_H
16 #define LLVM_LLVMCONTEXT_IMPL_H
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/System/Mutex.h"
26 #include "llvm/System/RWMutex.h"
27 #include "llvm/Assembly/Writer.h"
28 #include "llvm/ADT/APFloat.h"
29 #include "llvm/ADT/APInt.h"
30 #include "llvm/ADT/DenseMap.h"
31 #include "llvm/ADT/FoldingSet.h"
32 #include "llvm/ADT/StringMap.h"
45 struct DenseMapAPIntKeyInfo
{
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
;
54 bool operator!=(const KeyTy
& that
) const {
55 return !this->operator==(that
);
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();
64 static bool isEqual(const KeyTy
&LHS
, const KeyTy
&RHS
) {
67 static bool isPod() { return false; }
70 struct DenseMapAPFloatKeyInfo
{
73 KeyTy(const APFloat
& V
) : val(V
){}
74 KeyTy(const KeyTy
& that
) : val(that
.val
) {}
75 bool operator==(const KeyTy
& that
) const {
76 return this->val
.bitwiseIsEqual(that
.val
);
78 bool operator!=(const KeyTy
& that
) const {
79 return !this->operator==(that
);
82 static inline KeyTy
getEmptyKey() {
83 return KeyTy(APFloat(APFloat::Bogus
,1));
85 static inline KeyTy
getTombstoneKey() {
86 return KeyTy(APFloat(APFloat::Bogus
,2));
88 static unsigned getHashValue(const KeyTy
&Key
) {
89 return Key
.val
.getHashValue();
91 static bool isEqual(const KeyTy
&LHS
, const KeyTy
&RHS
) {
94 static bool isPod() { return false; }
97 class LLVMContextImpl
{
99 sys::SmartRWMutex
<true> ConstantsLock
;
100 typedef DenseMap
<DenseMapAPIntKeyInfo::KeyTy
, ConstantInt
*,
101 DenseMapAPIntKeyInfo
> IntMapTy
;
102 IntMapTy IntConstants
;
104 typedef DenseMap
<DenseMapAPFloatKeyInfo::KeyTy
, ConstantFP
*,
105 DenseMapAPFloatKeyInfo
> FPMapTy
;
108 StringMap
<MDString
*> MDStringCache
;
110 FoldingSet
<MDNode
> MDNodeSet
;
112 ValueMap
<char, Type
, ConstantAggregateZero
> AggZeroConstants
;
114 typedef ValueMap
<std::vector
<Constant
*>, ArrayType
,
115 ConstantArray
, true /*largekey*/> ArrayConstantsTy
;
116 ArrayConstantsTy ArrayConstants
;
118 typedef ValueMap
<std::vector
<Constant
*>, StructType
,
119 ConstantStruct
, true /*largekey*/> StructConstantsTy
;
120 StructConstantsTy StructConstants
;
122 typedef ValueMap
<std::vector
<Constant
*>, VectorType
,
123 ConstantVector
> VectorConstantsTy
;
124 VectorConstantsTy VectorConstants
;
126 ValueMap
<char, PointerType
, ConstantPointerNull
> NullPtrConstants
;
128 ValueMap
<char, Type
, UndefValue
> UndefValueConstants
;
130 ValueMap
<ExprMapKeyType
, Type
, ConstantExpr
> ExprConstants
;
132 ConstantInt
*TheTrueVal
;
133 ConstantInt
*TheFalseVal
;
135 // Lock used for guarding access to the leak detector
136 sys::SmartMutex
<true> LLVMObjectsLock
;
137 LeakDetectorImpl
<Value
> LLVMObjects
;
139 // Lock used for guarding access to the type maps.
140 sys::SmartMutex
<true> TypeMapLock
;
142 // Recursive lock used for guarding access to AbstractTypeUsers.
143 // NOTE: The true template parameter means this will no-op when we're not in
144 // multithreaded mode.
145 sys::SmartMutex
<true> AbstractTypeUsersLock
;
147 // Basic type instances.
152 const Type MetadataTy
;
153 const Type X86_FP80Ty
;
155 const Type PPC_FP128Ty
;
156 const IntegerType Int1Ty
;
157 const IntegerType Int8Ty
;
158 const IntegerType Int16Ty
;
159 const IntegerType Int32Ty
;
160 const IntegerType Int64Ty
;
162 // Concrete/Abstract TypeDescriptions - We lazily calculate type descriptions
163 // for types as they are needed. Because resolution of types must invalidate
164 // all of the abstract type descriptions, we keep them in a seperate map to
166 TypePrinting ConcreteTypeDescriptions
;
167 TypePrinting AbstractTypeDescriptions
;
169 TypeMap
<ArrayValType
, ArrayType
> ArrayTypes
;
170 TypeMap
<VectorValType
, VectorType
> VectorTypes
;
171 TypeMap
<PointerValType
, PointerType
> PointerTypes
;
172 TypeMap
<FunctionValType
, FunctionType
> FunctionTypes
;
173 TypeMap
<StructValType
, StructType
> StructTypes
;
174 TypeMap
<IntegerValType
, IntegerType
> IntegerTypes
;
176 /// ValueHandles - This map keeps track of all of the value handles that are
177 /// watching a Value*. The Value::HasValueHandle bit is used to know
178 // whether or not a value has an entry in this map.
179 typedef DenseMap
<Value
*, ValueHandleBase
*> ValueHandlesTy
;
180 ValueHandlesTy ValueHandles
;
182 Metadata TheMetadata
;
183 LLVMContextImpl(LLVMContext
&C
) : TheTrueVal(0), TheFalseVal(0),
184 VoidTy(C
, Type::VoidTyID
),
185 LabelTy(C
, Type::LabelTyID
),
186 FloatTy(C
, Type::FloatTyID
),
187 DoubleTy(C
, Type::DoubleTyID
),
188 MetadataTy(C
, Type::MetadataTyID
),
189 X86_FP80Ty(C
, Type::X86_FP80TyID
),
190 FP128Ty(C
, Type::FP128TyID
),
191 PPC_FP128Ty(C
, Type::PPC_FP128TyID
),
200 ExprConstants
.freeConstants();
201 ArrayConstants
.freeConstants();
202 StructConstants
.freeConstants();
203 VectorConstants
.freeConstants();
204 AggZeroConstants
.freeConstants();
205 NullPtrConstants
.freeConstants();
206 UndefValueConstants
.freeConstants();
207 for (FoldingSet
<MDNode
>::iterator I
= MDNodeSet
.begin(),
208 E
= MDNodeSet
.end(); I
!= E
; ++I
)
209 I
->dropAllReferences();
210 for (IntMapTy::iterator I
= IntConstants
.begin(), E
= IntConstants
.end();
212 if (I
->second
->use_empty())
215 for (FPMapTy::iterator I
= FPConstants
.begin(), E
= FPConstants
.end();
217 if (I
->second
->use_empty())