mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Actually privatize a IntegerTypes, and fix a few bugs exposed by this.
llvm-svn: 78955
This commit is contained in:
parent
0c10b8864a
commit
dc11fe967d
@ -37,7 +37,7 @@ class DerivedType : public Type {
|
|||||||
friend class Type;
|
friend class Type;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit DerivedType(TypeID id) : Type(id) {}
|
explicit DerivedType(LLVMContext &C, TypeID id) : Type(C, id) {}
|
||||||
|
|
||||||
/// notifyUsesThatTypeBecameConcrete - Notify AbstractTypeUsers of this type
|
/// notifyUsesThatTypeBecameConcrete - Notify AbstractTypeUsers of this type
|
||||||
/// that the current type has transitioned from being abstract to being
|
/// that the current type has transitioned from being abstract to being
|
||||||
@ -83,8 +83,11 @@ public:
|
|||||||
/// Int64Ty.
|
/// Int64Ty.
|
||||||
/// @brief Integer representation type
|
/// @brief Integer representation type
|
||||||
class IntegerType : public DerivedType {
|
class IntegerType : public DerivedType {
|
||||||
|
friend class LLVMContextImpl;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit IntegerType(unsigned NumBits) : DerivedType(IntegerTyID) {
|
explicit IntegerType(LLVMContext &C, unsigned NumBits) :
|
||||||
|
DerivedType(C, IntegerTyID) {
|
||||||
setSubclassData(NumBits);
|
setSubclassData(NumBits);
|
||||||
}
|
}
|
||||||
friend class TypeMap<IntegerValType, IntegerType>;
|
friend class TypeMap<IntegerValType, IntegerType>;
|
||||||
@ -208,7 +211,8 @@ public:
|
|||||||
/// and VectorType
|
/// and VectorType
|
||||||
class CompositeType : public DerivedType {
|
class CompositeType : public DerivedType {
|
||||||
protected:
|
protected:
|
||||||
inline explicit CompositeType(TypeID id) : DerivedType(id) { }
|
inline explicit CompositeType(LLVMContext &C, TypeID id) :
|
||||||
|
DerivedType(C, id) { }
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// getTypeAtIndex - Given an index value into the type, return the type of
|
/// getTypeAtIndex - Given an index value into the type, return the type of
|
||||||
@ -236,7 +240,8 @@ class StructType : public CompositeType {
|
|||||||
friend class TypeMap<StructValType, StructType>;
|
friend class TypeMap<StructValType, StructType>;
|
||||||
StructType(const StructType &); // Do not implement
|
StructType(const StructType &); // Do not implement
|
||||||
const StructType &operator=(const StructType &); // Do not implement
|
const StructType &operator=(const StructType &); // Do not implement
|
||||||
StructType(const std::vector<const Type*> &Types, bool isPacked);
|
StructType(LLVMContext &C,
|
||||||
|
const std::vector<const Type*> &Types, bool isPacked);
|
||||||
public:
|
public:
|
||||||
/// StructType::get - This static method is the primary way to create a
|
/// StructType::get - This static method is the primary way to create a
|
||||||
/// StructType.
|
/// StructType.
|
||||||
@ -313,7 +318,7 @@ class SequentialType : public CompositeType {
|
|||||||
SequentialType* this_() { return this; }
|
SequentialType* this_() { return this; }
|
||||||
protected:
|
protected:
|
||||||
SequentialType(TypeID TID, const Type *ElType)
|
SequentialType(TypeID TID, const Type *ElType)
|
||||||
: CompositeType(TID), ContainedType(ElType, this_()) {
|
: CompositeType(ElType->getContext(), TID), ContainedType(ElType, this_()) {
|
||||||
ContainedTys = &ContainedType;
|
ContainedTys = &ContainedType;
|
||||||
NumContainedTys = 1;
|
NumContainedTys = 1;
|
||||||
}
|
}
|
||||||
@ -493,12 +498,12 @@ public:
|
|||||||
class OpaqueType : public DerivedType {
|
class OpaqueType : public DerivedType {
|
||||||
OpaqueType(const OpaqueType &); // DO NOT IMPLEMENT
|
OpaqueType(const OpaqueType &); // DO NOT IMPLEMENT
|
||||||
const OpaqueType &operator=(const OpaqueType &); // DO NOT IMPLEMENT
|
const OpaqueType &operator=(const OpaqueType &); // DO NOT IMPLEMENT
|
||||||
OpaqueType();
|
OpaqueType(LLVMContext &C);
|
||||||
public:
|
public:
|
||||||
/// OpaqueType::get - Static factory method for the OpaqueType class...
|
/// OpaqueType::get - Static factory method for the OpaqueType class...
|
||||||
///
|
///
|
||||||
static OpaqueType *get() {
|
static OpaqueType *get(LLVMContext &C) {
|
||||||
return new OpaqueType(); // All opaque types are distinct
|
return new OpaqueType(C); // All opaque types are distinct
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implement support for type inquiry through isa, cast, and dyn_cast:
|
// Implement support for type inquiry through isa, cast, and dyn_cast:
|
||||||
|
@ -109,6 +109,7 @@ private:
|
|||||||
|
|
||||||
/// Context - This refers to the LLVMContext in which this type was uniqued.
|
/// Context - This refers to the LLVMContext in which this type was uniqued.
|
||||||
LLVMContext &Context;
|
LLVMContext &Context;
|
||||||
|
friend class LLVMContextImpl;
|
||||||
|
|
||||||
const Type *getForwardedTypeInternal() const;
|
const Type *getForwardedTypeInternal() const;
|
||||||
|
|
||||||
@ -117,8 +118,9 @@ private:
|
|||||||
void destroy() const; // const is a lie, this does "delete this"!
|
void destroy() const; // const is a lie, this does "delete this"!
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit Type(TypeID id) : ID(id), Abstract(false), SubclassData(0),
|
explicit Type(LLVMContext &C, TypeID id) :
|
||||||
RefCount(0), Context(getGlobalContext()),
|
ID(id), Abstract(false), SubclassData(0),
|
||||||
|
RefCount(0), Context(C),
|
||||||
ForwardType(0), NumContainedTys(0),
|
ForwardType(0), NumContainedTys(0),
|
||||||
ContainedTys(0) {}
|
ContainedTys(0) {}
|
||||||
virtual ~Type() {
|
virtual ~Type() {
|
||||||
|
@ -104,12 +104,12 @@ const SCEV *PointerTracking::computeAllocationCount(Value *P,
|
|||||||
Constant *C = GV->getInitializer();
|
Constant *C = GV->getInitializer();
|
||||||
if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
|
if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
|
||||||
Ty = ATy->getElementType();
|
Ty = ATy->getElementType();
|
||||||
return SE->getConstant(Type::getInt32Ty(Ty->getContext()),
|
return SE->getConstant(Type::getInt32Ty(P->getContext()),
|
||||||
ATy->getNumElements());
|
ATy->getNumElements());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ty = GV->getType();
|
Ty = GV->getType();
|
||||||
return SE->getConstant(Type::getInt32Ty(Ty->getContext()), 1);
|
return SE->getConstant(Type::getInt32Ty(P->getContext()), 1);
|
||||||
//TODO: implement more tracking for globals
|
//TODO: implement more tracking for globals
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,13 +118,13 @@ const SCEV *PointerTracking::computeAllocationCount(Value *P,
|
|||||||
Function *F = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
|
Function *F = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
|
||||||
const Loop *L = LI->getLoopFor(CI->getParent());
|
const Loop *L = LI->getLoopFor(CI->getParent());
|
||||||
if (F == callocFunc) {
|
if (F == callocFunc) {
|
||||||
Ty = Type::getInt8Ty(Ty->getContext());
|
Ty = Type::getInt8Ty(P->getContext());
|
||||||
// calloc allocates arg0*arg1 bytes.
|
// calloc allocates arg0*arg1 bytes.
|
||||||
return SE->getSCEVAtScope(SE->getMulExpr(SE->getSCEV(CS.getArgument(0)),
|
return SE->getSCEVAtScope(SE->getMulExpr(SE->getSCEV(CS.getArgument(0)),
|
||||||
SE->getSCEV(CS.getArgument(1))),
|
SE->getSCEV(CS.getArgument(1))),
|
||||||
L);
|
L);
|
||||||
} else if (F == reallocFunc) {
|
} else if (F == reallocFunc) {
|
||||||
Ty = Type::getInt8Ty(Ty->getContext());
|
Ty = Type::getInt8Ty(P->getContext());
|
||||||
// realloc allocates arg1 bytes.
|
// realloc allocates arg1 bytes.
|
||||||
return SE->getSCEVAtScope(CS.getArgument(1), L);
|
return SE->getSCEVAtScope(CS.getArgument(1), L);
|
||||||
}
|
}
|
||||||
|
@ -1150,7 +1150,7 @@ bool LLParser::ParseTypeRec(PATypeHolder &Result) {
|
|||||||
break;
|
break;
|
||||||
case lltok::kw_opaque:
|
case lltok::kw_opaque:
|
||||||
// TypeRec ::= 'opaque'
|
// TypeRec ::= 'opaque'
|
||||||
Result = OpaqueType::get();
|
Result = OpaqueType::get(Context);
|
||||||
Lex.Lex();
|
Lex.Lex();
|
||||||
break;
|
break;
|
||||||
case lltok::lbrace:
|
case lltok::lbrace:
|
||||||
@ -1180,7 +1180,7 @@ bool LLParser::ParseTypeRec(PATypeHolder &Result) {
|
|||||||
if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
|
if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
|
||||||
Result = T;
|
Result = T;
|
||||||
} else {
|
} else {
|
||||||
Result = OpaqueType::get();
|
Result = OpaqueType::get(Context);
|
||||||
ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
|
ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
|
||||||
std::make_pair(Result,
|
std::make_pair(Result,
|
||||||
Lex.getLoc())));
|
Lex.getLoc())));
|
||||||
@ -1199,7 +1199,7 @@ bool LLParser::ParseTypeRec(PATypeHolder &Result) {
|
|||||||
if (I != ForwardRefTypeIDs.end())
|
if (I != ForwardRefTypeIDs.end())
|
||||||
Result = I->second.first;
|
Result = I->second.first;
|
||||||
else {
|
else {
|
||||||
Result = OpaqueType::get();
|
Result = OpaqueType::get(Context);
|
||||||
ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
|
ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
|
||||||
std::make_pair(Result,
|
std::make_pair(Result,
|
||||||
Lex.getLoc())));
|
Lex.getLoc())));
|
||||||
@ -1212,7 +1212,7 @@ bool LLParser::ParseTypeRec(PATypeHolder &Result) {
|
|||||||
Lex.Lex();
|
Lex.Lex();
|
||||||
unsigned Val;
|
unsigned Val;
|
||||||
if (ParseUInt32(Val)) return true;
|
if (ParseUInt32(Val)) return true;
|
||||||
OpaqueType *OT = OpaqueType::get(); //Use temporary placeholder.
|
OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
|
||||||
UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
|
UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
|
||||||
Result = OT;
|
Result = OT;
|
||||||
break;
|
break;
|
||||||
|
@ -358,7 +358,7 @@ const Type *BitcodeReader::getTypeByID(unsigned ID, bool isTypeTable) {
|
|||||||
// The type table allows forward references. Push as many Opaque types as
|
// The type table allows forward references. Push as many Opaque types as
|
||||||
// needed to get up to ID.
|
// needed to get up to ID.
|
||||||
while (TypeList.size() <= ID)
|
while (TypeList.size() <= ID)
|
||||||
TypeList.push_back(OpaqueType::get());
|
TypeList.push_back(OpaqueType::get(Context));
|
||||||
return TypeList.back().get();
|
return TypeList.back().get();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -597,7 +597,7 @@ bool BitcodeReader::ParseTypeTable() {
|
|||||||
|
|
||||||
if (NumRecords == TypeList.size()) {
|
if (NumRecords == TypeList.size()) {
|
||||||
// If this is a new type slot, just append it.
|
// If this is a new type slot, just append it.
|
||||||
TypeList.push_back(ResultTy ? ResultTy : OpaqueType::get());
|
TypeList.push_back(ResultTy ? ResultTy : OpaqueType::get(Context));
|
||||||
++NumRecords;
|
++NumRecords;
|
||||||
} else if (ResultTy == 0) {
|
} else if (ResultTy == 0) {
|
||||||
// Otherwise, this was forward referenced, so an opaque type was created,
|
// Otherwise, this was forward referenced, so an opaque type was created,
|
||||||
|
@ -279,7 +279,7 @@ bool ShadowStackGC::initializeCustomLowering(Module &M) {
|
|||||||
// FrameMap *Map; // Pointer to constant FrameMap.
|
// FrameMap *Map; // Pointer to constant FrameMap.
|
||||||
// void *Roots[]; // Stack roots (in-place array, so we pretend).
|
// void *Roots[]; // Stack roots (in-place array, so we pretend).
|
||||||
// };
|
// };
|
||||||
OpaqueType *RecursiveTy = OpaqueType::get();
|
OpaqueType *RecursiveTy = OpaqueType::get(M.getContext());
|
||||||
|
|
||||||
EltTys.clear();
|
EltTys.clear();
|
||||||
EltTys.push_back(PointerType::getUnqual(RecursiveTy));
|
EltTys.push_back(PointerType::getUnqual(RecursiveTy));
|
||||||
|
@ -127,7 +127,7 @@ bool LowerInvoke::doInitialization(Module &M) {
|
|||||||
{ // The type is recursive, so use a type holder.
|
{ // The type is recursive, so use a type holder.
|
||||||
std::vector<const Type*> Elements;
|
std::vector<const Type*> Elements;
|
||||||
Elements.push_back(JmpBufTy);
|
Elements.push_back(JmpBufTy);
|
||||||
OpaqueType *OT = OpaqueType::get();
|
OpaqueType *OT = OpaqueType::get(M.getContext());
|
||||||
Elements.push_back(PointerType::getUnqual(OT));
|
Elements.push_back(PointerType::getUnqual(OT));
|
||||||
PATypeHolder JBLType(StructType::get(M.getContext(), Elements));
|
PATypeHolder JBLType(StructType::get(M.getContext(), Elements));
|
||||||
OT->refineAbstractTypeTo(JBLType.get()); // Complete the cycle.
|
OT->refineAbstractTypeTo(JBLType.get()); // Complete the cycle.
|
||||||
|
@ -293,7 +293,7 @@ LLVMTypeRef LLVMLabelType(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
LLVMTypeRef LLVMOpaqueType(void) {
|
LLVMTypeRef LLVMOpaqueType(void) {
|
||||||
return wrap(OpaqueType::get());
|
return wrap(OpaqueType::get(getGlobalContext()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*--.. Operations on type handles ..........................................--*/
|
/*--.. Operations on type handles ..........................................--*/
|
||||||
|
@ -27,7 +27,7 @@ LLVMContext& llvm::getGlobalContext() {
|
|||||||
return *GlobalContext;
|
return *GlobalContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl()) { }
|
LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) { }
|
||||||
LLVMContext::~LLVMContext() { delete pImpl; }
|
LLVMContext::~LLVMContext() { delete pImpl; }
|
||||||
|
|
||||||
GetElementPtrConstantExpr::GetElementPtrConstantExpr
|
GetElementPtrConstantExpr::GetElementPtrConstantExpr
|
||||||
|
@ -137,8 +137,60 @@ public:
|
|||||||
TypeMap<PointerValType, PointerType> PointerTypes;
|
TypeMap<PointerValType, PointerType> PointerTypes;
|
||||||
TypeMap<FunctionValType, FunctionType> FunctionTypes;
|
TypeMap<FunctionValType, FunctionType> FunctionTypes;
|
||||||
TypeMap<StructValType, StructType> StructTypes;
|
TypeMap<StructValType, StructType> StructTypes;
|
||||||
|
TypeMap<IntegerValType, IntegerType> IntegerTypes;
|
||||||
|
|
||||||
LLVMContextImpl() : TheTrueVal(0), TheFalseVal(0) { }
|
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;
|
||||||
|
|
||||||
|
LLVMContextImpl(LLVMContext &C) : TheTrueVal(0), TheFalseVal(0),
|
||||||
|
VoidTy(new Type(C, Type::VoidTyID)),
|
||||||
|
LabelTy(new Type(C, Type::LabelTyID)),
|
||||||
|
FloatTy(new Type(C, Type::FloatTyID)),
|
||||||
|
DoubleTy(new Type(C, Type::DoubleTyID)),
|
||||||
|
MetadataTy(new Type(C, Type::MetadataTyID)),
|
||||||
|
X86_FP80Ty(new Type(C, Type::X86_FP80TyID)),
|
||||||
|
FP128Ty(new Type(C, Type::FP128TyID)),
|
||||||
|
PPC_FP128Ty(new Type(C, Type::PPC_FP128TyID)),
|
||||||
|
Int1Ty(new IntegerType(C, 1)),
|
||||||
|
Int8Ty(new IntegerType(C, 8)),
|
||||||
|
Int16Ty(new IntegerType(C, 16)),
|
||||||
|
Int32Ty(new IntegerType(C, 32)),
|
||||||
|
Int64Ty(new IntegerType(C, 64)) { }
|
||||||
|
|
||||||
|
~LLVMContextImpl() {
|
||||||
|
// In principle, we should delete the member types here. However,
|
||||||
|
// this causes destruction order issues with the types in the TypeMaps.
|
||||||
|
// For now, just leak this, which is at least not a regression from the
|
||||||
|
// previous behavior, though still undesirable.
|
||||||
|
#if 0
|
||||||
|
delete VoidTy;
|
||||||
|
delete LabelTy;
|
||||||
|
delete FloatTy;
|
||||||
|
delete DoubleTy;
|
||||||
|
delete MetadataTy;
|
||||||
|
delete X86_FP80Ty;
|
||||||
|
delete FP128Ty;
|
||||||
|
delete PPC_FP128Ty;
|
||||||
|
|
||||||
|
delete Int1Ty;
|
||||||
|
delete Int8Ty;
|
||||||
|
delete Int16Ty;
|
||||||
|
delete Int32Ty;
|
||||||
|
delete Int64Ty;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -315,75 +315,56 @@ const Type *StructType::getTypeAtIndex(unsigned Idx) const {
|
|||||||
// Primitive 'Type' data
|
// Primitive 'Type' data
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
namespace {
|
|
||||||
struct BuiltinIntegerType : public IntegerType {
|
|
||||||
explicit BuiltinIntegerType(unsigned W) : IntegerType(W) {}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const Type *Type::getVoidTy(LLVMContext &C) {
|
const Type *Type::getVoidTy(LLVMContext &C) {
|
||||||
static const Type *VoidTy = new Type(Type::VoidTyID);
|
return C.pImpl->VoidTy;
|
||||||
return VoidTy;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getLabelTy(LLVMContext &C) {
|
const Type *Type::getLabelTy(LLVMContext &C) {
|
||||||
static const Type *LabelTy = new Type(Type::LabelTyID);
|
return C.pImpl->LabelTy;
|
||||||
return LabelTy;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getFloatTy(LLVMContext &C) {
|
const Type *Type::getFloatTy(LLVMContext &C) {
|
||||||
static const Type *FloatTy = new Type(Type::FloatTyID);
|
return C.pImpl->FloatTy;
|
||||||
return FloatTy;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getDoubleTy(LLVMContext &C) {
|
const Type *Type::getDoubleTy(LLVMContext &C) {
|
||||||
static const Type *DoubleTy = new Type(Type::DoubleTyID);
|
return C.pImpl->DoubleTy;
|
||||||
return DoubleTy;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getMetadataTy(LLVMContext &C) {
|
const Type *Type::getMetadataTy(LLVMContext &C) {
|
||||||
static const Type *MetadataTy = new Type(Type::MetadataTyID);
|
return C.pImpl->MetadataTy;
|
||||||
return MetadataTy;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getX86_FP80Ty(LLVMContext &C) {
|
const Type *Type::getX86_FP80Ty(LLVMContext &C) {
|
||||||
static const Type *X86_FP80Ty = new Type(Type::X86_FP80TyID);
|
return C.pImpl->X86_FP80Ty;
|
||||||
return X86_FP80Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getFP128Ty(LLVMContext &C) {
|
const Type *Type::getFP128Ty(LLVMContext &C) {
|
||||||
static const Type *FP128Ty = new Type(Type::FP128TyID);
|
return C.pImpl->FP128Ty;
|
||||||
return FP128Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getPPC_FP128Ty(LLVMContext &C) {
|
const Type *Type::getPPC_FP128Ty(LLVMContext &C) {
|
||||||
static const Type *PPC_FP128Ty = new Type(Type::PPC_FP128TyID);
|
return C.pImpl->PPC_FP128Ty;
|
||||||
return PPC_FP128Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const IntegerType *Type::getInt1Ty(LLVMContext &C) {
|
const IntegerType *Type::getInt1Ty(LLVMContext &C) {
|
||||||
static const IntegerType *Int1Ty = new BuiltinIntegerType(1);
|
return C.pImpl->Int1Ty;
|
||||||
return Int1Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const IntegerType *Type::getInt8Ty(LLVMContext &C) {
|
const IntegerType *Type::getInt8Ty(LLVMContext &C) {
|
||||||
static const IntegerType *Int8Ty = new BuiltinIntegerType(8);
|
return C.pImpl->Int8Ty;
|
||||||
return Int8Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const IntegerType *Type::getInt16Ty(LLVMContext &C) {
|
const IntegerType *Type::getInt16Ty(LLVMContext &C) {
|
||||||
static const IntegerType *Int16Ty = new BuiltinIntegerType(16);
|
return C.pImpl->Int16Ty;
|
||||||
return Int16Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const IntegerType *Type::getInt32Ty(LLVMContext &C) {
|
const IntegerType *Type::getInt32Ty(LLVMContext &C) {
|
||||||
static const IntegerType *Int32Ty = new BuiltinIntegerType(32);
|
return C.pImpl->Int32Ty;
|
||||||
return Int32Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const IntegerType *Type::getInt64Ty(LLVMContext &C) {
|
const IntegerType *Type::getInt64Ty(LLVMContext &C) {
|
||||||
static const IntegerType *Int64Ty = new BuiltinIntegerType(64);
|
return C.pImpl->Int64Ty;
|
||||||
return Int64Ty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -430,7 +411,7 @@ bool FunctionType::isValidArgumentType(const Type *ArgTy) {
|
|||||||
FunctionType::FunctionType(const Type *Result,
|
FunctionType::FunctionType(const Type *Result,
|
||||||
const std::vector<const Type*> &Params,
|
const std::vector<const Type*> &Params,
|
||||||
bool IsVarArgs)
|
bool IsVarArgs)
|
||||||
: DerivedType(FunctionTyID), isVarArgs(IsVarArgs) {
|
: DerivedType(Result->getContext(), FunctionTyID), isVarArgs(IsVarArgs) {
|
||||||
ContainedTys = reinterpret_cast<PATypeHandle*>(this+1);
|
ContainedTys = reinterpret_cast<PATypeHandle*>(this+1);
|
||||||
NumContainedTys = Params.size() + 1; // + 1 for result type
|
NumContainedTys = Params.size() + 1; // + 1 for result type
|
||||||
assert(isValidReturnType(Result) && "invalid return type for function");
|
assert(isValidReturnType(Result) && "invalid return type for function");
|
||||||
@ -450,8 +431,9 @@ FunctionType::FunctionType(const Type *Result,
|
|||||||
setAbstract(isAbstract);
|
setAbstract(isAbstract);
|
||||||
}
|
}
|
||||||
|
|
||||||
StructType::StructType(const std::vector<const Type*> &Types, bool isPacked)
|
StructType::StructType(LLVMContext &C,
|
||||||
: CompositeType(StructTyID) {
|
const std::vector<const Type*> &Types, bool isPacked)
|
||||||
|
: CompositeType(C, StructTyID) {
|
||||||
ContainedTys = reinterpret_cast<PATypeHandle*>(this + 1);
|
ContainedTys = reinterpret_cast<PATypeHandle*>(this + 1);
|
||||||
NumContainedTys = Types.size();
|
NumContainedTys = Types.size();
|
||||||
setSubclassData(isPacked);
|
setSubclassData(isPacked);
|
||||||
@ -494,7 +476,7 @@ PointerType::PointerType(const Type *E, unsigned AddrSpace)
|
|||||||
setAbstract(E->isAbstract());
|
setAbstract(E->isAbstract());
|
||||||
}
|
}
|
||||||
|
|
||||||
OpaqueType::OpaqueType() : DerivedType(OpaqueTyID) {
|
OpaqueType::OpaqueType(LLVMContext &C) : DerivedType(C, OpaqueTyID) {
|
||||||
setAbstract(true);
|
setAbstract(true);
|
||||||
#ifdef DEBUG_MERGE_TYPES
|
#ifdef DEBUG_MERGE_TYPES
|
||||||
DOUT << "Derived new type: " << *this << "\n";
|
DOUT << "Derived new type: " << *this << "\n";
|
||||||
@ -521,7 +503,7 @@ void DerivedType::dropAllTypeUses() {
|
|||||||
llvm_acquire_global_lock();
|
llvm_acquire_global_lock();
|
||||||
tmp = AlwaysOpaqueTy;
|
tmp = AlwaysOpaqueTy;
|
||||||
if (!tmp) {
|
if (!tmp) {
|
||||||
tmp = OpaqueType::get();
|
tmp = OpaqueType::get(getContext());
|
||||||
PATypeHolder* tmp2 = new PATypeHolder(AlwaysOpaqueTy);
|
PATypeHolder* tmp2 = new PATypeHolder(AlwaysOpaqueTy);
|
||||||
sys::MemoryFence();
|
sys::MemoryFence();
|
||||||
AlwaysOpaqueTy = tmp;
|
AlwaysOpaqueTy = tmp;
|
||||||
@ -531,7 +513,7 @@ void DerivedType::dropAllTypeUses() {
|
|||||||
llvm_release_global_lock();
|
llvm_release_global_lock();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
AlwaysOpaqueTy = OpaqueType::get();
|
AlwaysOpaqueTy = OpaqueType::get(getContext());
|
||||||
Holder = new PATypeHolder(AlwaysOpaqueTy);
|
Holder = new PATypeHolder(AlwaysOpaqueTy);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -755,9 +737,6 @@ static bool TypeHasCycleThroughItself(const Type *Ty) {
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Function Type Factory and Value Class...
|
// Function Type Factory and Value Class...
|
||||||
//
|
//
|
||||||
|
|
||||||
static ManagedStatic<TypeMap<IntegerValType, IntegerType> > IntegerTypes;
|
|
||||||
|
|
||||||
const IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) {
|
const IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) {
|
||||||
assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
|
assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
|
||||||
assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
|
assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
|
||||||
@ -772,6 +751,8 @@ const IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) {
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LLVMContextImpl *pImpl = C.pImpl;
|
||||||
|
|
||||||
IntegerValType IVT(NumBits);
|
IntegerValType IVT(NumBits);
|
||||||
IntegerType *ITy = 0;
|
IntegerType *ITy = 0;
|
||||||
@ -779,12 +760,12 @@ const IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) {
|
|||||||
// First, see if the type is already in the table, for which
|
// First, see if the type is already in the table, for which
|
||||||
// a reader lock suffices.
|
// a reader lock suffices.
|
||||||
sys::SmartScopedLock<true> L(*TypeMapLock);
|
sys::SmartScopedLock<true> L(*TypeMapLock);
|
||||||
ITy = IntegerTypes->get(IVT);
|
ITy = pImpl->IntegerTypes.get(IVT);
|
||||||
|
|
||||||
if (!ITy) {
|
if (!ITy) {
|
||||||
// Value not found. Derive a new type!
|
// Value not found. Derive a new type!
|
||||||
ITy = new IntegerType(NumBits);
|
ITy = new IntegerType(C, NumBits);
|
||||||
IntegerTypes->add(IVT, ITy);
|
pImpl->IntegerTypes.add(IVT, ITy);
|
||||||
}
|
}
|
||||||
#ifdef DEBUG_MERGE_TYPES
|
#ifdef DEBUG_MERGE_TYPES
|
||||||
DOUT << "Derived new type: " << *ITy << "\n";
|
DOUT << "Derived new type: " << *ITy << "\n";
|
||||||
@ -918,7 +899,7 @@ StructType *StructType::get(LLVMContext &Context,
|
|||||||
// Value not found. Derive a new type!
|
// Value not found. Derive a new type!
|
||||||
ST = (StructType*) operator new(sizeof(StructType) +
|
ST = (StructType*) operator new(sizeof(StructType) +
|
||||||
sizeof(PATypeHandle) * ETypes.size());
|
sizeof(PATypeHandle) * ETypes.size());
|
||||||
new (ST) StructType(ETypes, isPacked);
|
new (ST) StructType(Context, ETypes, isPacked);
|
||||||
pImpl->StructTypes.add(STV, ST);
|
pImpl->StructTypes.add(STV, ST);
|
||||||
}
|
}
|
||||||
#ifdef DEBUG_MERGE_TYPES
|
#ifdef DEBUG_MERGE_TYPES
|
||||||
|
Loading…
x
Reference in New Issue
Block a user