blob: fc582982ba1913cbaba57853695170356a0427e1 [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"
15#include "clang/AST/Decl.h"
Steve Naroff3fafa102007-10-01 19:00:59 +000016#include "clang/AST/DeclObjC.h"
Chris Lattner4b009652007-07-25 00:24:17 +000017#include "clang/Basic/TargetInfo.h"
18#include "llvm/ADT/SmallVector.h"
Anders Carlsson36f07d82007-10-29 05:01:08 +000019#include "llvm/ADT/StringExtras.h"
Ted Kremenek738e6c02007-10-31 17:10:13 +000020#include "llvm/Bitcode/Serialize.h"
21#include "llvm/Bitcode/Deserialize.h"
Anders Carlsson36f07d82007-10-29 05:01:08 +000022
Chris Lattner4b009652007-07-25 00:24:17 +000023using namespace clang;
24
25enum FloatingRank {
26 FloatRank, DoubleRank, LongDoubleRank
27};
28
29ASTContext::~ASTContext() {
30 // Deallocate all the types.
31 while (!Types.empty()) {
32 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(Types.back())) {
33 // Destroy the object, but don't call delete. These are malloc'd.
34 FT->~FunctionTypeProto();
35 free(FT);
36 } else {
37 delete Types.back();
38 }
39 Types.pop_back();
40 }
41}
42
43void ASTContext::PrintStats() const {
44 fprintf(stderr, "*** AST Context Stats:\n");
45 fprintf(stderr, " %d types total.\n", (int)Types.size());
46 unsigned NumBuiltin = 0, NumPointer = 0, NumArray = 0, NumFunctionP = 0;
47 unsigned NumVector = 0, NumComplex = 0;
48 unsigned NumFunctionNP = 0, NumTypeName = 0, NumTagged = 0, NumReference = 0;
49
50 unsigned NumTagStruct = 0, NumTagUnion = 0, NumTagEnum = 0, NumTagClass = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +000051 unsigned NumObjCInterfaces = 0, NumObjCQualifiedInterfaces = 0;
52 unsigned NumObjCQualifiedIds = 0;
Chris Lattner4b009652007-07-25 00:24:17 +000053
54 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
55 Type *T = Types[i];
56 if (isa<BuiltinType>(T))
57 ++NumBuiltin;
58 else if (isa<PointerType>(T))
59 ++NumPointer;
60 else if (isa<ReferenceType>(T))
61 ++NumReference;
62 else if (isa<ComplexType>(T))
63 ++NumComplex;
64 else if (isa<ArrayType>(T))
65 ++NumArray;
66 else if (isa<VectorType>(T))
67 ++NumVector;
68 else if (isa<FunctionTypeNoProto>(T))
69 ++NumFunctionNP;
70 else if (isa<FunctionTypeProto>(T))
71 ++NumFunctionP;
72 else if (isa<TypedefType>(T))
73 ++NumTypeName;
74 else if (TagType *TT = dyn_cast<TagType>(T)) {
75 ++NumTagged;
76 switch (TT->getDecl()->getKind()) {
77 default: assert(0 && "Unknown tagged type!");
78 case Decl::Struct: ++NumTagStruct; break;
79 case Decl::Union: ++NumTagUnion; break;
80 case Decl::Class: ++NumTagClass; break;
81 case Decl::Enum: ++NumTagEnum; break;
82 }
Ted Kremenek42730c52008-01-07 19:49:32 +000083 } else if (isa<ObjCInterfaceType>(T))
84 ++NumObjCInterfaces;
85 else if (isa<ObjCQualifiedInterfaceType>(T))
86 ++NumObjCQualifiedInterfaces;
87 else if (isa<ObjCQualifiedIdType>(T))
88 ++NumObjCQualifiedIds;
Steve Naroff948fd372007-09-17 14:16:13 +000089 else {
Chris Lattner8a35b462007-12-12 06:43:05 +000090 QualType(T, 0).dump();
Chris Lattner4b009652007-07-25 00:24:17 +000091 assert(0 && "Unknown type!");
92 }
93 }
94
95 fprintf(stderr, " %d builtin types\n", NumBuiltin);
96 fprintf(stderr, " %d pointer types\n", NumPointer);
97 fprintf(stderr, " %d reference types\n", NumReference);
98 fprintf(stderr, " %d complex types\n", NumComplex);
99 fprintf(stderr, " %d array types\n", NumArray);
100 fprintf(stderr, " %d vector types\n", NumVector);
101 fprintf(stderr, " %d function types with proto\n", NumFunctionP);
102 fprintf(stderr, " %d function types with no proto\n", NumFunctionNP);
103 fprintf(stderr, " %d typename (typedef) types\n", NumTypeName);
104 fprintf(stderr, " %d tagged types\n", NumTagged);
105 fprintf(stderr, " %d struct types\n", NumTagStruct);
106 fprintf(stderr, " %d union types\n", NumTagUnion);
107 fprintf(stderr, " %d class types\n", NumTagClass);
108 fprintf(stderr, " %d enum types\n", NumTagEnum);
Ted Kremenek42730c52008-01-07 19:49:32 +0000109 fprintf(stderr, " %d interface types\n", NumObjCInterfaces);
Chris Lattner8a35b462007-12-12 06:43:05 +0000110 fprintf(stderr, " %d protocol qualified interface types\n",
Ted Kremenek42730c52008-01-07 19:49:32 +0000111 NumObjCQualifiedInterfaces);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000112 fprintf(stderr, " %d protocol qualified id types\n",
Ted Kremenek42730c52008-01-07 19:49:32 +0000113 NumObjCQualifiedIds);
Chris Lattner4b009652007-07-25 00:24:17 +0000114 fprintf(stderr, "Total bytes = %d\n", int(NumBuiltin*sizeof(BuiltinType)+
115 NumPointer*sizeof(PointerType)+NumArray*sizeof(ArrayType)+
116 NumComplex*sizeof(ComplexType)+NumVector*sizeof(VectorType)+
117 NumFunctionP*sizeof(FunctionTypeProto)+
118 NumFunctionNP*sizeof(FunctionTypeNoProto)+
119 NumTypeName*sizeof(TypedefType)+NumTagged*sizeof(TagType)));
120}
121
122
123void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
124 Types.push_back((R = QualType(new BuiltinType(K),0)).getTypePtr());
125}
126
Chris Lattner4b009652007-07-25 00:24:17 +0000127void ASTContext::InitBuiltinTypes() {
128 assert(VoidTy.isNull() && "Context reinitialized?");
129
130 // C99 6.2.5p19.
131 InitBuiltinType(VoidTy, BuiltinType::Void);
132
133 // C99 6.2.5p2.
134 InitBuiltinType(BoolTy, BuiltinType::Bool);
135 // C99 6.2.5p3.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000136 if (Target.isCharSigned())
Chris Lattner4b009652007-07-25 00:24:17 +0000137 InitBuiltinType(CharTy, BuiltinType::Char_S);
138 else
139 InitBuiltinType(CharTy, BuiltinType::Char_U);
140 // C99 6.2.5p4.
141 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
142 InitBuiltinType(ShortTy, BuiltinType::Short);
143 InitBuiltinType(IntTy, BuiltinType::Int);
144 InitBuiltinType(LongTy, BuiltinType::Long);
145 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
146
147 // C99 6.2.5p6.
148 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
149 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
150 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
151 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
152 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
153
154 // C99 6.2.5p10.
155 InitBuiltinType(FloatTy, BuiltinType::Float);
156 InitBuiltinType(DoubleTy, BuiltinType::Double);
157 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
158
159 // C99 6.2.5p11.
160 FloatComplexTy = getComplexType(FloatTy);
161 DoubleComplexTy = getComplexType(DoubleTy);
162 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Steve Naroff9d12c902007-10-15 14:41:52 +0000163
164 BuiltinVaListType = QualType();
Ted Kremenek42730c52008-01-07 19:49:32 +0000165 ObjCIdType = QualType();
Steve Naroff9d12c902007-10-15 14:41:52 +0000166 IdStructType = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +0000167 ObjCClassType = QualType();
Anders Carlsson7f23e3d2007-10-31 02:53:19 +0000168 ClassStructType = 0;
169
Ted Kremenek42730c52008-01-07 19:49:32 +0000170 ObjCConstantStringType = QualType();
Fariborz Jahanianc81f3162007-10-29 22:57:28 +0000171
172 // void * type
173 VoidPtrTy = getPointerType(VoidTy);
Chris Lattner4b009652007-07-25 00:24:17 +0000174}
175
176//===----------------------------------------------------------------------===//
177// Type Sizing and Analysis
178//===----------------------------------------------------------------------===//
179
180/// getTypeSize - Return the size of the specified type, in bits. This method
181/// does not work on incomplete types.
182std::pair<uint64_t, unsigned>
Chris Lattner8cd0e932008-03-05 18:54:05 +0000183ASTContext::getTypeInfo(QualType T) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000184 T = getCanonicalType(T);
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000185 uint64_t Width;
Chris Lattner4b009652007-07-25 00:24:17 +0000186 unsigned Align;
187 switch (T->getTypeClass()) {
188 case Type::TypeName: assert(0 && "Not a canonical type!");
189 case Type::FunctionNoProto:
190 case Type::FunctionProto:
191 default:
192 assert(0 && "Incomplete types have no size!");
Steve Naroff83c13012007-08-30 01:06:46 +0000193 case Type::VariableArray:
194 assert(0 && "VLAs not implemented yet!");
195 case Type::ConstantArray: {
196 ConstantArrayType *CAT = cast<ConstantArrayType>(T);
197
Chris Lattner8cd0e932008-03-05 18:54:05 +0000198 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000199 Width = EltInfo.first*CAT->getSize().getZExtValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000200 Align = EltInfo.second;
201 break;
Christopher Lamb82c758b2007-12-29 05:10:55 +0000202 }
203 case Type::OCUVector:
Chris Lattner4b009652007-07-25 00:24:17 +0000204 case Type::Vector: {
205 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner8cd0e932008-03-05 18:54:05 +0000206 getTypeInfo(cast<VectorType>(T)->getElementType());
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000207 Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
Chris Lattner4b009652007-07-25 00:24:17 +0000208 // FIXME: Vector alignment is not the alignment of its elements.
209 Align = EltInfo.second;
210 break;
211 }
212
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000213 case Type::Builtin:
Chris Lattner4b009652007-07-25 00:24:17 +0000214 // FIXME: need to use TargetInfo to derive the target specific sizes. This
215 // implementation will suffice for play with vector support.
216 switch (cast<BuiltinType>(T)->getKind()) {
217 default: assert(0 && "Unknown builtin type!");
218 case BuiltinType::Void:
219 assert(0 && "Incomplete types have no size!");
Chris Lattnerb66237b2007-12-19 19:23:28 +0000220 case BuiltinType::Bool:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000221 Width = Target.getBoolWidth();
222 Align = Target.getBoolAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000223 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000224 case BuiltinType::Char_S:
225 case BuiltinType::Char_U:
226 case BuiltinType::UChar:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000227 case BuiltinType::SChar:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000228 Width = Target.getCharWidth();
229 Align = Target.getCharAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000230 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000231 case BuiltinType::UShort:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000232 case BuiltinType::Short:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000233 Width = Target.getShortWidth();
234 Align = Target.getShortAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000235 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000236 case BuiltinType::UInt:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000237 case BuiltinType::Int:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000238 Width = Target.getIntWidth();
239 Align = Target.getIntAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000240 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000241 case BuiltinType::ULong:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000242 case BuiltinType::Long:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000243 Width = Target.getLongWidth();
244 Align = Target.getLongAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000245 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000246 case BuiltinType::ULongLong:
Chris Lattnerb66237b2007-12-19 19:23:28 +0000247 case BuiltinType::LongLong:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000248 Width = Target.getLongLongWidth();
249 Align = Target.getLongLongAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000250 break;
251 case BuiltinType::Float:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000252 Width = Target.getFloatWidth();
253 Align = Target.getFloatAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000254 break;
255 case BuiltinType::Double:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000256 Width = Target.getDoubleWidth();
257 Align = Target.getDoubleAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000258 break;
259 case BuiltinType::LongDouble:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000260 Width = Target.getLongDoubleWidth();
261 Align = Target.getLongDoubleAlign();
Chris Lattnerb66237b2007-12-19 19:23:28 +0000262 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000263 }
264 break;
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000265 case Type::ASQual:
Chris Lattner8cd0e932008-03-05 18:54:05 +0000266 // FIXME: Pointers into different addr spaces could have different sizes and
267 // alignment requirements: getPointerInfo should take an AddrSpace.
268 return getTypeInfo(QualType(cast<ASQualType>(T)->getBaseType(), 0));
Ted Kremenek42730c52008-01-07 19:49:32 +0000269 case Type::ObjCQualifiedId:
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000270 Width = Target.getPointerWidth(0);
Chris Lattner461a6c52008-03-08 08:34:58 +0000271 Align = Target.getPointerAlign(0);
Chris Lattnerb66237b2007-12-19 19:23:28 +0000272 break;
Chris Lattner461a6c52008-03-08 08:34:58 +0000273 case Type::Pointer: {
274 unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000275 Width = Target.getPointerWidth(AS);
Chris Lattner461a6c52008-03-08 08:34:58 +0000276 Align = Target.getPointerAlign(AS);
277 break;
278 }
Chris Lattner4b009652007-07-25 00:24:17 +0000279 case Type::Reference:
280 // "When applied to a reference or a reference type, the result is the size
281 // of the referenced type." C++98 5.3.3p2: expr.sizeof.
Chris Lattnerb66237b2007-12-19 19:23:28 +0000282 // FIXME: This is wrong for struct layout: a reference in a struct has
283 // pointer size.
Chris Lattnercfac88d2008-04-02 17:35:06 +0000284 return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
Chris Lattner4b009652007-07-25 00:24:17 +0000285
286 case Type::Complex: {
287 // Complex types have the same alignment as their elements, but twice the
288 // size.
289 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner8cd0e932008-03-05 18:54:05 +0000290 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000291 Width = EltInfo.first*2;
Chris Lattner4b009652007-07-25 00:24:17 +0000292 Align = EltInfo.second;
293 break;
294 }
Chris Lattner2bf1d6c2008-04-06 22:05:18 +0000295 case Type::Tagged: {
296 if (EnumType *ET = dyn_cast<EnumType>(cast<TagType>(T)))
297 return getTypeInfo(ET->getDecl()->getIntegerType());
298
299 RecordType *RT = cast<RecordType>(T);
300 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
301 Width = Layout.getSize();
302 Align = Layout.getAlignment();
Chris Lattner4b009652007-07-25 00:24:17 +0000303 break;
304 }
Chris Lattner2bf1d6c2008-04-06 22:05:18 +0000305 }
Chris Lattner4b009652007-07-25 00:24:17 +0000306
307 assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
Chris Lattnerfc18dcc2008-03-08 08:52:55 +0000308 return std::make_pair(Width, Align);
Chris Lattner4b009652007-07-25 00:24:17 +0000309}
310
Devang Patel7a78e432007-11-01 19:11:01 +0000311/// getASTRecordLayout - Get or compute information about the layout of the
Chris Lattner4b009652007-07-25 00:24:17 +0000312/// specified record (struct/union/class), which indicates its size and field
313/// position information.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000314const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
Chris Lattner4b009652007-07-25 00:24:17 +0000315 assert(D->isDefinition() && "Cannot get layout of forward declarations!");
316
317 // Look up this layout, if already laid out, return what we have.
Devang Patel7a78e432007-11-01 19:11:01 +0000318 const ASTRecordLayout *&Entry = ASTRecordLayouts[D];
Chris Lattner4b009652007-07-25 00:24:17 +0000319 if (Entry) return *Entry;
320
Devang Patel7a78e432007-11-01 19:11:01 +0000321 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
322 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
323 ASTRecordLayout *NewEntry = new ASTRecordLayout();
Chris Lattner4b009652007-07-25 00:24:17 +0000324 Entry = NewEntry;
325
326 uint64_t *FieldOffsets = new uint64_t[D->getNumMembers()];
327 uint64_t RecordSize = 0;
328 unsigned RecordAlign = 8; // Default alignment = 1 byte = 8 bits.
329
330 if (D->getKind() != Decl::Union) {
Anders Carlsson7dce0292008-02-16 19:51:27 +0000331 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
332 RecordAlign = std::max(RecordAlign, AA->getAlignment());
333
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000334 bool StructIsPacked = D->getAttr<PackedAttr>();
335
Chris Lattner4b009652007-07-25 00:24:17 +0000336 // Layout each field, for now, just sequentially, respecting alignment. In
337 // the future, this will need to be tweakable by targets.
338 for (unsigned i = 0, e = D->getNumMembers(); i != e; ++i) {
339 const FieldDecl *FD = D->getMember(i);
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000340 bool FieldIsPacked = StructIsPacked || FD->getAttr<PackedAttr>();
Eli Friedman67571ac2008-02-06 05:33:51 +0000341 uint64_t FieldSize;
342 unsigned FieldAlign;
Anders Carlsson058237f2008-02-18 07:13:09 +0000343
344 if (const Expr *BitWidthExpr = FD->getBitWidth()) {
345 llvm::APSInt I(32);
346 bool BitWidthIsICE =
347 BitWidthExpr->isIntegerConstantExpr(I, *this);
348 assert (BitWidthIsICE && "Invalid BitField size expression");
349 FieldSize = I.getZExtValue();
350
Chris Lattner8cd0e932008-03-05 18:54:05 +0000351 std::pair<uint64_t, unsigned> TypeInfo = getTypeInfo(FD->getType());
Anders Carlsson058237f2008-02-18 07:13:09 +0000352 uint64_t TypeSize = TypeInfo.first;
Anders Carlsson7dce0292008-02-16 19:51:27 +0000353
354 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
355 FieldAlign = AA->getAlignment();
356 else if (FieldIsPacked)
357 FieldAlign = 8;
358 else {
Anders Carlsson058237f2008-02-18 07:13:09 +0000359 // FIXME: This is X86 specific, use 32-bit alignment for long long.
360 if (FD->getType()->isIntegerType() && TypeInfo.second > 32)
361 FieldAlign = 32;
362 else
363 FieldAlign = TypeInfo.second;
Anders Carlsson7dce0292008-02-16 19:51:27 +0000364 }
Eli Friedman67571ac2008-02-06 05:33:51 +0000365
Anders Carlsson058237f2008-02-18 07:13:09 +0000366 // Check if we need to add padding to give the field the correct
367 // alignment.
368 if (RecordSize % FieldAlign + FieldSize > TypeSize)
369 RecordSize = (RecordSize+FieldAlign-1) & ~(FieldAlign-1);
370
371 } else {
372 if (FD->getType()->isIncompleteType()) {
373 // This must be a flexible array member; we can't directly
374 // query getTypeInfo about these, so we figure it out here.
375 // Flexible array members don't have any size, but they
376 // have to be aligned appropriately for their element type.
377
378 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
379 FieldAlign = AA->getAlignment();
380 else if (FieldIsPacked)
381 FieldAlign = 8;
382 else {
383 const ArrayType* ATy = FD->getType()->getAsArrayType();
Chris Lattner8cd0e932008-03-05 18:54:05 +0000384 FieldAlign = getTypeAlign(ATy->getElementType());
Anders Carlsson058237f2008-02-18 07:13:09 +0000385 }
386 FieldSize = 0;
387 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +0000388 std::pair<uint64_t, unsigned> FieldInfo = getTypeInfo(FD->getType());
Anders Carlsson058237f2008-02-18 07:13:09 +0000389 FieldSize = FieldInfo.first;
390
391 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
392 FieldAlign = AA->getAlignment();
393 else if (FieldIsPacked)
394 FieldAlign = 8;
395 else
396 FieldAlign = FieldInfo.second;
397 }
398
399 // Round up the current record size to the field's alignment boundary.
400 RecordSize = (RecordSize+FieldAlign-1) & ~(FieldAlign-1);
401 }
Chris Lattner4b009652007-07-25 00:24:17 +0000402
403 // Place this field at the current location.
404 FieldOffsets[i] = RecordSize;
405
406 // Reserve space for this field.
407 RecordSize += FieldSize;
408
409 // Remember max struct/class alignment.
410 RecordAlign = std::max(RecordAlign, FieldAlign);
411 }
412
413 // Finally, round the size of the total struct up to the alignment of the
414 // struct itself.
415 RecordSize = (RecordSize+RecordAlign-1) & ~(RecordAlign-1);
416 } else {
417 // Union layout just puts each member at the start of the record.
418 for (unsigned i = 0, e = D->getNumMembers(); i != e; ++i) {
419 const FieldDecl *FD = D->getMember(i);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000420 std::pair<uint64_t, unsigned> FieldInfo = getTypeInfo(FD->getType());
Chris Lattner4b009652007-07-25 00:24:17 +0000421 uint64_t FieldSize = FieldInfo.first;
422 unsigned FieldAlign = FieldInfo.second;
423
Anders Carlsson058237f2008-02-18 07:13:09 +0000424 // FIXME: This is X86 specific, use 32-bit alignment for long long.
425 if (FD->getType()->isIntegerType() && FieldAlign > 32)
426 FieldAlign = 32;
427
Chris Lattner4b009652007-07-25 00:24:17 +0000428 // Round up the current record size to the field's alignment boundary.
429 RecordSize = std::max(RecordSize, FieldSize);
430
431 // Place this field at the start of the record.
432 FieldOffsets[i] = 0;
433
434 // Remember max struct/class alignment.
435 RecordAlign = std::max(RecordAlign, FieldAlign);
436 }
437 }
438
439 NewEntry->SetLayout(RecordSize, RecordAlign, FieldOffsets);
440 return *NewEntry;
441}
442
Chris Lattner4b009652007-07-25 00:24:17 +0000443//===----------------------------------------------------------------------===//
444// Type creation/memoization methods
445//===----------------------------------------------------------------------===//
446
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000447QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000448 QualType CanT = getCanonicalType(T);
449 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattner35fef522008-02-20 20:55:12 +0000450 return T;
451
452 // Type's cannot have multiple ASQuals, therefore we know we only have to deal
453 // with CVR qualifiers from here on out.
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000454 assert(CanT.getAddressSpace() == 0 &&
Chris Lattner35fef522008-02-20 20:55:12 +0000455 "Type is already address space qualified");
456
457 // Check if we've already instantiated an address space qual'd type of this
458 // type.
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000459 llvm::FoldingSetNodeID ID;
Chris Lattner35fef522008-02-20 20:55:12 +0000460 ASQualType::Profile(ID, T.getTypePtr(), AddressSpace);
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000461 void *InsertPos = 0;
462 if (ASQualType *ASQy = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos))
463 return QualType(ASQy, 0);
464
465 // If the base type isn't canonical, this won't be a canonical type either,
466 // so fill in the canonical type field.
467 QualType Canonical;
468 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000469 Canonical = getASQualType(CanT, AddressSpace);
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000470
471 // Get the new insert position for the node we care about.
472 ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos);
473 assert(NewIP == 0 && "Shouldn't be in the map!");
474 }
Chris Lattner35fef522008-02-20 20:55:12 +0000475 ASQualType *New = new ASQualType(T.getTypePtr(), Canonical, AddressSpace);
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000476 ASQualTypes.InsertNode(New, InsertPos);
477 Types.push_back(New);
Chris Lattner35fef522008-02-20 20:55:12 +0000478 return QualType(New, T.getCVRQualifiers());
Christopher Lamb2a72bb32008-02-04 02:31:56 +0000479}
480
Chris Lattner4b009652007-07-25 00:24:17 +0000481
482/// getComplexType - Return the uniqued reference to the type for a complex
483/// number with the specified element type.
484QualType ASTContext::getComplexType(QualType T) {
485 // Unique pointers, to guarantee there is only one pointer of a particular
486 // structure.
487 llvm::FoldingSetNodeID ID;
488 ComplexType::Profile(ID, T);
489
490 void *InsertPos = 0;
491 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
492 return QualType(CT, 0);
493
494 // If the pointee type isn't canonical, this won't be a canonical type either,
495 // so fill in the canonical type field.
496 QualType Canonical;
497 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000498 Canonical = getComplexType(getCanonicalType(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000499
500 // Get the new insert position for the node we care about.
501 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
502 assert(NewIP == 0 && "Shouldn't be in the map!");
503 }
504 ComplexType *New = new ComplexType(T, Canonical);
505 Types.push_back(New);
506 ComplexTypes.InsertNode(New, InsertPos);
507 return QualType(New, 0);
508}
509
510
511/// getPointerType - Return the uniqued reference to the type for a pointer to
512/// the specified type.
513QualType ASTContext::getPointerType(QualType T) {
514 // Unique pointers, to guarantee there is only one pointer of a particular
515 // structure.
516 llvm::FoldingSetNodeID ID;
517 PointerType::Profile(ID, T);
518
519 void *InsertPos = 0;
520 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
521 return QualType(PT, 0);
522
523 // If the pointee type isn't canonical, this won't be a canonical type either,
524 // so fill in the canonical type field.
525 QualType Canonical;
526 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000527 Canonical = getPointerType(getCanonicalType(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000528
529 // Get the new insert position for the node we care about.
530 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
531 assert(NewIP == 0 && "Shouldn't be in the map!");
532 }
533 PointerType *New = new PointerType(T, Canonical);
534 Types.push_back(New);
535 PointerTypes.InsertNode(New, InsertPos);
536 return QualType(New, 0);
537}
538
539/// getReferenceType - Return the uniqued reference to the type for a reference
540/// to the specified type.
541QualType ASTContext::getReferenceType(QualType T) {
542 // Unique pointers, to guarantee there is only one pointer of a particular
543 // structure.
544 llvm::FoldingSetNodeID ID;
545 ReferenceType::Profile(ID, T);
546
547 void *InsertPos = 0;
548 if (ReferenceType *RT = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
549 return QualType(RT, 0);
550
551 // If the referencee type isn't canonical, this won't be a canonical type
552 // either, so fill in the canonical type field.
553 QualType Canonical;
554 if (!T->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000555 Canonical = getReferenceType(getCanonicalType(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000556
557 // Get the new insert position for the node we care about.
558 ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
559 assert(NewIP == 0 && "Shouldn't be in the map!");
560 }
561
562 ReferenceType *New = new ReferenceType(T, Canonical);
563 Types.push_back(New);
564 ReferenceTypes.InsertNode(New, InsertPos);
565 return QualType(New, 0);
566}
567
Steve Naroff83c13012007-08-30 01:06:46 +0000568/// getConstantArrayType - Return the unique reference to the type for an
569/// array of the specified element type.
570QualType ASTContext::getConstantArrayType(QualType EltTy,
Steve Naroff24c9b982007-08-30 18:10:14 +0000571 const llvm::APInt &ArySize,
572 ArrayType::ArraySizeModifier ASM,
573 unsigned EltTypeQuals) {
Chris Lattner4b009652007-07-25 00:24:17 +0000574 llvm::FoldingSetNodeID ID;
Steve Naroff83c13012007-08-30 01:06:46 +0000575 ConstantArrayType::Profile(ID, EltTy, ArySize);
Chris Lattner4b009652007-07-25 00:24:17 +0000576
577 void *InsertPos = 0;
Ted Kremenek738e6c02007-10-31 17:10:13 +0000578 if (ConstantArrayType *ATP =
579 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Chris Lattner4b009652007-07-25 00:24:17 +0000580 return QualType(ATP, 0);
581
582 // If the element type isn't canonical, this won't be a canonical type either,
583 // so fill in the canonical type field.
584 QualType Canonical;
585 if (!EltTy->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000586 Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
Steve Naroff24c9b982007-08-30 18:10:14 +0000587 ASM, EltTypeQuals);
Chris Lattner4b009652007-07-25 00:24:17 +0000588 // Get the new insert position for the node we care about.
Ted Kremenek738e6c02007-10-31 17:10:13 +0000589 ConstantArrayType *NewIP =
590 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
591
Chris Lattner4b009652007-07-25 00:24:17 +0000592 assert(NewIP == 0 && "Shouldn't be in the map!");
593 }
594
Steve Naroff24c9b982007-08-30 18:10:14 +0000595 ConstantArrayType *New = new ConstantArrayType(EltTy, Canonical, ArySize,
596 ASM, EltTypeQuals);
Ted Kremenek738e6c02007-10-31 17:10:13 +0000597 ConstantArrayTypes.InsertNode(New, InsertPos);
Chris Lattner4b009652007-07-25 00:24:17 +0000598 Types.push_back(New);
599 return QualType(New, 0);
600}
601
Steve Naroffe2579e32007-08-30 18:14:25 +0000602/// getVariableArrayType - Returns a non-unique reference to the type for a
603/// variable array of the specified element type.
Steve Naroff24c9b982007-08-30 18:10:14 +0000604QualType ASTContext::getVariableArrayType(QualType EltTy, Expr *NumElts,
605 ArrayType::ArraySizeModifier ASM,
606 unsigned EltTypeQuals) {
Eli Friedman8ff07782008-02-15 18:16:39 +0000607 // Since we don't unique expressions, it isn't possible to unique VLA's
608 // that have an expression provided for their size.
609
610 VariableArrayType *New = new VariableArrayType(EltTy, QualType(), NumElts,
611 ASM, EltTypeQuals);
612
613 VariableArrayTypes.push_back(New);
614 Types.push_back(New);
615 return QualType(New, 0);
616}
617
618QualType ASTContext::getIncompleteArrayType(QualType EltTy,
619 ArrayType::ArraySizeModifier ASM,
620 unsigned EltTypeQuals) {
621 llvm::FoldingSetNodeID ID;
622 IncompleteArrayType::Profile(ID, EltTy);
623
624 void *InsertPos = 0;
625 if (IncompleteArrayType *ATP =
626 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
627 return QualType(ATP, 0);
628
629 // If the element type isn't canonical, this won't be a canonical type
630 // either, so fill in the canonical type field.
631 QualType Canonical;
632
633 if (!EltTy->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000634 Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
Ted Kremenek3793e1a2007-10-29 23:37:31 +0000635 ASM, EltTypeQuals);
Eli Friedman8ff07782008-02-15 18:16:39 +0000636
637 // Get the new insert position for the node we care about.
638 IncompleteArrayType *NewIP =
639 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
640
641 assert(NewIP == 0 && "Shouldn't be in the map!");
Ted Kremenek3793e1a2007-10-29 23:37:31 +0000642 }
Eli Friedman8ff07782008-02-15 18:16:39 +0000643
644 IncompleteArrayType *New = new IncompleteArrayType(EltTy, Canonical,
645 ASM, EltTypeQuals);
646
647 IncompleteArrayTypes.InsertNode(New, InsertPos);
648 Types.push_back(New);
649 return QualType(New, 0);
Steve Naroff83c13012007-08-30 01:06:46 +0000650}
651
Chris Lattner4b009652007-07-25 00:24:17 +0000652/// getVectorType - Return the unique reference to a vector type of
653/// the specified element type and size. VectorType must be a built-in type.
654QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
655 BuiltinType *baseType;
656
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000657 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Chris Lattner4b009652007-07-25 00:24:17 +0000658 assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
659
660 // Check if we've already instantiated a vector of this type.
661 llvm::FoldingSetNodeID ID;
662 VectorType::Profile(ID, vecType, NumElts, Type::Vector);
663 void *InsertPos = 0;
664 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
665 return QualType(VTP, 0);
666
667 // If the element type isn't canonical, this won't be a canonical type either,
668 // so fill in the canonical type field.
669 QualType Canonical;
670 if (!vecType->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000671 Canonical = getVectorType(getCanonicalType(vecType), NumElts);
Chris Lattner4b009652007-07-25 00:24:17 +0000672
673 // Get the new insert position for the node we care about.
674 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
675 assert(NewIP == 0 && "Shouldn't be in the map!");
676 }
677 VectorType *New = new VectorType(vecType, NumElts, Canonical);
678 VectorTypes.InsertNode(New, InsertPos);
679 Types.push_back(New);
680 return QualType(New, 0);
681}
682
683/// getOCUVectorType - Return the unique reference to an OCU vector type of
684/// the specified element type and size. VectorType must be a built-in type.
685QualType ASTContext::getOCUVectorType(QualType vecType, unsigned NumElts) {
686 BuiltinType *baseType;
687
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000688 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Chris Lattner4b009652007-07-25 00:24:17 +0000689 assert(baseType != 0 && "getOCUVectorType(): Expecting a built-in type");
690
691 // Check if we've already instantiated a vector of this type.
692 llvm::FoldingSetNodeID ID;
693 VectorType::Profile(ID, vecType, NumElts, Type::OCUVector);
694 void *InsertPos = 0;
695 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
696 return QualType(VTP, 0);
697
698 // If the element type isn't canonical, this won't be a canonical type either,
699 // so fill in the canonical type field.
700 QualType Canonical;
701 if (!vecType->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000702 Canonical = getOCUVectorType(getCanonicalType(vecType), NumElts);
Chris Lattner4b009652007-07-25 00:24:17 +0000703
704 // Get the new insert position for the node we care about.
705 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
706 assert(NewIP == 0 && "Shouldn't be in the map!");
707 }
708 OCUVectorType *New = new OCUVectorType(vecType, NumElts, Canonical);
709 VectorTypes.InsertNode(New, InsertPos);
710 Types.push_back(New);
711 return QualType(New, 0);
712}
713
714/// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'.
715///
716QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
717 // Unique functions, to guarantee there is only one function of a particular
718 // structure.
719 llvm::FoldingSetNodeID ID;
720 FunctionTypeNoProto::Profile(ID, ResultTy);
721
722 void *InsertPos = 0;
723 if (FunctionTypeNoProto *FT =
724 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos))
725 return QualType(FT, 0);
726
727 QualType Canonical;
728 if (!ResultTy->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000729 Canonical = getFunctionTypeNoProto(getCanonicalType(ResultTy));
Chris Lattner4b009652007-07-25 00:24:17 +0000730
731 // Get the new insert position for the node we care about.
732 FunctionTypeNoProto *NewIP =
733 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos);
734 assert(NewIP == 0 && "Shouldn't be in the map!");
735 }
736
737 FunctionTypeNoProto *New = new FunctionTypeNoProto(ResultTy, Canonical);
738 Types.push_back(New);
Eli Friedmanaa0fdfd2008-02-25 22:11:40 +0000739 FunctionTypeNoProtos.InsertNode(New, InsertPos);
Chris Lattner4b009652007-07-25 00:24:17 +0000740 return QualType(New, 0);
741}
742
743/// getFunctionType - Return a normal function type with a typed argument
744/// list. isVariadic indicates whether the argument list includes '...'.
745QualType ASTContext::getFunctionType(QualType ResultTy, QualType *ArgArray,
746 unsigned NumArgs, bool isVariadic) {
747 // Unique functions, to guarantee there is only one function of a particular
748 // structure.
749 llvm::FoldingSetNodeID ID;
750 FunctionTypeProto::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic);
751
752 void *InsertPos = 0;
753 if (FunctionTypeProto *FTP =
754 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos))
755 return QualType(FTP, 0);
756
757 // Determine whether the type being created is already canonical or not.
758 bool isCanonical = ResultTy->isCanonical();
759 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
760 if (!ArgArray[i]->isCanonical())
761 isCanonical = false;
762
763 // If this type isn't canonical, get the canonical version of it.
764 QualType Canonical;
765 if (!isCanonical) {
766 llvm::SmallVector<QualType, 16> CanonicalArgs;
767 CanonicalArgs.reserve(NumArgs);
768 for (unsigned i = 0; i != NumArgs; ++i)
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000769 CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
Chris Lattner4b009652007-07-25 00:24:17 +0000770
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000771 Canonical = getFunctionType(getCanonicalType(ResultTy),
Chris Lattner4b009652007-07-25 00:24:17 +0000772 &CanonicalArgs[0], NumArgs,
773 isVariadic);
774
775 // Get the new insert position for the node we care about.
776 FunctionTypeProto *NewIP =
777 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos);
778 assert(NewIP == 0 && "Shouldn't be in the map!");
779 }
780
781 // FunctionTypeProto objects are not allocated with new because they have a
782 // variable size array (for parameter types) at the end of them.
783 FunctionTypeProto *FTP =
784 (FunctionTypeProto*)malloc(sizeof(FunctionTypeProto) +
785 NumArgs*sizeof(QualType));
786 new (FTP) FunctionTypeProto(ResultTy, ArgArray, NumArgs, isVariadic,
787 Canonical);
788 Types.push_back(FTP);
789 FunctionTypeProtos.InsertNode(FTP, InsertPos);
790 return QualType(FTP, 0);
791}
792
793/// getTypedefType - Return the unique reference to the type for the
794/// specified typename decl.
795QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
796 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
797
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000798 QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000799 Decl->TypeForDecl = new TypedefType(Type::TypeName, Decl, Canonical);
Chris Lattner4b009652007-07-25 00:24:17 +0000800 Types.push_back(Decl->TypeForDecl);
801 return QualType(Decl->TypeForDecl, 0);
802}
803
Ted Kremenek42730c52008-01-07 19:49:32 +0000804/// getObjCInterfaceType - Return the unique reference to the type for the
Steve Naroff81f1bba2007-09-06 21:24:23 +0000805/// specified ObjC interface decl.
Ted Kremenek42730c52008-01-07 19:49:32 +0000806QualType ASTContext::getObjCInterfaceType(ObjCInterfaceDecl *Decl) {
Steve Naroff81f1bba2007-09-06 21:24:23 +0000807 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
808
Ted Kremenek42730c52008-01-07 19:49:32 +0000809 Decl->TypeForDecl = new ObjCInterfaceType(Type::ObjCInterface, Decl);
Steve Naroff81f1bba2007-09-06 21:24:23 +0000810 Types.push_back(Decl->TypeForDecl);
811 return QualType(Decl->TypeForDecl, 0);
812}
813
Ted Kremenek42730c52008-01-07 19:49:32 +0000814/// getObjCQualifiedInterfaceType - Return a
815/// ObjCQualifiedInterfaceType type for the given interface decl and
Fariborz Jahanian91193f62007-10-11 00:55:41 +0000816/// the conforming protocol list.
Ted Kremenek42730c52008-01-07 19:49:32 +0000817QualType ASTContext::getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl,
818 ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
Fariborz Jahanian91193f62007-10-11 00:55:41 +0000819 llvm::FoldingSetNodeID ID;
Ted Kremenek42730c52008-01-07 19:49:32 +0000820 ObjCQualifiedInterfaceType::Profile(ID, Protocols, NumProtocols);
Fariborz Jahanian91193f62007-10-11 00:55:41 +0000821
822 void *InsertPos = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +0000823 if (ObjCQualifiedInterfaceType *QT =
824 ObjCQualifiedInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanian91193f62007-10-11 00:55:41 +0000825 return QualType(QT, 0);
826
827 // No Match;
Ted Kremenek42730c52008-01-07 19:49:32 +0000828 ObjCQualifiedInterfaceType *QType =
829 new ObjCQualifiedInterfaceType(Decl, Protocols, NumProtocols);
Fariborz Jahanian91193f62007-10-11 00:55:41 +0000830 Types.push_back(QType);
Ted Kremenek42730c52008-01-07 19:49:32 +0000831 ObjCQualifiedInterfaceTypes.InsertNode(QType, InsertPos);
Fariborz Jahanian91193f62007-10-11 00:55:41 +0000832 return QualType(QType, 0);
833}
834
Ted Kremenek42730c52008-01-07 19:49:32 +0000835/// getObjCQualifiedIdType - Return a
836/// getObjCQualifiedIdType type for the 'id' decl and
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000837/// the conforming protocol list.
Ted Kremenek42730c52008-01-07 19:49:32 +0000838QualType ASTContext::getObjCQualifiedIdType(QualType idType,
839 ObjCProtocolDecl **Protocols,
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000840 unsigned NumProtocols) {
841 llvm::FoldingSetNodeID ID;
Ted Kremenek42730c52008-01-07 19:49:32 +0000842 ObjCQualifiedIdType::Profile(ID, Protocols, NumProtocols);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000843
844 void *InsertPos = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +0000845 if (ObjCQualifiedIdType *QT =
846 ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000847 return QualType(QT, 0);
848
849 // No Match;
Fariborz Jahaniandcb2b1e2007-12-18 21:33:44 +0000850 QualType Canonical;
851 if (!idType->isCanonical()) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000852 Canonical = getObjCQualifiedIdType(getCanonicalType(idType),
Fariborz Jahaniandcb2b1e2007-12-18 21:33:44 +0000853 Protocols, NumProtocols);
Ted Kremenek42730c52008-01-07 19:49:32 +0000854 ObjCQualifiedIdType *NewQT =
855 ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos);
Fariborz Jahaniandcb2b1e2007-12-18 21:33:44 +0000856 assert(NewQT == 0 && "Shouldn't be in the map!");
857 }
858
Ted Kremenek42730c52008-01-07 19:49:32 +0000859 ObjCQualifiedIdType *QType =
860 new ObjCQualifiedIdType(Canonical, Protocols, NumProtocols);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000861 Types.push_back(QType);
Ted Kremenek42730c52008-01-07 19:49:32 +0000862 ObjCQualifiedIdTypes.InsertNode(QType, InsertPos);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000863 return QualType(QType, 0);
864}
865
Steve Naroff0604dd92007-08-01 18:02:17 +0000866/// getTypeOfExpr - Unlike many "get<Type>" functions, we can't unique
867/// TypeOfExpr AST's (since expression's are never shared). For example,
868/// multiple declarations that refer to "typeof(x)" all contain different
869/// DeclRefExpr's. This doesn't effect the type checker, since it operates
870/// on canonical type's (which are always unique).
Steve Naroff11b649c2007-08-01 17:20:42 +0000871QualType ASTContext::getTypeOfExpr(Expr *tofExpr) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000872 QualType Canonical = getCanonicalType(tofExpr->getType());
Steve Naroff0604dd92007-08-01 18:02:17 +0000873 TypeOfExpr *toe = new TypeOfExpr(tofExpr, Canonical);
874 Types.push_back(toe);
875 return QualType(toe, 0);
Steve Naroff7cbb1462007-07-31 12:34:36 +0000876}
877
Steve Naroff0604dd92007-08-01 18:02:17 +0000878/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
879/// TypeOfType AST's. The only motivation to unique these nodes would be
880/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
881/// an issue. This doesn't effect the type checker, since it operates
882/// on canonical type's (which are always unique).
Steve Naroff7cbb1462007-07-31 12:34:36 +0000883QualType ASTContext::getTypeOfType(QualType tofType) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000884 QualType Canonical = getCanonicalType(tofType);
Steve Naroff0604dd92007-08-01 18:02:17 +0000885 TypeOfType *tot = new TypeOfType(tofType, Canonical);
886 Types.push_back(tot);
887 return QualType(tot, 0);
Steve Naroff7cbb1462007-07-31 12:34:36 +0000888}
889
Chris Lattner4b009652007-07-25 00:24:17 +0000890/// getTagDeclType - Return the unique reference to the type for the
891/// specified TagDecl (struct/union/class/enum) decl.
892QualType ASTContext::getTagDeclType(TagDecl *Decl) {
Ted Kremenekae8fa032007-11-26 21:16:01 +0000893 assert (Decl);
894
Ted Kremenekf05026d2007-11-14 00:03:20 +0000895 // The decl stores the type cache.
Ted Kremenekae8fa032007-11-26 21:16:01 +0000896 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
Ted Kremenekf05026d2007-11-14 00:03:20 +0000897
898 TagType* T = new TagType(Decl, QualType());
Ted Kremenekae8fa032007-11-26 21:16:01 +0000899 Types.push_back(T);
900 Decl->TypeForDecl = T;
Ted Kremenekf05026d2007-11-14 00:03:20 +0000901
902 return QualType(T, 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000903}
904
905/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
906/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
907/// needs to agree with the definition in <stddef.h>.
908QualType ASTContext::getSizeType() const {
909 // On Darwin, size_t is defined as a "long unsigned int".
910 // FIXME: should derive from "Target".
911 return UnsignedLongTy;
912}
913
Eli Friedmanfdd35d72008-02-12 08:29:21 +0000914/// getWcharType - Return the unique type for "wchar_t" (C99 7.17), the
915/// width of characters in wide strings, The value is target dependent and
916/// needs to agree with the definition in <stddef.h>.
917QualType ASTContext::getWcharType() const {
918 // On Darwin, wchar_t is defined as a "int".
919 // FIXME: should derive from "Target".
920 return IntTy;
921}
922
Chris Lattner4b009652007-07-25 00:24:17 +0000923/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
924/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
925QualType ASTContext::getPointerDiffType() const {
926 // On Darwin, ptrdiff_t is defined as a "int". This seems like a bug...
927 // FIXME: should derive from "Target".
928 return IntTy;
929}
930
Chris Lattner19eb97e2008-04-02 05:18:44 +0000931//===----------------------------------------------------------------------===//
932// Type Operators
933//===----------------------------------------------------------------------===//
934
Chris Lattner3dae6f42008-04-06 22:41:35 +0000935/// getCanonicalType - Return the canonical (structural) type corresponding to
936/// the specified potentially non-canonical type. The non-canonical version
937/// of a type may have many "decorated" versions of types. Decorators can
938/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
939/// to be free of any of these, allowing two canonical types to be compared
940/// for exact equality with a simple pointer comparison.
941QualType ASTContext::getCanonicalType(QualType T) {
942 QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
943 return QualType(CanType.getTypePtr(),
944 T.getCVRQualifiers() | CanType.getCVRQualifiers());
945}
946
947
Chris Lattner19eb97e2008-04-02 05:18:44 +0000948/// getArrayDecayedType - Return the properly qualified result of decaying the
949/// specified array type to a pointer. This operation is non-trivial when
950/// handling typedefs etc. The canonical type of "T" must be an array type,
951/// this returns a pointer to a properly qualified element of the array.
952///
953/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
954QualType ASTContext::getArrayDecayedType(QualType Ty) {
955 // Handle the common case where typedefs are not involved directly.
956 QualType EltTy;
957 unsigned ArrayQuals = 0;
958 unsigned PointerQuals = 0;
959 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
960 // Since T "isa" an array type, it could not have had an address space
961 // qualifier, just CVR qualifiers. The properly qualified element pointer
962 // gets the union of the CVR qualifiers from the element and the array, and
963 // keeps any address space qualifier on the element type if present.
964 EltTy = AT->getElementType();
965 ArrayQuals = Ty.getCVRQualifiers();
966 PointerQuals = AT->getIndexTypeQualifier();
967 } else {
968 // Otherwise, we have an ASQualType or a typedef, etc. Make sure we don't
969 // lose qualifiers when dealing with typedefs. Example:
970 // typedef int arr[10];
971 // void test2() {
972 // const arr b;
973 // b[4] = 1;
974 // }
975 //
976 // The decayed type of b is "const int*" even though the element type of the
977 // array is "int".
Chris Lattnerc1b68db2008-04-06 22:59:24 +0000978 QualType CanTy = getCanonicalType(Ty);
Chris Lattner19eb97e2008-04-02 05:18:44 +0000979 const ArrayType *PrettyArrayType = Ty->getAsArrayType();
980 assert(PrettyArrayType && "Not an array type!");
981
982 // Get the element type with 'getAsArrayType' so that we don't lose any
983 // typedefs in the element type of the array.
984 EltTy = PrettyArrayType->getElementType();
985
986 // If the array was address-space qualifier, make sure to ASQual the element
987 // type. We can just grab the address space from the canonical type.
988 if (unsigned AS = CanTy.getAddressSpace())
989 EltTy = getASQualType(EltTy, AS);
990
991 // To properly handle [multiple levels of] typedefs, typeof's etc, we take
992 // the CVR qualifiers directly from the canonical type, which is guaranteed
993 // to have the full set unioned together.
994 ArrayQuals = CanTy.getCVRQualifiers();
995 PointerQuals = PrettyArrayType->getIndexTypeQualifier();
996 }
997
Chris Lattnerda79b3f2008-04-02 06:06:35 +0000998 // Apply any CVR qualifiers from the array type to the element type. This
999 // implements C99 6.7.3p8: "If the specification of an array type includes
1000 // any type qualifiers, the element type is so qualified, not the array type."
Chris Lattner19eb97e2008-04-02 05:18:44 +00001001 EltTy = EltTy.getQualifiedType(ArrayQuals | EltTy.getCVRQualifiers());
1002
1003 QualType PtrTy = getPointerType(EltTy);
1004
1005 // int x[restrict 4] -> int *restrict
1006 PtrTy = PtrTy.getQualifiedType(PointerQuals);
1007
1008 return PtrTy;
1009}
1010
Chris Lattner4b009652007-07-25 00:24:17 +00001011/// getFloatingRank - Return a relative rank for floating point types.
1012/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnerd7135b42008-04-06 23:38:49 +00001013static FloatingRank getFloatingRank(QualType T) {
Christopher Lamb2a72bb32008-02-04 02:31:56 +00001014 if (const ComplexType *CT = T->getAsComplexType())
Chris Lattner4b009652007-07-25 00:24:17 +00001015 return getFloatingRank(CT->getElementType());
Chris Lattnerd7135b42008-04-06 23:38:49 +00001016
Christopher Lamb2a72bb32008-02-04 02:31:56 +00001017 switch (T->getAsBuiltinType()->getKind()) {
Chris Lattnerd7135b42008-04-06 23:38:49 +00001018 default: assert(0 && "getFloatingRank(): not a floating type");
Chris Lattner4b009652007-07-25 00:24:17 +00001019 case BuiltinType::Float: return FloatRank;
1020 case BuiltinType::Double: return DoubleRank;
1021 case BuiltinType::LongDouble: return LongDoubleRank;
1022 }
1023}
1024
Steve Narofffa0c4532007-08-27 01:41:48 +00001025/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
1026/// point or a complex type (based on typeDomain/typeSize).
1027/// 'typeDomain' is a real floating point or complex type.
1028/// 'typeSize' is a real floating point or complex type.
Steve Naroff3cf497f2007-08-27 01:27:54 +00001029QualType ASTContext::getFloatingTypeOfSizeWithinDomain(
1030 QualType typeSize, QualType typeDomain) const {
1031 if (typeDomain->isComplexType()) {
1032 switch (getFloatingRank(typeSize)) {
Steve Narofffa0c4532007-08-27 01:41:48 +00001033 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Naroff3cf497f2007-08-27 01:27:54 +00001034 case FloatRank: return FloatComplexTy;
1035 case DoubleRank: return DoubleComplexTy;
1036 case LongDoubleRank: return LongDoubleComplexTy;
1037 }
Chris Lattner4b009652007-07-25 00:24:17 +00001038 }
Steve Naroff3cf497f2007-08-27 01:27:54 +00001039 if (typeDomain->isRealFloatingType()) {
1040 switch (getFloatingRank(typeSize)) {
Steve Narofffa0c4532007-08-27 01:41:48 +00001041 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Naroff3cf497f2007-08-27 01:27:54 +00001042 case FloatRank: return FloatTy;
1043 case DoubleRank: return DoubleTy;
1044 case LongDoubleRank: return LongDoubleTy;
1045 }
1046 }
1047 assert(0 && "getFloatingTypeOfSizeWithinDomain(): illegal domain");
Chris Lattner1d2b4612007-09-16 19:23:47 +00001048 //an invalid return value, but the assert
1049 //will ensure that this code is never reached.
1050 return VoidTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001051}
1052
Chris Lattner51285d82008-04-06 23:55:33 +00001053/// getFloatingTypeOrder - Compare the rank of the two specified floating
1054/// point types, ignoring the domain of the type (i.e. 'double' ==
1055/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
1056/// LHS < RHS, return -1.
Chris Lattnerd7135b42008-04-06 23:38:49 +00001057int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
1058 FloatingRank LHSR = getFloatingRank(LHS);
1059 FloatingRank RHSR = getFloatingRank(RHS);
1060
1061 if (LHSR == RHSR)
Steve Naroff45fc9822007-08-27 15:30:22 +00001062 return 0;
Chris Lattnerd7135b42008-04-06 23:38:49 +00001063 if (LHSR > RHSR)
Steve Naroff45fc9822007-08-27 15:30:22 +00001064 return 1;
1065 return -1;
Chris Lattner4b009652007-07-25 00:24:17 +00001066}
1067
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001068/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
1069/// routine will assert if passed a built-in type that isn't an integer or enum,
1070/// or if it is not canonicalized.
1071static unsigned getIntegerRank(Type *T) {
1072 assert(T->isCanonical() && "T should be canonicalized");
1073 if (isa<EnumType>(T))
1074 return 4;
1075
1076 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner51285d82008-04-06 23:55:33 +00001077 default: assert(0 && "getIntegerRank(): not a built-in integer");
1078 case BuiltinType::Bool:
1079 return 1;
1080 case BuiltinType::Char_S:
1081 case BuiltinType::Char_U:
1082 case BuiltinType::SChar:
1083 case BuiltinType::UChar:
1084 return 2;
1085 case BuiltinType::Short:
1086 case BuiltinType::UShort:
1087 return 3;
1088 case BuiltinType::Int:
1089 case BuiltinType::UInt:
1090 return 4;
1091 case BuiltinType::Long:
1092 case BuiltinType::ULong:
1093 return 5;
1094 case BuiltinType::LongLong:
1095 case BuiltinType::ULongLong:
1096 return 6;
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001097 }
1098}
1099
Chris Lattner51285d82008-04-06 23:55:33 +00001100/// getIntegerTypeOrder - Returns the highest ranked integer type:
1101/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
1102/// LHS < RHS, return -1.
1103int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001104 Type *LHSC = getCanonicalType(LHS).getTypePtr();
1105 Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner51285d82008-04-06 23:55:33 +00001106 if (LHSC == RHSC) return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001107
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001108 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
1109 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Chris Lattner4b009652007-07-25 00:24:17 +00001110
Chris Lattner51285d82008-04-06 23:55:33 +00001111 unsigned LHSRank = getIntegerRank(LHSC);
1112 unsigned RHSRank = getIntegerRank(RHSC);
Chris Lattner4b009652007-07-25 00:24:17 +00001113
Chris Lattner51285d82008-04-06 23:55:33 +00001114 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
1115 if (LHSRank == RHSRank) return 0;
1116 return LHSRank > RHSRank ? 1 : -1;
1117 }
Chris Lattner4b009652007-07-25 00:24:17 +00001118
Chris Lattner51285d82008-04-06 23:55:33 +00001119 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
1120 if (LHSUnsigned) {
1121 // If the unsigned [LHS] type is larger, return it.
1122 if (LHSRank >= RHSRank)
1123 return 1;
1124
1125 // If the signed type can represent all values of the unsigned type, it
1126 // wins. Because we are dealing with 2's complement and types that are
1127 // powers of two larger than each other, this is always safe.
1128 return -1;
1129 }
Chris Lattnerc1b68db2008-04-06 22:59:24 +00001130
Chris Lattner51285d82008-04-06 23:55:33 +00001131 // If the unsigned [RHS] type is larger, return it.
1132 if (RHSRank >= LHSRank)
1133 return -1;
1134
1135 // If the signed type can represent all values of the unsigned type, it
1136 // wins. Because we are dealing with 2's complement and types that are
1137 // powers of two larger than each other, this is always safe.
1138 return 1;
Chris Lattner4b009652007-07-25 00:24:17 +00001139}
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001140
1141// getCFConstantStringType - Return the type used for constant CFStrings.
1142QualType ASTContext::getCFConstantStringType() {
1143 if (!CFConstantStringTypeDecl) {
Chris Lattnere4650482008-03-15 06:12:44 +00001144 CFConstantStringTypeDecl =
Chris Lattnereee57c02008-04-04 06:12:32 +00001145 RecordDecl::Create(*this, Decl::Struct, NULL, SourceLocation(),
Chris Lattner58114f02008-03-15 21:32:50 +00001146 &Idents.get("NSConstantString"), 0);
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001147 QualType FieldTypes[4];
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001148
1149 // const int *isa;
1150 FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001151 // int flags;
1152 FieldTypes[1] = IntTy;
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001153 // const char *str;
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001154 FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001155 // long length;
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001156 FieldTypes[3] = LongTy;
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001157 // Create fields
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001158 FieldDecl *FieldDecls[4];
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001159
Anders Carlssonbb2cf512007-11-19 00:25:30 +00001160 for (unsigned i = 0; i < 4; ++i)
Chris Lattnerf3874bc2008-04-06 04:47:34 +00001161 FieldDecls[i] = FieldDecl::Create(*this, SourceLocation(), 0,
Chris Lattner81db64a2008-03-16 00:16:02 +00001162 FieldTypes[i]);
Anders Carlssone7e7aa22007-08-17 05:31:46 +00001163
1164 CFConstantStringTypeDecl->defineBody(FieldDecls, 4);
1165 }
1166
1167 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif61ce98c2007-09-11 15:32:40 +00001168}
Anders Carlssonfb5b1e82007-10-11 01:00:40 +00001169
Anders Carlssone3f02572007-10-29 06:33:42 +00001170// This returns true if a type has been typedefed to BOOL:
1171// typedef <type> BOOL;
Chris Lattnercb034cb2007-10-30 20:27:44 +00001172static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone3f02572007-10-29 06:33:42 +00001173 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnercb034cb2007-10-30 20:27:44 +00001174 return !strcmp(TT->getDecl()->getName(), "BOOL");
Anders Carlsson36f07d82007-10-29 05:01:08 +00001175
1176 return false;
1177}
1178
Ted Kremenek42730c52008-01-07 19:49:32 +00001179/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001180/// purpose.
Ted Kremenek42730c52008-01-07 19:49:32 +00001181int ASTContext::getObjCEncodingTypeSize(QualType type) {
Chris Lattner8cd0e932008-03-05 18:54:05 +00001182 uint64_t sz = getTypeSize(type);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001183
1184 // Make all integer and enum types at least as large as an int
1185 if (sz > 0 && type->isIntegralType())
Chris Lattner8cd0e932008-03-05 18:54:05 +00001186 sz = std::max(sz, getTypeSize(IntTy));
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001187 // Treat arrays as pointers, since that's how they're passed in.
1188 else if (type->isArrayType())
Chris Lattner8cd0e932008-03-05 18:54:05 +00001189 sz = getTypeSize(VoidPtrTy);
1190 return sz / getTypeSize(CharTy);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001191}
1192
Ted Kremenek42730c52008-01-07 19:49:32 +00001193/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001194/// declaration.
Ted Kremenek42730c52008-01-07 19:49:32 +00001195void ASTContext::getObjCEncodingForMethodDecl(ObjCMethodDecl *Decl,
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001196 std::string& S)
1197{
Fariborz Jahanian65e7eb52007-11-01 17:18:37 +00001198 // Encode type qualifer, 'in', 'inout', etc. for the return type.
Ted Kremenek42730c52008-01-07 19:49:32 +00001199 getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001200 // Encode result type.
Fariborz Jahanian248db262008-01-22 22:44:46 +00001201 getObjCEncodingForType(Decl->getResultType(), S, EncodingRecordTypes);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001202 // Compute size of all parameters.
1203 // Start with computing size of a pointer in number of bytes.
1204 // FIXME: There might(should) be a better way of doing this computation!
1205 SourceLocation Loc;
Chris Lattner8cd0e932008-03-05 18:54:05 +00001206 int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001207 // The first two arguments (self and _cmd) are pointers; account for
1208 // their size.
1209 int ParmOffset = 2 * PtrSize;
1210 int NumOfParams = Decl->getNumParams();
1211 for (int i = 0; i < NumOfParams; i++) {
1212 QualType PType = Decl->getParamDecl(i)->getType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001213 int sz = getObjCEncodingTypeSize (PType);
1214 assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001215 ParmOffset += sz;
1216 }
1217 S += llvm::utostr(ParmOffset);
1218 S += "@0:";
1219 S += llvm::utostr(PtrSize);
1220
1221 // Argument types.
1222 ParmOffset = 2 * PtrSize;
1223 for (int i = 0; i < NumOfParams; i++) {
1224 QualType PType = Decl->getParamDecl(i)->getType();
Fariborz Jahanian65e7eb52007-11-01 17:18:37 +00001225 // Process argument qualifiers for user supplied arguments; such as,
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001226 // 'in', 'inout', etc.
Ted Kremenek42730c52008-01-07 19:49:32 +00001227 getObjCEncodingForTypeQualifier(
1228 Decl->getParamDecl(i)->getObjCDeclQualifier(), S);
Fariborz Jahanian248db262008-01-22 22:44:46 +00001229 getObjCEncodingForType(PType, S, EncodingRecordTypes);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001230 S += llvm::utostr(ParmOffset);
Ted Kremenek42730c52008-01-07 19:49:32 +00001231 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00001232 }
1233}
1234
Fariborz Jahanian248db262008-01-22 22:44:46 +00001235void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
1236 llvm::SmallVector<const RecordType *, 8> &ERType) const
Anders Carlsson36f07d82007-10-29 05:01:08 +00001237{
Anders Carlssone3f02572007-10-29 06:33:42 +00001238 // FIXME: This currently doesn't encode:
1239 // @ An object (whether statically typed or typed id)
1240 // # A class object (Class)
1241 // : A method selector (SEL)
1242 // {name=type...} A structure
1243 // (name=type...) A union
1244 // bnum A bit field of num bits
1245
1246 if (const BuiltinType *BT = T->getAsBuiltinType()) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001247 char encoding;
1248 switch (BT->getKind()) {
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001249 default: assert(0 && "Unhandled builtin type kind");
1250 case BuiltinType::Void: encoding = 'v'; break;
1251 case BuiltinType::Bool: encoding = 'B'; break;
Anders Carlsson36f07d82007-10-29 05:01:08 +00001252 case BuiltinType::Char_U:
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001253 case BuiltinType::UChar: encoding = 'C'; break;
1254 case BuiltinType::UShort: encoding = 'S'; break;
1255 case BuiltinType::UInt: encoding = 'I'; break;
1256 case BuiltinType::ULong: encoding = 'L'; break;
1257 case BuiltinType::ULongLong: encoding = 'Q'; break;
Anders Carlsson36f07d82007-10-29 05:01:08 +00001258 case BuiltinType::Char_S:
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001259 case BuiltinType::SChar: encoding = 'c'; break;
1260 case BuiltinType::Short: encoding = 's'; break;
1261 case BuiltinType::Int: encoding = 'i'; break;
1262 case BuiltinType::Long: encoding = 'l'; break;
1263 case BuiltinType::LongLong: encoding = 'q'; break;
1264 case BuiltinType::Float: encoding = 'f'; break;
1265 case BuiltinType::Double: encoding = 'd'; break;
1266 case BuiltinType::LongDouble: encoding = 'd'; break;
Anders Carlsson36f07d82007-10-29 05:01:08 +00001267 }
1268
1269 S += encoding;
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001270 }
Ted Kremenek42730c52008-01-07 19:49:32 +00001271 else if (T->isObjCQualifiedIdType()) {
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001272 // Treat id<P...> same as 'id' for encoding purposes.
Fariborz Jahanian248db262008-01-22 22:44:46 +00001273 return getObjCEncodingForType(getObjCIdType(), S, ERType);
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001274
1275 }
1276 else if (const PointerType *PT = T->getAsPointerType()) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001277 QualType PointeeTy = PT->getPointeeType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001278 if (isObjCIdType(PointeeTy) || PointeeTy->isObjCInterfaceType()) {
Fariborz Jahanian80faffa2007-10-30 17:06:23 +00001279 S += '@';
1280 return;
Ted Kremenek42730c52008-01-07 19:49:32 +00001281 } else if (isObjCClassType(PointeeTy)) {
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001282 S += '#';
1283 return;
Ted Kremenek42730c52008-01-07 19:49:32 +00001284 } else if (isObjCSelType(PointeeTy)) {
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001285 S += ':';
1286 return;
Fariborz Jahanian80faffa2007-10-30 17:06:23 +00001287 }
Anders Carlsson36f07d82007-10-29 05:01:08 +00001288
1289 if (PointeeTy->isCharType()) {
1290 // char pointer types should be encoded as '*' unless it is a
1291 // type that has been typedef'd to 'BOOL'.
Anders Carlssone3f02572007-10-29 06:33:42 +00001292 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001293 S += '*';
1294 return;
1295 }
1296 }
1297
1298 S += '^';
Fariborz Jahanian248db262008-01-22 22:44:46 +00001299 getObjCEncodingForType(PT->getPointeeType(), S, ERType);
Anders Carlssone3f02572007-10-29 06:33:42 +00001300 } else if (const ArrayType *AT = T->getAsArrayType()) {
Anders Carlsson36f07d82007-10-29 05:01:08 +00001301 S += '[';
1302
1303 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1304 S += llvm::utostr(CAT->getSize().getZExtValue());
1305 else
1306 assert(0 && "Unhandled array type!");
1307
Fariborz Jahanian248db262008-01-22 22:44:46 +00001308 getObjCEncodingForType(AT->getElementType(), S, ERType);
Anders Carlsson36f07d82007-10-29 05:01:08 +00001309 S += ']';
Anders Carlsson5695bb72007-10-30 00:06:20 +00001310 } else if (T->getAsFunctionType()) {
1311 S += '?';
Fariborz Jahanianc8ba2bd2007-11-13 23:21:38 +00001312 } else if (const RecordType *RTy = T->getAsRecordType()) {
1313 RecordDecl *RDecl= RTy->getDecl();
1314 S += '{';
1315 S += RDecl->getName();
Fariborz Jahanian248db262008-01-22 22:44:46 +00001316 bool found = false;
1317 for (unsigned i = 0, e = ERType.size(); i != e; ++i)
1318 if (ERType[i] == RTy) {
1319 found = true;
1320 break;
1321 }
1322 if (!found) {
1323 ERType.push_back(RTy);
1324 S += '=';
1325 for (int i = 0; i < RDecl->getNumMembers(); i++) {
1326 FieldDecl *field = RDecl->getMember(i);
1327 getObjCEncodingForType(field->getType(), S, ERType);
1328 }
1329 assert(ERType.back() == RTy && "Record Type stack mismatch.");
1330 ERType.pop_back();
Fariborz Jahanianc8ba2bd2007-11-13 23:21:38 +00001331 }
1332 S += '}';
Steve Naroff49af3f32007-12-12 22:30:11 +00001333 } else if (T->isEnumeralType()) {
1334 S += 'i';
Anders Carlsson36f07d82007-10-29 05:01:08 +00001335 } else
Steve Naroff53b6f4c2008-01-30 19:17:43 +00001336 assert(0 && "@encode for type not implemented!");
Anders Carlsson36f07d82007-10-29 05:01:08 +00001337}
1338
Ted Kremenek42730c52008-01-07 19:49:32 +00001339void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanian65e7eb52007-11-01 17:18:37 +00001340 std::string& S) const {
1341 if (QT & Decl::OBJC_TQ_In)
1342 S += 'n';
1343 if (QT & Decl::OBJC_TQ_Inout)
1344 S += 'N';
1345 if (QT & Decl::OBJC_TQ_Out)
1346 S += 'o';
1347 if (QT & Decl::OBJC_TQ_Bycopy)
1348 S += 'O';
1349 if (QT & Decl::OBJC_TQ_Byref)
1350 S += 'R';
1351 if (QT & Decl::OBJC_TQ_Oneway)
1352 S += 'V';
1353}
1354
Anders Carlssonfb5b1e82007-10-11 01:00:40 +00001355void ASTContext::setBuiltinVaListType(QualType T)
1356{
1357 assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
1358
1359 BuiltinVaListType = T;
1360}
1361
Ted Kremenek42730c52008-01-07 19:49:32 +00001362void ASTContext::setObjCIdType(TypedefDecl *TD)
Steve Naroff9d12c902007-10-15 14:41:52 +00001363{
Ted Kremenek42730c52008-01-07 19:49:32 +00001364 assert(ObjCIdType.isNull() && "'id' type already set!");
Steve Naroff9d12c902007-10-15 14:41:52 +00001365
Ted Kremenek42730c52008-01-07 19:49:32 +00001366 ObjCIdType = getTypedefType(TD);
Steve Naroff9d12c902007-10-15 14:41:52 +00001367
1368 // typedef struct objc_object *id;
1369 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1370 assert(ptr && "'id' incorrectly typed");
1371 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1372 assert(rec && "'id' incorrectly typed");
1373 IdStructType = rec;
1374}
1375
Ted Kremenek42730c52008-01-07 19:49:32 +00001376void ASTContext::setObjCSelType(TypedefDecl *TD)
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001377{
Ted Kremenek42730c52008-01-07 19:49:32 +00001378 assert(ObjCSelType.isNull() && "'SEL' type already set!");
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001379
Ted Kremenek42730c52008-01-07 19:49:32 +00001380 ObjCSelType = getTypedefType(TD);
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001381
1382 // typedef struct objc_selector *SEL;
1383 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1384 assert(ptr && "'SEL' incorrectly typed");
1385 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1386 assert(rec && "'SEL' incorrectly typed");
1387 SelStructType = rec;
1388}
1389
Ted Kremenek42730c52008-01-07 19:49:32 +00001390void ASTContext::setObjCProtoType(QualType QT)
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001391{
Ted Kremenek42730c52008-01-07 19:49:32 +00001392 assert(ObjCProtoType.isNull() && "'Protocol' type already set!");
1393 ObjCProtoType = QT;
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001394}
1395
Ted Kremenek42730c52008-01-07 19:49:32 +00001396void ASTContext::setObjCClassType(TypedefDecl *TD)
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001397{
Ted Kremenek42730c52008-01-07 19:49:32 +00001398 assert(ObjCClassType.isNull() && "'Class' type already set!");
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001399
Ted Kremenek42730c52008-01-07 19:49:32 +00001400 ObjCClassType = getTypedefType(TD);
Anders Carlsson7f23e3d2007-10-31 02:53:19 +00001401
1402 // typedef struct objc_class *Class;
1403 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1404 assert(ptr && "'Class' incorrectly typed");
1405 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1406 assert(rec && "'Class' incorrectly typed");
1407 ClassStructType = rec;
1408}
1409
Ted Kremenek42730c52008-01-07 19:49:32 +00001410void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
1411 assert(ObjCConstantStringType.isNull() &&
Steve Narofff2e30312007-10-15 23:35:17 +00001412 "'NSConstantString' type already set!");
1413
Ted Kremenek42730c52008-01-07 19:49:32 +00001414 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Narofff2e30312007-10-15 23:35:17 +00001415}
1416
Steve Naroff85f0dc52007-10-15 20:41:53 +00001417bool ASTContext::builtinTypesAreCompatible(QualType lhs, QualType rhs) {
1418 const BuiltinType *lBuiltin = lhs->getAsBuiltinType();
1419 const BuiltinType *rBuiltin = rhs->getAsBuiltinType();
1420
1421 return lBuiltin->getKind() == rBuiltin->getKind();
1422}
1423
Fariborz Jahanian274dbf02007-12-21 17:34:43 +00001424/// objcTypesAreCompatible - This routine is called when two types
1425/// are of different class; one is interface type or is
1426/// a qualified interface type and the other type is of a different class.
1427/// Example, II or II<P>.
Steve Naroff85f0dc52007-10-15 20:41:53 +00001428bool ASTContext::objcTypesAreCompatible(QualType lhs, QualType rhs) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001429 if (lhs->isObjCInterfaceType() && isObjCIdType(rhs))
Steve Naroff85f0dc52007-10-15 20:41:53 +00001430 return true;
Ted Kremenek42730c52008-01-07 19:49:32 +00001431 else if (isObjCIdType(lhs) && rhs->isObjCInterfaceType())
Steve Naroff85f0dc52007-10-15 20:41:53 +00001432 return true;
Ted Kremenek42730c52008-01-07 19:49:32 +00001433 if (ObjCInterfaceType *lhsIT =
1434 dyn_cast<ObjCInterfaceType>(lhs.getCanonicalType().getTypePtr())) {
1435 ObjCQualifiedInterfaceType *rhsQI =
1436 dyn_cast<ObjCQualifiedInterfaceType>(rhs.getCanonicalType().getTypePtr());
Fariborz Jahanian274dbf02007-12-21 17:34:43 +00001437 return rhsQI && (lhsIT->getDecl() == rhsQI->getDecl());
1438 }
Ted Kremenek42730c52008-01-07 19:49:32 +00001439 else if (ObjCInterfaceType *rhsIT =
1440 dyn_cast<ObjCInterfaceType>(rhs.getCanonicalType().getTypePtr())) {
1441 ObjCQualifiedInterfaceType *lhsQI =
1442 dyn_cast<ObjCQualifiedInterfaceType>(lhs.getCanonicalType().getTypePtr());
Fariborz Jahanian274dbf02007-12-21 17:34:43 +00001443 return lhsQI && (rhsIT->getDecl() == lhsQI->getDecl());
1444 }
Steve Naroff85f0dc52007-10-15 20:41:53 +00001445 return false;
1446}
1447
Fariborz Jahanian9b842422008-01-07 20:12:21 +00001448/// Check that 'lhs' and 'rhs' are compatible interface types. Both types
1449/// must be canonical types.
Steve Naroff85f0dc52007-10-15 20:41:53 +00001450bool ASTContext::interfaceTypesAreCompatible(QualType lhs, QualType rhs) {
Fariborz Jahanian9b842422008-01-07 20:12:21 +00001451 assert (lhs->isCanonical() &&
1452 "interfaceTypesAreCompatible strip typedefs of lhs");
1453 assert (rhs->isCanonical() &&
1454 "interfaceTypesAreCompatible strip typedefs of rhs");
Fariborz Jahaniance2de812007-12-20 22:37:58 +00001455 if (lhs == rhs)
1456 return true;
Ted Kremenek42730c52008-01-07 19:49:32 +00001457 ObjCInterfaceType *lhsIT = cast<ObjCInterfaceType>(lhs.getTypePtr());
1458 ObjCInterfaceType *rhsIT = cast<ObjCInterfaceType>(rhs.getTypePtr());
1459 ObjCInterfaceDecl *rhsIDecl = rhsIT->getDecl();
1460 ObjCInterfaceDecl *lhsIDecl = lhsIT->getDecl();
Fariborz Jahaniance2de812007-12-20 22:37:58 +00001461 // rhs is derived from lhs it is OK; else it is not OK.
1462 while (rhsIDecl != NULL) {
1463 if (rhsIDecl == lhsIDecl)
1464 return true;
1465 rhsIDecl = rhsIDecl->getSuperClass();
1466 }
1467 return false;
Steve Naroff85f0dc52007-10-15 20:41:53 +00001468}
1469
Fariborz Jahanian12519d42007-12-12 01:00:23 +00001470bool ASTContext::QualifiedInterfaceTypesAreCompatible(QualType lhs,
1471 QualType rhs) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001472 ObjCQualifiedInterfaceType *lhsQI =
1473 dyn_cast<ObjCQualifiedInterfaceType>(lhs.getCanonicalType().getTypePtr());
Fariborz Jahanian12519d42007-12-12 01:00:23 +00001474 assert(lhsQI && "QualifiedInterfaceTypesAreCompatible - bad lhs type");
Ted Kremenek42730c52008-01-07 19:49:32 +00001475 ObjCQualifiedInterfaceType *rhsQI =
1476 dyn_cast<ObjCQualifiedInterfaceType>(rhs.getCanonicalType().getTypePtr());
Fariborz Jahanian12519d42007-12-12 01:00:23 +00001477 assert(rhsQI && "QualifiedInterfaceTypesAreCompatible - bad rhs type");
Fariborz Jahanian9b842422008-01-07 20:12:21 +00001478 if (!interfaceTypesAreCompatible(
1479 getObjCInterfaceType(lhsQI->getDecl()).getCanonicalType(),
1480 getObjCInterfaceType(rhsQI->getDecl()).getCanonicalType()))
Fariborz Jahanian12519d42007-12-12 01:00:23 +00001481 return false;
1482 /* All protocols in lhs must have a presense in rhs. */
1483 for (unsigned i =0; i < lhsQI->getNumProtocols(); i++) {
1484 bool match = false;
Ted Kremenek42730c52008-01-07 19:49:32 +00001485 ObjCProtocolDecl *lhsProto = lhsQI->getProtocols(i);
Fariborz Jahanian12519d42007-12-12 01:00:23 +00001486 for (unsigned j = 0; j < rhsQI->getNumProtocols(); j++) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001487 ObjCProtocolDecl *rhsProto = rhsQI->getProtocols(j);
Fariborz Jahanian12519d42007-12-12 01:00:23 +00001488 if (lhsProto == rhsProto) {
1489 match = true;
1490 break;
1491 }
1492 }
1493 if (!match)
1494 return false;
1495 }
1496 return true;
1497}
1498
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001499/// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the
1500/// inheritance hierarchy of 'rProto'.
Ted Kremenek42730c52008-01-07 19:49:32 +00001501static bool ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto,
1502 ObjCProtocolDecl *rProto) {
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001503 if (lProto == rProto)
1504 return true;
Ted Kremenek42730c52008-01-07 19:49:32 +00001505 ObjCProtocolDecl** RefPDecl = rProto->getReferencedProtocols();
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001506 for (unsigned i = 0; i < rProto->getNumReferencedProtocols(); i++)
1507 if (ProtocolCompatibleWithProtocol(lProto, RefPDecl[i]))
1508 return true;
1509 return false;
1510}
1511
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001512/// ClassImplementsProtocol - Checks that 'lProto' protocol
1513/// has been implemented in IDecl class, its super class or categories (if
1514/// lookupCategory is true).
Ted Kremenek42730c52008-01-07 19:49:32 +00001515static bool ClassImplementsProtocol(ObjCProtocolDecl *lProto,
1516 ObjCInterfaceDecl *IDecl,
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001517 bool lookupCategory) {
1518
1519 // 1st, look up the class.
Ted Kremenek42730c52008-01-07 19:49:32 +00001520 ObjCProtocolDecl **protoList = IDecl->getReferencedProtocols();
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001521 for (unsigned i = 0; i < IDecl->getNumIntfRefProtocols(); i++) {
1522 if (ProtocolCompatibleWithProtocol(lProto, protoList[i]))
1523 return true;
1524 }
1525
1526 // 2nd, look up the category.
1527 if (lookupCategory)
Ted Kremenek42730c52008-01-07 19:49:32 +00001528 for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl;
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001529 CDecl = CDecl->getNextClassCategory()) {
1530 protoList = CDecl->getReferencedProtocols();
1531 for (unsigned i = 0; i < CDecl->getNumReferencedProtocols(); i++) {
1532 if (ProtocolCompatibleWithProtocol(lProto, protoList[i]))
1533 return true;
1534 }
1535 }
1536
1537 // 3rd, look up the super class(s)
1538 if (IDecl->getSuperClass())
1539 return
1540 ClassImplementsProtocol(lProto, IDecl->getSuperClass(), lookupCategory);
1541
1542 return false;
1543}
1544
Ted Kremenek42730c52008-01-07 19:49:32 +00001545/// ObjCQualifiedIdTypesAreCompatible - Compares two types, at least
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001546/// one of which is a protocol qualified 'id' type. When 'compare'
1547/// is true it is for comparison; when false, for assignment/initialization.
Ted Kremenek42730c52008-01-07 19:49:32 +00001548bool ASTContext::ObjCQualifiedIdTypesAreCompatible(QualType lhs,
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001549 QualType rhs,
1550 bool compare) {
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001551 // match id<P..> with an 'id' type in all cases.
1552 if (const PointerType *PT = lhs->getAsPointerType()) {
1553 QualType PointeeTy = PT->getPointeeType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001554 if (isObjCIdType(PointeeTy) || PointeeTy->isVoidType())
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001555 return true;
1556
1557 }
1558 else if (const PointerType *PT = rhs->getAsPointerType()) {
1559 QualType PointeeTy = PT->getPointeeType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001560 if (isObjCIdType(PointeeTy) || PointeeTy->isVoidType())
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001561 return true;
1562
1563 }
1564
Ted Kremenek42730c52008-01-07 19:49:32 +00001565 ObjCQualifiedInterfaceType *lhsQI = 0;
1566 ObjCQualifiedInterfaceType *rhsQI = 0;
1567 ObjCInterfaceDecl *lhsID = 0;
1568 ObjCInterfaceDecl *rhsID = 0;
1569 ObjCQualifiedIdType *lhsQID = dyn_cast<ObjCQualifiedIdType>(lhs);
1570 ObjCQualifiedIdType *rhsQID = dyn_cast<ObjCQualifiedIdType>(rhs);
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001571
1572 if (lhsQID) {
1573 if (!rhsQID && rhs->getTypeClass() == Type::Pointer) {
1574 QualType rtype =
1575 cast<PointerType>(rhs.getCanonicalType())->getPointeeType();
1576 rhsQI =
Ted Kremenek42730c52008-01-07 19:49:32 +00001577 dyn_cast<ObjCQualifiedInterfaceType>(
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001578 rtype.getCanonicalType().getTypePtr());
Fariborz Jahanian87829072007-12-20 19:24:10 +00001579 if (!rhsQI) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001580 ObjCInterfaceType *IT = dyn_cast<ObjCInterfaceType>(
Fariborz Jahanian87829072007-12-20 19:24:10 +00001581 rtype.getCanonicalType().getTypePtr());
1582 if (IT)
1583 rhsID = IT->getDecl();
1584 }
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001585 }
Fariborz Jahanian87829072007-12-20 19:24:10 +00001586 if (!rhsQI && !rhsQID && !rhsID)
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001587 return false;
1588
Fariborz Jahaniance5528d2008-01-03 20:01:35 +00001589 unsigned numRhsProtocols = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +00001590 ObjCProtocolDecl **rhsProtoList = 0;
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001591 if (rhsQI) {
1592 numRhsProtocols = rhsQI->getNumProtocols();
1593 rhsProtoList = rhsQI->getReferencedProtocols();
1594 }
1595 else if (rhsQID) {
1596 numRhsProtocols = rhsQID->getNumProtocols();
1597 rhsProtoList = rhsQID->getReferencedProtocols();
1598 }
1599
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001600 for (unsigned i =0; i < lhsQID->getNumProtocols(); i++) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001601 ObjCProtocolDecl *lhsProto = lhsQID->getProtocols(i);
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001602 bool match = false;
1603
1604 // when comparing an id<P> on lhs with a static type on rhs,
1605 // see if static class implements all of id's protocols, directly or
1606 // through its super class and categories.
1607 if (rhsID) {
1608 if (ClassImplementsProtocol(lhsProto, rhsID, true))
1609 match = true;
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001610 }
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001611 else for (unsigned j = 0; j < numRhsProtocols; j++) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001612 ObjCProtocolDecl *rhsProto = rhsProtoList[j];
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001613 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
1614 compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) {
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001615 match = true;
1616 break;
1617 }
1618 }
1619 if (!match)
1620 return false;
1621 }
1622 }
1623 else if (rhsQID) {
1624 if (!lhsQID && lhs->getTypeClass() == Type::Pointer) {
1625 QualType ltype =
1626 cast<PointerType>(lhs.getCanonicalType())->getPointeeType();
1627 lhsQI =
Ted Kremenek42730c52008-01-07 19:49:32 +00001628 dyn_cast<ObjCQualifiedInterfaceType>(
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001629 ltype.getCanonicalType().getTypePtr());
Fariborz Jahanian87829072007-12-20 19:24:10 +00001630 if (!lhsQI) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001631 ObjCInterfaceType *IT = dyn_cast<ObjCInterfaceType>(
Fariborz Jahanian87829072007-12-20 19:24:10 +00001632 ltype.getCanonicalType().getTypePtr());
1633 if (IT)
1634 lhsID = IT->getDecl();
1635 }
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001636 }
Fariborz Jahanian87829072007-12-20 19:24:10 +00001637 if (!lhsQI && !lhsQID && !lhsID)
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001638 return false;
Fariborz Jahanian87829072007-12-20 19:24:10 +00001639
Fariborz Jahaniance5528d2008-01-03 20:01:35 +00001640 unsigned numLhsProtocols = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +00001641 ObjCProtocolDecl **lhsProtoList = 0;
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001642 if (lhsQI) {
1643 numLhsProtocols = lhsQI->getNumProtocols();
1644 lhsProtoList = lhsQI->getReferencedProtocols();
1645 }
Fariborz Jahanian87829072007-12-20 19:24:10 +00001646 else if (lhsQID) {
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001647 numLhsProtocols = lhsQID->getNumProtocols();
1648 lhsProtoList = lhsQID->getReferencedProtocols();
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001649 }
1650 bool match = false;
1651 // for static type vs. qualified 'id' type, check that class implements
1652 // one of 'id's protocols.
1653 if (lhsID) {
1654 for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001655 ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j);
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001656 if (ClassImplementsProtocol(rhsProto, lhsID, compare)) {
1657 match = true;
1658 break;
1659 }
1660 }
1661 }
1662 else for (unsigned i =0; i < numLhsProtocols; i++) {
1663 match = false;
Ted Kremenek42730c52008-01-07 19:49:32 +00001664 ObjCProtocolDecl *lhsProto = lhsProtoList[i];
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001665 for (unsigned j = 0; j < rhsQID->getNumProtocols(); j++) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001666 ObjCProtocolDecl *rhsProto = rhsQID->getProtocols(j);
Fariborz Jahaniancd71bf42007-12-21 00:33:59 +00001667 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) ||
1668 compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto)) {
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001669 match = true;
1670 break;
1671 }
1672 }
Fariborz Jahanianf4e68042007-12-21 22:22:33 +00001673 }
1674 if (!match)
1675 return false;
Fariborz Jahanian957442d2007-12-19 17:45:58 +00001676 }
1677 return true;
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001678}
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001679
Chris Lattner5003e8b2007-11-01 05:03:41 +00001680bool ASTContext::vectorTypesAreCompatible(QualType lhs, QualType rhs) {
1681 const VectorType *lVector = lhs->getAsVectorType();
1682 const VectorType *rVector = rhs->getAsVectorType();
1683
1684 if ((lVector->getElementType().getCanonicalType() ==
1685 rVector->getElementType().getCanonicalType()) &&
1686 (lVector->getNumElements() == rVector->getNumElements()))
1687 return true;
1688 return false;
1689}
1690
Steve Naroff85f0dc52007-10-15 20:41:53 +00001691// C99 6.2.7p1: If both are complete types, then the following additional
1692// requirements apply...FIXME (handle compatibility across source files).
1693bool ASTContext::tagTypesAreCompatible(QualType lhs, QualType rhs) {
Steve Naroff4a5e2072007-11-07 06:03:51 +00001694 // "Class" and "id" are compatible built-in structure types.
Ted Kremenek42730c52008-01-07 19:49:32 +00001695 if (isObjCIdType(lhs) && isObjCClassType(rhs) ||
1696 isObjCClassType(lhs) && isObjCIdType(rhs))
Steve Naroff4a5e2072007-11-07 06:03:51 +00001697 return true;
Eli Friedmane7fb03a2008-02-15 06:03:44 +00001698
1699 // Within a translation unit a tag type is
1700 // only compatible with itself.
1701 return lhs.getCanonicalType() == rhs.getCanonicalType();
Steve Naroff85f0dc52007-10-15 20:41:53 +00001702}
1703
1704bool ASTContext::pointerTypesAreCompatible(QualType lhs, QualType rhs) {
1705 // C99 6.7.5.1p2: For two pointer types to be compatible, both shall be
1706 // identically qualified and both shall be pointers to compatible types.
Chris Lattner35fef522008-02-20 20:55:12 +00001707 if (lhs.getCVRQualifiers() != rhs.getCVRQualifiers() ||
1708 lhs.getAddressSpace() != rhs.getAddressSpace())
Steve Naroff85f0dc52007-10-15 20:41:53 +00001709 return false;
1710
1711 QualType ltype = cast<PointerType>(lhs.getCanonicalType())->getPointeeType();
1712 QualType rtype = cast<PointerType>(rhs.getCanonicalType())->getPointeeType();
1713
1714 return typesAreCompatible(ltype, rtype);
1715}
1716
Bill Wendling6a9d8542007-12-03 07:33:35 +00001717// C++ 5.17p6: When the left operand of an assignment operator denotes a
Steve Naroff85f0dc52007-10-15 20:41:53 +00001718// reference to T, the operation assigns to the object of type T denoted by the
1719// reference.
1720bool ASTContext::referenceTypesAreCompatible(QualType lhs, QualType rhs) {
1721 QualType ltype = lhs;
1722
1723 if (lhs->isReferenceType())
Chris Lattnercfac88d2008-04-02 17:35:06 +00001724 ltype = cast<ReferenceType>(lhs.getCanonicalType())->getPointeeType();
Steve Naroff85f0dc52007-10-15 20:41:53 +00001725
1726 QualType rtype = rhs;
1727
1728 if (rhs->isReferenceType())
Chris Lattnercfac88d2008-04-02 17:35:06 +00001729 rtype = cast<ReferenceType>(rhs.getCanonicalType())->getPointeeType();
Steve Naroff85f0dc52007-10-15 20:41:53 +00001730
1731 return typesAreCompatible(ltype, rtype);
1732}
1733
1734bool ASTContext::functionTypesAreCompatible(QualType lhs, QualType rhs) {
1735 const FunctionType *lbase = cast<FunctionType>(lhs.getCanonicalType());
1736 const FunctionType *rbase = cast<FunctionType>(rhs.getCanonicalType());
1737 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
1738 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
1739
1740 // first check the return types (common between C99 and K&R).
1741 if (!typesAreCompatible(lbase->getResultType(), rbase->getResultType()))
1742 return false;
1743
1744 if (lproto && rproto) { // two C99 style function prototypes
1745 unsigned lproto_nargs = lproto->getNumArgs();
1746 unsigned rproto_nargs = rproto->getNumArgs();
1747
1748 if (lproto_nargs != rproto_nargs)
1749 return false;
1750
1751 // both prototypes have the same number of arguments.
1752 if ((lproto->isVariadic() && !rproto->isVariadic()) ||
1753 (rproto->isVariadic() && !lproto->isVariadic()))
1754 return false;
1755
1756 // The use of ellipsis agree...now check the argument types.
1757 for (unsigned i = 0; i < lproto_nargs; i++)
Steve Naroff53b6f4c2008-01-30 19:17:43 +00001758 // C99 6.7.5.3p15: ...and each parameter declared with qualified type
1759 // is taken as having the unqualified version of it's declared type.
Steve Naroffdec17fe2008-01-29 00:15:50 +00001760 if (!typesAreCompatible(lproto->getArgType(i).getUnqualifiedType(),
Steve Naroff53b6f4c2008-01-30 19:17:43 +00001761 rproto->getArgType(i).getUnqualifiedType()))
Steve Naroff85f0dc52007-10-15 20:41:53 +00001762 return false;
1763 return true;
1764 }
1765 if (!lproto && !rproto) // two K&R style function decls, nothing to do.
1766 return true;
1767
1768 // we have a mixture of K&R style with C99 prototypes
1769 const FunctionTypeProto *proto = lproto ? lproto : rproto;
1770
1771 if (proto->isVariadic())
1772 return false;
1773
1774 // FIXME: Each parameter type T in the prototype must be compatible with the
1775 // type resulting from applying the usual argument conversions to T.
1776 return true;
1777}
1778
1779bool ASTContext::arrayTypesAreCompatible(QualType lhs, QualType rhs) {
Eli Friedman1e7537832008-02-06 04:53:22 +00001780 // Compatible arrays must have compatible element types
1781 QualType ltype = lhs->getAsArrayType()->getElementType();
1782 QualType rtype = rhs->getAsArrayType()->getElementType();
1783
Steve Naroff85f0dc52007-10-15 20:41:53 +00001784 if (!typesAreCompatible(ltype, rtype))
1785 return false;
Eli Friedman1e7537832008-02-06 04:53:22 +00001786
1787 // Compatible arrays must be the same size
1788 if (const ConstantArrayType* LCAT = lhs->getAsConstantArrayType())
1789 if (const ConstantArrayType* RCAT = rhs->getAsConstantArrayType())
1790 return RCAT->getSize() == LCAT->getSize();
1791
Steve Naroff85f0dc52007-10-15 20:41:53 +00001792 return true;
1793}
1794
1795/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
1796/// both shall have the identically qualified version of a compatible type.
1797/// C99 6.2.7p1: Two types have compatible types if their types are the
1798/// same. See 6.7.[2,3,5] for additional rules.
1799bool ASTContext::typesAreCompatible(QualType lhs, QualType rhs) {
1800 QualType lcanon = lhs.getCanonicalType();
1801 QualType rcanon = rhs.getCanonicalType();
Chris Lattner4d5670b2008-04-03 05:07:04 +00001802
Steve Naroff85f0dc52007-10-15 20:41:53 +00001803 // If two types are identical, they are are compatible
1804 if (lcanon == rcanon)
1805 return true;
Chris Lattner4d5670b2008-04-03 05:07:04 +00001806
1807 if (lcanon.getCVRQualifiers() != rcanon.getCVRQualifiers() ||
1808 lcanon.getAddressSpace() != rcanon.getAddressSpace())
1809 return false;
Bill Wendling6a9d8542007-12-03 07:33:35 +00001810
1811 // C++ [expr]: If an expression initially has the type "reference to T", the
1812 // type is adjusted to "T" prior to any further analysis, the expression
1813 // designates the object or function denoted by the reference, and the
1814 // expression is an lvalue.
Chris Lattnerc38d4522008-01-14 05:45:46 +00001815 if (ReferenceType *RT = dyn_cast<ReferenceType>(lcanon))
Chris Lattnercfac88d2008-04-02 17:35:06 +00001816 lcanon = RT->getPointeeType();
Chris Lattnerc38d4522008-01-14 05:45:46 +00001817 if (ReferenceType *RT = dyn_cast<ReferenceType>(rcanon))
Chris Lattnercfac88d2008-04-02 17:35:06 +00001818 rcanon = RT->getPointeeType();
Chris Lattnerc38d4522008-01-14 05:45:46 +00001819
1820 Type::TypeClass LHSClass = lcanon->getTypeClass();
1821 Type::TypeClass RHSClass = rcanon->getTypeClass();
1822
1823 // We want to consider the two function types to be the same for these
1824 // comparisons, just force one to the other.
1825 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
1826 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman398837e2008-02-12 08:23:06 +00001827
1828 // Same as above for arrays
1829 if (LHSClass == Type::VariableArray) LHSClass = Type::ConstantArray;
1830 if (RHSClass == Type::VariableArray) RHSClass = Type::ConstantArray;
Eli Friedman8ff07782008-02-15 18:16:39 +00001831 if (LHSClass == Type::IncompleteArray) LHSClass = Type::ConstantArray;
1832 if (RHSClass == Type::IncompleteArray) RHSClass = Type::ConstantArray;
Steve Naroff85f0dc52007-10-15 20:41:53 +00001833
Steve Naroffc88babe2008-01-09 22:43:08 +00001834 // If the canonical type classes don't match...
Chris Lattnerc38d4522008-01-14 05:45:46 +00001835 if (LHSClass != RHSClass) {
Steve Naroff85f0dc52007-10-15 20:41:53 +00001836 // For Objective-C, it is possible for two types to be compatible
1837 // when their classes don't match (when dealing with "id"). If either type
1838 // is an interface, we defer to objcTypesAreCompatible().
Ted Kremenek42730c52008-01-07 19:49:32 +00001839 if (lcanon->isObjCInterfaceType() || rcanon->isObjCInterfaceType())
Steve Naroff85f0dc52007-10-15 20:41:53 +00001840 return objcTypesAreCompatible(lcanon, rcanon);
Steve Naroff53b6f4c2008-01-30 19:17:43 +00001841
Chris Lattnerc38d4522008-01-14 05:45:46 +00001842 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
1843 // a signed integer type, or an unsigned integer type.
Eli Friedmanad6c06c2008-02-12 08:46:17 +00001844 if (lcanon->isEnumeralType() && rcanon->isIntegralType()) {
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001845 EnumDecl* EDecl = cast<EnumType>(lcanon)->getDecl();
Eli Friedmanad6c06c2008-02-12 08:46:17 +00001846 return EDecl->getIntegerType() == rcanon;
1847 }
1848 if (rcanon->isEnumeralType() && lcanon->isIntegralType()) {
Chris Lattner2bf1d6c2008-04-06 22:05:18 +00001849 EnumDecl* EDecl = cast<EnumType>(rcanon)->getDecl();
Eli Friedmanad6c06c2008-02-12 08:46:17 +00001850 return EDecl->getIntegerType() == lcanon;
1851 }
Chris Lattnerc38d4522008-01-14 05:45:46 +00001852
Steve Naroff85f0dc52007-10-15 20:41:53 +00001853 return false;
1854 }
Steve Naroffc88babe2008-01-09 22:43:08 +00001855 // The canonical type classes match.
Chris Lattnerc38d4522008-01-14 05:45:46 +00001856 switch (LHSClass) {
1857 case Type::FunctionProto: assert(0 && "Canonicalized away above");
1858 case Type::Pointer:
1859 return pointerTypesAreCompatible(lcanon, rcanon);
1860 case Type::ConstantArray:
1861 case Type::VariableArray:
Eli Friedman8ff07782008-02-15 18:16:39 +00001862 case Type::IncompleteArray:
Chris Lattnerc38d4522008-01-14 05:45:46 +00001863 return arrayTypesAreCompatible(lcanon, rcanon);
1864 case Type::FunctionNoProto:
1865 return functionTypesAreCompatible(lcanon, rcanon);
1866 case Type::Tagged: // handle structures, unions
1867 return tagTypesAreCompatible(lcanon, rcanon);
1868 case Type::Builtin:
1869 return builtinTypesAreCompatible(lcanon, rcanon);
1870 case Type::ObjCInterface:
1871 return interfaceTypesAreCompatible(lcanon, rcanon);
1872 case Type::Vector:
1873 case Type::OCUVector:
1874 return vectorTypesAreCompatible(lcanon, rcanon);
1875 case Type::ObjCQualifiedInterface:
1876 return QualifiedInterfaceTypesAreCompatible(lcanon, rcanon);
1877 default:
1878 assert(0 && "unexpected type");
Steve Naroff85f0dc52007-10-15 20:41:53 +00001879 }
1880 return true; // should never get here...
1881}
Ted Kremenek738e6c02007-10-31 17:10:13 +00001882
Ted Kremenek738e6c02007-10-31 17:10:13 +00001883/// Emit - Serialize an ASTContext object to Bitcode.
1884void ASTContext::Emit(llvm::Serializer& S) const {
Ted Kremenek9af4d5c2007-10-31 20:00:03 +00001885 S.EmitRef(SourceMgr);
1886 S.EmitRef(Target);
1887 S.EmitRef(Idents);
1888 S.EmitRef(Selectors);
Ted Kremenek738e6c02007-10-31 17:10:13 +00001889
Ted Kremenek68228a92007-10-31 22:44:07 +00001890 // Emit the size of the type vector so that we can reserve that size
1891 // when we reconstitute the ASTContext object.
Ted Kremenek0199d9f2007-11-06 22:26:16 +00001892 S.EmitInt(Types.size());
1893
Ted Kremenek034a78c2007-11-13 22:02:55 +00001894 for (std::vector<Type*>::const_iterator I=Types.begin(), E=Types.end();
1895 I!=E;++I)
1896 (*I)->Emit(S);
Ted Kremenek0199d9f2007-11-06 22:26:16 +00001897
Ted Kremeneke1fed7a2007-11-01 18:11:32 +00001898 // FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
Ted Kremenek738e6c02007-10-31 17:10:13 +00001899}
1900
Ted Kremenekacba3612007-11-13 00:25:37 +00001901ASTContext* ASTContext::Create(llvm::Deserializer& D) {
Ted Kremenek68228a92007-10-31 22:44:07 +00001902 SourceManager &SM = D.ReadRef<SourceManager>();
1903 TargetInfo &t = D.ReadRef<TargetInfo>();
1904 IdentifierTable &idents = D.ReadRef<IdentifierTable>();
1905 SelectorTable &sels = D.ReadRef<SelectorTable>();
Chris Lattnereee57c02008-04-04 06:12:32 +00001906
Ted Kremenek68228a92007-10-31 22:44:07 +00001907 unsigned size_reserve = D.ReadInt();
1908
1909 ASTContext* A = new ASTContext(SM,t,idents,sels,size_reserve);
1910
Ted Kremenek034a78c2007-11-13 22:02:55 +00001911 for (unsigned i = 0; i < size_reserve; ++i)
1912 Type::Create(*A,i,D);
Chris Lattnereee57c02008-04-04 06:12:32 +00001913
Ted Kremeneke1fed7a2007-11-01 18:11:32 +00001914 // FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
Ted Kremenek68228a92007-10-31 22:44:07 +00001915
1916 return A;
1917}