2009-08-23 06:24:24 +02:00
|
|
|
//===-- LLVMContextImpl.h - The LLVMContextImpl opaque class --------------===//
|
2009-06-30 02:48:55 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 19:06:46 +02:00
|
|
|
//
|
|
|
|
// This file declares LLVMContextImpl, the opaque implementation
|
|
|
|
// of LLVMContext.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 02:48:55 +02:00
|
|
|
|
|
|
|
#ifndef LLVM_LLVMCONTEXT_IMPL_H
|
|
|
|
#define LLVM_LLVMCONTEXT_IMPL_H
|
|
|
|
|
2009-08-05 00:41:48 +02:00
|
|
|
#include "ConstantsContext.h"
|
2009-08-19 19:07:46 +02:00
|
|
|
#include "LeaksContext.h"
|
2009-08-05 01:33:01 +02:00
|
|
|
#include "TypesContext.h"
|
2009-07-21 04:47:59 +02:00
|
|
|
#include "llvm/LLVMContext.h"
|
2009-09-03 03:39:20 +02:00
|
|
|
#include "llvm/Metadata.h"
|
2009-07-25 01:12:02 +02:00
|
|
|
#include "llvm/Constants.h"
|
2009-07-21 04:47:59 +02:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2009-08-17 19:59:35 +02:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2009-12-29 10:01:33 +01:00
|
|
|
#include "llvm/Support/ValueHandle.h"
|
2009-07-16 21:05:41 +02:00
|
|
|
#include "llvm/ADT/APFloat.h"
|
2009-07-16 20:04:31 +02:00
|
|
|
#include "llvm/ADT/APInt.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2009-07-17 01:44:30 +02:00
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2009-12-17 20:55:06 +01:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2009-07-17 00:11:26 +02:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2009-07-24 01:25:33 +02:00
|
|
|
#include <vector>
|
2009-07-21 22:13:12 +02:00
|
|
|
|
2009-06-30 02:48:55 +02:00
|
|
|
namespace llvm {
|
2009-07-25 01:12:02 +02:00
|
|
|
|
2009-07-16 20:04:31 +02:00
|
|
|
class ConstantInt;
|
2009-07-16 21:05:41 +02:00
|
|
|
class ConstantFP;
|
2009-07-17 00:11:26 +02:00
|
|
|
class MDString;
|
2009-07-17 01:44:30 +02:00
|
|
|
class MDNode;
|
2009-08-11 19:45:13 +02:00
|
|
|
class LLVMContext;
|
2009-07-16 20:04:31 +02:00
|
|
|
class Type;
|
2009-07-17 01:44:30 +02:00
|
|
|
class Value;
|
2009-07-16 20:04:31 +02:00
|
|
|
|
|
|
|
struct DenseMapAPIntKeyInfo {
|
|
|
|
struct KeyTy {
|
|
|
|
APInt val;
|
|
|
|
const Type* type;
|
|
|
|
KeyTy(const APInt& V, const Type* Ty) : val(V), type(Ty) {}
|
|
|
|
KeyTy(const KeyTy& that) : val(that.val), type(that.type) {}
|
|
|
|
bool operator==(const KeyTy& that) const {
|
|
|
|
return type == that.type && this->val == that.val;
|
|
|
|
}
|
|
|
|
bool operator!=(const KeyTy& that) const {
|
|
|
|
return !this->operator==(that);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); }
|
|
|
|
static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); }
|
|
|
|
static unsigned getHashValue(const KeyTy &Key) {
|
|
|
|
return DenseMapInfo<void*>::getHashValue(Key.type) ^
|
|
|
|
Key.val.getHashValue();
|
|
|
|
}
|
|
|
|
static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
|
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-16 21:05:41 +02:00
|
|
|
struct DenseMapAPFloatKeyInfo {
|
|
|
|
struct KeyTy {
|
|
|
|
APFloat val;
|
|
|
|
KeyTy(const APFloat& V) : val(V){}
|
|
|
|
KeyTy(const KeyTy& that) : val(that.val) {}
|
|
|
|
bool operator==(const KeyTy& that) const {
|
|
|
|
return this->val.bitwiseIsEqual(that.val);
|
|
|
|
}
|
|
|
|
bool operator!=(const KeyTy& that) const {
|
|
|
|
return !this->operator==(that);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
static inline KeyTy getEmptyKey() {
|
|
|
|
return KeyTy(APFloat(APFloat::Bogus,1));
|
|
|
|
}
|
|
|
|
static inline KeyTy getTombstoneKey() {
|
|
|
|
return KeyTy(APFloat(APFloat::Bogus,2));
|
|
|
|
}
|
|
|
|
static unsigned getHashValue(const KeyTy &Key) {
|
|
|
|
return Key.val.getHashValue();
|
|
|
|
}
|
|
|
|
static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
|
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-08-11 19:45:13 +02:00
|
|
|
class LLVMContextImpl {
|
|
|
|
public:
|
2009-07-16 20:04:31 +02:00
|
|
|
typedef DenseMap<DenseMapAPIntKeyInfo::KeyTy, ConstantInt*,
|
2009-08-05 00:41:48 +02:00
|
|
|
DenseMapAPIntKeyInfo> IntMapTy;
|
2009-07-16 20:04:31 +02:00
|
|
|
IntMapTy IntConstants;
|
|
|
|
|
2009-07-16 21:05:41 +02:00
|
|
|
typedef DenseMap<DenseMapAPFloatKeyInfo::KeyTy, ConstantFP*,
|
2009-08-05 00:41:48 +02:00
|
|
|
DenseMapAPFloatKeyInfo> FPMapTy;
|
2009-07-16 21:05:41 +02:00
|
|
|
FPMapTy FPConstants;
|
|
|
|
|
2009-07-17 00:11:26 +02:00
|
|
|
StringMap<MDString*> MDStringCache;
|
|
|
|
|
2009-09-03 03:39:20 +02:00
|
|
|
FoldingSet<MDNode> MDNodeSet;
|
|
|
|
|
2009-10-28 00:45:55 +01:00
|
|
|
ConstantUniqueMap<char, Type, ConstantAggregateZero> AggZeroConstants;
|
2009-08-10 20:16:08 +02:00
|
|
|
|
2009-10-28 00:45:55 +01:00
|
|
|
typedef ConstantUniqueMap<std::vector<Constant*>, ArrayType,
|
2009-07-21 22:55:28 +02:00
|
|
|
ConstantArray, true /*largekey*/> ArrayConstantsTy;
|
2009-07-25 01:12:02 +02:00
|
|
|
ArrayConstantsTy ArrayConstants;
|
2009-07-21 22:13:12 +02:00
|
|
|
|
2009-10-28 00:45:55 +01:00
|
|
|
typedef ConstantUniqueMap<std::vector<Constant*>, StructType,
|
|
|
|
ConstantStruct, true /*largekey*/> StructConstantsTy;
|
2009-07-25 01:12:02 +02:00
|
|
|
StructConstantsTy StructConstants;
|
2009-07-24 01:25:33 +02:00
|
|
|
|
2009-10-28 00:45:55 +01:00
|
|
|
typedef ConstantUniqueMap<std::vector<Constant*>, VectorType,
|
|
|
|
ConstantVector> VectorConstantsTy;
|
2009-07-25 01:12:02 +02:00
|
|
|
VectorConstantsTy VectorConstants;
|
2009-07-24 02:36:24 +02:00
|
|
|
|
2009-10-28 00:45:55 +01:00
|
|
|
ConstantUniqueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
|
2009-08-01 00:45:43 +02:00
|
|
|
|
2009-10-28 00:45:55 +01:00
|
|
|
ConstantUniqueMap<char, Type, UndefValue> UndefValueConstants;
|
2009-08-01 00:45:43 +02:00
|
|
|
|
2009-10-28 01:01:44 +01:00
|
|
|
DenseMap<std::pair<Function*, BasicBlock*> , BlockAddress*> BlockAddresses;
|
2009-10-28 00:45:55 +01:00
|
|
|
ConstantUniqueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
|
2009-08-04 22:25:11 +02:00
|
|
|
|
2009-07-21 04:47:59 +02:00
|
|
|
ConstantInt *TheTrueVal;
|
|
|
|
ConstantInt *TheFalseVal;
|
|
|
|
|
2009-08-19 19:07:46 +02:00
|
|
|
LeakDetectorImpl<Value> LLVMObjects;
|
|
|
|
|
2009-08-25 18:00:35 +02:00
|
|
|
// Basic type instances.
|
|
|
|
const Type VoidTy;
|
|
|
|
const Type LabelTy;
|
|
|
|
const Type FloatTy;
|
|
|
|
const Type DoubleTy;
|
|
|
|
const Type MetadataTy;
|
|
|
|
const Type X86_FP80Ty;
|
|
|
|
const Type FP128Ty;
|
|
|
|
const Type PPC_FP128Ty;
|
|
|
|
const IntegerType Int1Ty;
|
|
|
|
const IntegerType Int8Ty;
|
|
|
|
const IntegerType Int16Ty;
|
|
|
|
const IntegerType Int32Ty;
|
|
|
|
const IntegerType Int64Ty;
|
|
|
|
|
2009-08-17 19:59:35 +02:00
|
|
|
// Concrete/Abstract TypeDescriptions - We lazily calculate type descriptions
|
|
|
|
// for types as they are needed. Because resolution of types must invalidate
|
|
|
|
// all of the abstract type descriptions, we keep them in a seperate map to
|
|
|
|
// make this easy.
|
|
|
|
TypePrinting ConcreteTypeDescriptions;
|
|
|
|
TypePrinting AbstractTypeDescriptions;
|
|
|
|
|
2009-08-05 01:33:01 +02:00
|
|
|
TypeMap<ArrayValType, ArrayType> ArrayTypes;
|
2009-08-05 01:47:44 +02:00
|
|
|
TypeMap<VectorValType, VectorType> VectorTypes;
|
2009-08-05 02:15:12 +02:00
|
|
|
TypeMap<PointerValType, PointerType> PointerTypes;
|
2009-08-05 20:13:27 +02:00
|
|
|
TypeMap<FunctionValType, FunctionType> FunctionTypes;
|
2009-08-06 01:16:16 +02:00
|
|
|
TypeMap<StructValType, StructType> StructTypes;
|
2009-08-14 01:27:32 +02:00
|
|
|
TypeMap<IntegerValType, IntegerType> IntegerTypes;
|
2009-08-25 18:00:35 +02:00
|
|
|
|
2009-12-17 20:55:06 +01:00
|
|
|
// Opaque types are not structurally uniqued, so don't use TypeMap.
|
|
|
|
typedef SmallPtrSet<const OpaqueType*, 8> OpaqueTypesTy;
|
|
|
|
OpaqueTypesTy OpaqueTypes;
|
|
|
|
|
|
|
|
|
2009-08-18 20:28:58 +02:00
|
|
|
/// ValueHandles - This map keeps track of all of the value handles that are
|
|
|
|
/// watching a Value*. The Value::HasValueHandle bit is used to know
|
|
|
|
// whether or not a value has an entry in this map.
|
|
|
|
typedef DenseMap<Value*, ValueHandleBase*> ValueHandlesTy;
|
|
|
|
ValueHandlesTy ValueHandles;
|
|
|
|
|
2009-12-29 10:01:33 +01:00
|
|
|
/// CustomMDKindNames - Map to hold the metadata string to ID mapping.
|
|
|
|
StringMap<unsigned> CustomMDKindNames;
|
|
|
|
|
|
|
|
typedef std::pair<unsigned, TrackingVH<MDNode> > MDPairTy;
|
|
|
|
typedef SmallVector<MDPairTy, 2> MDMapTy;
|
|
|
|
|
|
|
|
/// MetadataStore - Collection of per-instruction metadata used in this
|
|
|
|
/// context.
|
|
|
|
DenseMap<const Instruction *, MDMapTy> MetadataStore;
|
|
|
|
|
|
|
|
|
2009-08-14 01:27:32 +02:00
|
|
|
LLVMContextImpl(LLVMContext &C) : TheTrueVal(0), TheFalseVal(0),
|
2009-08-25 18:00:35 +02:00
|
|
|
VoidTy(C, Type::VoidTyID),
|
|
|
|
LabelTy(C, Type::LabelTyID),
|
|
|
|
FloatTy(C, Type::FloatTyID),
|
|
|
|
DoubleTy(C, Type::DoubleTyID),
|
|
|
|
MetadataTy(C, Type::MetadataTyID),
|
|
|
|
X86_FP80Ty(C, Type::X86_FP80TyID),
|
|
|
|
FP128Ty(C, Type::FP128TyID),
|
|
|
|
PPC_FP128Ty(C, Type::PPC_FP128TyID),
|
|
|
|
Int1Ty(C, 1),
|
|
|
|
Int8Ty(C, 8),
|
|
|
|
Int16Ty(C, 16),
|
|
|
|
Int32Ty(C, 32),
|
|
|
|
Int64Ty(C, 64) { }
|
2009-08-31 18:14:59 +02:00
|
|
|
|
2009-12-29 10:01:33 +01:00
|
|
|
~LLVMContextImpl() {
|
2009-08-31 18:14:59 +02:00
|
|
|
ExprConstants.freeConstants();
|
|
|
|
ArrayConstants.freeConstants();
|
|
|
|
StructConstants.freeConstants();
|
|
|
|
VectorConstants.freeConstants();
|
|
|
|
AggZeroConstants.freeConstants();
|
|
|
|
NullPtrConstants.freeConstants();
|
|
|
|
UndefValueConstants.freeConstants();
|
2009-09-11 00:36:12 +02:00
|
|
|
for (IntMapTy::iterator I = IntConstants.begin(), E = IntConstants.end();
|
2009-08-31 18:14:59 +02:00
|
|
|
I != E; ++I) {
|
|
|
|
if (I->second->use_empty())
|
|
|
|
delete I->second;
|
|
|
|
}
|
2009-09-11 00:36:12 +02:00
|
|
|
for (FPMapTy::iterator I = FPConstants.begin(), E = FPConstants.end();
|
2009-08-31 18:14:59 +02:00
|
|
|
I != E; ++I) {
|
|
|
|
if (I->second->use_empty())
|
|
|
|
delete I->second;
|
|
|
|
}
|
2009-10-22 01:57:35 +02:00
|
|
|
MDNodeSet.clear();
|
2009-12-17 20:55:06 +01:00
|
|
|
for (OpaqueTypesTy::iterator I = OpaqueTypes.begin(), E = OpaqueTypes.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
(*I)->AbstractTypeUsers.clear();
|
|
|
|
delete *I;
|
|
|
|
}
|
2009-08-31 18:14:59 +02:00
|
|
|
}
|
2009-06-30 02:48:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-06-30 19:06:46 +02:00
|
|
|
#endif
|