2006-11-10 14:34:16 +08:00
|
|
|
//===--- ASTContext.cpp - Context to hold long-lived AST nodes ------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:25 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-11-10 14:34:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ASTContext interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2008-08-08 04:55:28 +08:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
2007-10-02 03:00:59 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2008-08-11 12:54:23 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/AST/RecordLayout.h"
|
2007-05-21 07:50:58 +08:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2007-10-29 13:01:08 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2007-11-01 01:10:13 +08:00
|
|
|
#include "llvm/Bitcode/Serialize.h"
|
|
|
|
#include "llvm/Bitcode/Deserialize.h"
|
2007-10-29 13:01:08 +08:00
|
|
|
|
2006-11-10 14:34:16 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2007-04-28 05:51:21 +08:00
|
|
|
enum FloatingRank {
|
|
|
|
FloatRank, DoubleRank, LongDoubleRank
|
|
|
|
};
|
|
|
|
|
2008-08-11 12:54:23 +08:00
|
|
|
ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM, TargetInfo &t,
|
|
|
|
IdentifierTable &idents, SelectorTable &sels,
|
|
|
|
unsigned size_reserve) :
|
2008-08-31 03:34:46 +08:00
|
|
|
CFConstantStringTypeDecl(0), ObjCFastEnumerationStateTypeDecl(0),
|
|
|
|
SourceMgr(SM), LangOpts(LOpts), Target(t),
|
2008-08-11 12:54:23 +08:00
|
|
|
Idents(idents), Selectors(sels)
|
|
|
|
{
|
|
|
|
if (size_reserve > 0) Types.reserve(size_reserve);
|
|
|
|
InitBuiltinTypes();
|
|
|
|
BuiltinInfo.InitializeBuiltins(idents, Target);
|
|
|
|
TUDecl = TranslationUnitDecl::Create(*this);
|
|
|
|
}
|
|
|
|
|
2006-11-12 08:53:46 +08:00
|
|
|
ASTContext::~ASTContext() {
|
|
|
|
// Deallocate all the types.
|
|
|
|
while (!Types.empty()) {
|
2008-05-22 00:38:54 +08:00
|
|
|
Types.back()->Destroy(*this);
|
2006-11-12 08:53:46 +08:00
|
|
|
Types.pop_back();
|
|
|
|
}
|
2008-05-27 11:08:09 +08:00
|
|
|
|
|
|
|
TUDecl->Destroy(*this);
|
2006-11-12 08:53:46 +08:00
|
|
|
}
|
|
|
|
|
2007-01-26 09:27:23 +08:00
|
|
|
void ASTContext::PrintStats() const {
|
|
|
|
fprintf(stderr, "*** AST Context Stats:\n");
|
|
|
|
fprintf(stderr, " %d types total.\n", (int)Types.size());
|
|
|
|
unsigned NumBuiltin = 0, NumPointer = 0, NumArray = 0, NumFunctionP = 0;
|
2007-07-18 13:50:59 +08:00
|
|
|
unsigned NumVector = 0, NumComplex = 0;
|
2007-05-27 18:15:43 +08:00
|
|
|
unsigned NumFunctionNP = 0, NumTypeName = 0, NumTagged = 0, NumReference = 0;
|
2007-01-26 09:27:23 +08:00
|
|
|
|
|
|
|
unsigned NumTagStruct = 0, NumTagUnion = 0, NumTagEnum = 0, NumTagClass = 0;
|
2008-01-08 03:49:32 +08:00
|
|
|
unsigned NumObjCInterfaces = 0, NumObjCQualifiedInterfaces = 0;
|
|
|
|
unsigned NumObjCQualifiedIds = 0;
|
2008-05-21 23:59:22 +08:00
|
|
|
unsigned NumTypeOfTypes = 0, NumTypeOfExprs = 0;
|
2007-01-26 09:27:23 +08:00
|
|
|
|
|
|
|
for (unsigned i = 0, e = Types.size(); i != e; ++i) {
|
|
|
|
Type *T = Types[i];
|
|
|
|
if (isa<BuiltinType>(T))
|
|
|
|
++NumBuiltin;
|
|
|
|
else if (isa<PointerType>(T))
|
|
|
|
++NumPointer;
|
2007-05-27 18:15:43 +08:00
|
|
|
else if (isa<ReferenceType>(T))
|
|
|
|
++NumReference;
|
2007-07-18 13:50:59 +08:00
|
|
|
else if (isa<ComplexType>(T))
|
|
|
|
++NumComplex;
|
2007-01-26 09:27:23 +08:00
|
|
|
else if (isa<ArrayType>(T))
|
|
|
|
++NumArray;
|
2007-07-18 13:50:59 +08:00
|
|
|
else if (isa<VectorType>(T))
|
|
|
|
++NumVector;
|
2007-01-26 09:27:23 +08:00
|
|
|
else if (isa<FunctionTypeNoProto>(T))
|
|
|
|
++NumFunctionNP;
|
|
|
|
else if (isa<FunctionTypeProto>(T))
|
|
|
|
++NumFunctionP;
|
2007-01-26 10:01:53 +08:00
|
|
|
else if (isa<TypedefType>(T))
|
2007-01-26 09:27:23 +08:00
|
|
|
++NumTypeName;
|
2007-03-24 06:27:02 +08:00
|
|
|
else if (TagType *TT = dyn_cast<TagType>(T)) {
|
2007-01-26 09:27:23 +08:00
|
|
|
++NumTagged;
|
2008-06-10 07:19:58 +08:00
|
|
|
switch (TT->getDecl()->getTagKind()) {
|
2007-01-26 09:27:23 +08:00
|
|
|
default: assert(0 && "Unknown tagged type!");
|
2008-06-10 07:19:58 +08:00
|
|
|
case TagDecl::TK_struct: ++NumTagStruct; break;
|
|
|
|
case TagDecl::TK_union: ++NumTagUnion; break;
|
|
|
|
case TagDecl::TK_class: ++NumTagClass; break;
|
|
|
|
case TagDecl::TK_enum: ++NumTagEnum; break;
|
2007-01-26 09:27:23 +08:00
|
|
|
}
|
2008-01-08 03:49:32 +08:00
|
|
|
} else if (isa<ObjCInterfaceType>(T))
|
|
|
|
++NumObjCInterfaces;
|
|
|
|
else if (isa<ObjCQualifiedInterfaceType>(T))
|
|
|
|
++NumObjCQualifiedInterfaces;
|
|
|
|
else if (isa<ObjCQualifiedIdType>(T))
|
|
|
|
++NumObjCQualifiedIds;
|
2008-05-21 23:59:22 +08:00
|
|
|
else if (isa<TypeOfType>(T))
|
|
|
|
++NumTypeOfTypes;
|
|
|
|
else if (isa<TypeOfExpr>(T))
|
|
|
|
++NumTypeOfExprs;
|
2007-09-17 22:16:13 +08:00
|
|
|
else {
|
2007-12-12 14:43:05 +08:00
|
|
|
QualType(T, 0).dump();
|
2007-01-26 09:27:23 +08:00
|
|
|
assert(0 && "Unknown type!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, " %d builtin types\n", NumBuiltin);
|
|
|
|
fprintf(stderr, " %d pointer types\n", NumPointer);
|
2007-05-27 18:15:43 +08:00
|
|
|
fprintf(stderr, " %d reference types\n", NumReference);
|
2007-07-18 13:50:59 +08:00
|
|
|
fprintf(stderr, " %d complex types\n", NumComplex);
|
2007-01-26 09:27:23 +08:00
|
|
|
fprintf(stderr, " %d array types\n", NumArray);
|
2007-07-18 13:50:59 +08:00
|
|
|
fprintf(stderr, " %d vector types\n", NumVector);
|
2007-01-26 09:27:23 +08:00
|
|
|
fprintf(stderr, " %d function types with proto\n", NumFunctionP);
|
|
|
|
fprintf(stderr, " %d function types with no proto\n", NumFunctionNP);
|
|
|
|
fprintf(stderr, " %d typename (typedef) types\n", NumTypeName);
|
|
|
|
fprintf(stderr, " %d tagged types\n", NumTagged);
|
|
|
|
fprintf(stderr, " %d struct types\n", NumTagStruct);
|
|
|
|
fprintf(stderr, " %d union types\n", NumTagUnion);
|
|
|
|
fprintf(stderr, " %d class types\n", NumTagClass);
|
|
|
|
fprintf(stderr, " %d enum types\n", NumTagEnum);
|
2008-01-08 03:49:32 +08:00
|
|
|
fprintf(stderr, " %d interface types\n", NumObjCInterfaces);
|
2007-12-12 14:43:05 +08:00
|
|
|
fprintf(stderr, " %d protocol qualified interface types\n",
|
2008-01-08 03:49:32 +08:00
|
|
|
NumObjCQualifiedInterfaces);
|
2007-12-18 05:03:50 +08:00
|
|
|
fprintf(stderr, " %d protocol qualified id types\n",
|
2008-01-08 03:49:32 +08:00
|
|
|
NumObjCQualifiedIds);
|
2008-05-21 23:59:22 +08:00
|
|
|
fprintf(stderr, " %d typeof types\n", NumTypeOfTypes);
|
|
|
|
fprintf(stderr, " %d typeof exprs\n", NumTypeOfExprs);
|
|
|
|
|
2007-05-24 08:40:54 +08:00
|
|
|
fprintf(stderr, "Total bytes = %d\n", int(NumBuiltin*sizeof(BuiltinType)+
|
2007-05-24 05:48:04 +08:00
|
|
|
NumPointer*sizeof(PointerType)+NumArray*sizeof(ArrayType)+
|
2007-07-18 13:50:59 +08:00
|
|
|
NumComplex*sizeof(ComplexType)+NumVector*sizeof(VectorType)+
|
2007-05-24 08:40:54 +08:00
|
|
|
NumFunctionP*sizeof(FunctionTypeProto)+
|
|
|
|
NumFunctionNP*sizeof(FunctionTypeNoProto)+
|
2008-05-21 23:59:22 +08:00
|
|
|
NumTypeName*sizeof(TypedefType)+NumTagged*sizeof(TagType)+
|
|
|
|
NumTypeOfTypes*sizeof(TypeOfType)+NumTypeOfExprs*sizeof(TypeOfExpr)));
|
2007-01-26 09:27:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-06 06:36:20 +08:00
|
|
|
void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
|
|
|
|
Types.push_back((R = QualType(new BuiltinType(K),0)).getTypePtr());
|
2006-11-12 08:53:46 +08:00
|
|
|
}
|
|
|
|
|
2006-11-12 08:37:36 +08:00
|
|
|
void ASTContext::InitBuiltinTypes() {
|
|
|
|
assert(VoidTy.isNull() && "Context reinitialized?");
|
|
|
|
|
|
|
|
// C99 6.2.5p19.
|
2006-12-03 10:57:32 +08:00
|
|
|
InitBuiltinType(VoidTy, BuiltinType::Void);
|
2006-11-12 08:37:36 +08:00
|
|
|
|
|
|
|
// C99 6.2.5p2.
|
2006-12-03 10:57:32 +08:00
|
|
|
InitBuiltinType(BoolTy, BuiltinType::Bool);
|
2006-11-12 08:37:36 +08:00
|
|
|
// C99 6.2.5p3.
|
2008-03-06 02:54:05 +08:00
|
|
|
if (Target.isCharSigned())
|
2007-06-03 15:25:34 +08:00
|
|
|
InitBuiltinType(CharTy, BuiltinType::Char_S);
|
|
|
|
else
|
|
|
|
InitBuiltinType(CharTy, BuiltinType::Char_U);
|
2006-11-12 08:37:36 +08:00
|
|
|
// C99 6.2.5p4.
|
2006-12-03 10:57:32 +08:00
|
|
|
InitBuiltinType(SignedCharTy, BuiltinType::SChar);
|
|
|
|
InitBuiltinType(ShortTy, BuiltinType::Short);
|
|
|
|
InitBuiltinType(IntTy, BuiltinType::Int);
|
|
|
|
InitBuiltinType(LongTy, BuiltinType::Long);
|
|
|
|
InitBuiltinType(LongLongTy, BuiltinType::LongLong);
|
2006-11-12 08:37:36 +08:00
|
|
|
|
|
|
|
// C99 6.2.5p6.
|
2006-12-03 10:57:32 +08:00
|
|
|
InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
|
|
|
|
InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
|
|
|
|
InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
|
|
|
|
InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
|
|
|
|
InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
|
2006-11-12 08:37:36 +08:00
|
|
|
|
|
|
|
// C99 6.2.5p10.
|
2006-12-03 10:57:32 +08:00
|
|
|
InitBuiltinType(FloatTy, BuiltinType::Float);
|
|
|
|
InitBuiltinType(DoubleTy, BuiltinType::Double);
|
|
|
|
InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
|
2008-08-10 00:51:54 +08:00
|
|
|
|
|
|
|
// C++ 3.9.1p5
|
|
|
|
InitBuiltinType(WCharTy, BuiltinType::WChar);
|
|
|
|
|
2006-11-12 08:37:36 +08:00
|
|
|
// C99 6.2.5p11.
|
2007-06-23 04:56:16 +08:00
|
|
|
FloatComplexTy = getComplexType(FloatTy);
|
|
|
|
DoubleComplexTy = getComplexType(DoubleTy);
|
|
|
|
LongDoubleComplexTy = getComplexType(LongDoubleTy);
|
2007-10-15 22:41:52 +08:00
|
|
|
|
|
|
|
BuiltinVaListType = QualType();
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCIdType = QualType();
|
2007-10-15 22:41:52 +08:00
|
|
|
IdStructType = 0;
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCClassType = QualType();
|
2007-10-31 10:53:19 +08:00
|
|
|
ClassStructType = 0;
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCConstantStringType = QualType();
|
2007-10-30 06:57:28 +08:00
|
|
|
|
|
|
|
// void * type
|
|
|
|
VoidPtrTy = getPointerType(VoidTy);
|
2006-11-12 08:37:36 +08:00
|
|
|
}
|
|
|
|
|
2007-07-19 01:52:12 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Type Sizing and Analysis
|
|
|
|
//===----------------------------------------------------------------------===//
|
2007-07-14 06:13:22 +08:00
|
|
|
|
2008-07-01 02:32:54 +08:00
|
|
|
/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
|
|
|
|
/// scalar floating point type.
|
|
|
|
const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
|
|
|
|
const BuiltinType *BT = T->getAsBuiltinType();
|
|
|
|
assert(BT && "Not a floating point type!");
|
|
|
|
switch (BT->getKind()) {
|
|
|
|
default: assert(0 && "Not a floating point type!");
|
|
|
|
case BuiltinType::Float: return Target.getFloatFormat();
|
|
|
|
case BuiltinType::Double: return Target.getDoubleFormat();
|
|
|
|
case BuiltinType::LongDouble: return Target.getLongDoubleFormat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-14 06:13:22 +08:00
|
|
|
/// getTypeSize - Return the size of the specified type, in bits. This method
|
|
|
|
/// does not work on incomplete types.
|
2007-07-14 09:29:45 +08:00
|
|
|
std::pair<uint64_t, unsigned>
|
2008-03-06 02:54:05 +08:00
|
|
|
ASTContext::getTypeInfo(QualType T) {
|
2008-04-07 06:59:24 +08:00
|
|
|
T = getCanonicalType(T);
|
2008-03-08 16:52:55 +08:00
|
|
|
uint64_t Width;
|
2007-07-14 09:29:45 +08:00
|
|
|
unsigned Align;
|
2007-07-14 06:13:22 +08:00
|
|
|
switch (T->getTypeClass()) {
|
2007-07-20 06:06:24 +08:00
|
|
|
case Type::TypeName: assert(0 && "Not a canonical type!");
|
2007-07-19 02:26:58 +08:00
|
|
|
case Type::FunctionNoProto:
|
|
|
|
case Type::FunctionProto:
|
2007-07-14 06:27:08 +08:00
|
|
|
default:
|
2007-07-21 02:13:33 +08:00
|
|
|
assert(0 && "Incomplete types have no size!");
|
2007-08-30 09:06:46 +08:00
|
|
|
case Type::VariableArray:
|
|
|
|
assert(0 && "VLAs not implemented yet!");
|
|
|
|
case Type::ConstantArray: {
|
|
|
|
ConstantArrayType *CAT = cast<ConstantArrayType>(T);
|
2007-07-20 06:06:24 +08:00
|
|
|
|
2008-03-06 02:54:05 +08:00
|
|
|
std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = EltInfo.first*CAT->getSize().getZExtValue();
|
2007-07-20 06:06:24 +08:00
|
|
|
Align = EltInfo.second;
|
|
|
|
break;
|
2007-12-29 13:10:55 +08:00
|
|
|
}
|
2008-04-19 07:10:10 +08:00
|
|
|
case Type::ExtVector:
|
2007-07-20 06:06:24 +08:00
|
|
|
case Type::Vector: {
|
|
|
|
std::pair<uint64_t, unsigned> EltInfo =
|
2008-03-06 02:54:05 +08:00
|
|
|
getTypeInfo(cast<VectorType>(T)->getElementType());
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
|
2008-05-30 17:31:38 +08:00
|
|
|
// FIXME: This isn't right for unusual vectors
|
|
|
|
Align = Width;
|
2007-07-20 06:06:24 +08:00
|
|
|
break;
|
|
|
|
}
|
2007-07-19 02:26:58 +08:00
|
|
|
|
2008-03-08 16:52:55 +08:00
|
|
|
case Type::Builtin:
|
2007-07-14 06:13:22 +08:00
|
|
|
switch (cast<BuiltinType>(T)->getKind()) {
|
2007-07-14 06:27:08 +08:00
|
|
|
default: assert(0 && "Unknown builtin type!");
|
2007-07-14 09:29:45 +08:00
|
|
|
case BuiltinType::Void:
|
|
|
|
assert(0 && "Incomplete types have no size!");
|
2007-12-20 03:23:28 +08:00
|
|
|
case BuiltinType::Bool:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getBoolWidth();
|
|
|
|
Align = Target.getBoolAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2007-07-14 06:27:08 +08:00
|
|
|
case BuiltinType::Char_S:
|
|
|
|
case BuiltinType::Char_U:
|
|
|
|
case BuiltinType::UChar:
|
2007-12-20 03:23:28 +08:00
|
|
|
case BuiltinType::SChar:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getCharWidth();
|
|
|
|
Align = Target.getCharAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2008-08-10 00:51:54 +08:00
|
|
|
case BuiltinType::WChar:
|
|
|
|
Width = Target.getWCharWidth();
|
|
|
|
Align = Target.getWCharAlign();
|
|
|
|
break;
|
2007-07-14 06:27:08 +08:00
|
|
|
case BuiltinType::UShort:
|
2007-12-20 03:23:28 +08:00
|
|
|
case BuiltinType::Short:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getShortWidth();
|
|
|
|
Align = Target.getShortAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2007-07-14 06:27:08 +08:00
|
|
|
case BuiltinType::UInt:
|
2007-12-20 03:23:28 +08:00
|
|
|
case BuiltinType::Int:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getIntWidth();
|
|
|
|
Align = Target.getIntAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2007-07-14 06:27:08 +08:00
|
|
|
case BuiltinType::ULong:
|
2007-12-20 03:23:28 +08:00
|
|
|
case BuiltinType::Long:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getLongWidth();
|
|
|
|
Align = Target.getLongAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2007-07-14 06:27:08 +08:00
|
|
|
case BuiltinType::ULongLong:
|
2007-12-20 03:23:28 +08:00
|
|
|
case BuiltinType::LongLong:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getLongLongWidth();
|
|
|
|
Align = Target.getLongLongAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
|
|
|
case BuiltinType::Float:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getFloatWidth();
|
|
|
|
Align = Target.getFloatAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
|
|
|
case BuiltinType::Double:
|
2008-04-07 15:01:58 +08:00
|
|
|
Width = Target.getDoubleWidth();
|
|
|
|
Align = Target.getDoubleAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
|
|
|
case BuiltinType::LongDouble:
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = Target.getLongDoubleWidth();
|
|
|
|
Align = Target.getLongDoubleAlign();
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2007-07-14 06:13:22 +08:00
|
|
|
}
|
2007-07-16 07:46:53 +08:00
|
|
|
break;
|
2008-02-04 10:31:56 +08:00
|
|
|
case Type::ASQual:
|
2008-03-06 02:54:05 +08:00
|
|
|
// FIXME: Pointers into different addr spaces could have different sizes and
|
|
|
|
// alignment requirements: getPointerInfo should take an AddrSpace.
|
|
|
|
return getTypeInfo(QualType(cast<ASQualType>(T)->getBaseType(), 0));
|
2008-01-08 03:49:32 +08:00
|
|
|
case Type::ObjCQualifiedId:
|
2008-04-07 15:01:58 +08:00
|
|
|
Width = Target.getPointerWidth(0);
|
2008-03-08 16:34:58 +08:00
|
|
|
Align = Target.getPointerAlign(0);
|
2007-12-20 03:23:28 +08:00
|
|
|
break;
|
2008-09-24 23:05:44 +08:00
|
|
|
case Type::BlockPointer: {
|
|
|
|
unsigned AS = cast<BlockPointerType>(T)->getPointeeType().getAddressSpace();
|
|
|
|
Width = Target.getPointerWidth(AS);
|
|
|
|
Align = Target.getPointerAlign(AS);
|
|
|
|
break;
|
|
|
|
}
|
2008-03-08 16:34:58 +08:00
|
|
|
case Type::Pointer: {
|
|
|
|
unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
|
2008-04-07 15:01:58 +08:00
|
|
|
Width = Target.getPointerWidth(AS);
|
2008-03-08 16:34:58 +08:00
|
|
|
Align = Target.getPointerAlign(AS);
|
|
|
|
break;
|
|
|
|
}
|
2007-07-14 06:13:22 +08:00
|
|
|
case Type::Reference:
|
2007-07-14 06:16:13 +08:00
|
|
|
// "When applied to a reference or a reference type, the result is the size
|
2007-07-19 02:26:58 +08:00
|
|
|
// of the referenced type." C++98 5.3.3p2: expr.sizeof.
|
2007-12-20 03:23:28 +08:00
|
|
|
// FIXME: This is wrong for struct layout: a reference in a struct has
|
|
|
|
// pointer size.
|
2008-04-03 01:35:06 +08:00
|
|
|
return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
|
2007-07-19 02:26:58 +08:00
|
|
|
|
|
|
|
case Type::Complex: {
|
|
|
|
// Complex types have the same alignment as their elements, but twice the
|
|
|
|
// size.
|
|
|
|
std::pair<uint64_t, unsigned> EltInfo =
|
2008-03-06 02:54:05 +08:00
|
|
|
getTypeInfo(cast<ComplexType>(T)->getElementType());
|
2008-03-08 16:52:55 +08:00
|
|
|
Width = EltInfo.first*2;
|
2007-07-19 02:26:58 +08:00
|
|
|
Align = EltInfo.second;
|
|
|
|
break;
|
|
|
|
}
|
2008-06-05 05:54:36 +08:00
|
|
|
case Type::ObjCInterface: {
|
|
|
|
ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
|
|
|
|
const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
|
|
|
|
Width = Layout.getSize();
|
|
|
|
Align = Layout.getAlignment();
|
|
|
|
break;
|
|
|
|
}
|
2008-04-07 06:05:18 +08:00
|
|
|
case Type::Tagged: {
|
2008-08-10 05:35:13 +08:00
|
|
|
if (cast<TagType>(T)->getDecl()->isInvalidDecl()) {
|
|
|
|
Width = 1;
|
|
|
|
Align = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-04-07 06:05:18 +08:00
|
|
|
if (EnumType *ET = dyn_cast<EnumType>(cast<TagType>(T)))
|
|
|
|
return getTypeInfo(ET->getDecl()->getIntegerType());
|
|
|
|
|
|
|
|
RecordType *RT = cast<RecordType>(T);
|
|
|
|
const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
|
|
|
|
Width = Layout.getSize();
|
|
|
|
Align = Layout.getAlignment();
|
2007-07-24 06:46:22 +08:00
|
|
|
break;
|
2007-07-14 06:13:22 +08:00
|
|
|
}
|
2008-04-07 06:05:18 +08:00
|
|
|
}
|
2007-07-14 09:29:45 +08:00
|
|
|
|
2007-07-19 01:52:12 +08:00
|
|
|
assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
|
2008-03-08 16:52:55 +08:00
|
|
|
return std::make_pair(Width, Align);
|
2007-07-14 06:13:22 +08:00
|
|
|
}
|
|
|
|
|
2008-06-05 05:22:16 +08:00
|
|
|
/// LayoutField - Field layout.
|
|
|
|
void ASTRecordLayout::LayoutField(const FieldDecl *FD, unsigned FieldNo,
|
|
|
|
bool IsUnion, bool StructIsPacked,
|
|
|
|
ASTContext &Context) {
|
|
|
|
bool FieldIsPacked = StructIsPacked || FD->getAttr<PackedAttr>();
|
|
|
|
uint64_t FieldOffset = IsUnion ? 0 : Size;
|
|
|
|
uint64_t FieldSize;
|
|
|
|
unsigned FieldAlign;
|
|
|
|
|
|
|
|
if (const Expr *BitWidthExpr = FD->getBitWidth()) {
|
|
|
|
// TODO: Need to check this algorithm on other targets!
|
|
|
|
// (tested on Linux-X86)
|
2008-08-14 07:47:13 +08:00
|
|
|
FieldSize =
|
|
|
|
BitWidthExpr->getIntegerConstantExprValue(Context).getZExtValue();
|
2008-06-05 05:22:16 +08:00
|
|
|
|
|
|
|
std::pair<uint64_t, unsigned> FieldInfo =
|
|
|
|
Context.getTypeInfo(FD->getType());
|
|
|
|
uint64_t TypeSize = FieldInfo.first;
|
|
|
|
|
|
|
|
FieldAlign = FieldInfo.second;
|
|
|
|
if (FieldIsPacked)
|
|
|
|
FieldAlign = 1;
|
|
|
|
if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
|
|
|
|
FieldAlign = std::max(FieldAlign, AA->getAlignment());
|
|
|
|
|
|
|
|
// Check if we need to add padding to give the field the correct
|
|
|
|
// alignment.
|
|
|
|
if (FieldSize == 0 || (FieldOffset & (FieldAlign-1)) + FieldSize > TypeSize)
|
|
|
|
FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
|
|
|
|
|
|
|
|
// Padding members don't affect overall alignment
|
|
|
|
if (!FD->getIdentifier())
|
|
|
|
FieldAlign = 1;
|
|
|
|
} else {
|
2008-08-10 05:35:13 +08:00
|
|
|
if (FD->getType()->isIncompleteArrayType()) {
|
|
|
|
// This is a flexible array member; we can't directly
|
2008-06-05 05:22:16 +08:00
|
|
|
// query getTypeInfo about these, so we figure it out here.
|
|
|
|
// Flexible array members don't have any size, but they
|
|
|
|
// have to be aligned appropriately for their element type.
|
|
|
|
FieldSize = 0;
|
2008-08-04 15:31:14 +08:00
|
|
|
const ArrayType* ATy = Context.getAsArrayType(FD->getType());
|
2008-06-05 05:22:16 +08:00
|
|
|
FieldAlign = Context.getTypeAlign(ATy->getElementType());
|
|
|
|
} else {
|
|
|
|
std::pair<uint64_t, unsigned> FieldInfo =
|
|
|
|
Context.getTypeInfo(FD->getType());
|
|
|
|
FieldSize = FieldInfo.first;
|
|
|
|
FieldAlign = FieldInfo.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FieldIsPacked)
|
|
|
|
FieldAlign = 8;
|
|
|
|
if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
|
|
|
|
FieldAlign = std::max(FieldAlign, AA->getAlignment());
|
|
|
|
|
|
|
|
// Round up the current record size to the field's alignment boundary.
|
|
|
|
FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Place this field at the current location.
|
|
|
|
FieldOffsets[FieldNo] = FieldOffset;
|
|
|
|
|
|
|
|
// Reserve space for this field.
|
|
|
|
if (IsUnion) {
|
|
|
|
Size = std::max(Size, FieldSize);
|
|
|
|
} else {
|
|
|
|
Size = FieldOffset + FieldSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remember max struct/class alignment.
|
|
|
|
Alignment = std::max(Alignment, FieldAlign);
|
|
|
|
}
|
|
|
|
|
2008-06-05 05:54:36 +08:00
|
|
|
|
|
|
|
/// getASTObjcInterfaceLayout - Get or compute information about the layout of the
|
|
|
|
/// specified Objective C, which indicates its size and ivar
|
|
|
|
/// position information.
|
|
|
|
const ASTRecordLayout &
|
|
|
|
ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) {
|
|
|
|
// Look up this layout, if already laid out, return what we have.
|
|
|
|
const ASTRecordLayout *&Entry = ASTObjCInterfaces[D];
|
|
|
|
if (Entry) return *Entry;
|
|
|
|
|
|
|
|
// Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
|
|
|
|
// be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
|
2008-06-06 10:14:01 +08:00
|
|
|
ASTRecordLayout *NewEntry = NULL;
|
|
|
|
unsigned FieldCount = D->ivar_size();
|
|
|
|
if (ObjCInterfaceDecl *SD = D->getSuperClass()) {
|
|
|
|
FieldCount++;
|
|
|
|
const ASTRecordLayout &SL = getASTObjCInterfaceLayout(SD);
|
|
|
|
unsigned Alignment = SL.getAlignment();
|
|
|
|
uint64_t Size = SL.getSize();
|
|
|
|
NewEntry = new ASTRecordLayout(Size, Alignment);
|
|
|
|
NewEntry->InitializeLayout(FieldCount);
|
|
|
|
NewEntry->SetFieldOffset(0, 0); // Super class is at the beginning of the layout.
|
|
|
|
} else {
|
|
|
|
NewEntry = new ASTRecordLayout();
|
|
|
|
NewEntry->InitializeLayout(FieldCount);
|
|
|
|
}
|
2008-06-05 05:54:36 +08:00
|
|
|
Entry = NewEntry;
|
|
|
|
|
|
|
|
bool IsPacked = D->getAttr<PackedAttr>();
|
|
|
|
|
|
|
|
if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
|
|
|
|
NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
|
|
|
|
AA->getAlignment()));
|
|
|
|
|
|
|
|
// Layout each ivar sequentially.
|
|
|
|
unsigned i = 0;
|
|
|
|
for (ObjCInterfaceDecl::ivar_iterator IVI = D->ivar_begin(),
|
|
|
|
IVE = D->ivar_end(); IVI != IVE; ++IVI) {
|
|
|
|
const ObjCIvarDecl* Ivar = (*IVI);
|
|
|
|
NewEntry->LayoutField(Ivar, i++, false, IsPacked, *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, round the size of the total struct up to the alignment of the
|
|
|
|
// struct itself.
|
|
|
|
NewEntry->FinalizeLayout();
|
|
|
|
return *NewEntry;
|
|
|
|
}
|
|
|
|
|
2007-11-02 03:11:01 +08:00
|
|
|
/// getASTRecordLayout - Get or compute information about the layout of the
|
2007-07-19 01:52:12 +08:00
|
|
|
/// specified record (struct/union/class), which indicates its size and field
|
|
|
|
/// position information.
|
2008-03-06 02:54:05 +08:00
|
|
|
const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
D = D->getDefinition(*this);
|
|
|
|
assert(D && "Cannot get layout of forward declarations!");
|
2008-05-30 17:31:38 +08:00
|
|
|
|
2007-07-19 01:52:12 +08:00
|
|
|
// Look up this layout, if already laid out, return what we have.
|
2007-11-02 03:11:01 +08:00
|
|
|
const ASTRecordLayout *&Entry = ASTRecordLayouts[D];
|
2007-07-19 01:52:12 +08:00
|
|
|
if (Entry) return *Entry;
|
2008-05-30 17:31:38 +08:00
|
|
|
|
2007-11-02 03:11:01 +08:00
|
|
|
// Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
|
|
|
|
// be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
|
|
|
|
ASTRecordLayout *NewEntry = new ASTRecordLayout();
|
2007-07-19 01:52:12 +08:00
|
|
|
Entry = NewEntry;
|
2008-05-30 17:31:38 +08:00
|
|
|
|
2008-06-05 05:22:16 +08:00
|
|
|
NewEntry->InitializeLayout(D->getNumMembers());
|
2008-05-30 17:31:38 +08:00
|
|
|
bool StructIsPacked = D->getAttr<PackedAttr>();
|
2008-06-10 07:19:58 +08:00
|
|
|
bool IsUnion = D->isUnion();
|
2007-07-19 01:52:12 +08:00
|
|
|
|
2008-05-30 17:31:38 +08:00
|
|
|
if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
|
2008-06-05 05:22:16 +08:00
|
|
|
NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
|
|
|
|
AA->getAlignment()));
|
2008-05-30 17:31:38 +08:00
|
|
|
|
|
|
|
// Layout each field, for now, just sequentially, respecting alignment. In
|
|
|
|
// the future, this will need to be tweakable by targets.
|
|
|
|
for (unsigned i = 0, e = D->getNumMembers(); i != e; ++i) {
|
|
|
|
const FieldDecl *FD = D->getMember(i);
|
2008-06-05 05:22:16 +08:00
|
|
|
NewEntry->LayoutField(FD, i, IsUnion, StructIsPacked, *this);
|
2007-07-19 01:52:12 +08:00
|
|
|
}
|
2008-05-30 17:31:38 +08:00
|
|
|
|
|
|
|
// Finally, round the size of the total struct up to the alignment of the
|
|
|
|
// struct itself.
|
2008-06-05 05:22:16 +08:00
|
|
|
NewEntry->FinalizeLayout();
|
2007-07-19 02:26:58 +08:00
|
|
|
return *NewEntry;
|
2007-07-19 01:52:12 +08:00
|
|
|
}
|
|
|
|
|
2007-07-14 06:13:22 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Type creation/memoization methods
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-02-04 10:31:56 +08:00
|
|
|
QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) {
|
2008-04-07 06:59:24 +08:00
|
|
|
QualType CanT = getCanonicalType(T);
|
|
|
|
if (CanT.getAddressSpace() == AddressSpace)
|
2008-02-21 04:55:12 +08:00
|
|
|
return T;
|
|
|
|
|
|
|
|
// Type's cannot have multiple ASQuals, therefore we know we only have to deal
|
|
|
|
// with CVR qualifiers from here on out.
|
2008-04-07 06:59:24 +08:00
|
|
|
assert(CanT.getAddressSpace() == 0 &&
|
2008-02-21 04:55:12 +08:00
|
|
|
"Type is already address space qualified");
|
|
|
|
|
|
|
|
// Check if we've already instantiated an address space qual'd type of this
|
|
|
|
// type.
|
2008-02-04 10:31:56 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2008-02-21 04:55:12 +08:00
|
|
|
ASQualType::Profile(ID, T.getTypePtr(), AddressSpace);
|
2008-02-04 10:31:56 +08:00
|
|
|
void *InsertPos = 0;
|
|
|
|
if (ASQualType *ASQy = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(ASQy, 0);
|
|
|
|
|
|
|
|
// If the base type isn't canonical, this won't be a canonical type either,
|
|
|
|
// so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
if (!T->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getASQualType(CanT, AddressSpace);
|
2008-02-04 10:31:56 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
2008-02-21 04:55:12 +08:00
|
|
|
ASQualType *New = new ASQualType(T.getTypePtr(), Canonical, AddressSpace);
|
2008-02-04 10:31:56 +08:00
|
|
|
ASQualTypes.InsertNode(New, InsertPos);
|
|
|
|
Types.push_back(New);
|
2008-02-21 04:55:12 +08:00
|
|
|
return QualType(New, T.getCVRQualifiers());
|
2008-02-04 10:31:56 +08:00
|
|
|
}
|
|
|
|
|
2007-07-14 06:13:22 +08:00
|
|
|
|
2007-06-23 04:56:16 +08:00
|
|
|
/// getComplexType - Return the uniqued reference to the type for a complex
|
|
|
|
/// number with the specified element type.
|
|
|
|
QualType ASTContext::getComplexType(QualType T) {
|
|
|
|
// Unique pointers, to guarantee there is only one pointer of a particular
|
|
|
|
// structure.
|
|
|
|
llvm::FoldingSetNodeID ID;
|
|
|
|
ComplexType::Profile(ID, T);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(CT, 0);
|
|
|
|
|
|
|
|
// If the pointee type isn't canonical, this won't be a canonical type either,
|
|
|
|
// so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
if (!T->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getComplexType(getCanonicalType(T));
|
2007-06-23 04:56:16 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
|
|
|
ComplexType *New = new ComplexType(T, Canonical);
|
|
|
|
Types.push_back(New);
|
|
|
|
ComplexTypes.InsertNode(New, InsertPos);
|
|
|
|
return QualType(New, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-12 08:37:36 +08:00
|
|
|
/// getPointerType - Return the uniqued reference to the type for a pointer to
|
|
|
|
/// the specified type.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType ASTContext::getPointerType(QualType T) {
|
2006-11-12 08:53:46 +08:00
|
|
|
// Unique pointers, to guarantee there is only one pointer of a particular
|
|
|
|
// structure.
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2007-01-27 09:29:36 +08:00
|
|
|
PointerType::Profile(ID, T);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(PT, 0);
|
2006-11-12 08:37:36 +08:00
|
|
|
|
2006-11-12 16:50:50 +08:00
|
|
|
// If the pointee type isn't canonical, this won't be a canonical type either,
|
|
|
|
// so fill in the canonical type field.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType Canonical;
|
2007-01-27 09:29:36 +08:00
|
|
|
if (!T->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getPointerType(getCanonicalType(T));
|
2007-01-27 09:29:36 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
|
|
|
PointerType *New = new PointerType(T, Canonical);
|
|
|
|
Types.push_back(New);
|
|
|
|
PointerTypes.InsertNode(New, InsertPos);
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(New, 0);
|
2006-11-10 14:34:16 +08:00
|
|
|
}
|
|
|
|
|
2008-08-28 00:04:49 +08:00
|
|
|
/// getBlockPointerType - Return the uniqued reference to the type for
|
|
|
|
/// a pointer to the specified block.
|
|
|
|
QualType ASTContext::getBlockPointerType(QualType T) {
|
2008-08-29 03:20:44 +08:00
|
|
|
assert(T->isFunctionType() && "block of function types only");
|
|
|
|
// Unique pointers, to guarantee there is only one block of a particular
|
2008-08-28 00:04:49 +08:00
|
|
|
// structure.
|
|
|
|
llvm::FoldingSetNodeID ID;
|
|
|
|
BlockPointerType::Profile(ID, T);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (BlockPointerType *PT =
|
|
|
|
BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(PT, 0);
|
|
|
|
|
2008-08-29 03:20:44 +08:00
|
|
|
// If the block pointee type isn't canonical, this won't be a canonical
|
2008-08-28 00:04:49 +08:00
|
|
|
// type either so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
if (!T->isCanonical()) {
|
|
|
|
Canonical = getBlockPointerType(getCanonicalType(T));
|
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
BlockPointerType *NewIP =
|
|
|
|
BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
|
|
|
BlockPointerType *New = new BlockPointerType(T, Canonical);
|
|
|
|
Types.push_back(New);
|
|
|
|
BlockPointerTypes.InsertNode(New, InsertPos);
|
|
|
|
return QualType(New, 0);
|
|
|
|
}
|
|
|
|
|
2007-05-27 18:15:43 +08:00
|
|
|
/// getReferenceType - Return the uniqued reference to the type for a reference
|
|
|
|
/// to the specified type.
|
|
|
|
QualType ASTContext::getReferenceType(QualType T) {
|
|
|
|
// Unique pointers, to guarantee there is only one pointer of a particular
|
|
|
|
// structure.
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2007-05-27 18:15:43 +08:00
|
|
|
ReferenceType::Profile(ID, T);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (ReferenceType *RT = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(RT, 0);
|
|
|
|
|
|
|
|
// If the referencee type isn't canonical, this won't be a canonical type
|
|
|
|
// either, so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
if (!T->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getReferenceType(getCanonicalType(T));
|
2007-05-27 18:15:43 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
|
|
|
|
|
|
|
ReferenceType *New = new ReferenceType(T, Canonical);
|
|
|
|
Types.push_back(New);
|
|
|
|
ReferenceTypes.InsertNode(New, InsertPos);
|
|
|
|
return QualType(New, 0);
|
|
|
|
}
|
|
|
|
|
2007-08-30 09:06:46 +08:00
|
|
|
/// getConstantArrayType - Return the unique reference to the type for an
|
|
|
|
/// array of the specified element type.
|
|
|
|
QualType ASTContext::getConstantArrayType(QualType EltTy,
|
2007-08-31 02:10:14 +08:00
|
|
|
const llvm::APInt &ArySize,
|
|
|
|
ArrayType::ArraySizeModifier ASM,
|
|
|
|
unsigned EltTypeQuals) {
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2007-08-30 09:06:46 +08:00
|
|
|
ConstantArrayType::Profile(ID, EltTy, ArySize);
|
2007-02-27 06:17:12 +08:00
|
|
|
|
2007-01-27 16:31:04 +08:00
|
|
|
void *InsertPos = 0;
|
2007-11-01 01:10:13 +08:00
|
|
|
if (ConstantArrayType *ATP =
|
|
|
|
ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(ATP, 0);
|
2006-11-12 16:50:50 +08:00
|
|
|
|
|
|
|
// If the element type isn't canonical, this won't be a canonical type either,
|
|
|
|
// so fill in the canonical type field.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType Canonical;
|
2007-01-27 16:31:04 +08:00
|
|
|
if (!EltTy->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
|
2007-08-31 02:10:14 +08:00
|
|
|
ASM, EltTypeQuals);
|
2007-01-27 16:31:04 +08:00
|
|
|
// Get the new insert position for the node we care about.
|
2007-11-01 01:10:13 +08:00
|
|
|
ConstantArrayType *NewIP =
|
|
|
|
ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
|
2007-01-27 16:31:04 +08:00
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
2006-11-12 16:50:50 +08:00
|
|
|
|
2007-08-31 02:10:14 +08:00
|
|
|
ConstantArrayType *New = new ConstantArrayType(EltTy, Canonical, ArySize,
|
|
|
|
ASM, EltTypeQuals);
|
2007-11-01 01:10:13 +08:00
|
|
|
ConstantArrayTypes.InsertNode(New, InsertPos);
|
2007-01-27 16:31:04 +08:00
|
|
|
Types.push_back(New);
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(New, 0);
|
2006-11-12 16:50:50 +08:00
|
|
|
}
|
|
|
|
|
2007-08-31 02:14:25 +08:00
|
|
|
/// getVariableArrayType - Returns a non-unique reference to the type for a
|
|
|
|
/// variable array of the specified element type.
|
2007-08-31 02:10:14 +08:00
|
|
|
QualType ASTContext::getVariableArrayType(QualType EltTy, Expr *NumElts,
|
|
|
|
ArrayType::ArraySizeModifier ASM,
|
|
|
|
unsigned EltTypeQuals) {
|
2008-02-16 02:16:39 +08:00
|
|
|
// Since we don't unique expressions, it isn't possible to unique VLA's
|
|
|
|
// that have an expression provided for their size.
|
|
|
|
|
|
|
|
VariableArrayType *New = new VariableArrayType(EltTy, QualType(), NumElts,
|
|
|
|
ASM, EltTypeQuals);
|
|
|
|
|
|
|
|
VariableArrayTypes.push_back(New);
|
|
|
|
Types.push_back(New);
|
|
|
|
return QualType(New, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType ASTContext::getIncompleteArrayType(QualType EltTy,
|
|
|
|
ArrayType::ArraySizeModifier ASM,
|
|
|
|
unsigned EltTypeQuals) {
|
|
|
|
llvm::FoldingSetNodeID ID;
|
|
|
|
IncompleteArrayType::Profile(ID, EltTy);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (IncompleteArrayType *ATP =
|
|
|
|
IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(ATP, 0);
|
|
|
|
|
|
|
|
// If the element type isn't canonical, this won't be a canonical type
|
|
|
|
// either, so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
|
|
|
|
if (!EltTy->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
|
2007-10-30 07:37:31 +08:00
|
|
|
ASM, EltTypeQuals);
|
2008-02-16 02:16:39 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
IncompleteArrayType *NewIP =
|
|
|
|
IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
2007-10-30 07:37:31 +08:00
|
|
|
}
|
2008-02-16 02:16:39 +08:00
|
|
|
|
|
|
|
IncompleteArrayType *New = new IncompleteArrayType(EltTy, Canonical,
|
|
|
|
ASM, EltTypeQuals);
|
|
|
|
|
|
|
|
IncompleteArrayTypes.InsertNode(New, InsertPos);
|
|
|
|
Types.push_back(New);
|
|
|
|
return QualType(New, 0);
|
2007-08-30 09:06:46 +08:00
|
|
|
}
|
|
|
|
|
2007-07-19 02:00:27 +08:00
|
|
|
/// getVectorType - Return the unique reference to a vector type of
|
|
|
|
/// the specified element type and size. VectorType must be a built-in type.
|
|
|
|
QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
|
2007-07-07 07:09:18 +08:00
|
|
|
BuiltinType *baseType;
|
|
|
|
|
2008-04-07 06:59:24 +08:00
|
|
|
baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
|
2007-07-19 02:00:27 +08:00
|
|
|
assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
|
2007-07-07 07:09:18 +08:00
|
|
|
|
|
|
|
// Check if we've already instantiated a vector of this type.
|
|
|
|
llvm::FoldingSetNodeID ID;
|
2007-07-19 02:00:27 +08:00
|
|
|
VectorType::Profile(ID, vecType, NumElts, Type::Vector);
|
2007-07-07 07:09:18 +08:00
|
|
|
void *InsertPos = 0;
|
|
|
|
if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(VTP, 0);
|
|
|
|
|
|
|
|
// If the element type isn't canonical, this won't be a canonical type either,
|
|
|
|
// so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
if (!vecType->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getVectorType(getCanonicalType(vecType), NumElts);
|
2007-07-07 07:09:18 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
|
|
|
VectorType *New = new VectorType(vecType, NumElts, Canonical);
|
|
|
|
VectorTypes.InsertNode(New, InsertPos);
|
|
|
|
Types.push_back(New);
|
|
|
|
return QualType(New, 0);
|
|
|
|
}
|
|
|
|
|
2008-04-19 07:10:10 +08:00
|
|
|
/// getExtVectorType - Return the unique reference to an extended vector type of
|
2007-07-19 02:00:27 +08:00
|
|
|
/// the specified element type and size. VectorType must be a built-in type.
|
2008-04-19 07:10:10 +08:00
|
|
|
QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) {
|
2007-07-19 02:00:27 +08:00
|
|
|
BuiltinType *baseType;
|
|
|
|
|
2008-04-07 06:59:24 +08:00
|
|
|
baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
|
2008-04-19 07:10:10 +08:00
|
|
|
assert(baseType != 0 && "getExtVectorType(): Expecting a built-in type");
|
2007-07-19 02:00:27 +08:00
|
|
|
|
|
|
|
// Check if we've already instantiated a vector of this type.
|
|
|
|
llvm::FoldingSetNodeID ID;
|
2008-04-19 07:10:10 +08:00
|
|
|
VectorType::Profile(ID, vecType, NumElts, Type::ExtVector);
|
2007-07-19 02:00:27 +08:00
|
|
|
void *InsertPos = 0;
|
|
|
|
if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return QualType(VTP, 0);
|
|
|
|
|
|
|
|
// If the element type isn't canonical, this won't be a canonical type either,
|
|
|
|
// so fill in the canonical type field.
|
|
|
|
QualType Canonical;
|
|
|
|
if (!vecType->isCanonical()) {
|
2008-04-19 07:10:10 +08:00
|
|
|
Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
|
2007-07-19 02:00:27 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
2008-04-19 07:10:10 +08:00
|
|
|
ExtVectorType *New = new ExtVectorType(vecType, NumElts, Canonical);
|
2007-07-19 02:00:27 +08:00
|
|
|
VectorTypes.InsertNode(New, InsertPos);
|
|
|
|
Types.push_back(New);
|
|
|
|
return QualType(New, 0);
|
|
|
|
}
|
|
|
|
|
2006-12-02 15:52:18 +08:00
|
|
|
/// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'.
|
|
|
|
///
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
|
2006-12-02 15:52:18 +08:00
|
|
|
// Unique functions, to guarantee there is only one function of a particular
|
|
|
|
// structure.
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2007-01-27 16:37:20 +08:00
|
|
|
FunctionTypeNoProto::Profile(ID, ResultTy);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (FunctionTypeNoProto *FT =
|
|
|
|
FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos))
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(FT, 0);
|
2007-01-27 16:37:20 +08:00
|
|
|
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType Canonical;
|
2007-01-27 16:37:20 +08:00
|
|
|
if (!ResultTy->isCanonical()) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getFunctionTypeNoProto(getCanonicalType(ResultTy));
|
2007-01-27 16:37:20 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
FunctionTypeNoProto *NewIP =
|
|
|
|
FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
|
|
|
}
|
2006-12-02 15:52:18 +08:00
|
|
|
|
2007-01-27 16:37:20 +08:00
|
|
|
FunctionTypeNoProto *New = new FunctionTypeNoProto(ResultTy, Canonical);
|
|
|
|
Types.push_back(New);
|
2008-02-26 06:11:40 +08:00
|
|
|
FunctionTypeNoProtos.InsertNode(New, InsertPos);
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(New, 0);
|
2006-12-02 15:52:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getFunctionType - Return a normal function type with a typed argument
|
|
|
|
/// list. isVariadic indicates whether the argument list includes '...'.
|
2008-08-22 08:59:49 +08:00
|
|
|
QualType ASTContext::getFunctionType(QualType ResultTy, const QualType *ArgArray,
|
2007-04-06 06:36:20 +08:00
|
|
|
unsigned NumArgs, bool isVariadic) {
|
2006-12-02 15:52:18 +08:00
|
|
|
// Unique functions, to guarantee there is only one function of a particular
|
|
|
|
// structure.
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2007-01-27 09:15:32 +08:00
|
|
|
FunctionTypeProto::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic);
|
|
|
|
|
|
|
|
void *InsertPos = 0;
|
|
|
|
if (FunctionTypeProto *FTP =
|
|
|
|
FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos))
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(FTP, 0);
|
2007-01-27 09:15:32 +08:00
|
|
|
|
2006-12-02 15:52:18 +08:00
|
|
|
// Determine whether the type being created is already canonical or not.
|
|
|
|
bool isCanonical = ResultTy->isCanonical();
|
|
|
|
for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
|
|
|
|
if (!ArgArray[i]->isCanonical())
|
|
|
|
isCanonical = false;
|
|
|
|
|
|
|
|
// If this type isn't canonical, get the canonical version of it.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType Canonical;
|
2006-12-02 15:52:18 +08:00
|
|
|
if (!isCanonical) {
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::SmallVector<QualType, 16> CanonicalArgs;
|
2006-12-02 15:52:18 +08:00
|
|
|
CanonicalArgs.reserve(NumArgs);
|
|
|
|
for (unsigned i = 0; i != NumArgs; ++i)
|
2008-04-07 06:59:24 +08:00
|
|
|
CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
|
2006-12-02 15:52:18 +08:00
|
|
|
|
2008-04-07 06:59:24 +08:00
|
|
|
Canonical = getFunctionType(getCanonicalType(ResultTy),
|
2006-12-02 15:52:18 +08:00
|
|
|
&CanonicalArgs[0], NumArgs,
|
2007-04-06 05:15:20 +08:00
|
|
|
isVariadic);
|
2007-01-27 09:15:32 +08:00
|
|
|
|
|
|
|
// Get the new insert position for the node we care about.
|
|
|
|
FunctionTypeProto *NewIP =
|
|
|
|
FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos);
|
|
|
|
assert(NewIP == 0 && "Shouldn't be in the map!");
|
2006-12-02 15:52:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// FunctionTypeProto objects are not allocated with new because they have a
|
|
|
|
// variable size array (for parameter types) at the end of them.
|
|
|
|
FunctionTypeProto *FTP =
|
|
|
|
(FunctionTypeProto*)malloc(sizeof(FunctionTypeProto) +
|
2007-07-21 02:48:28 +08:00
|
|
|
NumArgs*sizeof(QualType));
|
2006-12-02 15:52:18 +08:00
|
|
|
new (FTP) FunctionTypeProto(ResultTy, ArgArray, NumArgs, isVariadic,
|
|
|
|
Canonical);
|
|
|
|
Types.push_back(FTP);
|
2007-01-27 09:15:32 +08:00
|
|
|
FunctionTypeProtos.InsertNode(FTP, InsertPos);
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(FTP, 0);
|
2006-12-02 15:52:18 +08:00
|
|
|
}
|
2006-11-10 15:17:23 +08:00
|
|
|
|
2008-04-14 05:07:44 +08:00
|
|
|
/// getTypeDeclType - Return the unique reference to the type for the
|
|
|
|
/// specified type declaration.
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) {
|
2008-04-14 05:07:44 +08:00
|
|
|
if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
|
|
|
|
|
|
|
|
if (TypedefDecl *Typedef = dyn_cast_or_null<TypedefDecl>(Decl))
|
|
|
|
return getTypedefType(Typedef);
|
|
|
|
else if (ObjCInterfaceDecl *ObjCInterface
|
|
|
|
= dyn_cast_or_null<ObjCInterfaceDecl>(Decl))
|
|
|
|
return getObjCInterfaceType(ObjCInterface);
|
2008-08-08 04:55:28 +08:00
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
if (CXXRecordDecl *CXXRecord = dyn_cast_or_null<CXXRecordDecl>(Decl)) {
|
|
|
|
Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
|
|
|
|
: new CXXRecordType(CXXRecord);
|
|
|
|
}
|
|
|
|
else if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Decl)) {
|
|
|
|
Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
|
|
|
|
: new RecordType(Record);
|
|
|
|
}
|
2008-08-08 04:55:28 +08:00
|
|
|
else if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Decl))
|
2008-04-14 05:07:44 +08:00
|
|
|
Decl->TypeForDecl = new EnumType(Enum);
|
2008-08-08 04:55:28 +08:00
|
|
|
else
|
2008-04-14 05:07:44 +08:00
|
|
|
assert(false && "TypeDecl without a type?");
|
2008-08-08 04:55:28 +08:00
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
if (!PrevDecl) Types.push_back(Decl->TypeForDecl);
|
2008-08-08 04:55:28 +08:00
|
|
|
return QualType(Decl->TypeForDecl, 0);
|
2008-04-14 05:07:44 +08:00
|
|
|
}
|
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
/// setTagDefinition - Used by RecordDecl::defineBody to inform ASTContext
|
|
|
|
/// about which RecordDecl serves as the definition of a particular
|
|
|
|
/// struct/union/class. This will eventually be used by enums as well.
|
|
|
|
void ASTContext::setTagDefinition(TagDecl* D) {
|
|
|
|
assert (D->isDefinition());
|
|
|
|
cast<TagType>(D->TypeForDecl)->decl = D;
|
|
|
|
}
|
|
|
|
|
2007-01-26 10:01:53 +08:00
|
|
|
/// getTypedefType - Return the unique reference to the type for the
|
2006-11-20 12:02:15 +08:00
|
|
|
/// specified typename decl.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
|
|
|
|
if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
|
2006-11-20 12:02:15 +08:00
|
|
|
|
2008-04-07 06:59:24 +08:00
|
|
|
QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
|
2007-12-18 05:03:50 +08:00
|
|
|
Decl->TypeForDecl = new TypedefType(Type::TypeName, Decl, Canonical);
|
2007-03-27 04:16:44 +08:00
|
|
|
Types.push_back(Decl->TypeForDecl);
|
2007-04-06 06:36:20 +08:00
|
|
|
return QualType(Decl->TypeForDecl, 0);
|
2006-11-20 12:02:15 +08:00
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
/// getObjCInterfaceType - Return the unique reference to the type for the
|
2007-09-07 05:24:23 +08:00
|
|
|
/// specified ObjC interface decl.
|
2008-01-08 03:49:32 +08:00
|
|
|
QualType ASTContext::getObjCInterfaceType(ObjCInterfaceDecl *Decl) {
|
2007-09-07 05:24:23 +08:00
|
|
|
if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
Decl->TypeForDecl = new ObjCInterfaceType(Type::ObjCInterface, Decl);
|
2007-09-07 05:24:23 +08:00
|
|
|
Types.push_back(Decl->TypeForDecl);
|
|
|
|
return QualType(Decl->TypeForDecl, 0);
|
|
|
|
}
|
|
|
|
|
2008-04-07 12:56:42 +08:00
|
|
|
/// CmpProtocolNames - Comparison predicate for sorting protocols
|
|
|
|
/// alphabetically.
|
|
|
|
static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
|
|
|
|
const ObjCProtocolDecl *RHS) {
|
|
|
|
return strcmp(LHS->getName(), RHS->getName()) < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SortAndUniqueProtocols(ObjCProtocolDecl **&Protocols,
|
|
|
|
unsigned &NumProtocols) {
|
|
|
|
ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
|
|
|
|
|
|
|
|
// Sort protocols, keyed by name.
|
|
|
|
std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
|
|
|
|
|
|
|
|
// Remove duplicates.
|
|
|
|
ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
|
|
|
|
NumProtocols = ProtocolsEnd-Protocols;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-07 12:44:08 +08:00
|
|
|
/// getObjCQualifiedInterfaceType - Return a ObjCQualifiedInterfaceType type for
|
|
|
|
/// the given interface decl and the conforming protocol list.
|
2008-01-08 03:49:32 +08:00
|
|
|
QualType ASTContext::getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl,
|
|
|
|
ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
|
2008-04-07 12:56:42 +08:00
|
|
|
// Sort the protocol list alphabetically to canonicalize it.
|
|
|
|
SortAndUniqueProtocols(Protocols, NumProtocols);
|
|
|
|
|
2007-10-11 08:55:41 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2008-04-07 14:38:24 +08:00
|
|
|
ObjCQualifiedInterfaceType::Profile(ID, Decl, Protocols, NumProtocols);
|
2007-10-11 08:55:41 +08:00
|
|
|
|
|
|
|
void *InsertPos = 0;
|
2008-01-08 03:49:32 +08:00
|
|
|
if (ObjCQualifiedInterfaceType *QT =
|
|
|
|
ObjCQualifiedInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
|
2007-10-11 08:55:41 +08:00
|
|
|
return QualType(QT, 0);
|
|
|
|
|
|
|
|
// No Match;
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCQualifiedInterfaceType *QType =
|
|
|
|
new ObjCQualifiedInterfaceType(Decl, Protocols, NumProtocols);
|
2007-10-11 08:55:41 +08:00
|
|
|
Types.push_back(QType);
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCQualifiedInterfaceTypes.InsertNode(QType, InsertPos);
|
2007-10-11 08:55:41 +08:00
|
|
|
return QualType(QType, 0);
|
|
|
|
}
|
|
|
|
|
2008-04-07 12:56:42 +08:00
|
|
|
/// getObjCQualifiedIdType - Return an ObjCQualifiedIdType for the 'id' decl
|
|
|
|
/// and the conforming protocol list.
|
2008-07-26 08:46:50 +08:00
|
|
|
QualType ASTContext::getObjCQualifiedIdType(ObjCProtocolDecl **Protocols,
|
2007-12-18 05:03:50 +08:00
|
|
|
unsigned NumProtocols) {
|
2008-04-07 12:56:42 +08:00
|
|
|
// Sort the protocol list alphabetically to canonicalize it.
|
|
|
|
SortAndUniqueProtocols(Protocols, NumProtocols);
|
|
|
|
|
2007-12-18 05:03:50 +08:00
|
|
|
llvm::FoldingSetNodeID ID;
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCQualifiedIdType::Profile(ID, Protocols, NumProtocols);
|
2007-12-18 05:03:50 +08:00
|
|
|
|
|
|
|
void *InsertPos = 0;
|
2008-01-08 03:49:32 +08:00
|
|
|
if (ObjCQualifiedIdType *QT =
|
2008-07-26 08:46:50 +08:00
|
|
|
ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos))
|
2007-12-18 05:03:50 +08:00
|
|
|
return QualType(QT, 0);
|
|
|
|
|
|
|
|
// No Match;
|
2008-07-26 08:46:50 +08:00
|
|
|
ObjCQualifiedIdType *QType = new ObjCQualifiedIdType(Protocols, NumProtocols);
|
2007-12-18 05:03:50 +08:00
|
|
|
Types.push_back(QType);
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCQualifiedIdTypes.InsertNode(QType, InsertPos);
|
2007-12-18 05:03:50 +08:00
|
|
|
return QualType(QType, 0);
|
|
|
|
}
|
|
|
|
|
2007-08-02 02:02:17 +08:00
|
|
|
/// getTypeOfExpr - Unlike many "get<Type>" functions, we can't unique
|
|
|
|
/// TypeOfExpr AST's (since expression's are never shared). For example,
|
|
|
|
/// multiple declarations that refer to "typeof(x)" all contain different
|
|
|
|
/// DeclRefExpr's. This doesn't effect the type checker, since it operates
|
|
|
|
/// on canonical type's (which are always unique).
|
2007-08-02 01:20:42 +08:00
|
|
|
QualType ASTContext::getTypeOfExpr(Expr *tofExpr) {
|
2008-04-07 06:59:24 +08:00
|
|
|
QualType Canonical = getCanonicalType(tofExpr->getType());
|
2007-08-02 02:02:17 +08:00
|
|
|
TypeOfExpr *toe = new TypeOfExpr(tofExpr, Canonical);
|
|
|
|
Types.push_back(toe);
|
|
|
|
return QualType(toe, 0);
|
2007-07-31 20:34:36 +08:00
|
|
|
}
|
|
|
|
|
2007-08-02 02:02:17 +08:00
|
|
|
/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
|
|
|
|
/// TypeOfType AST's. The only motivation to unique these nodes would be
|
|
|
|
/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
|
|
|
|
/// an issue. This doesn't effect the type checker, since it operates
|
|
|
|
/// on canonical type's (which are always unique).
|
2007-07-31 20:34:36 +08:00
|
|
|
QualType ASTContext::getTypeOfType(QualType tofType) {
|
2008-04-07 06:59:24 +08:00
|
|
|
QualType Canonical = getCanonicalType(tofType);
|
2007-08-02 02:02:17 +08:00
|
|
|
TypeOfType *tot = new TypeOfType(tofType, Canonical);
|
|
|
|
Types.push_back(tot);
|
|
|
|
return QualType(tot, 0);
|
2007-07-31 20:34:36 +08:00
|
|
|
}
|
|
|
|
|
2007-01-23 13:45:31 +08:00
|
|
|
/// getTagDeclType - Return the unique reference to the type for the
|
|
|
|
/// specified TagDecl (struct/union/class/enum) decl.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType ASTContext::getTagDeclType(TagDecl *Decl) {
|
2007-11-27 05:16:01 +08:00
|
|
|
assert (Decl);
|
2008-04-14 05:07:44 +08:00
|
|
|
return getTypeDeclType(Decl);
|
2007-01-23 13:45:31 +08:00
|
|
|
}
|
|
|
|
|
2007-04-03 06:35:25 +08:00
|
|
|
/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
|
2007-04-03 07:01:44 +08:00
|
|
|
/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
|
2007-04-03 06:35:25 +08:00
|
|
|
/// needs to agree with the definition in <stddef.h>.
|
2007-04-06 06:36:20 +08:00
|
|
|
QualType ASTContext::getSizeType() const {
|
2007-04-03 06:35:25 +08:00
|
|
|
// On Darwin, size_t is defined as a "long unsigned int".
|
|
|
|
// FIXME: should derive from "Target".
|
|
|
|
return UnsignedLongTy;
|
|
|
|
}
|
2007-01-23 13:45:31 +08:00
|
|
|
|
2008-08-10 01:20:01 +08:00
|
|
|
/// getWCharType - Return the unique type for "wchar_t" (C99 7.17), the
|
2008-02-12 16:29:21 +08:00
|
|
|
/// width of characters in wide strings, The value is target dependent and
|
|
|
|
/// needs to agree with the definition in <stddef.h>.
|
2008-08-10 01:20:01 +08:00
|
|
|
QualType ASTContext::getWCharType() const {
|
2008-08-10 00:51:54 +08:00
|
|
|
if (LangOpts.CPlusPlus)
|
|
|
|
return WCharTy;
|
|
|
|
|
2008-02-12 16:29:21 +08:00
|
|
|
// On Darwin, wchar_t is defined as a "int".
|
|
|
|
// FIXME: should derive from "Target".
|
|
|
|
return IntTy;
|
|
|
|
}
|
|
|
|
|
2008-08-10 00:51:54 +08:00
|
|
|
/// getSignedWCharType - Return the type of "signed wchar_t".
|
|
|
|
/// Used when in C++, as a GCC extension.
|
|
|
|
QualType ASTContext::getSignedWCharType() const {
|
|
|
|
// FIXME: derive from "Target" ?
|
|
|
|
return WCharTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
|
|
|
|
/// Used when in C++, as a GCC extension.
|
|
|
|
QualType ASTContext::getUnsignedWCharType() const {
|
|
|
|
// FIXME: derive from "Target" ?
|
|
|
|
return UnsignedIntTy;
|
|
|
|
}
|
|
|
|
|
2007-07-13 11:05:23 +08:00
|
|
|
/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
|
|
|
|
/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
|
|
|
|
QualType ASTContext::getPointerDiffType() const {
|
|
|
|
// On Darwin, ptrdiff_t is defined as a "int". This seems like a bug...
|
|
|
|
// FIXME: should derive from "Target".
|
|
|
|
return IntTy;
|
|
|
|
}
|
|
|
|
|
2008-04-02 13:18:44 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Type Operators
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-04-07 06:41:35 +08:00
|
|
|
/// getCanonicalType - Return the canonical (structural) type corresponding to
|
|
|
|
/// the specified potentially non-canonical type. The non-canonical version
|
|
|
|
/// of a type may have many "decorated" versions of types. Decorators can
|
|
|
|
/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
|
|
|
|
/// to be free of any of these, allowing two canonical types to be compared
|
|
|
|
/// for exact equality with a simple pointer comparison.
|
|
|
|
QualType ASTContext::getCanonicalType(QualType T) {
|
|
|
|
QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
|
2008-08-04 15:31:14 +08:00
|
|
|
|
|
|
|
// If the result has type qualifiers, make sure to canonicalize them as well.
|
|
|
|
unsigned TypeQuals = T.getCVRQualifiers() | CanType.getCVRQualifiers();
|
|
|
|
if (TypeQuals == 0) return CanType;
|
|
|
|
|
|
|
|
// If the type qualifiers are on an array type, get the canonical type of the
|
|
|
|
// array with the qualifiers applied to the element type.
|
|
|
|
ArrayType *AT = dyn_cast<ArrayType>(CanType);
|
|
|
|
if (!AT)
|
|
|
|
return CanType.getQualifiedType(TypeQuals);
|
|
|
|
|
|
|
|
// Get the canonical version of the element with the extra qualifiers on it.
|
|
|
|
// This can recursively sink qualifiers through multiple levels of arrays.
|
|
|
|
QualType NewEltTy=AT->getElementType().getWithAdditionalQualifiers(TypeQuals);
|
|
|
|
NewEltTy = getCanonicalType(NewEltTy);
|
|
|
|
|
|
|
|
if (ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
|
|
|
|
return getConstantArrayType(NewEltTy, CAT->getSize(),CAT->getSizeModifier(),
|
|
|
|
CAT->getIndexTypeQualifier());
|
|
|
|
if (IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT))
|
|
|
|
return getIncompleteArrayType(NewEltTy, IAT->getSizeModifier(),
|
|
|
|
IAT->getIndexTypeQualifier());
|
|
|
|
|
|
|
|
// FIXME: What is the ownership of size expressions in VLAs?
|
|
|
|
VariableArrayType *VAT = cast<VariableArrayType>(AT);
|
|
|
|
return getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
|
|
|
|
VAT->getSizeModifier(),
|
|
|
|
VAT->getIndexTypeQualifier());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const ArrayType *ASTContext::getAsArrayType(QualType T) {
|
|
|
|
// Handle the non-qualified case efficiently.
|
|
|
|
if (T.getCVRQualifiers() == 0) {
|
|
|
|
// Handle the common positive case fast.
|
|
|
|
if (const ArrayType *AT = dyn_cast<ArrayType>(T))
|
|
|
|
return AT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the common negative case fast, ignoring CVR qualifiers.
|
|
|
|
QualType CType = T->getCanonicalTypeInternal();
|
|
|
|
|
|
|
|
// Make sure to look through type qualifiers (like ASQuals) for the negative
|
|
|
|
// test.
|
|
|
|
if (!isa<ArrayType>(CType) &&
|
|
|
|
!isa<ArrayType>(CType.getUnqualifiedType()))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Apply any CVR qualifiers from the array type to the element type. This
|
|
|
|
// implements C99 6.7.3p8: "If the specification of an array type includes
|
|
|
|
// any type qualifiers, the element type is so qualified, not the array type."
|
|
|
|
|
|
|
|
// If we get here, we either have type qualifiers on the type, or we have
|
|
|
|
// sugar such as a typedef in the way. If we have type qualifiers on the type
|
|
|
|
// we must propagate them down into the elemeng type.
|
|
|
|
unsigned CVRQuals = T.getCVRQualifiers();
|
|
|
|
unsigned AddrSpace = 0;
|
|
|
|
Type *Ty = T.getTypePtr();
|
|
|
|
|
|
|
|
// Rip through ASQualType's and typedefs to get to a concrete type.
|
|
|
|
while (1) {
|
|
|
|
if (const ASQualType *ASQT = dyn_cast<ASQualType>(Ty)) {
|
|
|
|
AddrSpace = ASQT->getAddressSpace();
|
|
|
|
Ty = ASQT->getBaseType();
|
|
|
|
} else {
|
|
|
|
T = Ty->getDesugaredType();
|
|
|
|
if (T.getTypePtr() == Ty && T.getCVRQualifiers() == 0)
|
|
|
|
break;
|
|
|
|
CVRQuals |= T.getCVRQualifiers();
|
|
|
|
Ty = T.getTypePtr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a simple case, just return now.
|
|
|
|
const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
|
|
|
|
if (ATy == 0 || (AddrSpace == 0 && CVRQuals == 0))
|
|
|
|
return ATy;
|
|
|
|
|
|
|
|
// Otherwise, we have an array and we have qualifiers on it. Push the
|
|
|
|
// qualifiers into the array element type and return a new array type.
|
|
|
|
// Get the canonical version of the element with the extra qualifiers on it.
|
|
|
|
// This can recursively sink qualifiers through multiple levels of arrays.
|
|
|
|
QualType NewEltTy = ATy->getElementType();
|
|
|
|
if (AddrSpace)
|
|
|
|
NewEltTy = getASQualType(NewEltTy, AddrSpace);
|
|
|
|
NewEltTy = NewEltTy.getWithAdditionalQualifiers(CVRQuals);
|
|
|
|
|
|
|
|
if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
|
|
|
|
return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
|
|
|
|
CAT->getSizeModifier(),
|
|
|
|
CAT->getIndexTypeQualifier()));
|
|
|
|
if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
|
|
|
|
return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
|
|
|
|
IAT->getSizeModifier(),
|
|
|
|
IAT->getIndexTypeQualifier()));
|
|
|
|
|
|
|
|
// FIXME: What is the ownership of size expressions in VLAs?
|
|
|
|
const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
|
|
|
|
return cast<ArrayType>(getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
|
|
|
|
VAT->getSizeModifier(),
|
|
|
|
VAT->getIndexTypeQualifier()));
|
2008-04-07 06:41:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-02 13:18:44 +08:00
|
|
|
/// getArrayDecayedType - Return the properly qualified result of decaying the
|
|
|
|
/// specified array type to a pointer. This operation is non-trivial when
|
|
|
|
/// handling typedefs etc. The canonical type of "T" must be an array type,
|
|
|
|
/// this returns a pointer to a properly qualified element of the array.
|
|
|
|
///
|
|
|
|
/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
|
|
|
|
QualType ASTContext::getArrayDecayedType(QualType Ty) {
|
2008-08-04 15:31:14 +08:00
|
|
|
// Get the element type with 'getAsArrayType' so that we don't lose any
|
|
|
|
// typedefs in the element type of the array. This also handles propagation
|
|
|
|
// of type qualifiers from the array type into the element type if present
|
|
|
|
// (C99 6.7.3p8).
|
|
|
|
const ArrayType *PrettyArrayType = getAsArrayType(Ty);
|
|
|
|
assert(PrettyArrayType && "Not an array type!");
|
2008-04-02 13:18:44 +08:00
|
|
|
|
2008-08-04 15:31:14 +08:00
|
|
|
QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
|
2008-04-02 13:18:44 +08:00
|
|
|
|
|
|
|
// int x[restrict 4] -> int *restrict
|
2008-08-04 15:31:14 +08:00
|
|
|
return PtrTy.getQualifiedType(PrettyArrayType->getIndexTypeQualifier());
|
2008-04-02 13:18:44 +08:00
|
|
|
}
|
|
|
|
|
2007-04-28 05:51:21 +08:00
|
|
|
/// getFloatingRank - Return a relative rank for floating point types.
|
|
|
|
/// This routine will assert if passed a built-in type that isn't a float.
|
2008-04-07 07:38:49 +08:00
|
|
|
static FloatingRank getFloatingRank(QualType T) {
|
2008-02-04 10:31:56 +08:00
|
|
|
if (const ComplexType *CT = T->getAsComplexType())
|
2007-06-23 04:56:16 +08:00
|
|
|
return getFloatingRank(CT->getElementType());
|
2008-04-07 07:38:49 +08:00
|
|
|
|
2008-02-04 10:31:56 +08:00
|
|
|
switch (T->getAsBuiltinType()->getKind()) {
|
2008-04-07 07:38:49 +08:00
|
|
|
default: assert(0 && "getFloatingRank(): not a floating type");
|
2007-06-23 04:56:16 +08:00
|
|
|
case BuiltinType::Float: return FloatRank;
|
|
|
|
case BuiltinType::Double: return DoubleRank;
|
|
|
|
case BuiltinType::LongDouble: return LongDoubleRank;
|
2007-04-28 02:30:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-27 09:41:48 +08:00
|
|
|
/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
|
|
|
|
/// point or a complex type (based on typeDomain/typeSize).
|
|
|
|
/// 'typeDomain' is a real floating point or complex type.
|
|
|
|
/// 'typeSize' is a real floating point or complex type.
|
2008-04-07 07:58:54 +08:00
|
|
|
QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
|
|
|
|
QualType Domain) const {
|
|
|
|
FloatingRank EltRank = getFloatingRank(Size);
|
|
|
|
if (Domain->isComplexType()) {
|
|
|
|
switch (EltRank) {
|
2007-08-27 09:41:48 +08:00
|
|
|
default: assert(0 && "getFloatingRank(): illegal value for rank");
|
2007-08-27 09:27:54 +08:00
|
|
|
case FloatRank: return FloatComplexTy;
|
|
|
|
case DoubleRank: return DoubleComplexTy;
|
|
|
|
case LongDoubleRank: return LongDoubleComplexTy;
|
|
|
|
}
|
|
|
|
}
|
2008-04-07 07:58:54 +08:00
|
|
|
|
|
|
|
assert(Domain->isRealFloatingType() && "Unknown domain!");
|
|
|
|
switch (EltRank) {
|
|
|
|
default: assert(0 && "getFloatingRank(): illegal value for rank");
|
|
|
|
case FloatRank: return FloatTy;
|
|
|
|
case DoubleRank: return DoubleTy;
|
|
|
|
case LongDoubleRank: return LongDoubleTy;
|
2007-04-28 05:51:21 +08:00
|
|
|
}
|
2007-04-28 02:30:00 +08:00
|
|
|
}
|
|
|
|
|
2008-04-07 07:55:33 +08:00
|
|
|
/// getFloatingTypeOrder - Compare the rank of the two specified floating
|
|
|
|
/// point types, ignoring the domain of the type (i.e. 'double' ==
|
|
|
|
/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
|
|
|
|
/// LHS < RHS, return -1.
|
2008-04-07 07:38:49 +08:00
|
|
|
int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
|
|
|
|
FloatingRank LHSR = getFloatingRank(LHS);
|
|
|
|
FloatingRank RHSR = getFloatingRank(RHS);
|
|
|
|
|
|
|
|
if (LHSR == RHSR)
|
2007-08-27 23:30:22 +08:00
|
|
|
return 0;
|
2008-04-07 07:38:49 +08:00
|
|
|
if (LHSR > RHSR)
|
2007-08-27 23:30:22 +08:00
|
|
|
return 1;
|
|
|
|
return -1;
|
2007-04-28 02:30:00 +08:00
|
|
|
}
|
|
|
|
|
2008-04-07 06:59:24 +08:00
|
|
|
/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
|
|
|
|
/// routine will assert if passed a built-in type that isn't an integer or enum,
|
|
|
|
/// or if it is not canonicalized.
|
|
|
|
static unsigned getIntegerRank(Type *T) {
|
|
|
|
assert(T->isCanonical() && "T should be canonicalized");
|
|
|
|
if (isa<EnumType>(T))
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
switch (cast<BuiltinType>(T)->getKind()) {
|
2008-04-07 07:55:33 +08:00
|
|
|
default: assert(0 && "getIntegerRank(): not a built-in integer");
|
|
|
|
case BuiltinType::Bool:
|
|
|
|
return 1;
|
|
|
|
case BuiltinType::Char_S:
|
|
|
|
case BuiltinType::Char_U:
|
|
|
|
case BuiltinType::SChar:
|
|
|
|
case BuiltinType::UChar:
|
|
|
|
return 2;
|
|
|
|
case BuiltinType::Short:
|
|
|
|
case BuiltinType::UShort:
|
|
|
|
return 3;
|
|
|
|
case BuiltinType::Int:
|
|
|
|
case BuiltinType::UInt:
|
|
|
|
return 4;
|
|
|
|
case BuiltinType::Long:
|
|
|
|
case BuiltinType::ULong:
|
|
|
|
return 5;
|
|
|
|
case BuiltinType::LongLong:
|
|
|
|
case BuiltinType::ULongLong:
|
|
|
|
return 6;
|
2008-04-07 06:59:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-07 07:55:33 +08:00
|
|
|
/// getIntegerTypeOrder - Returns the highest ranked integer type:
|
|
|
|
/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
|
|
|
|
/// LHS < RHS, return -1.
|
|
|
|
int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
|
2008-04-07 06:59:24 +08:00
|
|
|
Type *LHSC = getCanonicalType(LHS).getTypePtr();
|
|
|
|
Type *RHSC = getCanonicalType(RHS).getTypePtr();
|
2008-04-07 07:55:33 +08:00
|
|
|
if (LHSC == RHSC) return 0;
|
2007-06-03 15:25:34 +08:00
|
|
|
|
2008-04-07 06:59:24 +08:00
|
|
|
bool LHSUnsigned = LHSC->isUnsignedIntegerType();
|
|
|
|
bool RHSUnsigned = RHSC->isUnsignedIntegerType();
|
2007-04-28 02:30:00 +08:00
|
|
|
|
2008-04-07 07:55:33 +08:00
|
|
|
unsigned LHSRank = getIntegerRank(LHSC);
|
|
|
|
unsigned RHSRank = getIntegerRank(RHSC);
|
2007-04-28 02:30:00 +08:00
|
|
|
|
2008-04-07 07:55:33 +08:00
|
|
|
if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
|
|
|
|
if (LHSRank == RHSRank) return 0;
|
|
|
|
return LHSRank > RHSRank ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
|
|
|
|
if (LHSUnsigned) {
|
|
|
|
// If the unsigned [LHS] type is larger, return it.
|
|
|
|
if (LHSRank >= RHSRank)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// If the signed type can represent all values of the unsigned type, it
|
|
|
|
// wins. Because we are dealing with 2's complement and types that are
|
|
|
|
// powers of two larger than each other, this is always safe.
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the unsigned [RHS] type is larger, return it.
|
|
|
|
if (RHSRank >= LHSRank)
|
|
|
|
return -1;
|
2007-04-28 02:30:00 +08:00
|
|
|
|
2008-04-07 07:55:33 +08:00
|
|
|
// If the signed type can represent all values of the unsigned type, it
|
|
|
|
// wins. Because we are dealing with 2's complement and types that are
|
|
|
|
// powers of two larger than each other, this is always safe.
|
|
|
|
return 1;
|
2007-04-28 02:30:00 +08:00
|
|
|
}
|
2007-08-17 13:31:46 +08:00
|
|
|
|
|
|
|
// getCFConstantStringType - Return the type used for constant CFStrings.
|
|
|
|
QualType ASTContext::getCFConstantStringType() {
|
|
|
|
if (!CFConstantStringTypeDecl) {
|
2008-03-15 14:12:44 +08:00
|
|
|
CFConstantStringTypeDecl =
|
2008-06-10 07:19:58 +08:00
|
|
|
RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
|
2008-09-05 09:34:33 +08:00
|
|
|
&Idents.get("NSConstantString"));
|
2007-11-19 08:25:30 +08:00
|
|
|
QualType FieldTypes[4];
|
2007-08-17 13:31:46 +08:00
|
|
|
|
|
|
|
// const int *isa;
|
|
|
|
FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
|
2007-11-19 08:25:30 +08:00
|
|
|
// int flags;
|
|
|
|
FieldTypes[1] = IntTy;
|
2007-08-17 13:31:46 +08:00
|
|
|
// const char *str;
|
2007-11-19 08:25:30 +08:00
|
|
|
FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
|
2007-08-17 13:31:46 +08:00
|
|
|
// long length;
|
2007-11-19 08:25:30 +08:00
|
|
|
FieldTypes[3] = LongTy;
|
2007-08-17 13:31:46 +08:00
|
|
|
// Create fields
|
2007-11-19 08:25:30 +08:00
|
|
|
FieldDecl *FieldDecls[4];
|
2007-08-17 13:31:46 +08:00
|
|
|
|
2007-11-19 08:25:30 +08:00
|
|
|
for (unsigned i = 0; i < 4; ++i)
|
2008-04-06 12:47:34 +08:00
|
|
|
FieldDecls[i] = FieldDecl::Create(*this, SourceLocation(), 0,
|
2008-03-16 08:16:02 +08:00
|
|
|
FieldTypes[i]);
|
2007-08-17 13:31:46 +08:00
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
CFConstantStringTypeDecl->defineBody(*this, FieldDecls, 4);
|
2007-08-17 13:31:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return getTagDeclType(CFConstantStringTypeDecl);
|
2007-09-11 23:32:40 +08:00
|
|
|
}
|
2007-10-11 09:00:40 +08:00
|
|
|
|
2008-08-31 03:34:46 +08:00
|
|
|
QualType ASTContext::getObjCFastEnumerationStateType()
|
|
|
|
{
|
|
|
|
if (!ObjCFastEnumerationStateTypeDecl) {
|
|
|
|
QualType FieldTypes[] = {
|
|
|
|
UnsignedLongTy,
|
|
|
|
getPointerType(ObjCIdType),
|
|
|
|
getPointerType(UnsignedLongTy),
|
|
|
|
getConstantArrayType(UnsignedLongTy,
|
|
|
|
llvm::APInt(32, 5), ArrayType::Normal, 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
FieldDecl *FieldDecls[4];
|
|
|
|
for (size_t i = 0; i < 4; ++i)
|
|
|
|
FieldDecls[i] = FieldDecl::Create(*this, SourceLocation(), 0,
|
|
|
|
FieldTypes[i]);
|
|
|
|
|
|
|
|
ObjCFastEnumerationStateTypeDecl =
|
|
|
|
RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
|
2008-09-05 09:34:33 +08:00
|
|
|
&Idents.get("__objcFastEnumerationState"));
|
2008-08-31 03:34:46 +08:00
|
|
|
|
Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it.
This change effects both RecordDecls and CXXRecordDecls, but does not effect EnumDecls (yet).
The motivation of this patch is as follows:
- Capture more source information, necessary for refactoring/rewriting clients.
- Pave the way to resolve ownership issues with RecordDecls with the forthcoming
addition of DeclGroups.
Current caveats:
- Until DeclGroups are in place, we will leak RecordDecls not explicitly
referenced by the AST. For example:
typedef struct { ... } x;
The RecordDecl for the struct will be leaked because the TypedefDecl doesn't
refer to it. This will be solved with DeclGroups.
- This patch also (temporarily) breaks CodeGen. More below.
High-level changes:
- As before, TagType still refers to a TagDecl, but it doesn't own it. When
a struct/union/class is first referenced, a RecordType and RecordDecl are
created for it, and the RecordType refers to that RecordDecl. Later, if
a new RecordDecl is created, the pointer to a RecordDecl in RecordType is
updated to point to the RecordDecl that defines the struct/union/class.
- TagDecl and RecordDecl now how a method 'getDefinition()' to return the
TagDecl*/RecordDecl* that refers to the TagDecl* that defines a particular
enum/struct/class/union. This is useful from going from a RecordDecl* that
defines a forward declaration to the RecordDecl* that provides the actual
definition. Note that this also works for EnumDecls, except that in this case
there is no distinction between forward declarations and definitions (yet).
- Clients should no longer assume that 'isDefinition()' returns true from a
RecordDecl if the corresponding struct/union/class has been defined.
isDefinition() only returns true if a particular RecordDecl is the defining
Decl. Use 'getDefinition()' instead to determine if a struct has been defined.
- The main changes to Sema happen in ActOnTag. To make the changes more
incremental, I split off the processing of enums and structs et al into two
code paths. Enums use the original code path (which is in ActOnTag) and
structs use the ActOnTagStruct. Eventually the two code paths will be merged,
but the idea was to preserve the original logic both for comparison and not to
change the logic for both enums and structs all at once.
- There is NO CHAINING of RecordDecls for the same RecordType. All RecordDecls
that correspond to the same type simply have a pointer to that type. If we
need to figure out what are all the RecordDecls for a given type we can build
a backmap.
- The diff in CXXRecordDecl.[cpp,h] is actually very small; it just mimics the
changes to RecordDecl. For some reason 'svn' marks the entire file as changed.
Why is CodeGen broken:
- Codegen assumes that there is an equivalence between RecordDecl* and
RecordType*. This was true before because we only created one RecordDecl* for
a given RecordType*, but it is no longer true. I believe this shouldn't be too
hard to change, but the patch was big enough as it is.
I have tested this patch on both the clang test suite, and by running the static analyzer over Postgresql and a large Apple-internal project (mix of Objective-C and C).
llvm-svn: 55839
2008-09-06 01:16:31 +08:00
|
|
|
ObjCFastEnumerationStateTypeDecl->defineBody(*this, FieldDecls, 4);
|
2008-08-31 03:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return getTagDeclType(ObjCFastEnumerationStateTypeDecl);
|
|
|
|
}
|
|
|
|
|
2007-10-29 14:33:42 +08:00
|
|
|
// This returns true if a type has been typedefed to BOOL:
|
|
|
|
// typedef <type> BOOL;
|
2007-10-31 04:27:44 +08:00
|
|
|
static bool isTypeTypedefedAsBOOL(QualType T) {
|
2007-10-29 14:33:42 +08:00
|
|
|
if (const TypedefType *TT = dyn_cast<TypedefType>(T))
|
2007-10-31 04:27:44 +08:00
|
|
|
return !strcmp(TT->getDecl()->getName(), "BOOL");
|
2007-10-29 13:01:08 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
/// getObjCEncodingTypeSize returns size of type for objective-c encoding
|
2007-10-30 06:57:28 +08:00
|
|
|
/// purpose.
|
2008-01-08 03:49:32 +08:00
|
|
|
int ASTContext::getObjCEncodingTypeSize(QualType type) {
|
2008-03-06 02:54:05 +08:00
|
|
|
uint64_t sz = getTypeSize(type);
|
2007-10-30 06:57:28 +08:00
|
|
|
|
|
|
|
// Make all integer and enum types at least as large as an int
|
|
|
|
if (sz > 0 && type->isIntegralType())
|
2008-03-06 02:54:05 +08:00
|
|
|
sz = std::max(sz, getTypeSize(IntTy));
|
2007-10-30 06:57:28 +08:00
|
|
|
// Treat arrays as pointers, since that's how they're passed in.
|
|
|
|
else if (type->isArrayType())
|
2008-03-06 02:54:05 +08:00
|
|
|
sz = getTypeSize(VoidPtrTy);
|
|
|
|
return sz / getTypeSize(CharTy);
|
2007-10-30 06:57:28 +08:00
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
/// getObjCEncodingForMethodDecl - Return the encoded type for this method
|
2007-10-30 06:57:28 +08:00
|
|
|
/// declaration.
|
2008-08-28 12:38:10 +08:00
|
|
|
void ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
|
2007-10-30 06:57:28 +08:00
|
|
|
std::string& S)
|
|
|
|
{
|
2008-08-28 12:38:10 +08:00
|
|
|
// FIXME: This is not very efficient.
|
2007-11-02 01:18:37 +08:00
|
|
|
// Encode type qualifer, 'in', 'inout', etc. for the return type.
|
2008-01-08 03:49:32 +08:00
|
|
|
getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
|
2007-10-30 06:57:28 +08:00
|
|
|
// Encode result type.
|
2008-01-23 06:44:46 +08:00
|
|
|
getObjCEncodingForType(Decl->getResultType(), S, EncodingRecordTypes);
|
2007-10-30 06:57:28 +08:00
|
|
|
// Compute size of all parameters.
|
|
|
|
// Start with computing size of a pointer in number of bytes.
|
|
|
|
// FIXME: There might(should) be a better way of doing this computation!
|
|
|
|
SourceLocation Loc;
|
2008-03-06 02:54:05 +08:00
|
|
|
int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
|
2007-10-30 06:57:28 +08:00
|
|
|
// The first two arguments (self and _cmd) are pointers; account for
|
|
|
|
// their size.
|
|
|
|
int ParmOffset = 2 * PtrSize;
|
|
|
|
int NumOfParams = Decl->getNumParams();
|
|
|
|
for (int i = 0; i < NumOfParams; i++) {
|
|
|
|
QualType PType = Decl->getParamDecl(i)->getType();
|
2008-01-08 03:49:32 +08:00
|
|
|
int sz = getObjCEncodingTypeSize (PType);
|
|
|
|
assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
|
2007-10-30 06:57:28 +08:00
|
|
|
ParmOffset += sz;
|
|
|
|
}
|
|
|
|
S += llvm::utostr(ParmOffset);
|
|
|
|
S += "@0:";
|
|
|
|
S += llvm::utostr(PtrSize);
|
|
|
|
|
|
|
|
// Argument types.
|
|
|
|
ParmOffset = 2 * PtrSize;
|
|
|
|
for (int i = 0; i < NumOfParams; i++) {
|
|
|
|
QualType PType = Decl->getParamDecl(i)->getType();
|
2007-11-02 01:18:37 +08:00
|
|
|
// Process argument qualifiers for user supplied arguments; such as,
|
2007-10-30 06:57:28 +08:00
|
|
|
// 'in', 'inout', etc.
|
2008-01-08 03:49:32 +08:00
|
|
|
getObjCEncodingForTypeQualifier(
|
|
|
|
Decl->getParamDecl(i)->getObjCDeclQualifier(), S);
|
2008-01-23 06:44:46 +08:00
|
|
|
getObjCEncodingForType(PType, S, EncodingRecordTypes);
|
2007-10-30 06:57:28 +08:00
|
|
|
S += llvm::utostr(ParmOffset);
|
2008-01-08 03:49:32 +08:00
|
|
|
ParmOffset += getObjCEncodingTypeSize(PType);
|
2007-10-30 06:57:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-28 12:38:10 +08:00
|
|
|
/// getObjCEncodingForPropertyDecl - Return the encoded type for this
|
|
|
|
/// method declaration. If non-NULL, Container must be either an
|
|
|
|
/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
|
|
|
|
/// NULL when getting encodings for protocol properties.
|
|
|
|
void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
|
|
|
|
const Decl *Container,
|
|
|
|
std::string& S)
|
|
|
|
{
|
|
|
|
// Collect information from the property implementation decl(s).
|
|
|
|
bool Dynamic = false;
|
|
|
|
ObjCPropertyImplDecl *SynthesizePID = 0;
|
|
|
|
|
|
|
|
// FIXME: Duplicated code due to poor abstraction.
|
|
|
|
if (Container) {
|
|
|
|
if (const ObjCCategoryImplDecl *CID =
|
|
|
|
dyn_cast<ObjCCategoryImplDecl>(Container)) {
|
|
|
|
for (ObjCCategoryImplDecl::propimpl_iterator
|
|
|
|
i = CID->propimpl_begin(), e = CID->propimpl_end(); i != e; ++i) {
|
|
|
|
ObjCPropertyImplDecl *PID = *i;
|
|
|
|
if (PID->getPropertyDecl() == PD) {
|
|
|
|
if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
|
|
|
|
Dynamic = true;
|
|
|
|
} else {
|
|
|
|
SynthesizePID = PID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const ObjCImplementationDecl *OID = cast<ObjCImplementationDecl>(Container);
|
|
|
|
for (ObjCCategoryImplDecl::propimpl_iterator
|
|
|
|
i = OID->propimpl_begin(), e = OID->propimpl_end(); i != e; ++i) {
|
|
|
|
ObjCPropertyImplDecl *PID = *i;
|
|
|
|
if (PID->getPropertyDecl() == PD) {
|
|
|
|
if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
|
|
|
|
Dynamic = true;
|
|
|
|
} else {
|
|
|
|
SynthesizePID = PID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: This is not very efficient.
|
|
|
|
S = "T";
|
|
|
|
|
|
|
|
// Encode result type.
|
|
|
|
// FIXME: GCC uses a generating_property_type_encoding mode during
|
|
|
|
// this part. Investigate.
|
|
|
|
getObjCEncodingForType(PD->getType(), S, EncodingRecordTypes);
|
|
|
|
|
|
|
|
if (PD->isReadOnly()) {
|
|
|
|
S += ",R";
|
|
|
|
} else {
|
|
|
|
switch (PD->getSetterKind()) {
|
|
|
|
case ObjCPropertyDecl::Assign: break;
|
|
|
|
case ObjCPropertyDecl::Copy: S += ",C"; break;
|
|
|
|
case ObjCPropertyDecl::Retain: S += ",&"; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// It really isn't clear at all what this means, since properties
|
|
|
|
// are "dynamic by default".
|
|
|
|
if (Dynamic)
|
|
|
|
S += ",D";
|
|
|
|
|
|
|
|
if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
|
|
|
|
S += ",G";
|
|
|
|
S += PD->getGetterName().getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
|
|
|
|
S += ",S";
|
|
|
|
S += PD->getSetterName().getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SynthesizePID) {
|
|
|
|
const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
|
|
|
|
S += ",V";
|
|
|
|
S += OID->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: OBJCGC: weak & strong
|
|
|
|
}
|
|
|
|
|
2008-01-23 06:44:46 +08:00
|
|
|
void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
|
2008-08-04 15:31:14 +08:00
|
|
|
llvm::SmallVector<const RecordType *, 8> &ERType) const {
|
2007-10-29 14:33:42 +08:00
|
|
|
// FIXME: This currently doesn't encode:
|
|
|
|
// @ An object (whether statically typed or typed id)
|
|
|
|
// # A class object (Class)
|
|
|
|
// : A method selector (SEL)
|
|
|
|
// {name=type...} A structure
|
|
|
|
// (name=type...) A union
|
|
|
|
// bnum A bit field of num bits
|
|
|
|
|
|
|
|
if (const BuiltinType *BT = T->getAsBuiltinType()) {
|
2007-10-29 13:01:08 +08:00
|
|
|
char encoding;
|
|
|
|
switch (BT->getKind()) {
|
2008-04-07 06:05:18 +08:00
|
|
|
default: assert(0 && "Unhandled builtin type kind");
|
|
|
|
case BuiltinType::Void: encoding = 'v'; break;
|
|
|
|
case BuiltinType::Bool: encoding = 'B'; break;
|
2007-10-29 13:01:08 +08:00
|
|
|
case BuiltinType::Char_U:
|
2008-04-07 06:05:18 +08:00
|
|
|
case BuiltinType::UChar: encoding = 'C'; break;
|
|
|
|
case BuiltinType::UShort: encoding = 'S'; break;
|
|
|
|
case BuiltinType::UInt: encoding = 'I'; break;
|
|
|
|
case BuiltinType::ULong: encoding = 'L'; break;
|
|
|
|
case BuiltinType::ULongLong: encoding = 'Q'; break;
|
2007-10-29 13:01:08 +08:00
|
|
|
case BuiltinType::Char_S:
|
2008-04-07 06:05:18 +08:00
|
|
|
case BuiltinType::SChar: encoding = 'c'; break;
|
|
|
|
case BuiltinType::Short: encoding = 's'; break;
|
|
|
|
case BuiltinType::Int: encoding = 'i'; break;
|
|
|
|
case BuiltinType::Long: encoding = 'l'; break;
|
|
|
|
case BuiltinType::LongLong: encoding = 'q'; break;
|
|
|
|
case BuiltinType::Float: encoding = 'f'; break;
|
|
|
|
case BuiltinType::Double: encoding = 'd'; break;
|
|
|
|
case BuiltinType::LongDouble: encoding = 'd'; break;
|
2007-10-29 13:01:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
S += encoding;
|
2007-12-18 05:03:50 +08:00
|
|
|
}
|
2008-01-08 03:49:32 +08:00
|
|
|
else if (T->isObjCQualifiedIdType()) {
|
2007-12-18 05:03:50 +08:00
|
|
|
// Treat id<P...> same as 'id' for encoding purposes.
|
2008-01-23 06:44:46 +08:00
|
|
|
return getObjCEncodingForType(getObjCIdType(), S, ERType);
|
2007-12-18 05:03:50 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else if (const PointerType *PT = T->getAsPointerType()) {
|
2007-10-29 13:01:08 +08:00
|
|
|
QualType PointeeTy = PT->getPointeeType();
|
2008-01-08 03:49:32 +08:00
|
|
|
if (isObjCIdType(PointeeTy) || PointeeTy->isObjCInterfaceType()) {
|
2007-10-31 01:06:23 +08:00
|
|
|
S += '@';
|
|
|
|
return;
|
2008-01-08 03:49:32 +08:00
|
|
|
} else if (isObjCClassType(PointeeTy)) {
|
2007-10-31 10:53:19 +08:00
|
|
|
S += '#';
|
|
|
|
return;
|
2008-01-08 03:49:32 +08:00
|
|
|
} else if (isObjCSelType(PointeeTy)) {
|
2007-10-31 10:53:19 +08:00
|
|
|
S += ':';
|
|
|
|
return;
|
2007-10-31 01:06:23 +08:00
|
|
|
}
|
2007-10-29 13:01:08 +08:00
|
|
|
|
|
|
|
if (PointeeTy->isCharType()) {
|
|
|
|
// char pointer types should be encoded as '*' unless it is a
|
|
|
|
// type that has been typedef'd to 'BOOL'.
|
2007-10-29 14:33:42 +08:00
|
|
|
if (!isTypeTypedefedAsBOOL(PointeeTy)) {
|
2007-10-29 13:01:08 +08:00
|
|
|
S += '*';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
S += '^';
|
2008-01-23 06:44:46 +08:00
|
|
|
getObjCEncodingForType(PT->getPointeeType(), S, ERType);
|
2008-08-04 15:31:14 +08:00
|
|
|
} else if (const ArrayType *AT =
|
|
|
|
// Ignore type qualifiers etc.
|
|
|
|
dyn_cast<ArrayType>(T->getCanonicalTypeInternal())) {
|
2007-10-29 13:01:08 +08:00
|
|
|
S += '[';
|
|
|
|
|
|
|
|
if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
|
|
|
|
S += llvm::utostr(CAT->getSize().getZExtValue());
|
|
|
|
else
|
|
|
|
assert(0 && "Unhandled array type!");
|
|
|
|
|
2008-01-23 06:44:46 +08:00
|
|
|
getObjCEncodingForType(AT->getElementType(), S, ERType);
|
2007-10-29 13:01:08 +08:00
|
|
|
S += ']';
|
2007-10-30 08:06:20 +08:00
|
|
|
} else if (T->getAsFunctionType()) {
|
|
|
|
S += '?';
|
2007-11-14 07:21:38 +08:00
|
|
|
} else if (const RecordType *RTy = T->getAsRecordType()) {
|
|
|
|
RecordDecl *RDecl= RTy->getDecl();
|
2008-08-14 23:00:38 +08:00
|
|
|
// This mimics the behavior in gcc's encode_aggregate_within().
|
|
|
|
// The idea is to only inline structure definitions for top level pointers
|
|
|
|
// to structures and embedded structures.
|
|
|
|
bool inlining = (S.size() == 1 && S[0] == '^' ||
|
|
|
|
S.size() > 1 && S[S.size()-1] != '^');
|
2007-11-14 07:21:38 +08:00
|
|
|
S += '{';
|
|
|
|
S += RDecl->getName();
|
2008-01-23 06:44:46 +08:00
|
|
|
bool found = false;
|
|
|
|
for (unsigned i = 0, e = ERType.size(); i != e; ++i)
|
|
|
|
if (ERType[i] == RTy) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
2008-08-14 23:00:38 +08:00
|
|
|
if (!found && inlining) {
|
2008-01-23 06:44:46 +08:00
|
|
|
ERType.push_back(RTy);
|
|
|
|
S += '=';
|
|
|
|
for (int i = 0; i < RDecl->getNumMembers(); i++) {
|
|
|
|
FieldDecl *field = RDecl->getMember(i);
|
|
|
|
getObjCEncodingForType(field->getType(), S, ERType);
|
|
|
|
}
|
|
|
|
assert(ERType.back() == RTy && "Record Type stack mismatch.");
|
|
|
|
ERType.pop_back();
|
2007-11-14 07:21:38 +08:00
|
|
|
}
|
|
|
|
S += '}';
|
2007-12-13 06:30:11 +08:00
|
|
|
} else if (T->isEnumeralType()) {
|
|
|
|
S += 'i';
|
2008-09-24 23:05:44 +08:00
|
|
|
} else if (T->isBlockPointerType()) {
|
|
|
|
S += '^'; // This type string is the same as general pointers.
|
2007-10-29 13:01:08 +08:00
|
|
|
} else
|
2008-01-31 03:17:43 +08:00
|
|
|
assert(0 && "@encode for type not implemented!");
|
2007-10-29 13:01:08 +08:00
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
|
2007-11-02 01:18:37 +08:00
|
|
|
std::string& S) const {
|
|
|
|
if (QT & Decl::OBJC_TQ_In)
|
|
|
|
S += 'n';
|
|
|
|
if (QT & Decl::OBJC_TQ_Inout)
|
|
|
|
S += 'N';
|
|
|
|
if (QT & Decl::OBJC_TQ_Out)
|
|
|
|
S += 'o';
|
|
|
|
if (QT & Decl::OBJC_TQ_Bycopy)
|
|
|
|
S += 'O';
|
|
|
|
if (QT & Decl::OBJC_TQ_Byref)
|
|
|
|
S += 'R';
|
|
|
|
if (QT & Decl::OBJC_TQ_Oneway)
|
|
|
|
S += 'V';
|
|
|
|
}
|
|
|
|
|
2007-10-11 09:00:40 +08:00
|
|
|
void ASTContext::setBuiltinVaListType(QualType T)
|
|
|
|
{
|
|
|
|
assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
|
|
|
|
|
|
|
|
BuiltinVaListType = T;
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
void ASTContext::setObjCIdType(TypedefDecl *TD)
|
2007-10-15 22:41:52 +08:00
|
|
|
{
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCIdType = getTypedefType(TD);
|
2007-10-15 22:41:52 +08:00
|
|
|
|
|
|
|
// typedef struct objc_object *id;
|
|
|
|
const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
|
|
|
|
assert(ptr && "'id' incorrectly typed");
|
|
|
|
const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
|
|
|
|
assert(rec && "'id' incorrectly typed");
|
|
|
|
IdStructType = rec;
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
void ASTContext::setObjCSelType(TypedefDecl *TD)
|
2007-10-17 04:40:23 +08:00
|
|
|
{
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCSelType = getTypedefType(TD);
|
2007-10-17 04:40:23 +08:00
|
|
|
|
|
|
|
// typedef struct objc_selector *SEL;
|
|
|
|
const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
|
|
|
|
assert(ptr && "'SEL' incorrectly typed");
|
|
|
|
const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
|
|
|
|
assert(rec && "'SEL' incorrectly typed");
|
|
|
|
SelStructType = rec;
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
void ASTContext::setObjCProtoType(QualType QT)
|
2007-10-18 00:58:11 +08:00
|
|
|
{
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCProtoType = QT;
|
2007-10-18 00:58:11 +08:00
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
void ASTContext::setObjCClassType(TypedefDecl *TD)
|
2007-10-31 10:53:19 +08:00
|
|
|
{
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCClassType = getTypedefType(TD);
|
2007-10-31 10:53:19 +08:00
|
|
|
|
|
|
|
// typedef struct objc_class *Class;
|
|
|
|
const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
|
|
|
|
assert(ptr && "'Class' incorrectly typed");
|
|
|
|
const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
|
|
|
|
assert(rec && "'Class' incorrectly typed");
|
|
|
|
ClassStructType = rec;
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
|
|
|
|
assert(ObjCConstantStringType.isNull() &&
|
2007-10-16 07:35:17 +08:00
|
|
|
"'NSConstantString' type already set!");
|
|
|
|
|
2008-01-08 03:49:32 +08:00
|
|
|
ObjCConstantStringType = getObjCInterfaceType(Decl);
|
2007-10-16 07:35:17 +08:00
|
|
|
}
|
|
|
|
|
2008-07-25 07:58:27 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Type Predicates.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// isObjCObjectPointerType - Returns true if type is an Objective-C pointer
|
|
|
|
/// to an object type. This includes "id" and "Class" (two 'special' pointers
|
|
|
|
/// to struct), Interface* (pointer to ObjCInterfaceType) and id<P> (qualified
|
|
|
|
/// ID type).
|
|
|
|
bool ASTContext::isObjCObjectPointerType(QualType Ty) const {
|
|
|
|
if (Ty->isObjCQualifiedIdType())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!Ty->isPointerType())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check to see if this is 'id' or 'Class', both of which are typedefs for
|
|
|
|
// pointer types. This looks for the typedef specifically, not for the
|
|
|
|
// underlying type.
|
|
|
|
if (Ty == getObjCIdType() || Ty == getObjCClassType())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// If this a pointer to an interface (e.g. NSString*), it is ok.
|
|
|
|
return Ty->getAsPointerType()->getPointeeType()->isObjCInterfaceType();
|
|
|
|
}
|
|
|
|
|
2008-04-07 14:51:04 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Type Compatibility Testing
|
|
|
|
//===----------------------------------------------------------------------===//
|
2007-11-01 13:03:41 +08:00
|
|
|
|
2008-09-04 23:10:53 +08:00
|
|
|
/// typesAreBlockCompatible - This routine is called when comparing two
|
2008-09-06 06:11:13 +08:00
|
|
|
/// block types. Types must be strictly compatible here. For example,
|
|
|
|
/// C unfortunately doesn't produce an error for the following:
|
|
|
|
///
|
|
|
|
/// int (*emptyArgFunc)();
|
|
|
|
/// int (*intArgList)(int) = emptyArgFunc;
|
|
|
|
///
|
|
|
|
/// For blocks, we will produce an error for the following (similar to C++):
|
|
|
|
///
|
|
|
|
/// int (^emptyArgBlock)();
|
|
|
|
/// int (^intArgBlock)(int) = emptyArgBlock;
|
|
|
|
///
|
|
|
|
/// FIXME: When the dust settles on this integration, fold this into mergeTypes.
|
|
|
|
///
|
2008-09-04 23:10:53 +08:00
|
|
|
bool ASTContext::typesAreBlockCompatible(QualType lhs, QualType rhs) {
|
2008-09-09 21:47:19 +08:00
|
|
|
return getCanonicalType(lhs) == getCanonicalType(rhs);
|
2008-09-04 23:10:53 +08:00
|
|
|
}
|
|
|
|
|
2008-04-07 14:51:04 +08:00
|
|
|
/// areCompatVectorTypes - Return true if the two specified vector types are
|
|
|
|
/// compatible.
|
|
|
|
static bool areCompatVectorTypes(const VectorType *LHS,
|
|
|
|
const VectorType *RHS) {
|
|
|
|
assert(LHS->isCanonical() && RHS->isCanonical());
|
|
|
|
return LHS->getElementType() == RHS->getElementType() &&
|
|
|
|
LHS->getNumElements() == RHS->getNumElements();
|
|
|
|
}
|
|
|
|
|
2008-08-22 08:56:42 +08:00
|
|
|
/// canAssignObjCInterfaces - Return true if the two interface types are
|
2008-04-07 14:51:04 +08:00
|
|
|
/// compatible for assignment from RHS to LHS. This handles validation of any
|
|
|
|
/// protocol qualifiers on the LHS or RHS.
|
|
|
|
///
|
2008-08-22 08:56:42 +08:00
|
|
|
bool ASTContext::canAssignObjCInterfaces(const ObjCInterfaceType *LHS,
|
|
|
|
const ObjCInterfaceType *RHS) {
|
2008-04-07 14:51:04 +08:00
|
|
|
// Verify that the base decls are compatible: the RHS must be a subclass of
|
|
|
|
// the LHS.
|
|
|
|
if (!LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// RHS must have a superset of the protocols in the LHS. If the LHS is not
|
|
|
|
// protocol qualified at all, then we are good.
|
|
|
|
if (!isa<ObjCQualifiedInterfaceType>(LHS))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Okay, we know the LHS has protocol qualifiers. If the RHS doesn't, then it
|
|
|
|
// isn't a superset.
|
|
|
|
if (!isa<ObjCQualifiedInterfaceType>(RHS))
|
|
|
|
return true; // FIXME: should return false!
|
|
|
|
|
|
|
|
// Finally, we must have two protocol-qualified interfaces.
|
|
|
|
const ObjCQualifiedInterfaceType *LHSP =cast<ObjCQualifiedInterfaceType>(LHS);
|
|
|
|
const ObjCQualifiedInterfaceType *RHSP =cast<ObjCQualifiedInterfaceType>(RHS);
|
|
|
|
ObjCQualifiedInterfaceType::qual_iterator LHSPI = LHSP->qual_begin();
|
|
|
|
ObjCQualifiedInterfaceType::qual_iterator LHSPE = LHSP->qual_end();
|
|
|
|
ObjCQualifiedInterfaceType::qual_iterator RHSPI = RHSP->qual_begin();
|
|
|
|
ObjCQualifiedInterfaceType::qual_iterator RHSPE = RHSP->qual_end();
|
|
|
|
|
|
|
|
// All protocols in LHS must have a presence in RHS. Since the protocol lists
|
|
|
|
// are both sorted alphabetically and have no duplicates, we can scan RHS and
|
|
|
|
// LHS in a single parallel scan until we run out of elements in LHS.
|
|
|
|
assert(LHSPI != LHSPE && "Empty LHS protocol list?");
|
|
|
|
ObjCProtocolDecl *LHSProto = *LHSPI;
|
|
|
|
|
|
|
|
while (RHSPI != RHSPE) {
|
|
|
|
ObjCProtocolDecl *RHSProto = *RHSPI++;
|
|
|
|
// If the RHS has a protocol that the LHS doesn't, ignore it.
|
|
|
|
if (RHSProto != LHSProto)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Otherwise, the RHS does have this element.
|
|
|
|
++LHSPI;
|
|
|
|
if (LHSPI == LHSPE)
|
|
|
|
return true; // All protocols in LHS exist in RHS.
|
|
|
|
|
|
|
|
LHSProto = *LHSPI;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we got here, we didn't find one of the LHS's protocols in the RHS list.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-10-16 04:41:53 +08:00
|
|
|
/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
|
|
|
|
/// both shall have the identically qualified version of a compatible type.
|
|
|
|
/// C99 6.2.7p1: Two types have compatible types if their types are the
|
|
|
|
/// same. See 6.7.[2,3,5] for additional rules.
|
2008-08-22 08:56:42 +08:00
|
|
|
bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS) {
|
|
|
|
return !mergeTypes(LHS, RHS).isNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs) {
|
|
|
|
const FunctionType *lbase = lhs->getAsFunctionType();
|
|
|
|
const FunctionType *rbase = rhs->getAsFunctionType();
|
|
|
|
const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
|
|
|
|
const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
|
|
|
|
bool allLTypes = true;
|
|
|
|
bool allRTypes = true;
|
|
|
|
|
|
|
|
// Check return type
|
|
|
|
QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
|
|
|
|
if (retType.isNull()) return QualType();
|
|
|
|
if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType())) allLTypes = false;
|
|
|
|
if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType())) allRTypes = false;
|
|
|
|
|
|
|
|
if (lproto && rproto) { // two C99 style function prototypes
|
|
|
|
unsigned lproto_nargs = lproto->getNumArgs();
|
|
|
|
unsigned rproto_nargs = rproto->getNumArgs();
|
|
|
|
|
|
|
|
// Compatible functions must have the same number of arguments
|
|
|
|
if (lproto_nargs != rproto_nargs)
|
|
|
|
return QualType();
|
|
|
|
|
|
|
|
// Variadic and non-variadic functions aren't compatible
|
|
|
|
if (lproto->isVariadic() != rproto->isVariadic())
|
|
|
|
return QualType();
|
|
|
|
|
|
|
|
// Check argument compatibility
|
|
|
|
llvm::SmallVector<QualType, 10> types;
|
|
|
|
for (unsigned i = 0; i < lproto_nargs; i++) {
|
|
|
|
QualType largtype = lproto->getArgType(i).getUnqualifiedType();
|
|
|
|
QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
|
|
|
|
QualType argtype = mergeTypes(largtype, rargtype);
|
|
|
|
if (argtype.isNull()) return QualType();
|
|
|
|
types.push_back(argtype);
|
|
|
|
if (getCanonicalType(argtype) != getCanonicalType(largtype)) allLTypes = false;
|
|
|
|
if (getCanonicalType(argtype) != getCanonicalType(rargtype)) allRTypes = false;
|
|
|
|
}
|
|
|
|
if (allLTypes) return lhs;
|
|
|
|
if (allRTypes) return rhs;
|
|
|
|
return getFunctionType(retType, types.begin(), types.size(),
|
|
|
|
lproto->isVariadic());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lproto) allRTypes = false;
|
|
|
|
if (rproto) allLTypes = false;
|
|
|
|
|
|
|
|
const FunctionTypeProto *proto = lproto ? lproto : rproto;
|
|
|
|
if (proto) {
|
|
|
|
if (proto->isVariadic()) return QualType();
|
|
|
|
// Check that the types are compatible with the types that
|
|
|
|
// would result from default argument promotions (C99 6.7.5.3p15).
|
|
|
|
// The only types actually affected are promotable integer
|
|
|
|
// types and floats, which would be passed as a different
|
|
|
|
// type depending on whether the prototype is visible.
|
|
|
|
unsigned proto_nargs = proto->getNumArgs();
|
|
|
|
for (unsigned i = 0; i < proto_nargs; ++i) {
|
|
|
|
QualType argTy = proto->getArgType(i);
|
|
|
|
if (argTy->isPromotableIntegerType() ||
|
|
|
|
getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
|
|
|
|
return QualType();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allLTypes) return lhs;
|
|
|
|
if (allRTypes) return rhs;
|
|
|
|
return getFunctionType(retType, proto->arg_type_begin(),
|
|
|
|
proto->getNumArgs(), lproto->isVariadic());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allLTypes) return lhs;
|
|
|
|
if (allRTypes) return rhs;
|
|
|
|
return getFunctionTypeNoProto(retType);
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
|
2007-12-03 15:33:35 +08:00
|
|
|
// C++ [expr]: If an expression initially has the type "reference to T", the
|
|
|
|
// type is adjusted to "T" prior to any further analysis, the expression
|
|
|
|
// designates the object or function denoted by the reference, and the
|
|
|
|
// expression is an lvalue.
|
2008-08-22 08:56:42 +08:00
|
|
|
// FIXME: C++ shouldn't be going through here! The rules are different
|
|
|
|
// enough that they should be handled separately.
|
|
|
|
if (const ReferenceType *RT = LHS->getAsReferenceType())
|
2008-04-07 12:07:56 +08:00
|
|
|
LHS = RT->getPointeeType();
|
2008-08-22 08:56:42 +08:00
|
|
|
if (const ReferenceType *RT = RHS->getAsReferenceType())
|
2008-04-07 12:07:56 +08:00
|
|
|
RHS = RT->getPointeeType();
|
2008-08-22 08:56:42 +08:00
|
|
|
|
|
|
|
QualType LHSCan = getCanonicalType(LHS),
|
|
|
|
RHSCan = getCanonicalType(RHS);
|
|
|
|
|
2008-04-07 13:37:56 +08:00
|
|
|
// If two types are identical, they are compatible.
|
2008-08-22 08:56:42 +08:00
|
|
|
if (LHSCan == RHSCan)
|
|
|
|
return LHS;
|
|
|
|
|
|
|
|
// If the qualifiers are different, the types aren't compatible
|
|
|
|
if (LHSCan.getCVRQualifiers() != RHSCan.getCVRQualifiers() ||
|
|
|
|
LHSCan.getAddressSpace() != RHSCan.getAddressSpace())
|
|
|
|
return QualType();
|
|
|
|
|
|
|
|
Type::TypeClass LHSClass = LHSCan->getTypeClass();
|
|
|
|
Type::TypeClass RHSClass = RHSCan->getTypeClass();
|
2008-04-07 13:37:56 +08:00
|
|
|
|
2008-01-14 13:45:46 +08:00
|
|
|
// We want to consider the two function types to be the same for these
|
|
|
|
// comparisons, just force one to the other.
|
|
|
|
if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
|
|
|
|
if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
|
2008-02-12 16:23:06 +08:00
|
|
|
|
|
|
|
// Same as above for arrays
|
2008-04-07 13:43:21 +08:00
|
|
|
if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
|
|
|
|
LHSClass = Type::ConstantArray;
|
|
|
|
if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
|
|
|
|
RHSClass = Type::ConstantArray;
|
|
|
|
|
2008-04-19 07:10:10 +08:00
|
|
|
// Canonicalize ExtVector -> Vector.
|
|
|
|
if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
|
|
|
|
if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
|
2007-10-16 04:41:53 +08:00
|
|
|
|
2008-04-07 14:38:24 +08:00
|
|
|
// Consider qualified interfaces and interfaces the same.
|
|
|
|
if (LHSClass == Type::ObjCQualifiedInterface) LHSClass = Type::ObjCInterface;
|
|
|
|
if (RHSClass == Type::ObjCQualifiedInterface) RHSClass = Type::ObjCInterface;
|
2008-08-22 08:56:42 +08:00
|
|
|
|
2008-04-07 13:43:21 +08:00
|
|
|
// If the canonical type classes don't match.
|
2008-01-14 13:45:46 +08:00
|
|
|
if (LHSClass != RHSClass) {
|
2008-06-04 23:07:33 +08:00
|
|
|
// ID is compatible with all qualified id types.
|
2008-08-22 08:56:42 +08:00
|
|
|
if (LHS->isObjCQualifiedIdType()) {
|
2008-06-04 23:07:33 +08:00
|
|
|
if (const PointerType *PT = RHS->getAsPointerType())
|
2008-08-22 08:56:42 +08:00
|
|
|
if (isObjCIdType(PT->getPointeeType()))
|
|
|
|
return LHS;
|
2008-06-04 23:07:33 +08:00
|
|
|
}
|
2008-08-22 08:56:42 +08:00
|
|
|
if (RHS->isObjCQualifiedIdType()) {
|
2008-06-04 23:07:33 +08:00
|
|
|
if (const PointerType *PT = LHS->getAsPointerType())
|
2008-08-22 08:56:42 +08:00
|
|
|
if (isObjCIdType(PT->getPointeeType()))
|
|
|
|
return RHS;
|
|
|
|
}
|
|
|
|
|
2008-01-14 13:45:46 +08:00
|
|
|
// C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
|
|
|
|
// a signed integer type, or an unsigned integer type.
|
2008-08-22 08:56:42 +08:00
|
|
|
if (const EnumType* ETy = LHS->getAsEnumType()) {
|
|
|
|
if (ETy->getDecl()->getIntegerType() == RHSCan.getUnqualifiedType())
|
|
|
|
return RHS;
|
2008-02-12 16:46:17 +08:00
|
|
|
}
|
2008-08-22 08:56:42 +08:00
|
|
|
if (const EnumType* ETy = RHS->getAsEnumType()) {
|
|
|
|
if (ETy->getDecl()->getIntegerType() == LHSCan.getUnqualifiedType())
|
|
|
|
return LHS;
|
2008-02-12 16:46:17 +08:00
|
|
|
}
|
2008-01-14 13:45:46 +08:00
|
|
|
|
2008-08-22 08:56:42 +08:00
|
|
|
return QualType();
|
2007-10-16 04:41:53 +08:00
|
|
|
}
|
2008-08-22 08:56:42 +08:00
|
|
|
|
2008-01-10 06:43:08 +08:00
|
|
|
// The canonical type classes match.
|
2008-01-14 13:45:46 +08:00
|
|
|
switch (LHSClass) {
|
|
|
|
case Type::Pointer:
|
2008-08-22 08:56:42 +08:00
|
|
|
{
|
|
|
|
// Merge two pointer types, while trying to preserve typedef info
|
|
|
|
QualType LHSPointee = LHS->getAsPointerType()->getPointeeType();
|
|
|
|
QualType RHSPointee = RHS->getAsPointerType()->getPointeeType();
|
|
|
|
QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
|
|
|
|
if (ResultType.isNull()) return QualType();
|
2008-08-22 09:48:21 +08:00
|
|
|
if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType)) return LHS;
|
|
|
|
if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType)) return RHS;
|
2008-08-22 08:56:42 +08:00
|
|
|
return getPointerType(ResultType);
|
|
|
|
}
|
2008-01-14 13:45:46 +08:00
|
|
|
case Type::ConstantArray:
|
2008-08-22 08:56:42 +08:00
|
|
|
{
|
|
|
|
const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
|
|
|
|
const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
|
|
|
|
if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
|
|
|
|
return QualType();
|
|
|
|
|
|
|
|
QualType LHSElem = getAsArrayType(LHS)->getElementType();
|
|
|
|
QualType RHSElem = getAsArrayType(RHS)->getElementType();
|
|
|
|
QualType ResultType = mergeTypes(LHSElem, RHSElem);
|
|
|
|
if (ResultType.isNull()) return QualType();
|
2008-08-22 09:48:21 +08:00
|
|
|
if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
|
|
|
|
if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
|
|
|
|
if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
|
|
|
|
ArrayType::ArraySizeModifier(), 0);
|
|
|
|
if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
|
|
|
|
ArrayType::ArraySizeModifier(), 0);
|
2008-08-22 08:56:42 +08:00
|
|
|
const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
|
|
|
|
const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
|
2008-08-22 09:48:21 +08:00
|
|
|
if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
|
|
|
|
if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
|
2008-08-22 08:56:42 +08:00
|
|
|
if (LVAT) {
|
|
|
|
// FIXME: This isn't correct! But tricky to implement because
|
|
|
|
// the array's size has to be the size of LHS, but the type
|
|
|
|
// has to be different.
|
|
|
|
return LHS;
|
|
|
|
}
|
|
|
|
if (RVAT) {
|
|
|
|
// FIXME: This isn't correct! But tricky to implement because
|
|
|
|
// the array's size has to be the size of RHS, but the type
|
|
|
|
// has to be different.
|
|
|
|
return RHS;
|
|
|
|
}
|
2008-08-22 09:48:21 +08:00
|
|
|
if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
|
|
|
|
if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
|
2008-08-22 08:56:42 +08:00
|
|
|
return getIncompleteArrayType(ResultType, ArrayType::ArraySizeModifier(), 0);
|
|
|
|
}
|
2008-01-14 13:45:46 +08:00
|
|
|
case Type::FunctionNoProto:
|
2008-08-22 08:56:42 +08:00
|
|
|
return mergeFunctionTypes(LHS, RHS);
|
|
|
|
case Type::Tagged:
|
|
|
|
{
|
|
|
|
// FIXME: Why are these compatible?
|
|
|
|
if (isObjCIdType(LHS) && isObjCClassType(RHS)) return LHS;
|
|
|
|
if (isObjCClassType(LHS) && isObjCIdType(RHS)) return LHS;
|
|
|
|
return QualType();
|
|
|
|
}
|
2008-01-14 13:45:46 +08:00
|
|
|
case Type::Builtin:
|
2008-04-07 13:55:38 +08:00
|
|
|
// Only exactly equal builtin types are compatible, which is tested above.
|
2008-08-22 08:56:42 +08:00
|
|
|
return QualType();
|
2008-04-07 13:55:38 +08:00
|
|
|
case Type::Vector:
|
2008-08-22 08:56:42 +08:00
|
|
|
if (areCompatVectorTypes(LHS->getAsVectorType(), RHS->getAsVectorType()))
|
|
|
|
return LHS;
|
2008-01-14 13:45:46 +08:00
|
|
|
case Type::ObjCInterface:
|
2008-08-22 08:56:42 +08:00
|
|
|
{
|
|
|
|
// Distinct ObjC interfaces are not compatible; see canAssignObjCInterfaces
|
|
|
|
// for checking assignment/comparison safety
|
|
|
|
return QualType();
|
|
|
|
}
|
2008-01-14 13:45:46 +08:00
|
|
|
default:
|
|
|
|
assert(0 && "unexpected type");
|
2008-08-22 08:56:42 +08:00
|
|
|
return QualType();
|
2007-10-16 04:41:53 +08:00
|
|
|
}
|
|
|
|
}
|
2007-11-01 01:10:13 +08:00
|
|
|
|
2008-06-28 14:23:08 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Integer Predicates
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
unsigned ASTContext::getIntWidth(QualType T) {
|
|
|
|
if (T == BoolTy)
|
|
|
|
return 1;
|
|
|
|
// At the moment, only bool has padding bits
|
|
|
|
return (unsigned)getTypeSize(T);
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
|
|
|
|
assert(T->isSignedIntegerType() && "Unexpected type");
|
|
|
|
if (const EnumType* ETy = T->getAsEnumType())
|
|
|
|
T = ETy->getDecl()->getIntegerType();
|
|
|
|
const BuiltinType* BTy = T->getAsBuiltinType();
|
|
|
|
assert (BTy && "Unexpected signed integer type");
|
|
|
|
switch (BTy->getKind()) {
|
|
|
|
case BuiltinType::Char_S:
|
|
|
|
case BuiltinType::SChar:
|
|
|
|
return UnsignedCharTy;
|
|
|
|
case BuiltinType::Short:
|
|
|
|
return UnsignedShortTy;
|
|
|
|
case BuiltinType::Int:
|
|
|
|
return UnsignedIntTy;
|
|
|
|
case BuiltinType::Long:
|
|
|
|
return UnsignedLongTy;
|
|
|
|
case BuiltinType::LongLong:
|
|
|
|
return UnsignedLongLongTy;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unexpected signed integer type");
|
|
|
|
return QualType();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-07 15:01:58 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Serialization Support
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-11-01 01:10:13 +08:00
|
|
|
/// Emit - Serialize an ASTContext object to Bitcode.
|
|
|
|
void ASTContext::Emit(llvm::Serializer& S) const {
|
2008-06-04 23:55:15 +08:00
|
|
|
S.Emit(LangOpts);
|
2007-11-01 04:00:03 +08:00
|
|
|
S.EmitRef(SourceMgr);
|
|
|
|
S.EmitRef(Target);
|
|
|
|
S.EmitRef(Idents);
|
|
|
|
S.EmitRef(Selectors);
|
2007-11-01 01:10:13 +08:00
|
|
|
|
2007-11-01 06:44:07 +08:00
|
|
|
// Emit the size of the type vector so that we can reserve that size
|
|
|
|
// when we reconstitute the ASTContext object.
|
2007-11-07 06:26:16 +08:00
|
|
|
S.EmitInt(Types.size());
|
|
|
|
|
2007-11-14 06:02:55 +08:00
|
|
|
for (std::vector<Type*>::const_iterator I=Types.begin(), E=Types.end();
|
|
|
|
I!=E;++I)
|
|
|
|
(*I)->Emit(S);
|
2007-11-07 06:26:16 +08:00
|
|
|
|
2008-04-17 22:40:12 +08:00
|
|
|
S.EmitOwnedPtr(TUDecl);
|
|
|
|
|
2007-11-02 02:11:32 +08:00
|
|
|
// FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
|
2007-11-01 01:10:13 +08:00
|
|
|
}
|
|
|
|
|
2007-11-13 08:25:37 +08:00
|
|
|
ASTContext* ASTContext::Create(llvm::Deserializer& D) {
|
2008-06-04 23:55:15 +08:00
|
|
|
|
|
|
|
// Read the language options.
|
|
|
|
LangOptions LOpts;
|
|
|
|
LOpts.Read(D);
|
|
|
|
|
2007-11-01 06:44:07 +08:00
|
|
|
SourceManager &SM = D.ReadRef<SourceManager>();
|
|
|
|
TargetInfo &t = D.ReadRef<TargetInfo>();
|
|
|
|
IdentifierTable &idents = D.ReadRef<IdentifierTable>();
|
|
|
|
SelectorTable &sels = D.ReadRef<SelectorTable>();
|
2008-04-04 14:12:32 +08:00
|
|
|
|
2007-11-01 06:44:07 +08:00
|
|
|
unsigned size_reserve = D.ReadInt();
|
|
|
|
|
2008-06-04 23:55:15 +08:00
|
|
|
ASTContext* A = new ASTContext(LOpts, SM, t, idents, sels, size_reserve);
|
2007-11-01 06:44:07 +08:00
|
|
|
|
2007-11-14 06:02:55 +08:00
|
|
|
for (unsigned i = 0; i < size_reserve; ++i)
|
|
|
|
Type::Create(*A,i,D);
|
2008-04-04 14:12:32 +08:00
|
|
|
|
2008-04-17 22:40:12 +08:00
|
|
|
A->TUDecl = cast<TranslationUnitDecl>(D.ReadOwnedPtr<Decl>(*A));
|
|
|
|
|
2007-11-02 02:11:32 +08:00
|
|
|
// FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
|
2007-11-01 06:44:07 +08:00
|
|
|
|
|
|
|
return A;
|
|
|
|
}
|