blob: 3455504fdb191ec92854355e48857dd94050c115 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- ASTContext.cpp - Context to hold long-lived AST nodes ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ASTContext interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/ASTContext.h"
Argiris Kirtzidisea29d1e2008-08-07 20:55:28 +000015#include "clang/AST/DeclCXX.h"
Steve Naroff3fafa102007-10-01 19:00:59 +000016#include "clang/AST/DeclObjC.h"
Daniel Dunbarde300732008-08-11 04:54:23 +000017#include "clang/AST/Expr.h"
18#include "clang/AST/RecordLayout.h"
Chris Lattner4b009652007-07-25 00:24:17 +000019#include "clang/Basic/TargetInfo.h"
Anders Carlsson36f07d82007-10-29 05:01:08 +000020#include "llvm/ADT/StringExtras.h"
Ted Kremenek738e6c02007-10-31 17:10:13 +000021#include "llvm/Bitcode/Serialize.h"
22#include "llvm/Bitcode/Deserialize.h"
Anders Carlsson36f07d82007-10-29 05:01:08 +000023
Chris Lattner4b009652007-07-25 00:24:17 +000024using namespace clang;
25
26enum FloatingRank {
27 FloatRank, DoubleRank, LongDoubleRank
28};
29
Chris Lattner2fda0ed2008-10-05 17:34:18 +000030ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM,
31 TargetInfo &t,
Daniel Dunbarde300732008-08-11 04:54:23 +000032 IdentifierTable &idents, SelectorTable &sels,
33 unsigned size_reserve) :
Anders Carlssonf58cac72008-08-30 19:34:46 +000034 CFConstantStringTypeDecl(0), ObjCFastEnumerationStateTypeDecl(0),
35 SourceMgr(SM), LangOpts(LOpts), Target(t),
Douglas Gregor24afd4a2008-11-17 14:58:09 +000036 Idents(idents), Selectors(sels)
Daniel Dunbarde300732008-08-11 04:54:23 +000037{
38 if (size_reserve > 0) Types.reserve(size_reserve);
39 InitBuiltinTypes();
40 BuiltinInfo.InitializeBuiltins(idents, Target);
41 TUDecl = TranslationUnitDecl::Create(*this);
42}
43
Chris Lattner4b009652007-07-25 00:24:17 +000044ASTContext::~ASTContext() {
45 // Deallocate all the types.
46 while (!Types.empty()) {
Ted Kremenekdb4d5972008-05-21 16:38:54 +000047 Types.back()->Destroy(*this);
Chris Lattner4b009652007-07-25 00:24:17 +000048 Types.pop_back();
49 }
Eli Friedman65489b72008-05-27 03:08:09 +000050
51 TUDecl->Destroy(*this);
Chris Lattner4b009652007-07-25 00:24:17 +000052}
53
54void ASTContext::PrintStats() const {
55 fprintf(stderr, "*** AST Context Stats:\n");
56 fprintf(stderr, " %d types total.\n", (int)Types.size());
57 unsigned NumBuiltin = 0, NumPointer = 0, NumArray = 0, NumFunctionP = 0;
Daniel Dunbar47677342008-09-26 03:23:00 +000058 unsigned NumVector = 0, NumComplex = 0, NumBlockPointer = 0;
Chris Lattner4b009652007-07-25 00:24:17 +000059 unsigned NumFunctionNP = 0, NumTypeName = 0, NumTagged = 0, NumReference = 0;
60
61 unsigned NumTagStruct = 0, NumTagUnion = 0, NumTagEnum = 0, NumTagClass = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +000062 unsigned NumObjCInterfaces = 0, NumObjCQualifiedInterfaces = 0;
63 unsigned NumObjCQualifiedIds = 0;
Steve Naroffe0430632008-05-21 15:59:22 +000064 unsigned NumTypeOfTypes = 0, NumTypeOfExprs = 0;
Chris Lattner4b009652007-07-25 00:24:17 +000065
66 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
67 Type *T = Types[i];
68 if (isa<BuiltinType>(T))
69 ++NumBuiltin;
70 else if (isa<PointerType>(T))
71 ++NumPointer;
Daniel Dunbar47677342008-09-26 03:23:00 +000072 else if (isa<BlockPointerType>(T))
73 ++NumBlockPointer;
Chris Lattner4b009652007-07-25 00:24:17 +000074 else if (isa<ReferenceType>(T))
75 ++NumReference;
76 else if (isa<ComplexType>(T))
77 ++NumComplex;
78 else if (isa<ArrayType>(T))
79 ++NumArray;
80 else if (isa<VectorType>(T))
81 ++NumVector;
82 else if (isa<FunctionTypeNoProto>(T))
83 ++NumFunctionNP;
84 else if (isa<FunctionTypeProto>(T))
85 ++NumFunctionP;
86 else if (isa<TypedefType>(T))
87 ++NumTypeName;
88 else if (TagType *TT = dyn_cast<TagType>(T)) {
89 ++NumTagged;
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +000090 switch (TT->getDecl()->getTagKind()) {
Chris Lattner4b009652007-07-25 00:24:17 +000091 default: assert(0 && "Unknown tagged type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +000092 case TagDecl::TK_struct: ++NumTagStruct; break;
93 case TagDecl::TK_union: ++NumTagUnion; break;
94 case TagDecl::TK_class: ++NumTagClass; break;
95 case TagDecl::TK_enum: ++NumTagEnum; break;
Chris Lattner4b009652007-07-25 00:24:17 +000096 }
Ted Kremenek42730c52008-01-07 19:49:32 +000097 } else if (isa<ObjCInterfaceType>(T))
98 ++NumObjCInterfaces;
99 else if (isa<ObjCQualifiedInterfaceType>(T))
100 ++NumObjCQualifiedInterfaces;
101 else if (isa<ObjCQualifiedIdType>(T))
102 ++NumObjCQualifiedIds;
Steve Naroffe0430632008-05-21 15:59:22 +0000103 else if (isa<TypeOfType>(T))
104 ++NumTypeOfTypes;
105 else if (isa<TypeOfExpr>(T))
106 ++NumTypeOfExprs;
Steve Naroff948fd372007-09-17 14:16:13 +0000107 else {
Chris Lattner8a35b462007-12-12 06:43:05 +0000108 QualType(T, 0).dump();
Chris Lattner4b009652007-07-25 00:24:17 +0000109 assert(0 && "Unknown type!");
110 }
111 }
112
113 fprintf(stderr, " %d builtin types\n", NumBuiltin);
114 fprintf(stderr, " %d pointer types\n", NumPointer);
Daniel Dunbar47677342008-09-26 03:23:00 +0000115 fprintf(stderr, " %d block pointer types\n", NumBlockPointer);
Chris Lattner4b009652007-07-25 00:24:17 +0000116 fprintf(stderr, " %d reference types\n", NumReference);
117 fprintf(stderr, " %d complex types\n", NumComplex);
118 fprintf(stderr, " %d array types\n", NumArray);
119 fprintf(stderr, " %d vector types\n", NumVector);
120 fprintf(stderr, " %d function types with proto\n", NumFunctionP);
121 fprintf(stderr, " %d function types with no proto\n", NumFunctionNP);
122 fprintf(stderr, " %d typename (typedef) types\n", NumTypeName);
123 fprintf(stderr, " %d tagged types\n", NumTagged);
124 fprintf(stderr, " %d struct types\n", NumTagStruct);
125 fprintf(stderr, " %d union types\n", NumTagUnion);
126 fprintf(stderr, " %d class types\n", NumTagClass);
127 fprintf(stderr, " %d enum types\n", NumTagEnum);
Ted Kremenek42730c52008-01-07 19:49:32 +0000128 fprintf(stderr, " %d interface types\n", NumObjCInterfaces);
Chris Lattner8a35b462007-12-12 06:43:05 +0000129 fprintf(stderr, " %d protocol qualified interface types\n",
Ted Kremenek42730c52008-01-07 19:49:32 +0000130 NumObjCQualifiedInterfaces);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000131 fprintf(stderr, " %d protocol qualified id types\n",
Ted Kremenek42730c52008-01-07 19:49:32 +0000132 NumObjCQualifiedIds);
Steve Naroffe0430632008-05-21 15:59:22 +0000133 fprintf(stderr, " %d typeof types\n", NumTypeOfTypes);
134 fprintf(stderr, " %d typeof exprs\n", NumTypeOfExprs);
135
Chris Lattner4b009652007-07-25 00:24:17 +0000136 fprintf(stderr, "Total bytes = %d\n", int(NumBuiltin*sizeof(BuiltinType)+
137 NumPointer*sizeof(PointerType)+NumArray*sizeof(ArrayType)+
138 NumComplex*sizeof(ComplexType)+NumVector*sizeof(VectorType)+
139 NumFunctionP*sizeof(FunctionTypeProto)+
140 NumFunctionNP*sizeof(FunctionTypeNoProto)+
Steve Naroffe0430632008-05-21 15:59:22 +0000141 NumTypeName*sizeof(TypedefType)+NumTagged*sizeof(TagType)+
142 NumTypeOfTypes*sizeof(TypeOfType)+NumTypeOfExprs*sizeof(TypeOfExpr)));
Chris Lattner4b009652007-07-25 00:24:17 +0000143}
144
145
146void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
147 Types.push_back((R = QualType(new BuiltinType(K),0)).getTypePtr());
148}
149
Chris Lattner4b009652007-07-25 00:24:17 +0000150void ASTContext::InitBuiltinTypes() {
151 assert(VoidTy.isNull() && "Context reinitialized?");
152
153 // C99 6.2.5p19.
154 InitBuiltinType(VoidTy, BuiltinType::Void);
155
156 // C99 6.2.5p2.
157 InitBuiltinType(BoolTy, BuiltinType::Bool);
158 // C99 6.2.5p3.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000159 if (Target.isCharSigned())
Chris Lattner4b009652007-07-25 00:24:17 +0000160 InitBuiltinType(CharTy, BuiltinType::Char_S);
161 else
162 InitBuiltinType(CharTy, BuiltinType::Char_U);
163 // C99 6.2.5p4.
164 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
165 InitBuiltinType(ShortTy, BuiltinType::Short);
166 InitBuiltinType(IntTy, BuiltinType::Int);
167 InitBuiltinType(LongTy, BuiltinType::Long);
168 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
169
170 // C99 6.2.5p6.
171 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
172 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
173 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
174 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
175 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
176
177 // C99 6.2.5p10.
178 InitBuiltinType(FloatTy, BuiltinType::Float);
179 InitBuiltinType(DoubleTy, BuiltinType::Double);
180 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argiris Kirtzidis1ed03e72008-08-09 16:51:54 +0000181
182 // C++ 3.9.1p5
183 InitBuiltinType(WCharTy, BuiltinType::WChar);
184
Douglas Gregord2baafd2008-10-21 16:13:35 +0000185 // Placeholder type for functions.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000186 InitBuiltinType(OverloadTy, BuiltinType::Overload);
187
188 // Placeholder type for type-dependent expressions whose type is
189 // completely unknown. No code should ever check a type against
190 // DependentTy and users should never see it; however, it is here to
191 // help diagnose failures to properly check for type-dependent
192 // expressions.
193 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000194
Chris Lattner4b009652007-07-25 00:24:17 +0000195 // C99 6.2.5p11.
196 FloatComplexTy = getComplexType(FloatTy);
197 DoubleComplexTy = getComplexType(DoubleTy);
198 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000199
Steve Naroff9d12c902007-10-15 14:41:52 +0000200 BuiltinVaListType = QualType();
Ted Kremenek42730c52008-01-07 19:49:32 +0000201 ObjCIdType = QualType();
Steve Naroff9d12c902007-10-15 14:41:52 +0000202 IdStructType = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +0000203 ObjCClassType = QualType();
Anders Carlsson7f23e3d2007-10-31 02:53:19 +0000204 ClassStructType = 0;
205
Ted Kremenek42730c52008-01-07 19:49:32 +0000206 ObjCConstantStringType = QualType();
Fariborz Jahanianc81f3162007-10-29 22:57:28 +0000207
208 // void * type
209 VoidPtrTy = getPointerType(VoidTy);
Chris Lattner4b009652007-07-25 00:24:17 +0000210}
211
212//===----------------------------------------------------------------------===//
213// Type Sizing and Analysis
214//===----------------------------------------------------------------------===//
215
Chris Lattner2a674dc2008-06-30 18:32:54 +0000216/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
217/// scalar floating point type.
218const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
219 const BuiltinType *BT = T->getAsBuiltinType();
220 assert(BT && "Not a floating point type!");
221 switch (BT->getKind()) {
222 default: assert(0 && "Not a floating point type!");
223 case BuiltinType::Float: return Target.getFloatFormat();
224 case BuiltinType::Double: return Target.getDoubleFormat();
225 case BuiltinType::LongDouble: return Target.getLongDoubleFormat();
226 }
227}
228
229
Chris Lattner4b009652007-07-25 00:24:17 +0000230/// getTypeSize - Return the size of the specified type, in bits. This method
231/// does not work on incomplete types.
232std::pair<uint64_t, unsigned>
Daniel Dunbar7d6a5d22008-11-08 05:48:37 +0000233ASTContext::getTypeInfo(const Type *T) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000234 T = getCanonicalType(T);
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000235 uint64_t Width;
Chris Lattner4b009652007-07-25 00:24:17 +0000236 unsigned Align;
237 switch (T->getTypeClass()) {
238 case Type::TypeName: assert(0 && "Not a canonical type!");
239 case Type::FunctionNoProto:
240 case Type::FunctionProto:
241 default:
242 assert(0 && "Incomplete types have no size!");
Steve Naroff83c13012007-08-30 01:06:46 +0000243 case Type::VariableArray:
244 assert(0 && "VLAs not implemented yet!");
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000245 case Type::DependentSizedArray:
246 assert(0 && "Dependently-sized arrays don't have a known size");
Steve Naroff83c13012007-08-30 01:06:46 +0000247 case Type::ConstantArray: {
Daniel Dunbar7d6a5d22008-11-08 05:48:37 +0000248 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Steve Naroff83c13012007-08-30 01:06:46 +0000249
Chris Lattner8cd0e932008-03-05 18:54:05 +0000250 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000251 Width = EltInfo.first*CAT->getSize().getZExtValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000252 Align = EltInfo.second;
253 break;
Christopher Lamb82c758b2007-12-29 05:10:55 +0000254 }
Nate Begemanaf6ed502008-04-18 23:10:10 +0000255 case Type::ExtVector:
Chris Lattner4b009652007-07-25 00:24:17 +0000256 case Type::Vector: {
257 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner8cd0e932008-03-05 18:54:05 +0000258 getTypeInfo(cast<VectorType>(T)->getElementType());
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000259 Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
Eli Friedman5949a022008-05-30 09:31:38 +0000260 // FIXME: This isn't right for unusual vectors
261 Align = Width;
Chris Lattner4b009652007-07-25 00:24:17 +0000262 break;
263 }
264
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000265 case Type::Builtin:
Chris Lattner4b009652007-07-25 00:24:17 +0000266 switch (cast<BuiltinType>(T)->getKind()) {
267 default: assert(0 && "Unknown builtin type!");
268 case BuiltinType::Void:
269 assert(0 && "Incomplete types have no size!");
Chris Lattnerb66237b2007-12-19 19:23:28 +0000270 case BuiltinType::Bool:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000271 Width = Target.getBoolWidth();
272 Align = Target.getBoolAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000273 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000274 case BuiltinType::Char_S:
275 case BuiltinType::Char_U:
276 case BuiltinType::UChar:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000277 case BuiltinType::SChar:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000278 Width = Target.getCharWidth();
279 Align = Target.getCharAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000280 break;
Argiris Kirtzidis1ed03e72008-08-09 16:51:54 +0000281 case BuiltinType::WChar:
282 Width = Target.getWCharWidth();
283 Align = Target.getWCharAlign();
284 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000285 case BuiltinType::UShort:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000286 case BuiltinType::Short:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000287 Width = Target.getShortWidth();
288 Align = Target.getShortAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000289 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000290 case BuiltinType::UInt:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000291 case BuiltinType::Int:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000292 Width = Target.getIntWidth();
293 Align = Target.getIntAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000294 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000295 case BuiltinType::ULong:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000296 case BuiltinType::Long:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000297 Width = Target.getLongWidth();
298 Align = Target.getLongAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000299 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000300 case BuiltinType::ULongLong:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000301 case BuiltinType::LongLong:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000302 Width = Target.getLongLongWidth();
303 Align = Target.getLongLongAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000304 break;
305 case BuiltinType::Float:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000306 Width = Target.getFloatWidth();
307 Align = Target.getFloatAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000308 break;
309 case BuiltinType::Double:
Chris Lattner1d78a862008-04-07 07:01:58 +0000310 Width = Target.getDoubleWidth();
311 Align = Target.getDoubleAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000312 break;
313 case BuiltinType::LongDouble:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000314 Width = Target.getLongDoubleWidth();
315 Align = Target.getLongDoubleAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000316 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000317 }
318 break;
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000319 case Type::ASQual:
Chris Lattner8cd0e932008-03-05 18:54:05 +0000320 // FIXME: Pointers into different addr spaces could have different sizes and
321 // alignment requirements: getPointerInfo should take an AddrSpace.
322 return getTypeInfo(QualType(cast<ASQualType>(T)->getBaseType(), 0));
Ted Kremenek42730c52008-01-07 19:49:32 +0000323 case Type::ObjCQualifiedId:
Chris Lattner1d78a862008-04-07 07:01:58 +0000324 Width = Target.getPointerWidth(0);
Chris Lattner461a6c52008-03-08 08:34:58 +0000325 Align = Target.getPointerAlign(0);
Chris Lattnerb66237b2007-12-19 19:23:28 +0000326 break;
Steve Naroff62f09f52008-09-24 15:05:44 +0000327 case Type::BlockPointer: {
328 unsigned AS = cast<BlockPointerType>(T)->getPointeeType().getAddressSpace();
329 Width = Target.getPointerWidth(AS);
330 Align = Target.getPointerAlign(AS);
331 break;
332 }
Chris Lattner461a6c52008-03-08 08:34:58 +0000333 case Type::Pointer: {
334 unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
Chris Lattner1d78a862008-04-07 07:01:58 +0000335 Width = Target.getPointerWidth(AS);
Chris Lattner461a6c52008-03-08 08:34:58 +0000336 Align = Target.getPointerAlign(AS);
337 break;
338 }
Chris Lattner4b009652007-07-25 00:24:17 +0000339 case Type::Reference:
340 // "When applied to a reference or a reference type, the result is the size
341 // of the referenced type." C++98 5.3.3p2: expr.sizeof.
Chris Lattnerb66237b2007-12-19 19:23:28 +0000342 // FIXME: This is wrong for struct layout: a reference in a struct has
343 // pointer size.
Chris Lattnercfac88d2008-04-02 17:35:06 +0000344 return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
Chris Lattner4b009652007-07-25 00:24:17 +0000345
346 case Type::Complex: {
347 // Complex types have the same alignment as their elements, but twice the
348 // size.
349 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner8cd0e932008-03-05 18:54:05 +0000350 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000351 Width = EltInfo.first*2;
Chris Lattner4b009652007-07-25 00:24:17 +0000352 Align = EltInfo.second;
353 break;
354 }
Devang Patel4b6bf702008-06-04 21:54:36 +0000355 case Type::ObjCInterface: {
Daniel Dunbar7d6a5d22008-11-08 05:48:37 +0000356 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel4b6bf702008-06-04 21:54:36 +0000357 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
358 Width = Layout.getSize();
359 Align = Layout.getAlignment();
360 break;
361 }
Chris Lattner2bf1d6c2008-04-06 22:05:18 +0000362 case Type::Tagged: {
Daniel Dunbar7d6a5d22008-11-08 05:48:37 +0000363 const TagType *TT = cast<TagType>(T);
364
365 if (TT->getDecl()->isInvalidDecl()) {
Chris Lattnerfd799692008-08-09 21:35:13 +0000366 Width = 1;
367 Align = 1;
368 break;
369 }
370
Daniel Dunbar7d6a5d22008-11-08 05:48:37 +0000371 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner2bf1d6c2008-04-06 22:05:18 +0000372 return getTypeInfo(ET->getDecl()->getIntegerType());
373
Daniel Dunbar7d6a5d22008-11-08 05:48:37 +0000374 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner2bf1d6c2008-04-06 22:05:18 +0000375 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
376 Width = Layout.getSize();
377 Align = Layout.getAlignment();
Chris Lattner4b009652007-07-25 00:24:17 +0000378 break;
379 }
Chris Lattner2bf1d6c2008-04-06 22:05:18 +0000380 }
Chris Lattner4b009652007-07-25 00:24:17 +0000381
382 assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000383 return std::make_pair(Width, Align);
Chris Lattner4b009652007-07-25 00:24:17 +0000384}
385
Devang Patelbfe323c2008-06-04 21:22:16 +0000386/// LayoutField - Field layout.
387void ASTRecordLayout::LayoutField(const FieldDecl *FD, unsigned FieldNo,
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000388 bool IsUnion, unsigned StructPacking,
Devang Patelbfe323c2008-06-04 21:22:16 +0000389 ASTContext &Context) {
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000390 unsigned FieldPacking = StructPacking;
Devang Patelbfe323c2008-06-04 21:22:16 +0000391 uint64_t FieldOffset = IsUnion ? 0 : Size;
392 uint64_t FieldSize;
393 unsigned FieldAlign;
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000394
395 // FIXME: Should this override struct packing? Probably we want to
396 // take the minimum?
397 if (const PackedAttr *PA = FD->getAttr<PackedAttr>())
398 FieldPacking = PA->getAlignment();
Devang Patelbfe323c2008-06-04 21:22:16 +0000399
400 if (const Expr *BitWidthExpr = FD->getBitWidth()) {
401 // TODO: Need to check this algorithm on other targets!
402 // (tested on Linux-X86)
Daniel Dunbar7cbcbf42008-08-13 23:47:13 +0000403 FieldSize =
404 BitWidthExpr->getIntegerConstantExprValue(Context).getZExtValue();
Devang Patelbfe323c2008-06-04 21:22:16 +0000405
406 std::pair<uint64_t, unsigned> FieldInfo =
407 Context.getTypeInfo(FD->getType());
408 uint64_t TypeSize = FieldInfo.first;
409
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000410 // Determine the alignment of this bitfield. The packing
411 // attributes define a maximum and the alignment attribute defines
412 // a minimum.
413 // FIXME: What is the right behavior when the specified alignment
414 // is smaller than the specified packing?
Devang Patelbfe323c2008-06-04 21:22:16 +0000415 FieldAlign = FieldInfo.second;
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000416 if (FieldPacking)
417 FieldAlign = std::min(FieldAlign, FieldPacking);
Devang Patelbfe323c2008-06-04 21:22:16 +0000418 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
419 FieldAlign = std::max(FieldAlign, AA->getAlignment());
420
421 // Check if we need to add padding to give the field the correct
422 // alignment.
423 if (FieldSize == 0 || (FieldOffset & (FieldAlign-1)) + FieldSize > TypeSize)
424 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
425
426 // Padding members don't affect overall alignment
427 if (!FD->getIdentifier())
428 FieldAlign = 1;
429 } else {
Chris Lattnerfd799692008-08-09 21:35:13 +0000430 if (FD->getType()->isIncompleteArrayType()) {
431 // This is a flexible array member; we can't directly
Devang Patelbfe323c2008-06-04 21:22:16 +0000432 // query getTypeInfo about these, so we figure it out here.
433 // Flexible array members don't have any size, but they
434 // have to be aligned appropriately for their element type.
435 FieldSize = 0;
Chris Lattnera1923f62008-08-04 07:31:14 +0000436 const ArrayType* ATy = Context.getAsArrayType(FD->getType());
Devang Patelbfe323c2008-06-04 21:22:16 +0000437 FieldAlign = Context.getTypeAlign(ATy->getElementType());
438 } else {
439 std::pair<uint64_t, unsigned> FieldInfo =
440 Context.getTypeInfo(FD->getType());
441 FieldSize = FieldInfo.first;
442 FieldAlign = FieldInfo.second;
443 }
444
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000445 // Determine the alignment of this bitfield. The packing
446 // attributes define a maximum and the alignment attribute defines
447 // a minimum. Additionally, the packing alignment must be at least
448 // a byte for non-bitfields.
449 //
450 // FIXME: What is the right behavior when the specified alignment
451 // is smaller than the specified packing?
452 if (FieldPacking)
453 FieldAlign = std::min(FieldAlign, std::max(8U, FieldPacking));
Devang Patelbfe323c2008-06-04 21:22:16 +0000454 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
455 FieldAlign = std::max(FieldAlign, AA->getAlignment());
456
457 // Round up the current record size to the field's alignment boundary.
458 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
459 }
460
461 // Place this field at the current location.
462 FieldOffsets[FieldNo] = FieldOffset;
463
464 // Reserve space for this field.
465 if (IsUnion) {
466 Size = std::max(Size, FieldSize);
467 } else {
468 Size = FieldOffset + FieldSize;
469 }
470
471 // Remember max struct/class alignment.
472 Alignment = std::max(Alignment, FieldAlign);
473}
474
Devang Patel4b6bf702008-06-04 21:54:36 +0000475
Chris Lattner2fda0ed2008-10-05 17:34:18 +0000476/// getASTObjcInterfaceLayout - Get or compute information about the layout of
477/// the specified Objective C, which indicates its size and ivar
Devang Patel4b6bf702008-06-04 21:54:36 +0000478/// position information.
479const ASTRecordLayout &
480ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) {
481 // Look up this layout, if already laid out, return what we have.
482 const ASTRecordLayout *&Entry = ASTObjCInterfaces[D];
483 if (Entry) return *Entry;
484
485 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
486 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
Devang Patel8682d882008-06-06 02:14:01 +0000487 ASTRecordLayout *NewEntry = NULL;
488 unsigned FieldCount = D->ivar_size();
489 if (ObjCInterfaceDecl *SD = D->getSuperClass()) {
490 FieldCount++;
491 const ASTRecordLayout &SL = getASTObjCInterfaceLayout(SD);
492 unsigned Alignment = SL.getAlignment();
493 uint64_t Size = SL.getSize();
494 NewEntry = new ASTRecordLayout(Size, Alignment);
495 NewEntry->InitializeLayout(FieldCount);
Chris Lattner2fda0ed2008-10-05 17:34:18 +0000496 // Super class is at the beginning of the layout.
497 NewEntry->SetFieldOffset(0, 0);
Devang Patel8682d882008-06-06 02:14:01 +0000498 } else {
499 NewEntry = new ASTRecordLayout();
500 NewEntry->InitializeLayout(FieldCount);
501 }
Devang Patel4b6bf702008-06-04 21:54:36 +0000502 Entry = NewEntry;
503
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000504 unsigned StructPacking = 0;
505 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
506 StructPacking = PA->getAlignment();
Devang Patel4b6bf702008-06-04 21:54:36 +0000507
508 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
509 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
510 AA->getAlignment()));
511
512 // Layout each ivar sequentially.
513 unsigned i = 0;
514 for (ObjCInterfaceDecl::ivar_iterator IVI = D->ivar_begin(),
515 IVE = D->ivar_end(); IVI != IVE; ++IVI) {
516 const ObjCIvarDecl* Ivar = (*IVI);
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000517 NewEntry->LayoutField(Ivar, i++, false, StructPacking, *this);
Devang Patel4b6bf702008-06-04 21:54:36 +0000518 }
519
520 // Finally, round the size of the total struct up to the alignment of the
521 // struct itself.
522 NewEntry->FinalizeLayout();
523 return *NewEntry;
524}
525
Devang Patel7a78e432007-11-01 19:11:01 +0000526/// getASTRecordLayout - Get or compute information about the layout of the
Chris Lattner4b009652007-07-25 00:24:17 +0000527/// specified record (struct/union/class), which indicates its size and field
528/// position information.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000529const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
Ted Kremenek46a837c2008-09-05 17:16:31 +0000530 D = D->getDefinition(*this);
531 assert(D && "Cannot get layout of forward declarations!");
Eli Friedman5949a022008-05-30 09:31:38 +0000532
Chris Lattner4b009652007-07-25 00:24:17 +0000533 // Look up this layout, if already laid out, return what we have.
Devang Patel7a78e432007-11-01 19:11:01 +0000534 const ASTRecordLayout *&Entry = ASTRecordLayouts[D];
Chris Lattner4b009652007-07-25 00:24:17 +0000535 if (Entry) return *Entry;
Eli Friedman5949a022008-05-30 09:31:38 +0000536
Devang Patel7a78e432007-11-01 19:11:01 +0000537 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
538 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
539 ASTRecordLayout *NewEntry = new ASTRecordLayout();
Chris Lattner4b009652007-07-25 00:24:17 +0000540 Entry = NewEntry;
Eli Friedman5949a022008-05-30 09:31:38 +0000541
Douglas Gregor8acb7272008-12-11 16:49:14 +0000542 NewEntry->InitializeLayout(std::distance(D->field_begin(), D->field_end()));
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +0000543 bool IsUnion = D->isUnion();
Chris Lattner4b009652007-07-25 00:24:17 +0000544
Daniel Dunbar2cb762f2008-10-16 02:34:03 +0000545 unsigned StructPacking = 0;
546 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
547 StructPacking = PA->getAlignment();
548
Eli Friedman5949a022008-05-30 09:31:38 +0000549 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
Devang Patelbfe323c2008-06-04 21:22:16 +0000550 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
551 AA->getAlignment()));
Anders Carlsson058237f2008-02-18 07:13:09 +0000552
Eli Friedman5949a022008-05-30 09:31:38 +0000553 // Layout each field, for now, just sequentially, respecting alignment. In
554 // the future, this will need to be tweakable by targets.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000555 unsigned FieldIdx = 0;
556 for (RecordDecl::field_iterator Field = D->field_begin(),
557 FieldEnd = D->field_end();
558 Field != FieldEnd; (void)++Field, ++FieldIdx)
559 NewEntry->LayoutField(*Field, FieldIdx, IsUnion, StructPacking, *this);
Eli Friedman5949a022008-05-30 09:31:38 +0000560
561 // Finally, round the size of the total struct up to the alignment of the
562 // struct itself.
Devang Patelbfe323c2008-06-04 21:22:16 +0000563 NewEntry->FinalizeLayout();
Chris Lattner4b009652007-07-25 00:24:17 +0000564 return *NewEntry;
565}
566
Chris Lattner4b009652007-07-25 00:24:17 +0000567//===----------------------------------------------------------------------===//
568// Type creation/memoization methods
569//===----------------------------------------------------------------------===//
570
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000571QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000572 QualType CanT = getCanonicalType(T);
573 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattner35fef522008-02-20 20:55:12 +0000574 return T;
575
576 // Type's cannot have multiple ASQuals, therefore we know we only have to deal
577 // with CVR qualifiers from here on out.
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000578 assert(CanT.getAddressSpace() == 0 &&
Chris Lattner35fef522008-02-20 20:55:12 +0000579 "Type is already address space qualified");
580
581 // Check if we've already instantiated an address space qual'd type of this
582 // type.
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000583 llvm::FoldingSetNodeID ID;
Chris Lattner35fef522008-02-20 20:55:12 +0000584 ASQualType::Profile(ID, T.getTypePtr(), AddressSpace);
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000585 void *InsertPos = 0;
586 if (ASQualType *ASQy = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos))
587 return QualType(ASQy, 0);
588
589 // If the base type isn't canonical, this won't be a canonical type either,
590 // so fill in the canonical type field.
591 QualType Canonical;
592 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000593 Canonical = getASQualType(CanT, AddressSpace);
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000594
595 // Get the new insert position for the node we care about.
596 ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000597 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000598 }
Chris Lattner35fef522008-02-20 20:55:12 +0000599 ASQualType *New = new ASQualType(T.getTypePtr(), Canonical, AddressSpace);
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000600 ASQualTypes.InsertNode(New, InsertPos);
601 Types.push_back(New);
Chris Lattner35fef522008-02-20 20:55:12 +0000602 return QualType(New, T.getCVRQualifiers());
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000603}
604
Chris Lattner4b009652007-07-25 00:24:17 +0000605
606/// getComplexType - Return the uniqued reference to the type for a complex
607/// number with the specified element type.
608QualType ASTContext::getComplexType(QualType T) {
609 // Unique pointers, to guarantee there is only one pointer of a particular
610 // structure.
611 llvm::FoldingSetNodeID ID;
612 ComplexType::Profile(ID, T);
613
614 void *InsertPos = 0;
615 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
616 return QualType(CT, 0);
617
618 // If the pointee type isn't canonical, this won't be a canonical type either,
619 // so fill in the canonical type field.
620 QualType Canonical;
621 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000622 Canonical = getComplexType(getCanonicalType(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000623
624 // Get the new insert position for the node we care about.
625 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000626 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000627 }
628 ComplexType *New = new ComplexType(T, Canonical);
629 Types.push_back(New);
630 ComplexTypes.InsertNode(New, InsertPos);
631 return QualType(New, 0);
632}
633
634
635/// getPointerType - Return the uniqued reference to the type for a pointer to
636/// the specified type.
637QualType ASTContext::getPointerType(QualType T) {
638 // Unique pointers, to guarantee there is only one pointer of a particular
639 // structure.
640 llvm::FoldingSetNodeID ID;
641 PointerType::Profile(ID, T);
642
643 void *InsertPos = 0;
644 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
645 return QualType(PT, 0);
646
647 // If the pointee type isn't canonical, this won't be a canonical type either,
648 // so fill in the canonical type field.
649 QualType Canonical;
650 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000651 Canonical = getPointerType(getCanonicalType(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000652
653 // Get the new insert position for the node we care about.
654 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000655 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000656 }
657 PointerType *New = new PointerType(T, Canonical);
658 Types.push_back(New);
659 PointerTypes.InsertNode(New, InsertPos);
660 return QualType(New, 0);
661}
662
Steve Naroff7aa54752008-08-27 16:04:49 +0000663/// getBlockPointerType - Return the uniqued reference to the type for
664/// a pointer to the specified block.
665QualType ASTContext::getBlockPointerType(QualType T) {
Steve Narofffd5b19d2008-08-28 19:20:44 +0000666 assert(T->isFunctionType() && "block of function types only");
667 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff7aa54752008-08-27 16:04:49 +0000668 // structure.
669 llvm::FoldingSetNodeID ID;
670 BlockPointerType::Profile(ID, T);
671
672 void *InsertPos = 0;
673 if (BlockPointerType *PT =
674 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
675 return QualType(PT, 0);
676
Steve Narofffd5b19d2008-08-28 19:20:44 +0000677 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff7aa54752008-08-27 16:04:49 +0000678 // type either so fill in the canonical type field.
679 QualType Canonical;
680 if (!T->isCanonical()) {
681 Canonical = getBlockPointerType(getCanonicalType(T));
682
683 // Get the new insert position for the node we care about.
684 BlockPointerType *NewIP =
685 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000686 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff7aa54752008-08-27 16:04:49 +0000687 }
688 BlockPointerType *New = new BlockPointerType(T, Canonical);
689 Types.push_back(New);
690 BlockPointerTypes.InsertNode(New, InsertPos);
691 return QualType(New, 0);
692}
693
Chris Lattner4b009652007-07-25 00:24:17 +0000694/// getReferenceType - Return the uniqued reference to the type for a reference
695/// to the specified type.
696QualType ASTContext::getReferenceType(QualType T) {
697 // Unique pointers, to guarantee there is only one pointer of a particular
698 // structure.
699 llvm::FoldingSetNodeID ID;
700 ReferenceType::Profile(ID, T);
701
702 void *InsertPos = 0;
703 if (ReferenceType *RT = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
704 return QualType(RT, 0);
705
706 // If the referencee type isn't canonical, this won't be a canonical type
707 // either, so fill in the canonical type field.
708 QualType Canonical;
709 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000710 Canonical = getReferenceType(getCanonicalType(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000711
712 // Get the new insert position for the node we care about.
713 ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000714 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000715 }
716
717 ReferenceType *New = new ReferenceType(T, Canonical);
718 Types.push_back(New);
719 ReferenceTypes.InsertNode(New, InsertPos);
720 return QualType(New, 0);
721}
722
Steve Naroff83c13012007-08-30 01:06:46 +0000723/// getConstantArrayType - Return the unique reference to the type for an
724/// array of the specified element type.
725QualType ASTContext::getConstantArrayType(QualType EltTy,
Steve Naroff24c9b982007-08-30 18:10:14 +0000726 const llvm::APInt &ArySize,
727 ArrayType::ArraySizeModifier ASM,
728 unsigned EltTypeQuals) {
Chris Lattner4b009652007-07-25 00:24:17 +0000729 llvm::FoldingSetNodeID ID;
Steve Naroff83c13012007-08-30 01:06:46 +0000730 ConstantArrayType::Profile(ID, EltTy, ArySize);
Chris Lattner4b009652007-07-25 00:24:17 +0000731
732 void *InsertPos = 0;
Ted Kremenek738e6c02007-10-31 17:10:13 +0000733 if (ConstantArrayType *ATP =
734 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Chris Lattner4b009652007-07-25 00:24:17 +0000735 return QualType(ATP, 0);
736
737 // If the element type isn't canonical, this won't be a canonical type either,
738 // so fill in the canonical type field.
739 QualType Canonical;
740 if (!EltTy->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000741 Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
Steve Naroff24c9b982007-08-30 18:10:14 +0000742 ASM, EltTypeQuals);
Chris Lattner4b009652007-07-25 00:24:17 +0000743 // Get the new insert position for the node we care about.
Ted Kremenek738e6c02007-10-31 17:10:13 +0000744 ConstantArrayType *NewIP =
745 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000746 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000747 }
748
Steve Naroff24c9b982007-08-30 18:10:14 +0000749 ConstantArrayType *New = new ConstantArrayType(EltTy, Canonical, ArySize,
750 ASM, EltTypeQuals);
Ted Kremenek738e6c02007-10-31 17:10:13 +0000751 ConstantArrayTypes.InsertNode(New, InsertPos);
Chris Lattner4b009652007-07-25 00:24:17 +0000752 Types.push_back(New);
753 return QualType(New, 0);
754}
755
Steve Naroffe2579e32007-08-30 18:14:25 +0000756/// getVariableArrayType - Returns a non-unique reference to the type for a
757/// variable array of the specified element type.
Steve Naroff24c9b982007-08-30 18:10:14 +0000758QualType ASTContext::getVariableArrayType(QualType EltTy, Expr *NumElts,
759 ArrayType::ArraySizeModifier ASM,
760 unsigned EltTypeQuals) {
Eli Friedman8ff07782008-02-15 18:16:39 +0000761 // Since we don't unique expressions, it isn't possible to unique VLA's
762 // that have an expression provided for their size.
763
764 VariableArrayType *New = new VariableArrayType(EltTy, QualType(), NumElts,
765 ASM, EltTypeQuals);
766
767 VariableArrayTypes.push_back(New);
768 Types.push_back(New);
769 return QualType(New, 0);
770}
771
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000772/// getDependentSizedArrayType - Returns a non-unique reference to
773/// the type for a dependently-sized array of the specified element
774/// type. FIXME: We will need these to be uniqued, or at least
775/// comparable, at some point.
776QualType ASTContext::getDependentSizedArrayType(QualType EltTy, Expr *NumElts,
777 ArrayType::ArraySizeModifier ASM,
778 unsigned EltTypeQuals) {
779 assert((NumElts->isTypeDependent() || NumElts->isValueDependent()) &&
780 "Size must be type- or value-dependent!");
781
782 // Since we don't unique expressions, it isn't possible to unique
783 // dependently-sized array types.
784
785 DependentSizedArrayType *New
786 = new DependentSizedArrayType(EltTy, QualType(), NumElts,
787 ASM, EltTypeQuals);
788
789 DependentSizedArrayTypes.push_back(New);
790 Types.push_back(New);
791 return QualType(New, 0);
792}
793
Eli Friedman8ff07782008-02-15 18:16:39 +0000794QualType ASTContext::getIncompleteArrayType(QualType EltTy,
795 ArrayType::ArraySizeModifier ASM,
796 unsigned EltTypeQuals) {
797 llvm::FoldingSetNodeID ID;
798 IncompleteArrayType::Profile(ID, EltTy);
799
800 void *InsertPos = 0;
801 if (IncompleteArrayType *ATP =
802 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
803 return QualType(ATP, 0);
804
805 // If the element type isn't canonical, this won't be a canonical type
806 // either, so fill in the canonical type field.
807 QualType Canonical;
808
809 if (!EltTy->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000810 Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
Ted Kremenek3793e1a2007-10-29 23:37:31 +0000811 ASM, EltTypeQuals);
Eli Friedman8ff07782008-02-15 18:16:39 +0000812
813 // Get the new insert position for the node we care about.
814 IncompleteArrayType *NewIP =
815 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000816 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Ted Kremenek3793e1a2007-10-29 23:37:31 +0000817 }
Eli Friedman8ff07782008-02-15 18:16:39 +0000818
819 IncompleteArrayType *New = new IncompleteArrayType(EltTy, Canonical,
820 ASM, EltTypeQuals);
821
822 IncompleteArrayTypes.InsertNode(New, InsertPos);
823 Types.push_back(New);
824 return QualType(New, 0);
Steve Naroff83c13012007-08-30 01:06:46 +0000825}
826
Chris Lattner4b009652007-07-25 00:24:17 +0000827/// getVectorType - Return the unique reference to a vector type of
828/// the specified element type and size. VectorType must be a built-in type.
829QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
830 BuiltinType *baseType;
831
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000832 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Chris Lattner4b009652007-07-25 00:24:17 +0000833 assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
834
835 // Check if we've already instantiated a vector of this type.
836 llvm::FoldingSetNodeID ID;
837 VectorType::Profile(ID, vecType, NumElts, Type::Vector);
838 void *InsertPos = 0;
839 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
840 return QualType(VTP, 0);
841
842 // If the element type isn't canonical, this won't be a canonical type either,
843 // so fill in the canonical type field.
844 QualType Canonical;
845 if (!vecType->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000846 Canonical = getVectorType(getCanonicalType(vecType), NumElts);
Chris Lattner4b009652007-07-25 00:24:17 +0000847
848 // Get the new insert position for the node we care about.
849 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000850 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000851 }
852 VectorType *New = new VectorType(vecType, NumElts, Canonical);
853 VectorTypes.InsertNode(New, InsertPos);
854 Types.push_back(New);
855 return QualType(New, 0);
856}
857
Nate Begemanaf6ed502008-04-18 23:10:10 +0000858/// getExtVectorType - Return the unique reference to an extended vector type of
Chris Lattner4b009652007-07-25 00:24:17 +0000859/// the specified element type and size. VectorType must be a built-in type.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000860QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) {
Chris Lattner4b009652007-07-25 00:24:17 +0000861 BuiltinType *baseType;
862
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000863 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Nate Begemanaf6ed502008-04-18 23:10:10 +0000864 assert(baseType != 0 && "getExtVectorType(): Expecting a built-in type");
Chris Lattner4b009652007-07-25 00:24:17 +0000865
866 // Check if we've already instantiated a vector of this type.
867 llvm::FoldingSetNodeID ID;
Nate Begemanaf6ed502008-04-18 23:10:10 +0000868 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector);
Chris Lattner4b009652007-07-25 00:24:17 +0000869 void *InsertPos = 0;
870 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
871 return QualType(VTP, 0);
872
873 // If the element type isn't canonical, this won't be a canonical type either,
874 // so fill in the canonical type field.
875 QualType Canonical;
876 if (!vecType->isCanonical()) {
Nate Begemanaf6ed502008-04-18 23:10:10 +0000877 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Chris Lattner4b009652007-07-25 00:24:17 +0000878
879 // Get the new insert position for the node we care about.
880 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000881 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000882 }
Nate Begemanaf6ed502008-04-18 23:10:10 +0000883 ExtVectorType *New = new ExtVectorType(vecType, NumElts, Canonical);
Chris Lattner4b009652007-07-25 00:24:17 +0000884 VectorTypes.InsertNode(New, InsertPos);
885 Types.push_back(New);
886 return QualType(New, 0);
887}
888
889/// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'.
890///
891QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
892 // Unique functions, to guarantee there is only one function of a particular
893 // structure.
894 llvm::FoldingSetNodeID ID;
895 FunctionTypeNoProto::Profile(ID, ResultTy);
896
897 void *InsertPos = 0;
898 if (FunctionTypeNoProto *FT =
899 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos))
900 return QualType(FT, 0);
901
902 QualType Canonical;
903 if (!ResultTy->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000904 Canonical = getFunctionTypeNoProto(getCanonicalType(ResultTy));
Chris Lattner4b009652007-07-25 00:24:17 +0000905
906 // Get the new insert position for the node we care about.
907 FunctionTypeNoProto *NewIP =
908 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000909 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000910 }
911
912 FunctionTypeNoProto *New = new FunctionTypeNoProto(ResultTy, Canonical);
913 Types.push_back(New);
Eli Friedmanaa0fdfd2008-02-25 22:11:40 +0000914 FunctionTypeNoProtos.InsertNode(New, InsertPos);
Chris Lattner4b009652007-07-25 00:24:17 +0000915 return QualType(New, 0);
916}
917
918/// getFunctionType - Return a normal function type with a typed argument
919/// list. isVariadic indicates whether the argument list includes '...'.
Chris Lattner2fda0ed2008-10-05 17:34:18 +0000920QualType ASTContext::getFunctionType(QualType ResultTy,const QualType *ArgArray,
Argiris Kirtzidis4b269b42008-10-24 21:46:40 +0000921 unsigned NumArgs, bool isVariadic,
922 unsigned TypeQuals) {
Chris Lattner4b009652007-07-25 00:24:17 +0000923 // Unique functions, to guarantee there is only one function of a particular
924 // structure.
925 llvm::FoldingSetNodeID ID;
Argiris Kirtzidis4b269b42008-10-24 21:46:40 +0000926 FunctionTypeProto::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic,
927 TypeQuals);
Chris Lattner4b009652007-07-25 00:24:17 +0000928
929 void *InsertPos = 0;
930 if (FunctionTypeProto *FTP =
931 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos))
932 return QualType(FTP, 0);
933
934 // Determine whether the type being created is already canonical or not.
935 bool isCanonical = ResultTy->isCanonical();
936 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
937 if (!ArgArray[i]->isCanonical())
938 isCanonical = false;
939
940 // If this type isn't canonical, get the canonical version of it.
941 QualType Canonical;
942 if (!isCanonical) {
943 llvm::SmallVector<QualType, 16> CanonicalArgs;
944 CanonicalArgs.reserve(NumArgs);
945 for (unsigned i = 0; i != NumArgs; ++i)
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000946 CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
Chris Lattner4b009652007-07-25 00:24:17 +0000947
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000948 Canonical = getFunctionType(getCanonicalType(ResultTy),
Chris Lattner4b009652007-07-25 00:24:17 +0000949 &CanonicalArgs[0], NumArgs,
Argiris Kirtzidis65b99642008-10-26 16:43:14 +0000950 isVariadic, TypeQuals);
Chris Lattner4b009652007-07-25 00:24:17 +0000951
952 // Get the new insert position for the node we care about.
953 FunctionTypeProto *NewIP =
954 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattner578a37e2008-10-12 00:26:57 +0000955 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Chris Lattner4b009652007-07-25 00:24:17 +0000956 }
957
958 // FunctionTypeProto objects are not allocated with new because they have a
959 // variable size array (for parameter types) at the end of them.
960 FunctionTypeProto *FTP =
961 (FunctionTypeProto*)malloc(sizeof(FunctionTypeProto) +
962 NumArgs*sizeof(QualType));
963 new (FTP) FunctionTypeProto(ResultTy, ArgArray, NumArgs, isVariadic,
Argiris Kirtzidis4b269b42008-10-24 21:46:40 +0000964 TypeQuals, Canonical);
Chris Lattner4b009652007-07-25 00:24:17 +0000965 Types.push_back(FTP);
966 FunctionTypeProtos.InsertNode(FTP, InsertPos);
967 return QualType(FTP, 0);
968}
969
Douglas Gregor1d661552008-04-13 21:07:44 +0000970/// getTypeDeclType - Return the unique reference to the type for the
971/// specified type declaration.
Ted Kremenek46a837c2008-09-05 17:16:31 +0000972QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) {
Argiris Kirtzidiseeec5482008-10-16 16:50:47 +0000973 assert(Decl && "Passed null for Decl param");
Douglas Gregor1d661552008-04-13 21:07:44 +0000974 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
975
Argiris Kirtzidiseeec5482008-10-16 16:50:47 +0000976 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Decl))
Douglas Gregor1d661552008-04-13 21:07:44 +0000977 return getTypedefType(Typedef);
Douglas Gregordd861062008-12-05 18:15:24 +0000978 else if (TemplateTypeParmDecl *TP = dyn_cast<TemplateTypeParmDecl>(Decl))
979 return getTemplateTypeParmType(TP);
Argiris Kirtzidiseeec5482008-10-16 16:50:47 +0000980 else if (ObjCInterfaceDecl *ObjCInterface = dyn_cast<ObjCInterfaceDecl>(Decl))
Douglas Gregor1d661552008-04-13 21:07:44 +0000981 return getObjCInterfaceType(ObjCInterface);
Argiris Kirtzidisea29d1e2008-08-07 20:55:28 +0000982
Argiris Kirtzidiseeec5482008-10-16 16:50:47 +0000983 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Decl)) {
Ted Kremenek46a837c2008-09-05 17:16:31 +0000984 Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
985 : new CXXRecordType(CXXRecord);
986 }
Argiris Kirtzidiseeec5482008-10-16 16:50:47 +0000987 else if (RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Ted Kremenek46a837c2008-09-05 17:16:31 +0000988 Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
989 : new RecordType(Record);
990 }
Argiris Kirtzidiseeec5482008-10-16 16:50:47 +0000991 else if (EnumDecl *Enum = dyn_cast<EnumDecl>(Decl))
Douglas Gregor1d661552008-04-13 21:07:44 +0000992 Decl->TypeForDecl = new EnumType(Enum);
Argiris Kirtzidisea29d1e2008-08-07 20:55:28 +0000993 else
Douglas Gregor1d661552008-04-13 21:07:44 +0000994 assert(false && "TypeDecl without a type?");
Argiris Kirtzidisea29d1e2008-08-07 20:55:28 +0000995
Ted Kremenek46a837c2008-09-05 17:16:31 +0000996 if (!PrevDecl) Types.push_back(Decl->TypeForDecl);
Argiris Kirtzidisea29d1e2008-08-07 20:55:28 +0000997 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor1d661552008-04-13 21:07:44 +0000998}
999
Douglas Gregor8acb7272008-12-11 16:49:14 +00001000/// setTagDefinition - Used by RecordDecl::completeDefinition and
1001/// EnumDecl::completeDefinition to inform about which
1002/// RecordDecl/EnumDecl serves as the definition of a particular
1003/// struct/union/class/enum.
Ted Kremenek46a837c2008-09-05 17:16:31 +00001004void ASTContext::setTagDefinition(TagDecl* D) {
1005 assert (D->isDefinition());
Douglas Gregor8acb7272008-12-11 16:49:14 +00001006 if (!D->TypeForDecl)
1007 getTypeDeclType(D);
1008 else
1009 cast<TagType>(D->TypeForDecl)->decl = D;
Ted Kremenek46a837c2008-09-05 17:16:31 +00001010}
1011
Chris Lattner4b009652007-07-25 00:24:17 +00001012/// getTypedefType - Return the unique reference to the type for the
1013/// specified typename decl.
1014QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
1015 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1016
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001017 QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001018 Decl->TypeForDecl = new TypedefType(Type::TypeName, Decl, Canonical);
Chris Lattner4b009652007-07-25 00:24:17 +00001019 Types.push_back(Decl->TypeForDecl);
1020 return QualType(Decl->TypeForDecl, 0);
1021}
1022
Douglas Gregordd861062008-12-05 18:15:24 +00001023/// getTemplateTypeParmType - Return the unique reference to the type
1024/// for the specified template type parameter declaration.
1025QualType ASTContext::getTemplateTypeParmType(TemplateTypeParmDecl *Decl) {
1026 if (!Decl->TypeForDecl) {
1027 Decl->TypeForDecl = new TemplateTypeParmType(Decl);
1028 Types.push_back(Decl->TypeForDecl);
1029 }
1030 return QualType(Decl->TypeForDecl, 0);
1031}
1032
Ted Kremenek42730c52008-01-07 19:49:32 +00001033/// getObjCInterfaceType - Return the unique reference to the type for the
Steve Naroff81f1bba2007-09-06 21:24:23 +00001034/// specified ObjC interface decl.
Ted Kremenek42730c52008-01-07 19:49:32 +00001035QualType ASTContext::getObjCInterfaceType(ObjCInterfaceDecl *Decl) {
Steve Naroff81f1bba2007-09-06 21:24:23 +00001036 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1037
Ted Kremenek42730c52008-01-07 19:49:32 +00001038 Decl->TypeForDecl = new ObjCInterfaceType(Type::ObjCInterface, Decl);
Steve Naroff81f1bba2007-09-06 21:24:23 +00001039 Types.push_back(Decl->TypeForDecl);
1040 return QualType(Decl->TypeForDecl, 0);
1041}
1042
Chris Lattnere1352302008-04-07 04:56:42 +00001043/// CmpProtocolNames - Comparison predicate for sorting protocols
1044/// alphabetically.
1045static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
1046 const ObjCProtocolDecl *RHS) {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00001047 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattnere1352302008-04-07 04:56:42 +00001048}
1049
1050static void SortAndUniqueProtocols(ObjCProtocolDecl **&Protocols,
1051 unsigned &NumProtocols) {
1052 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
1053
1054 // Sort protocols, keyed by name.
1055 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
1056
1057 // Remove duplicates.
1058 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
1059 NumProtocols = ProtocolsEnd-Protocols;
1060}
1061
1062
Chris Lattnerb0c6a1f2008-04-07 04:44:08 +00001063/// getObjCQualifiedInterfaceType - Return a ObjCQualifiedInterfaceType type for
1064/// the given interface decl and the conforming protocol list.
Ted Kremenek42730c52008-01-07 19:49:32 +00001065QualType ASTContext::getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl,
1066 ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
Chris Lattnere1352302008-04-07 04:56:42 +00001067 // Sort the protocol list alphabetically to canonicalize it.
1068 SortAndUniqueProtocols(Protocols, NumProtocols);
1069
Fariborz Jahanian91193f62007-10-11 00:55:41 +00001070 llvm::FoldingSetNodeID ID;
Chris Lattner7cdcb252008-04-07 06:38:24 +00001071 ObjCQualifiedInterfaceType::Profile(ID, Decl, Protocols, NumProtocols);
Fariborz Jahanian91193f62007-10-11 00:55:41 +00001072
1073 void *InsertPos = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +00001074 if (ObjCQualifiedInterfaceType *QT =
1075 ObjCQualifiedInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanian91193f62007-10-11 00:55:41 +00001076 return QualType(QT, 0);
1077
1078 // No Match;
Ted Kremenek42730c52008-01-07 19:49:32 +00001079 ObjCQualifiedInterfaceType *QType =
1080 new ObjCQualifiedInterfaceType(Decl, Protocols, NumProtocols);
Fariborz Jahanian91193f62007-10-11 00:55:41 +00001081 Types.push_back(QType);
Ted Kremenek42730c52008-01-07 19:49:32 +00001082 ObjCQualifiedInterfaceTypes.InsertNode(QType, InsertPos);
Fariborz Jahanian91193f62007-10-11 00:55:41 +00001083 return QualType(QType, 0);
1084}
1085
Chris Lattnere1352302008-04-07 04:56:42 +00001086/// getObjCQualifiedIdType - Return an ObjCQualifiedIdType for the 'id' decl
1087/// and the conforming protocol list.
Chris Lattner4a68fe02008-07-26 00:46:50 +00001088QualType ASTContext::getObjCQualifiedIdType(ObjCProtocolDecl **Protocols,
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001089 unsigned NumProtocols) {
Chris Lattnere1352302008-04-07 04:56:42 +00001090 // Sort the protocol list alphabetically to canonicalize it.
1091 SortAndUniqueProtocols(Protocols, NumProtocols);
1092
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001093 llvm::FoldingSetNodeID ID;
Ted Kremenek42730c52008-01-07 19:49:32 +00001094 ObjCQualifiedIdType::Profile(ID, Protocols, NumProtocols);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001095
1096 void *InsertPos = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +00001097 if (ObjCQualifiedIdType *QT =
Chris Lattner4a68fe02008-07-26 00:46:50 +00001098 ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001099 return QualType(QT, 0);
1100
1101 // No Match;
Chris Lattner4a68fe02008-07-26 00:46:50 +00001102 ObjCQualifiedIdType *QType = new ObjCQualifiedIdType(Protocols, NumProtocols);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001103 Types.push_back(QType);
Ted Kremenek42730c52008-01-07 19:49:32 +00001104 ObjCQualifiedIdTypes.InsertNode(QType, InsertPos);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001105 return QualType(QType, 0);
1106}
1107
Steve Naroff0604dd92007-08-01 18:02:17 +00001108/// getTypeOfExpr - Unlike many "get<Type>" functions, we can't unique
1109/// TypeOfExpr AST's (since expression's are never shared). For example,
1110/// multiple declarations that refer to "typeof(x)" all contain different
1111/// DeclRefExpr's. This doesn't effect the type checker, since it operates
1112/// on canonical type's (which are always unique).
Steve Naroff11b649c2007-08-01 17:20:42 +00001113QualType ASTContext::getTypeOfExpr(Expr *tofExpr) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001114 QualType Canonical = getCanonicalType(tofExpr->getType());
Steve Naroff0604dd92007-08-01 18:02:17 +00001115 TypeOfExpr *toe = new TypeOfExpr(tofExpr, Canonical);
1116 Types.push_back(toe);
1117 return QualType(toe, 0);
Steve Naroff7cbb1462007-07-31 12:34:36 +00001118}
1119
Steve Naroff0604dd92007-08-01 18:02:17 +00001120/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
1121/// TypeOfType AST's. The only motivation to unique these nodes would be
1122/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
1123/// an issue. This doesn't effect the type checker, since it operates
1124/// on canonical type's (which are always unique).
Steve Naroff7cbb1462007-07-31 12:34:36 +00001125QualType ASTContext::getTypeOfType(QualType tofType) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001126 QualType Canonical = getCanonicalType(tofType);
Steve Naroff0604dd92007-08-01 18:02:17 +00001127 TypeOfType *tot = new TypeOfType(tofType, Canonical);
1128 Types.push_back(tot);
1129 return QualType(tot, 0);
Steve Naroff7cbb1462007-07-31 12:34:36 +00001130}
1131
Chris Lattner4b009652007-07-25 00:24:17 +00001132/// getTagDeclType - Return the unique reference to the type for the
1133/// specified TagDecl (struct/union/class/enum) decl.
1134QualType ASTContext::getTagDeclType(TagDecl *Decl) {
Ted Kremenekae8fa032007-11-26 21:16:01 +00001135 assert (Decl);
Douglas Gregor1d661552008-04-13 21:07:44 +00001136 return getTypeDeclType(Decl);
Chris Lattner4b009652007-07-25 00:24:17 +00001137}
1138
1139/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
1140/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
1141/// needs to agree with the definition in <stddef.h>.
1142QualType ASTContext::getSizeType() const {
Douglas Gregorc6507e42008-11-03 14:12:49 +00001143 return getFromTargetType(Target.getSizeType());
Chris Lattner4b009652007-07-25 00:24:17 +00001144}
1145
Argiris Kirtzidis2a4e1162008-08-09 17:20:01 +00001146/// getWCharType - Return the unique type for "wchar_t" (C99 7.17), the
Eli Friedmanfdd35d72008-02-12 08:29:21 +00001147/// width of characters in wide strings, The value is target dependent and
1148/// needs to agree with the definition in <stddef.h>.
Argiris Kirtzidis2a4e1162008-08-09 17:20:01 +00001149QualType ASTContext::getWCharType() const {
Argiris Kirtzidis1ed03e72008-08-09 16:51:54 +00001150 if (LangOpts.CPlusPlus)
1151 return WCharTy;
1152
Douglas Gregorc6507e42008-11-03 14:12:49 +00001153 // FIXME: In C, shouldn't WCharTy just be a typedef of the target's
1154 // wide-character type?
1155 return getFromTargetType(Target.getWCharType());
Eli Friedmanfdd35d72008-02-12 08:29:21 +00001156}
1157
Argiris Kirtzidis1ed03e72008-08-09 16:51:54 +00001158/// getSignedWCharType - Return the type of "signed wchar_t".
1159/// Used when in C++, as a GCC extension.
1160QualType ASTContext::getSignedWCharType() const {
1161 // FIXME: derive from "Target" ?
1162 return WCharTy;
1163}
1164
1165/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
1166/// Used when in C++, as a GCC extension.
1167QualType ASTContext::getUnsignedWCharType() const {
1168 // FIXME: derive from "Target" ?
1169 return UnsignedIntTy;
1170}
1171
Chris Lattner4b009652007-07-25 00:24:17 +00001172/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
1173/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
1174QualType ASTContext::getPointerDiffType() const {
Douglas Gregorc6507e42008-11-03 14:12:49 +00001175 return getFromTargetType(Target.getPtrDiffType(0));
Chris Lattner4b009652007-07-25 00:24:17 +00001176}
1177
Chris Lattner19eb97e2008-04-02 05:18:44 +00001178//===----------------------------------------------------------------------===//
1179// Type Operators
1180//===----------------------------------------------------------------------===//
1181
Chris Lattner3dae6f42008-04-06 22:41:35 +00001182/// getCanonicalType - Return the canonical (structural) type corresponding to
1183/// the specified potentially non-canonical type. The non-canonical version
1184/// of a type may have many "decorated" versions of types. Decorators can
1185/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
1186/// to be free of any of these, allowing two canonical types to be compared
1187/// for exact equality with a simple pointer comparison.
1188QualType ASTContext::getCanonicalType(QualType T) {
1189 QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
Chris Lattnera1923f62008-08-04 07:31:14 +00001190
1191 // If the result has type qualifiers, make sure to canonicalize them as well.
1192 unsigned TypeQuals = T.getCVRQualifiers() | CanType.getCVRQualifiers();
1193 if (TypeQuals == 0) return CanType;
1194
1195 // If the type qualifiers are on an array type, get the canonical type of the
1196 // array with the qualifiers applied to the element type.
1197 ArrayType *AT = dyn_cast<ArrayType>(CanType);
1198 if (!AT)
1199 return CanType.getQualifiedType(TypeQuals);
1200
1201 // Get the canonical version of the element with the extra qualifiers on it.
1202 // This can recursively sink qualifiers through multiple levels of arrays.
1203 QualType NewEltTy=AT->getElementType().getWithAdditionalQualifiers(TypeQuals);
1204 NewEltTy = getCanonicalType(NewEltTy);
1205
1206 if (ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1207 return getConstantArrayType(NewEltTy, CAT->getSize(),CAT->getSizeModifier(),
1208 CAT->getIndexTypeQualifier());
1209 if (IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT))
1210 return getIncompleteArrayType(NewEltTy, IAT->getSizeModifier(),
1211 IAT->getIndexTypeQualifier());
1212
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001213 if (DependentSizedArrayType *DSAT = dyn_cast<DependentSizedArrayType>(AT))
1214 return getDependentSizedArrayType(NewEltTy, DSAT->getSizeExpr(),
1215 DSAT->getSizeModifier(),
1216 DSAT->getIndexTypeQualifier());
1217
Chris Lattnera1923f62008-08-04 07:31:14 +00001218 VariableArrayType *VAT = cast<VariableArrayType>(AT);
1219 return getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1220 VAT->getSizeModifier(),
1221 VAT->getIndexTypeQualifier());
1222}
1223
1224
1225const ArrayType *ASTContext::getAsArrayType(QualType T) {
1226 // Handle the non-qualified case efficiently.
1227 if (T.getCVRQualifiers() == 0) {
1228 // Handle the common positive case fast.
1229 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
1230 return AT;
1231 }
1232
1233 // Handle the common negative case fast, ignoring CVR qualifiers.
1234 QualType CType = T->getCanonicalTypeInternal();
1235
1236 // Make sure to look through type qualifiers (like ASQuals) for the negative
1237 // test.
1238 if (!isa<ArrayType>(CType) &&
1239 !isa<ArrayType>(CType.getUnqualifiedType()))
1240 return 0;
1241
1242 // Apply any CVR qualifiers from the array type to the element type. This
1243 // implements C99 6.7.3p8: "If the specification of an array type includes
1244 // any type qualifiers, the element type is so qualified, not the array type."
1245
1246 // If we get here, we either have type qualifiers on the type, or we have
1247 // sugar such as a typedef in the way. If we have type qualifiers on the type
1248 // we must propagate them down into the elemeng type.
1249 unsigned CVRQuals = T.getCVRQualifiers();
1250 unsigned AddrSpace = 0;
1251 Type *Ty = T.getTypePtr();
1252
1253 // Rip through ASQualType's and typedefs to get to a concrete type.
1254 while (1) {
1255 if (const ASQualType *ASQT = dyn_cast<ASQualType>(Ty)) {
1256 AddrSpace = ASQT->getAddressSpace();
1257 Ty = ASQT->getBaseType();
1258 } else {
1259 T = Ty->getDesugaredType();
1260 if (T.getTypePtr() == Ty && T.getCVRQualifiers() == 0)
1261 break;
1262 CVRQuals |= T.getCVRQualifiers();
1263 Ty = T.getTypePtr();
1264 }
1265 }
1266
1267 // If we have a simple case, just return now.
1268 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
1269 if (ATy == 0 || (AddrSpace == 0 && CVRQuals == 0))
1270 return ATy;
1271
1272 // Otherwise, we have an array and we have qualifiers on it. Push the
1273 // qualifiers into the array element type and return a new array type.
1274 // Get the canonical version of the element with the extra qualifiers on it.
1275 // This can recursively sink qualifiers through multiple levels of arrays.
1276 QualType NewEltTy = ATy->getElementType();
1277 if (AddrSpace)
1278 NewEltTy = getASQualType(NewEltTy, AddrSpace);
1279 NewEltTy = NewEltTy.getWithAdditionalQualifiers(CVRQuals);
1280
1281 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
1282 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
1283 CAT->getSizeModifier(),
1284 CAT->getIndexTypeQualifier()));
1285 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
1286 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
1287 IAT->getSizeModifier(),
1288 IAT->getIndexTypeQualifier()));
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001289
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001290 if (const DependentSizedArrayType *DSAT
1291 = dyn_cast<DependentSizedArrayType>(ATy))
1292 return cast<ArrayType>(
1293 getDependentSizedArrayType(NewEltTy,
1294 DSAT->getSizeExpr(),
1295 DSAT->getSizeModifier(),
1296 DSAT->getIndexTypeQualifier()));
Chris Lattnera1923f62008-08-04 07:31:14 +00001297
Chris Lattnera1923f62008-08-04 07:31:14 +00001298 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
1299 return cast<ArrayType>(getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1300 VAT->getSizeModifier(),
1301 VAT->getIndexTypeQualifier()));
Chris Lattner3dae6f42008-04-06 22:41:35 +00001302}
1303
1304
Chris Lattner19eb97e2008-04-02 05:18:44 +00001305/// getArrayDecayedType - Return the properly qualified result of decaying the
1306/// specified array type to a pointer. This operation is non-trivial when
1307/// handling typedefs etc. The canonical type of "T" must be an array type,
1308/// this returns a pointer to a properly qualified element of the array.
1309///
1310/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
1311QualType ASTContext::getArrayDecayedType(QualType Ty) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001312 // Get the element type with 'getAsArrayType' so that we don't lose any
1313 // typedefs in the element type of the array. This also handles propagation
1314 // of type qualifiers from the array type into the element type if present
1315 // (C99 6.7.3p8).
1316 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
1317 assert(PrettyArrayType && "Not an array type!");
Chris Lattner19eb97e2008-04-02 05:18:44 +00001318
Chris Lattnera1923f62008-08-04 07:31:14 +00001319 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattner19eb97e2008-04-02 05:18:44 +00001320
1321 // int x[restrict 4] -> int *restrict
Chris Lattnera1923f62008-08-04 07:31:14 +00001322 return PtrTy.getQualifiedType(PrettyArrayType->getIndexTypeQualifier());
Chris Lattner19eb97e2008-04-02 05:18:44 +00001323}
1324
Chris Lattner4b009652007-07-25 00:24:17 +00001325/// getFloatingRank - Return a relative rank for floating point types.
1326/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnerd7135b42008-04-06 23:38:49 +00001327static FloatingRank getFloatingRank(QualType T) {
Christopher Lamb2a72bb32008-02-04 02:31:56 +00001328 if (const ComplexType *CT = T->getAsComplexType())
Chris Lattner4b009652007-07-25 00:24:17 +00001329 return getFloatingRank(CT->getElementType());
Chris Lattnerd7135b42008-04-06 23:38:49 +00001330
Christopher Lamb2a72bb32008-02-04 02:31:56 +00001331 switch (T->getAsBuiltinType()->getKind()) {
Chris Lattnerd7135b42008-04-06 23:38:49 +00001332 default: assert(0 && "getFloatingRank(): not a floating type");
Chris Lattner4b009652007-07-25 00:24:17 +00001333 case BuiltinType::Float: return FloatRank;
1334 case BuiltinType::Double: return DoubleRank;
1335 case BuiltinType::LongDouble: return LongDoubleRank;
1336 }
1337}
1338
Steve Narofffa0c4532007-08-27 01:41:48 +00001339/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
1340/// point or a complex type (based on typeDomain/typeSize).
1341/// 'typeDomain' is a real floating point or complex type.
1342/// 'typeSize' is a real floating point or complex type.
Chris Lattner7794ae22008-04-06 23:58:54 +00001343QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
1344 QualType Domain) const {
1345 FloatingRank EltRank = getFloatingRank(Size);
1346 if (Domain->isComplexType()) {
1347 switch (EltRank) {
Steve Narofffa0c4532007-08-27 01:41:48 +00001348 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Naroff3cf497f2007-08-27 01:27:54 +00001349 case FloatRank: return FloatComplexTy;
1350 case DoubleRank: return DoubleComplexTy;
1351 case LongDoubleRank: return LongDoubleComplexTy;
1352 }
Chris Lattner4b009652007-07-25 00:24:17 +00001353 }
Chris Lattner7794ae22008-04-06 23:58:54 +00001354
1355 assert(Domain->isRealFloatingType() && "Unknown domain!");
1356 switch (EltRank) {
1357 default: assert(0 && "getFloatingRank(): illegal value for rank");
1358 case FloatRank: return FloatTy;
1359 case DoubleRank: return DoubleTy;
1360 case LongDoubleRank: return LongDoubleTy;
Steve Naroff3cf497f2007-08-27 01:27:54 +00001361 }
Chris Lattner4b009652007-07-25 00:24:17 +00001362}
1363
Chris Lattner51285d82008-04-06 23:55:33 +00001364/// getFloatingTypeOrder - Compare the rank of the two specified floating
1365/// point types, ignoring the domain of the type (i.e. 'double' ==
1366/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
1367/// LHS < RHS, return -1.
Chris Lattnerd7135b42008-04-06 23:38:49 +00001368int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
1369 FloatingRank LHSR = getFloatingRank(LHS);
1370 FloatingRank RHSR = getFloatingRank(RHS);
1371
1372 if (LHSR == RHSR)
Steve Naroff45fc9822007-08-27 15:30:22 +00001373 return 0;
Chris Lattnerd7135b42008-04-06 23:38:49 +00001374 if (LHSR > RHSR)
Steve Naroff45fc9822007-08-27 15:30:22 +00001375 return 1;
1376 return -1;
Chris Lattner4b009652007-07-25 00:24:17 +00001377}
1378
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001379/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
1380/// routine will assert if passed a built-in type that isn't an integer or enum,
1381/// or if it is not canonicalized.
1382static unsigned getIntegerRank(Type *T) {
1383 assert(T->isCanonical() && "T should be canonicalized");
1384 if (isa<EnumType>(T))
1385 return 4;
1386
1387 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner51285d82008-04-06 23:55:33 +00001388 default: assert(0 && "getIntegerRank(): not a built-in integer");
1389 case BuiltinType::Bool:
1390 return 1;
1391 case BuiltinType::Char_S:
1392 case BuiltinType::Char_U:
1393 case BuiltinType::SChar:
1394 case BuiltinType::UChar:
1395 return 2;
1396 case BuiltinType::Short:
1397 case BuiltinType::UShort:
1398 return 3;
1399 case BuiltinType::Int:
1400 case BuiltinType::UInt:
1401 return 4;
1402 case BuiltinType::Long:
1403 case BuiltinType::ULong:
1404 return 5;
1405 case BuiltinType::LongLong:
1406 case BuiltinType::ULongLong:
1407 return 6;
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001408 }
1409}
1410
Chris Lattner51285d82008-04-06 23:55:33 +00001411/// getIntegerTypeOrder - Returns the highest ranked integer type:
1412/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
1413/// LHS < RHS, return -1.
1414int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001415 Type *LHSC = getCanonicalType(LHS).getTypePtr();
1416 Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner51285d82008-04-06 23:55:33 +00001417 if (LHSC == RHSC) return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001418
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001419 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
1420 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Chris Lattner4b009652007-07-25 00:24:17 +00001421
Chris Lattner51285d82008-04-06 23:55:33 +00001422 unsigned LHSRank = getIntegerRank(LHSC);
1423 unsigned RHSRank = getIntegerRank(RHSC);
Chris Lattner4b009652007-07-25 00:24:17 +00001424
Chris Lattner51285d82008-04-06 23:55:33 +00001425 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
1426 if (LHSRank == RHSRank) return 0;
1427 return LHSRank > RHSRank ? 1 : -1;
1428 }
Chris Lattner4b009652007-07-25 00:24:17 +00001429
Chris Lattner51285d82008-04-06 23:55:33 +00001430 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
1431 if (LHSUnsigned) {
1432 // If the unsigned [LHS] type is larger, return it.
1433 if (LHSRank >= RHSRank)
1434 return 1;
1435
1436 // If the signed type can represent all values of the unsigned type, it
1437 // wins. Because we are dealing with 2's complement and types that are
1438 // powers of two larger than each other, this is always safe.
1439 return -1;
1440 }
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001441
Chris Lattner51285d82008-04-06 23:55:33 +00001442 // If the unsigned [RHS] type is larger, return it.
1443 if (RHSRank >= LHSRank)
1444 return -1;
1445
1446 // If the signed type can represent all values of the unsigned type, it
1447 // wins. Because we are dealing with 2's complement and types that are
1448 // powers of two larger than each other, this is always safe.
1449 return 1;
Chris Lattner4b009652007-07-25 00:24:17 +00001450}
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001451
1452// getCFConstantStringType - Return the type used for constant CFStrings.
1453QualType ASTContext::getCFConstantStringType() {
1454 if (!CFConstantStringTypeDecl) {
Chris Lattnere4650482008-03-15 06:12:44 +00001455 CFConstantStringTypeDecl =
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00001456 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
Ted Kremenek2c984042008-09-05 01:34:33 +00001457 &Idents.get("NSConstantString"));
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001458 QualType FieldTypes[4];
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001459
1460 // const int *isa;
1461 FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001462 // int flags;
1463 FieldTypes[1] = IntTy;
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001464 // const char *str;
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001465 FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001466 // long length;
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001467 FieldTypes[3] = LongTy;
Douglas Gregor8acb7272008-12-11 16:49:14 +00001468
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001469 // Create fields
Douglas Gregor8acb7272008-12-11 16:49:14 +00001470 for (unsigned i = 0; i < 4; ++i) {
1471 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
1472 SourceLocation(), 0,
1473 FieldTypes[i], /*BitWidth=*/0,
1474 /*Mutable=*/false, /*PrevDecl=*/0);
1475 CFConstantStringTypeDecl->addDecl(*this, Field, true);
1476 }
1477
1478 CFConstantStringTypeDecl->completeDefinition(*this);
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001479 }
1480
1481 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif61ce98c2007-09-11 15:32:40 +00001482}
Anders Carlssonfb5b1e82007-10-11 01:00:40 +00001483
Anders Carlssonf58cac72008-08-30 19:34:46 +00001484QualType ASTContext::getObjCFastEnumerationStateType()
1485{
1486 if (!ObjCFastEnumerationStateTypeDecl) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00001487 ObjCFastEnumerationStateTypeDecl =
1488 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
1489 &Idents.get("__objcFastEnumerationState"));
1490
Anders Carlssonf58cac72008-08-30 19:34:46 +00001491 QualType FieldTypes[] = {
1492 UnsignedLongTy,
1493 getPointerType(ObjCIdType),
1494 getPointerType(UnsignedLongTy),
1495 getConstantArrayType(UnsignedLongTy,
1496 llvm::APInt(32, 5), ArrayType::Normal, 0)
1497 };
1498
Douglas Gregor8acb7272008-12-11 16:49:14 +00001499 for (size_t i = 0; i < 4; ++i) {
1500 FieldDecl *Field = FieldDecl::Create(*this,
1501 ObjCFastEnumerationStateTypeDecl,
1502 SourceLocation(), 0,
1503 FieldTypes[i], /*BitWidth=*/0,
1504 /*Mutable=*/false, /*PrevDecl=*/0);
1505 ObjCFastEnumerationStateTypeDecl->addDecl(*this, Field, true);
1506 }
Anders Carlssonf58cac72008-08-30 19:34:46 +00001507
Douglas Gregor8acb7272008-12-11 16:49:14 +00001508 ObjCFastEnumerationStateTypeDecl->completeDefinition(*this);
Anders Carlssonf58cac72008-08-30 19:34:46 +00001509 }
1510
1511 return getTagDeclType(ObjCFastEnumerationStateTypeDecl);
1512}
1513
Anders Carlssone3f02572007-10-29 06:33:42 +00001514// This returns true if a type has been typedefed to BOOL:
1515// typedef <type> BOOL;
Chris Lattnercb034cb2007-10-30 20:27:44 +00001516static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone3f02572007-10-29 06:33:42 +00001517 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattner85fb3842008-11-24 03:52:59 +00001518 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
1519 return II->isStr("BOOL");
Anders Carlsson36f07d82007-10-29 05:01:08 +00001520
1521 return false;
1522}
1523
Ted Kremenek42730c52008-01-07 19:49:32 +00001524/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001525/// purpose.
Ted Kremenek42730c52008-01-07 19:49:32 +00001526int ASTContext::getObjCEncodingTypeSize(QualType type) {
Chris Lattner8cd0e932008-03-05 18:54:05 +00001527 uint64_t sz = getTypeSize(type);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001528
1529 // Make all integer and enum types at least as large as an int
1530 if (sz > 0 && type->isIntegralType())
Chris Lattner8cd0e932008-03-05 18:54:05 +00001531 sz = std::max(sz, getTypeSize(IntTy));
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001532 // Treat arrays as pointers, since that's how they're passed in.
1533 else if (type->isArrayType())
Chris Lattner8cd0e932008-03-05 18:54:05 +00001534 sz = getTypeSize(VoidPtrTy);
1535 return sz / getTypeSize(CharTy);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001536}
1537
Ted Kremenek42730c52008-01-07 19:49:32 +00001538/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001539/// declaration.
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001540void ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Chris Lattnerae430292008-11-19 07:24:05 +00001541 std::string& S) {
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001542 // FIXME: This is not very efficient.
Fariborz Jahanian65e7eb52007-11-01 17:18:37 +00001543 // Encode type qualifer, 'in', 'inout', etc. for the return type.
Ted Kremenek42730c52008-01-07 19:49:32 +00001544 getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001545 // Encode result type.
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001546 getObjCEncodingForType(Decl->getResultType(), S);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001547 // Compute size of all parameters.
1548 // Start with computing size of a pointer in number of bytes.
1549 // FIXME: There might(should) be a better way of doing this computation!
1550 SourceLocation Loc;
Chris Lattner8cd0e932008-03-05 18:54:05 +00001551 int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001552 // The first two arguments (self and _cmd) are pointers; account for
1553 // their size.
1554 int ParmOffset = 2 * PtrSize;
1555 int NumOfParams = Decl->getNumParams();
1556 for (int i = 0; i < NumOfParams; i++) {
1557 QualType PType = Decl->getParamDecl(i)->getType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001558 int sz = getObjCEncodingTypeSize (PType);
1559 assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001560 ParmOffset += sz;
1561 }
1562 S += llvm::utostr(ParmOffset);
1563 S += "@0:";
1564 S += llvm::utostr(PtrSize);
1565
1566 // Argument types.
1567 ParmOffset = 2 * PtrSize;
1568 for (int i = 0; i < NumOfParams; i++) {
1569 QualType PType = Decl->getParamDecl(i)->getType();
Fariborz Jahanian65e7eb52007-11-01 17:18:37 +00001570 // Process argument qualifiers for user supplied arguments; such as,
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001571 // 'in', 'inout', etc.
Ted Kremenek42730c52008-01-07 19:49:32 +00001572 getObjCEncodingForTypeQualifier(
1573 Decl->getParamDecl(i)->getObjCDeclQualifier(), S);
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001574 getObjCEncodingForType(PType, S);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001575 S += llvm::utostr(ParmOffset);
Ted Kremenek42730c52008-01-07 19:49:32 +00001576 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001577 }
1578}
1579
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001580/// getObjCEncodingForPropertyDecl - Return the encoded type for this
1581/// method declaration. If non-NULL, Container must be either an
1582/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
1583/// NULL when getting encodings for protocol properties.
1584void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
1585 const Decl *Container,
Chris Lattnerae430292008-11-19 07:24:05 +00001586 std::string& S) {
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001587 // Collect information from the property implementation decl(s).
1588 bool Dynamic = false;
1589 ObjCPropertyImplDecl *SynthesizePID = 0;
1590
1591 // FIXME: Duplicated code due to poor abstraction.
1592 if (Container) {
1593 if (const ObjCCategoryImplDecl *CID =
1594 dyn_cast<ObjCCategoryImplDecl>(Container)) {
1595 for (ObjCCategoryImplDecl::propimpl_iterator
1596 i = CID->propimpl_begin(), e = CID->propimpl_end(); i != e; ++i) {
1597 ObjCPropertyImplDecl *PID = *i;
1598 if (PID->getPropertyDecl() == PD) {
1599 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1600 Dynamic = true;
1601 } else {
1602 SynthesizePID = PID;
1603 }
1604 }
1605 }
1606 } else {
Chris Lattner2fda0ed2008-10-05 17:34:18 +00001607 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001608 for (ObjCCategoryImplDecl::propimpl_iterator
1609 i = OID->propimpl_begin(), e = OID->propimpl_end(); i != e; ++i) {
1610 ObjCPropertyImplDecl *PID = *i;
1611 if (PID->getPropertyDecl() == PD) {
1612 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1613 Dynamic = true;
1614 } else {
1615 SynthesizePID = PID;
1616 }
1617 }
1618 }
1619 }
1620 }
1621
1622 // FIXME: This is not very efficient.
1623 S = "T";
1624
1625 // Encode result type.
1626 // FIXME: GCC uses a generating_property_type_encoding mode during
1627 // this part. Investigate.
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001628 getObjCEncodingForType(PD->getType(), S);
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001629
1630 if (PD->isReadOnly()) {
1631 S += ",R";
1632 } else {
1633 switch (PD->getSetterKind()) {
1634 case ObjCPropertyDecl::Assign: break;
1635 case ObjCPropertyDecl::Copy: S += ",C"; break;
1636 case ObjCPropertyDecl::Retain: S += ",&"; break;
1637 }
1638 }
1639
1640 // It really isn't clear at all what this means, since properties
1641 // are "dynamic by default".
1642 if (Dynamic)
1643 S += ",D";
1644
1645 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
1646 S += ",G";
Chris Lattner3a8f2942008-11-24 03:33:13 +00001647 S += PD->getGetterName().getAsString();
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001648 }
1649
1650 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
1651 S += ",S";
Chris Lattner3a8f2942008-11-24 03:33:13 +00001652 S += PD->getSetterName().getAsString();
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001653 }
1654
1655 if (SynthesizePID) {
1656 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
1657 S += ",V";
Chris Lattner6c5ec622008-11-24 04:00:27 +00001658 S += OID->getNameAsString();
Daniel Dunbar698d6f32008-08-28 04:38:10 +00001659 }
1660
1661 // FIXME: OBJCGC: weak & strong
1662}
1663
Fariborz Jahanian248db262008-01-22 22:44:46 +00001664void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Daniel Dunbaraa913102008-10-17 16:17:37 +00001665 bool NameFields) const {
Daniel Dunbarf8cfe562008-10-17 07:30:50 +00001666 // We follow the behavior of gcc, expanding structures which are
1667 // directly pointed to, and expanding embedded structures. Note that
1668 // these rules are sufficient to prevent recursive encoding of the
1669 // same type.
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001670 getObjCEncodingForTypeImpl(T, S, true, true, NameFields);
Daniel Dunbarf8cfe562008-10-17 07:30:50 +00001671}
1672
1673void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
1674 bool ExpandPointedToStructures,
1675 bool ExpandStructures,
Daniel Dunbaraa913102008-10-17 16:17:37 +00001676 bool NameFields) const {
Anders Carlssone3f02572007-10-29 06:33:42 +00001677 if (const BuiltinType *BT = T->getAsBuiltinType()) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001678 char encoding;
1679 switch (BT->getKind()) {
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001680 default: assert(0 && "Unhandled builtin type kind");
1681 case BuiltinType::Void: encoding = 'v'; break;
1682 case BuiltinType::Bool: encoding = 'B'; break;
Anders Carlsson36f07d82007-10-29 05:01:08 +00001683 case BuiltinType::Char_U:
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001684 case BuiltinType::UChar: encoding = 'C'; break;
1685 case BuiltinType::UShort: encoding = 'S'; break;
1686 case BuiltinType::UInt: encoding = 'I'; break;
1687 case BuiltinType::ULong: encoding = 'L'; break;
1688 case BuiltinType::ULongLong: encoding = 'Q'; break;
Anders Carlsson36f07d82007-10-29 05:01:08 +00001689 case BuiltinType::Char_S:
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001690 case BuiltinType::SChar: encoding = 'c'; break;
1691 case BuiltinType::Short: encoding = 's'; break;
1692 case BuiltinType::Int: encoding = 'i'; break;
1693 case BuiltinType::Long: encoding = 'l'; break;
1694 case BuiltinType::LongLong: encoding = 'q'; break;
1695 case BuiltinType::Float: encoding = 'f'; break;
1696 case BuiltinType::Double: encoding = 'd'; break;
1697 case BuiltinType::LongDouble: encoding = 'd'; break;
Anders Carlsson36f07d82007-10-29 05:01:08 +00001698 }
1699
1700 S += encoding;
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001701 }
Ted Kremenek42730c52008-01-07 19:49:32 +00001702 else if (T->isObjCQualifiedIdType()) {
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001703 // Treat id<P...> same as 'id' for encoding purposes.
Daniel Dunbarf8cfe562008-10-17 07:30:50 +00001704 return getObjCEncodingForTypeImpl(getObjCIdType(), S,
1705 ExpandPointedToStructures,
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001706 ExpandStructures, NameFields);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001707 }
1708 else if (const PointerType *PT = T->getAsPointerType()) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001709 QualType PointeeTy = PT->getPointeeType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001710 if (isObjCIdType(PointeeTy) || PointeeTy->isObjCInterfaceType()) {
Fariborz Jahanian80faffa2007-10-30 17:06:23 +00001711 S += '@';
1712 return;
Ted Kremenek42730c52008-01-07 19:49:32 +00001713 } else if (isObjCClassType(PointeeTy)) {
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001714 S += '#';
1715 return;
Ted Kremenek42730c52008-01-07 19:49:32 +00001716 } else if (isObjCSelType(PointeeTy)) {
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001717 S += ':';
1718 return;
Fariborz Jahanian80faffa2007-10-30 17:06:23 +00001719 }
Anders Carlsson36f07d82007-10-29 05:01:08 +00001720
1721 if (PointeeTy->isCharType()) {
1722 // char pointer types should be encoded as '*' unless it is a
1723 // type that has been typedef'd to 'BOOL'.
Anders Carlssone3f02572007-10-29 06:33:42 +00001724 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001725 S += '*';
1726 return;
1727 }
1728 }
1729
1730 S += '^';
Daniel Dunbarf8cfe562008-10-17 07:30:50 +00001731 getObjCEncodingForTypeImpl(PT->getPointeeType(), S,
Daniel Dunbaraa913102008-10-17 16:17:37 +00001732 false, ExpandPointedToStructures,
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001733 NameFields);
Chris Lattnera1923f62008-08-04 07:31:14 +00001734 } else if (const ArrayType *AT =
1735 // Ignore type qualifiers etc.
1736 dyn_cast<ArrayType>(T->getCanonicalTypeInternal())) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001737 S += '[';
1738
1739 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1740 S += llvm::utostr(CAT->getSize().getZExtValue());
1741 else
1742 assert(0 && "Unhandled array type!");
1743
Daniel Dunbarf8cfe562008-10-17 07:30:50 +00001744 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001745 false, ExpandStructures, NameFields);
Anders Carlsson36f07d82007-10-29 05:01:08 +00001746 S += ']';
Anders Carlsson5695bb72007-10-30 00:06:20 +00001747 } else if (T->getAsFunctionType()) {
1748 S += '?';
Fariborz Jahanianc8ba2bd2007-11-13 23:21:38 +00001749 } else if (const RecordType *RTy = T->getAsRecordType()) {
Daniel Dunbarf8cfe562008-10-17 07:30:50 +00001750 RecordDecl *RDecl = RTy->getDecl();
Daniel Dunbaraa913102008-10-17 16:17:37 +00001751 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar146b2d02008-10-17 06:22:57 +00001752 // Anonymous structures print as '?'
1753 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
1754 S += II->getName();
1755 } else {
1756 S += '?';
1757 }
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001758 if (ExpandStructures) {
Fariborz Jahanian248db262008-01-22 22:44:46 +00001759 S += '=';
Douglas Gregor8acb7272008-12-11 16:49:14 +00001760 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
1761 FieldEnd = RDecl->field_end();
1762 Field != FieldEnd; ++Field) {
Daniel Dunbaraa913102008-10-17 16:17:37 +00001763 if (NameFields) {
1764 S += '"';
Douglas Gregor8acb7272008-12-11 16:49:14 +00001765 S += Field->getNameAsString();
Daniel Dunbaraa913102008-10-17 16:17:37 +00001766 S += '"';
1767 }
1768
1769 // Special case bit-fields.
Douglas Gregor8acb7272008-12-11 16:49:14 +00001770 if (const Expr *E = Field->getBitWidth()) {
Daniel Dunbaraa913102008-10-17 16:17:37 +00001771 // FIXME: Fix constness.
1772 ASTContext *Ctx = const_cast<ASTContext*>(this);
1773 unsigned N = E->getIntegerConstantExprValue(*Ctx).getZExtValue();
1774 // FIXME: Obj-C is losing information about the type size
1775 // here. Investigate if this is a problem.
1776 S += 'b';
1777 S += llvm::utostr(N);
1778 } else {
Douglas Gregor8acb7272008-12-11 16:49:14 +00001779 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
1780 NameFields);
Daniel Dunbaraa913102008-10-17 16:17:37 +00001781 }
Fariborz Jahanian248db262008-01-22 22:44:46 +00001782 }
Fariborz Jahanianc8ba2bd2007-11-13 23:21:38 +00001783 }
Daniel Dunbaraa913102008-10-17 16:17:37 +00001784 S += RDecl->isUnion() ? ')' : '}';
Steve Naroff49af3f32007-12-12 22:30:11 +00001785 } else if (T->isEnumeralType()) {
1786 S += 'i';
Steve Naroff62f09f52008-09-24 15:05:44 +00001787 } else if (T->isBlockPointerType()) {
1788 S += '^'; // This type string is the same as general pointers.
Anders Carlsson36f07d82007-10-29 05:01:08 +00001789 } else
Steve Naroff53b6f4c2008-01-30 19:17:43 +00001790 assert(0 && "@encode for type not implemented!");
Anders Carlsson36f07d82007-10-29 05:01:08 +00001791}
1792
Ted Kremenek42730c52008-01-07 19:49:32 +00001793void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanian65e7eb52007-11-01 17:18:37 +00001794 std::string& S) const {
1795 if (QT & Decl::OBJC_TQ_In)
1796 S += 'n';
1797 if (QT & Decl::OBJC_TQ_Inout)
1798 S += 'N';
1799 if (QT & Decl::OBJC_TQ_Out)
1800 S += 'o';
1801 if (QT & Decl::OBJC_TQ_Bycopy)
1802 S += 'O';
1803 if (QT & Decl::OBJC_TQ_Byref)
1804 S += 'R';
1805 if (QT & Decl::OBJC_TQ_Oneway)
1806 S += 'V';
1807}
1808
Anders Carlssonfb5b1e82007-10-11 01:00:40 +00001809void ASTContext::setBuiltinVaListType(QualType T)
1810{
1811 assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
1812
1813 BuiltinVaListType = T;
1814}
1815
Ted Kremenek42730c52008-01-07 19:49:32 +00001816void ASTContext::setObjCIdType(TypedefDecl *TD)
Steve Naroff9d12c902007-10-15 14:41:52 +00001817{
Ted Kremenek42730c52008-01-07 19:49:32 +00001818 ObjCIdType = getTypedefType(TD);
Steve Naroff9d12c902007-10-15 14:41:52 +00001819
1820 // typedef struct objc_object *id;
1821 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1822 assert(ptr && "'id' incorrectly typed");
1823 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1824 assert(rec && "'id' incorrectly typed");
1825 IdStructType = rec;
1826}
1827
Ted Kremenek42730c52008-01-07 19:49:32 +00001828void ASTContext::setObjCSelType(TypedefDecl *TD)
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001829{
Ted Kremenek42730c52008-01-07 19:49:32 +00001830 ObjCSelType = getTypedefType(TD);
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001831
1832 // typedef struct objc_selector *SEL;
1833 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1834 assert(ptr && "'SEL' incorrectly typed");
1835 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1836 assert(rec && "'SEL' incorrectly typed");
1837 SelStructType = rec;
1838}
1839
Ted Kremenek42730c52008-01-07 19:49:32 +00001840void ASTContext::setObjCProtoType(QualType QT)
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001841{
Ted Kremenek42730c52008-01-07 19:49:32 +00001842 ObjCProtoType = QT;
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001843}
1844
Ted Kremenek42730c52008-01-07 19:49:32 +00001845void ASTContext::setObjCClassType(TypedefDecl *TD)
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001846{
Ted Kremenek42730c52008-01-07 19:49:32 +00001847 ObjCClassType = getTypedefType(TD);
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001848
1849 // typedef struct objc_class *Class;
1850 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1851 assert(ptr && "'Class' incorrectly typed");
1852 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1853 assert(rec && "'Class' incorrectly typed");
1854 ClassStructType = rec;
1855}
1856
Ted Kremenek42730c52008-01-07 19:49:32 +00001857void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
1858 assert(ObjCConstantStringType.isNull() &&
Steve Narofff2e30312007-10-15 23:35:17 +00001859 "'NSConstantString' type already set!");
1860
Ted Kremenek42730c52008-01-07 19:49:32 +00001861 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Narofff2e30312007-10-15 23:35:17 +00001862}
1863
Douglas Gregorc6507e42008-11-03 14:12:49 +00001864/// getFromTargetType - Given one of the integer types provided by
Douglas Gregorbb66b412008-11-03 15:57:00 +00001865/// TargetInfo, produce the corresponding type. The unsigned @p Type
1866/// is actually a value of type @c TargetInfo::IntType.
1867QualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorc6507e42008-11-03 14:12:49 +00001868 switch (Type) {
1869 case TargetInfo::NoInt: return QualType();
1870 case TargetInfo::SignedShort: return ShortTy;
1871 case TargetInfo::UnsignedShort: return UnsignedShortTy;
1872 case TargetInfo::SignedInt: return IntTy;
1873 case TargetInfo::UnsignedInt: return UnsignedIntTy;
1874 case TargetInfo::SignedLong: return LongTy;
1875 case TargetInfo::UnsignedLong: return UnsignedLongTy;
1876 case TargetInfo::SignedLongLong: return LongLongTy;
1877 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
1878 }
1879
1880 assert(false && "Unhandled TargetInfo::IntType value");
Daniel Dunbar7b0dcc22008-11-11 01:16:00 +00001881 return QualType();
Douglas Gregorc6507e42008-11-03 14:12:49 +00001882}
Ted Kremenek118930e2008-07-24 23:58:27 +00001883
1884//===----------------------------------------------------------------------===//
1885// Type Predicates.
1886//===----------------------------------------------------------------------===//
1887
1888/// isObjCObjectPointerType - Returns true if type is an Objective-C pointer
1889/// to an object type. This includes "id" and "Class" (two 'special' pointers
1890/// to struct), Interface* (pointer to ObjCInterfaceType) and id<P> (qualified
1891/// ID type).
1892bool ASTContext::isObjCObjectPointerType(QualType Ty) const {
1893 if (Ty->isObjCQualifiedIdType())
1894 return true;
1895
Steve Naroffd9e00802008-10-21 18:24:04 +00001896 // Blocks are objects.
1897 if (Ty->isBlockPointerType())
1898 return true;
1899
1900 // All other object types are pointers.
Ted Kremenek118930e2008-07-24 23:58:27 +00001901 if (!Ty->isPointerType())
1902 return false;
1903
1904 // Check to see if this is 'id' or 'Class', both of which are typedefs for
1905 // pointer types. This looks for the typedef specifically, not for the
1906 // underlying type.
1907 if (Ty == getObjCIdType() || Ty == getObjCClassType())
1908 return true;
1909
1910 // If this a pointer to an interface (e.g. NSString*), it is ok.
1911 return Ty->getAsPointerType()->getPointeeType()->isObjCInterfaceType();
1912}
1913
Chris Lattner6ff358b2008-04-07 06:51:04 +00001914//===----------------------------------------------------------------------===//
1915// Type Compatibility Testing
1916//===----------------------------------------------------------------------===//
Chris Lattner5003e8b2007-11-01 05:03:41 +00001917
Steve Naroff3454b6c2008-09-04 15:10:53 +00001918/// typesAreBlockCompatible - This routine is called when comparing two
Steve Naroffd6163f32008-09-05 22:11:13 +00001919/// block types. Types must be strictly compatible here. For example,
1920/// C unfortunately doesn't produce an error for the following:
1921///
1922/// int (*emptyArgFunc)();
1923/// int (*intArgList)(int) = emptyArgFunc;
1924///
1925/// For blocks, we will produce an error for the following (similar to C++):
1926///
1927/// int (^emptyArgBlock)();
1928/// int (^intArgBlock)(int) = emptyArgBlock;
1929///
1930/// FIXME: When the dust settles on this integration, fold this into mergeTypes.
1931///
Steve Naroff3454b6c2008-09-04 15:10:53 +00001932bool ASTContext::typesAreBlockCompatible(QualType lhs, QualType rhs) {
Steve Naroff09e1b9e2008-12-10 17:49:55 +00001933 const FunctionType *lbase = lhs->getAsFunctionType();
1934 const FunctionType *rbase = rhs->getAsFunctionType();
1935 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
1936 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
1937 if (lproto && rproto)
1938 return !mergeTypes(lhs, rhs).isNull();
1939 return false;
Steve Naroff3454b6c2008-09-04 15:10:53 +00001940}
1941
Chris Lattner6ff358b2008-04-07 06:51:04 +00001942/// areCompatVectorTypes - Return true if the two specified vector types are
1943/// compatible.
1944static bool areCompatVectorTypes(const VectorType *LHS,
1945 const VectorType *RHS) {
1946 assert(LHS->isCanonical() && RHS->isCanonical());
1947 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner2fda0ed2008-10-05 17:34:18 +00001948 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ff358b2008-04-07 06:51:04 +00001949}
1950
Eli Friedman0d9549b2008-08-22 00:56:42 +00001951/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ff358b2008-04-07 06:51:04 +00001952/// compatible for assignment from RHS to LHS. This handles validation of any
1953/// protocol qualifiers on the LHS or RHS.
1954///
Eli Friedman0d9549b2008-08-22 00:56:42 +00001955bool ASTContext::canAssignObjCInterfaces(const ObjCInterfaceType *LHS,
1956 const ObjCInterfaceType *RHS) {
Chris Lattner6ff358b2008-04-07 06:51:04 +00001957 // Verify that the base decls are compatible: the RHS must be a subclass of
1958 // the LHS.
1959 if (!LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
1960 return false;
1961
1962 // RHS must have a superset of the protocols in the LHS. If the LHS is not
1963 // protocol qualified at all, then we are good.
1964 if (!isa<ObjCQualifiedInterfaceType>(LHS))
1965 return true;
1966
1967 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't, then it
1968 // isn't a superset.
1969 if (!isa<ObjCQualifiedInterfaceType>(RHS))
1970 return true; // FIXME: should return false!
1971
1972 // Finally, we must have two protocol-qualified interfaces.
1973 const ObjCQualifiedInterfaceType *LHSP =cast<ObjCQualifiedInterfaceType>(LHS);
1974 const ObjCQualifiedInterfaceType *RHSP =cast<ObjCQualifiedInterfaceType>(RHS);
1975 ObjCQualifiedInterfaceType::qual_iterator LHSPI = LHSP->qual_begin();
1976 ObjCQualifiedInterfaceType::qual_iterator LHSPE = LHSP->qual_end();
1977 ObjCQualifiedInterfaceType::qual_iterator RHSPI = RHSP->qual_begin();
1978 ObjCQualifiedInterfaceType::qual_iterator RHSPE = RHSP->qual_end();
1979
1980 // All protocols in LHS must have a presence in RHS. Since the protocol lists
1981 // are both sorted alphabetically and have no duplicates, we can scan RHS and
1982 // LHS in a single parallel scan until we run out of elements in LHS.
1983 assert(LHSPI != LHSPE && "Empty LHS protocol list?");
1984 ObjCProtocolDecl *LHSProto = *LHSPI;
1985
1986 while (RHSPI != RHSPE) {
1987 ObjCProtocolDecl *RHSProto = *RHSPI++;
1988 // If the RHS has a protocol that the LHS doesn't, ignore it.
1989 if (RHSProto != LHSProto)
1990 continue;
1991
1992 // Otherwise, the RHS does have this element.
1993 ++LHSPI;
1994 if (LHSPI == LHSPE)
1995 return true; // All protocols in LHS exist in RHS.
1996
1997 LHSProto = *LHSPI;
1998 }
1999
2000 // If we got here, we didn't find one of the LHS's protocols in the RHS list.
2001 return false;
2002}
2003
Steve Naroff85f0dc52007-10-15 20:41:53 +00002004/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
2005/// both shall have the identically qualified version of a compatible type.
2006/// C99 6.2.7p1: Two types have compatible types if their types are the
2007/// same. See 6.7.[2,3,5] for additional rules.
Eli Friedman0d9549b2008-08-22 00:56:42 +00002008bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS) {
2009 return !mergeTypes(LHS, RHS).isNull();
2010}
2011
2012QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs) {
2013 const FunctionType *lbase = lhs->getAsFunctionType();
2014 const FunctionType *rbase = rhs->getAsFunctionType();
2015 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2016 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2017 bool allLTypes = true;
2018 bool allRTypes = true;
2019
2020 // Check return type
2021 QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
2022 if (retType.isNull()) return QualType();
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002023 if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType()))
2024 allLTypes = false;
2025 if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType()))
2026 allRTypes = false;
Eli Friedman0d9549b2008-08-22 00:56:42 +00002027
2028 if (lproto && rproto) { // two C99 style function prototypes
2029 unsigned lproto_nargs = lproto->getNumArgs();
2030 unsigned rproto_nargs = rproto->getNumArgs();
2031
2032 // Compatible functions must have the same number of arguments
2033 if (lproto_nargs != rproto_nargs)
2034 return QualType();
2035
2036 // Variadic and non-variadic functions aren't compatible
2037 if (lproto->isVariadic() != rproto->isVariadic())
2038 return QualType();
2039
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00002040 if (lproto->getTypeQuals() != rproto->getTypeQuals())
2041 return QualType();
2042
Eli Friedman0d9549b2008-08-22 00:56:42 +00002043 // Check argument compatibility
2044 llvm::SmallVector<QualType, 10> types;
2045 for (unsigned i = 0; i < lproto_nargs; i++) {
2046 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
2047 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
2048 QualType argtype = mergeTypes(largtype, rargtype);
2049 if (argtype.isNull()) return QualType();
2050 types.push_back(argtype);
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002051 if (getCanonicalType(argtype) != getCanonicalType(largtype))
2052 allLTypes = false;
2053 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
2054 allRTypes = false;
Eli Friedman0d9549b2008-08-22 00:56:42 +00002055 }
2056 if (allLTypes) return lhs;
2057 if (allRTypes) return rhs;
2058 return getFunctionType(retType, types.begin(), types.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00002059 lproto->isVariadic(), lproto->getTypeQuals());
Eli Friedman0d9549b2008-08-22 00:56:42 +00002060 }
2061
2062 if (lproto) allRTypes = false;
2063 if (rproto) allLTypes = false;
2064
2065 const FunctionTypeProto *proto = lproto ? lproto : rproto;
2066 if (proto) {
2067 if (proto->isVariadic()) return QualType();
2068 // Check that the types are compatible with the types that
2069 // would result from default argument promotions (C99 6.7.5.3p15).
2070 // The only types actually affected are promotable integer
2071 // types and floats, which would be passed as a different
2072 // type depending on whether the prototype is visible.
2073 unsigned proto_nargs = proto->getNumArgs();
2074 for (unsigned i = 0; i < proto_nargs; ++i) {
2075 QualType argTy = proto->getArgType(i);
2076 if (argTy->isPromotableIntegerType() ||
2077 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
2078 return QualType();
2079 }
2080
2081 if (allLTypes) return lhs;
2082 if (allRTypes) return rhs;
2083 return getFunctionType(retType, proto->arg_type_begin(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00002084 proto->getNumArgs(), lproto->isVariadic(),
2085 lproto->getTypeQuals());
Eli Friedman0d9549b2008-08-22 00:56:42 +00002086 }
2087
2088 if (allLTypes) return lhs;
2089 if (allRTypes) return rhs;
2090 return getFunctionTypeNoProto(retType);
2091}
2092
2093QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
Bill Wendling6a9d8542007-12-03 07:33:35 +00002094 // C++ [expr]: If an expression initially has the type "reference to T", the
2095 // type is adjusted to "T" prior to any further analysis, the expression
2096 // designates the object or function denoted by the reference, and the
2097 // expression is an lvalue.
Eli Friedman0d9549b2008-08-22 00:56:42 +00002098 // FIXME: C++ shouldn't be going through here! The rules are different
2099 // enough that they should be handled separately.
2100 if (const ReferenceType *RT = LHS->getAsReferenceType())
Chris Lattner855fed42008-04-07 04:07:56 +00002101 LHS = RT->getPointeeType();
Eli Friedman0d9549b2008-08-22 00:56:42 +00002102 if (const ReferenceType *RT = RHS->getAsReferenceType())
Chris Lattner855fed42008-04-07 04:07:56 +00002103 RHS = RT->getPointeeType();
Chris Lattnerd47d6042008-04-07 05:37:56 +00002104
Eli Friedman0d9549b2008-08-22 00:56:42 +00002105 QualType LHSCan = getCanonicalType(LHS),
2106 RHSCan = getCanonicalType(RHS);
2107
2108 // If two types are identical, they are compatible.
2109 if (LHSCan == RHSCan)
2110 return LHS;
2111
2112 // If the qualifiers are different, the types aren't compatible
2113 if (LHSCan.getCVRQualifiers() != RHSCan.getCVRQualifiers() ||
2114 LHSCan.getAddressSpace() != RHSCan.getAddressSpace())
2115 return QualType();
2116
2117 Type::TypeClass LHSClass = LHSCan->getTypeClass();
2118 Type::TypeClass RHSClass = RHSCan->getTypeClass();
2119
Chris Lattnerc38d4522008-01-14 05:45:46 +00002120 // We want to consider the two function types to be the same for these
2121 // comparisons, just force one to the other.
2122 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
2123 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman398837e2008-02-12 08:23:06 +00002124
2125 // Same as above for arrays
Chris Lattnerb5709e22008-04-07 05:43:21 +00002126 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
2127 LHSClass = Type::ConstantArray;
2128 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
2129 RHSClass = Type::ConstantArray;
Steve Naroff85f0dc52007-10-15 20:41:53 +00002130
Nate Begemanaf6ed502008-04-18 23:10:10 +00002131 // Canonicalize ExtVector -> Vector.
2132 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
2133 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Chris Lattnerb5709e22008-04-07 05:43:21 +00002134
Chris Lattner7cdcb252008-04-07 06:38:24 +00002135 // Consider qualified interfaces and interfaces the same.
2136 if (LHSClass == Type::ObjCQualifiedInterface) LHSClass = Type::ObjCInterface;
2137 if (RHSClass == Type::ObjCQualifiedInterface) RHSClass = Type::ObjCInterface;
Eli Friedman0d9549b2008-08-22 00:56:42 +00002138
Chris Lattnerb5709e22008-04-07 05:43:21 +00002139 // If the canonical type classes don't match.
Chris Lattnerc38d4522008-01-14 05:45:46 +00002140 if (LHSClass != RHSClass) {
Steve Naroff28ceff72008-12-10 22:14:21 +00002141 // ID is compatible with all qualified id types.
2142 if (LHS->isObjCQualifiedIdType()) {
2143 if (const PointerType *PT = RHS->getAsPointerType()) {
2144 QualType pType = PT->getPointeeType();
2145 if (isObjCIdType(pType))
2146 return LHS;
2147 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2148 // Unfortunately, this API is part of Sema (which we don't have access
2149 // to. Need to refactor. The following check is insufficient, since we
2150 // need to make sure the class implements the protocol.
2151 if (pType->isObjCInterfaceType())
2152 return LHS;
2153 }
2154 }
2155 if (RHS->isObjCQualifiedIdType()) {
2156 if (const PointerType *PT = LHS->getAsPointerType()) {
2157 QualType pType = PT->getPointeeType();
2158 if (isObjCIdType(pType))
2159 return RHS;
2160 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2161 // Unfortunately, this API is part of Sema (which we don't have access
2162 // to. Need to refactor. The following check is insufficient, since we
2163 // need to make sure the class implements the protocol.
2164 if (pType->isObjCInterfaceType())
2165 return RHS;
2166 }
2167 }
Chris Lattnerc38d4522008-01-14 05:45:46 +00002168 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
2169 // a signed integer type, or an unsigned integer type.
Eli Friedman0d9549b2008-08-22 00:56:42 +00002170 if (const EnumType* ETy = LHS->getAsEnumType()) {
2171 if (ETy->getDecl()->getIntegerType() == RHSCan.getUnqualifiedType())
2172 return RHS;
Eli Friedmanad6c06c2008-02-12 08:46:17 +00002173 }
Eli Friedman0d9549b2008-08-22 00:56:42 +00002174 if (const EnumType* ETy = RHS->getAsEnumType()) {
2175 if (ETy->getDecl()->getIntegerType() == LHSCan.getUnqualifiedType())
2176 return LHS;
Eli Friedmanad6c06c2008-02-12 08:46:17 +00002177 }
Chris Lattnerc38d4522008-01-14 05:45:46 +00002178
Eli Friedman0d9549b2008-08-22 00:56:42 +00002179 return QualType();
Steve Naroff85f0dc52007-10-15 20:41:53 +00002180 }
Eli Friedman0d9549b2008-08-22 00:56:42 +00002181
Steve Naroffc88babe2008-01-09 22:43:08 +00002182 // The canonical type classes match.
Chris Lattnerc38d4522008-01-14 05:45:46 +00002183 switch (LHSClass) {
Chris Lattnerc38d4522008-01-14 05:45:46 +00002184 case Type::Pointer:
Eli Friedman0d9549b2008-08-22 00:56:42 +00002185 {
2186 // Merge two pointer types, while trying to preserve typedef info
2187 QualType LHSPointee = LHS->getAsPointerType()->getPointeeType();
2188 QualType RHSPointee = RHS->getAsPointerType()->getPointeeType();
2189 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2190 if (ResultType.isNull()) return QualType();
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002191 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2192 return LHS;
2193 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2194 return RHS;
Eli Friedman0d9549b2008-08-22 00:56:42 +00002195 return getPointerType(ResultType);
2196 }
Steve Naroff09e1b9e2008-12-10 17:49:55 +00002197 case Type::BlockPointer:
2198 {
2199 // Merge two block pointer types, while trying to preserve typedef info
2200 QualType LHSPointee = LHS->getAsBlockPointerType()->getPointeeType();
2201 QualType RHSPointee = RHS->getAsBlockPointerType()->getPointeeType();
2202 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2203 if (ResultType.isNull()) return QualType();
2204 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2205 return LHS;
2206 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2207 return RHS;
2208 return getBlockPointerType(ResultType);
2209 }
Chris Lattnerc38d4522008-01-14 05:45:46 +00002210 case Type::ConstantArray:
Eli Friedman0d9549b2008-08-22 00:56:42 +00002211 {
2212 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
2213 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
2214 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
2215 return QualType();
2216
2217 QualType LHSElem = getAsArrayType(LHS)->getElementType();
2218 QualType RHSElem = getAsArrayType(RHS)->getElementType();
2219 QualType ResultType = mergeTypes(LHSElem, RHSElem);
2220 if (ResultType.isNull()) return QualType();
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002221 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2222 return LHS;
2223 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2224 return RHS;
Eli Friedmanc91a3f32008-08-22 01:48:21 +00002225 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
2226 ArrayType::ArraySizeModifier(), 0);
2227 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
2228 ArrayType::ArraySizeModifier(), 0);
Eli Friedman0d9549b2008-08-22 00:56:42 +00002229 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
2230 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002231 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2232 return LHS;
2233 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2234 return RHS;
Eli Friedman0d9549b2008-08-22 00:56:42 +00002235 if (LVAT) {
2236 // FIXME: This isn't correct! But tricky to implement because
2237 // the array's size has to be the size of LHS, but the type
2238 // has to be different.
2239 return LHS;
2240 }
2241 if (RVAT) {
2242 // FIXME: This isn't correct! But tricky to implement because
2243 // the array's size has to be the size of RHS, but the type
2244 // has to be different.
2245 return RHS;
2246 }
Eli Friedmanc91a3f32008-08-22 01:48:21 +00002247 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
2248 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002249 return getIncompleteArrayType(ResultType, ArrayType::ArraySizeModifier(),0);
Eli Friedman0d9549b2008-08-22 00:56:42 +00002250 }
Chris Lattnerc38d4522008-01-14 05:45:46 +00002251 case Type::FunctionNoProto:
Eli Friedman0d9549b2008-08-22 00:56:42 +00002252 return mergeFunctionTypes(LHS, RHS);
2253 case Type::Tagged:
Eli Friedman0d9549b2008-08-22 00:56:42 +00002254 // FIXME: Why are these compatible?
2255 if (isObjCIdType(LHS) && isObjCClassType(RHS)) return LHS;
2256 if (isObjCClassType(LHS) && isObjCIdType(RHS)) return LHS;
2257 return QualType();
Chris Lattnerc38d4522008-01-14 05:45:46 +00002258 case Type::Builtin:
Chris Lattnerd1240fa2008-04-07 05:55:38 +00002259 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman0d9549b2008-08-22 00:56:42 +00002260 return QualType();
Chris Lattnerd1240fa2008-04-07 05:55:38 +00002261 case Type::Vector:
Eli Friedman0d9549b2008-08-22 00:56:42 +00002262 if (areCompatVectorTypes(LHS->getAsVectorType(), RHS->getAsVectorType()))
2263 return LHS;
Chris Lattner2fda0ed2008-10-05 17:34:18 +00002264 return QualType();
Chris Lattnerc38d4522008-01-14 05:45:46 +00002265 case Type::ObjCInterface:
Eli Friedman0d9549b2008-08-22 00:56:42 +00002266 // Distinct ObjC interfaces are not compatible; see canAssignObjCInterfaces
2267 // for checking assignment/comparison safety
2268 return QualType();
Steve Naroff28ceff72008-12-10 22:14:21 +00002269 case Type::ObjCQualifiedId:
2270 // Distinct qualified id's are not compatible.
2271 return QualType();
Chris Lattnerc38d4522008-01-14 05:45:46 +00002272 default:
2273 assert(0 && "unexpected type");
Eli Friedman0d9549b2008-08-22 00:56:42 +00002274 return QualType();
Steve Naroff85f0dc52007-10-15 20:41:53 +00002275 }
Steve Naroff85f0dc52007-10-15 20:41:53 +00002276}
Ted Kremenek738e6c02007-10-31 17:10:13 +00002277
Chris Lattner1d78a862008-04-07 07:01:58 +00002278//===----------------------------------------------------------------------===//
Eli Friedman0832dbc2008-06-28 06:23:08 +00002279// Integer Predicates
2280//===----------------------------------------------------------------------===//
2281unsigned ASTContext::getIntWidth(QualType T) {
2282 if (T == BoolTy)
2283 return 1;
2284 // At the moment, only bool has padding bits
2285 return (unsigned)getTypeSize(T);
2286}
2287
2288QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
2289 assert(T->isSignedIntegerType() && "Unexpected type");
2290 if (const EnumType* ETy = T->getAsEnumType())
2291 T = ETy->getDecl()->getIntegerType();
2292 const BuiltinType* BTy = T->getAsBuiltinType();
2293 assert (BTy && "Unexpected signed integer type");
2294 switch (BTy->getKind()) {
2295 case BuiltinType::Char_S:
2296 case BuiltinType::SChar:
2297 return UnsignedCharTy;
2298 case BuiltinType::Short:
2299 return UnsignedShortTy;
2300 case BuiltinType::Int:
2301 return UnsignedIntTy;
2302 case BuiltinType::Long:
2303 return UnsignedLongTy;
2304 case BuiltinType::LongLong:
2305 return UnsignedLongLongTy;
2306 default:
2307 assert(0 && "Unexpected signed integer type");
2308 return QualType();
2309 }
2310}
2311
2312
2313//===----------------------------------------------------------------------===//
Chris Lattner1d78a862008-04-07 07:01:58 +00002314// Serialization Support
2315//===----------------------------------------------------------------------===//
2316
Ted Kremenek738e6c02007-10-31 17:10:13 +00002317/// Emit - Serialize an ASTContext object to Bitcode.
2318void ASTContext::Emit(llvm::Serializer& S) const {
Ted Kremenek842126e2008-06-04 15:55:15 +00002319 S.Emit(LangOpts);
Ted Kremenek9af4d5c2007-10-31 20:00:03 +00002320 S.EmitRef(SourceMgr);
2321 S.EmitRef(Target);
2322 S.EmitRef(Idents);
2323 S.EmitRef(Selectors);
Ted Kremenek738e6c02007-10-31 17:10:13 +00002324
Ted Kremenek68228a92007-10-31 22:44:07 +00002325 // Emit the size of the type vector so that we can reserve that size
2326 // when we reconstitute the ASTContext object.
Ted Kremenek0199d9f2007-11-06 22:26:16 +00002327 S.EmitInt(Types.size());
2328
Ted Kremenek034a78c2007-11-13 22:02:55 +00002329 for (std::vector<Type*>::const_iterator I=Types.begin(), E=Types.end();
2330 I!=E;++I)
2331 (*I)->Emit(S);
Ted Kremenek0199d9f2007-11-06 22:26:16 +00002332
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00002333 S.EmitOwnedPtr(TUDecl);
2334
Ted Kremeneke1fed7a2007-11-01 18:11:32 +00002335 // FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
Ted Kremenek738e6c02007-10-31 17:10:13 +00002336}
2337
Ted Kremenekacba3612007-11-13 00:25:37 +00002338ASTContext* ASTContext::Create(llvm::Deserializer& D) {
Ted Kremenek842126e2008-06-04 15:55:15 +00002339
2340 // Read the language options.
2341 LangOptions LOpts;
2342 LOpts.Read(D);
2343
Ted Kremenek68228a92007-10-31 22:44:07 +00002344 SourceManager &SM = D.ReadRef<SourceManager>();
2345 TargetInfo &t = D.ReadRef<TargetInfo>();
2346 IdentifierTable &idents = D.ReadRef<IdentifierTable>();
2347 SelectorTable &sels = D.ReadRef<SelectorTable>();
Chris Lattnereee57c02008-04-04 06:12:32 +00002348
Ted Kremenek68228a92007-10-31 22:44:07 +00002349 unsigned size_reserve = D.ReadInt();
2350
Douglas Gregor24afd4a2008-11-17 14:58:09 +00002351 ASTContext* A = new ASTContext(LOpts, SM, t, idents, sels,
2352 size_reserve);
Ted Kremenek68228a92007-10-31 22:44:07 +00002353
Ted Kremenek034a78c2007-11-13 22:02:55 +00002354 for (unsigned i = 0; i < size_reserve; ++i)
2355 Type::Create(*A,i,D);
Chris Lattnereee57c02008-04-04 06:12:32 +00002356
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00002357 A->TUDecl = cast<TranslationUnitDecl>(D.ReadOwnedPtr<Decl>(*A));
2358
Ted Kremeneke1fed7a2007-11-01 18:11:32 +00002359 // FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
Ted Kremenek68228a92007-10-31 22:44:07 +00002360
2361 return A;
2362}