blob: 72aef4269be636c20642e72b9680938de0e6736f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ASTContext.cpp - Context to hold long-lived AST nodes ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ASTContext interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +000015#include "clang/AST/DeclCXX.h"
Steve Naroff980e5082007-10-01 19:00:59 +000016#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000017#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/AST/Expr.h"
19#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Basic/TargetInfo.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000021#include "llvm/ADT/StringExtras.h"
Ted Kremenek7192f8e2007-10-31 17:10:13 +000022#include "llvm/Bitcode/Serialize.h"
23#include "llvm/Bitcode/Deserialize.h"
Nate Begeman6fe7c8a2009-01-18 06:42:49 +000024#include "llvm/Support/MathExtras.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000025
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
28enum FloatingRank {
29 FloatRank, DoubleRank, LongDoubleRank
30};
31
Chris Lattner61710852008-10-05 17:34:18 +000032ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM,
33 TargetInfo &t,
Daniel Dunbare91593e2008-08-11 04:54:23 +000034 IdentifierTable &idents, SelectorTable &sels,
Steve Naroffc0ac4922009-01-27 23:20:32 +000035 bool FreeMem, unsigned size_reserve) :
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +000036 CFConstantStringTypeDecl(0), ObjCFastEnumerationStateTypeDecl(0),
Steve Naroffc0ac4922009-01-27 23:20:32 +000037 SourceMgr(SM), LangOpts(LOpts), FreeMemory(FreeMem), Target(t),
Douglas Gregor2e1cd422008-11-17 14:58:09 +000038 Idents(idents), Selectors(sels)
Daniel Dunbare91593e2008-08-11 04:54:23 +000039{
40 if (size_reserve > 0) Types.reserve(size_reserve);
41 InitBuiltinTypes();
42 BuiltinInfo.InitializeBuiltins(idents, Target);
43 TUDecl = TranslationUnitDecl::Create(*this);
44}
45
Reid Spencer5f016e22007-07-11 17:01:13 +000046ASTContext::~ASTContext() {
47 // Deallocate all the types.
48 while (!Types.empty()) {
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000049 Types.back()->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000050 Types.pop_back();
51 }
Eli Friedmanb26153c2008-05-27 03:08:09 +000052
Nuno Lopesb74668e2008-12-17 22:30:25 +000053 {
54 llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
55 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end();
56 while (I != E) {
57 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
58 delete R;
59 }
60 }
61
62 {
63 llvm::DenseMap<const ObjCInterfaceDecl*, const ASTRecordLayout*>::iterator
64 I = ASTObjCInterfaces.begin(), E = ASTObjCInterfaces.end();
65 while (I != E) {
66 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
67 delete R;
68 }
69 }
70
71 {
72 llvm::DenseMap<const ObjCInterfaceDecl*, const RecordDecl*>::iterator
73 I = ASTRecordForInterface.begin(), E = ASTRecordForInterface.end();
74 while (I != E) {
75 RecordDecl *R = const_cast<RecordDecl*>((I++)->second);
76 R->Destroy(*this);
77 }
78 }
79
Eli Friedmanb26153c2008-05-27 03:08:09 +000080 TUDecl->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000081}
82
83void ASTContext::PrintStats() const {
84 fprintf(stderr, "*** AST Context Stats:\n");
85 fprintf(stderr, " %d types total.\n", (int)Types.size());
86 unsigned NumBuiltin = 0, NumPointer = 0, NumArray = 0, NumFunctionP = 0;
Daniel Dunbar248e1c02008-09-26 03:23:00 +000087 unsigned NumVector = 0, NumComplex = 0, NumBlockPointer = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000088 unsigned NumFunctionNP = 0, NumTypeName = 0, NumTagged = 0, NumReference = 0;
Sebastian Redlf30208a2009-01-24 21:16:55 +000089 unsigned NumMemberPointer = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000090
91 unsigned NumTagStruct = 0, NumTagUnion = 0, NumTagEnum = 0, NumTagClass = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000092 unsigned NumObjCInterfaces = 0, NumObjCQualifiedInterfaces = 0;
93 unsigned NumObjCQualifiedIds = 0;
Steve Naroff6cc18962008-05-21 15:59:22 +000094 unsigned NumTypeOfTypes = 0, NumTypeOfExprs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000095
96 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
97 Type *T = Types[i];
98 if (isa<BuiltinType>(T))
99 ++NumBuiltin;
100 else if (isa<PointerType>(T))
101 ++NumPointer;
Daniel Dunbar248e1c02008-09-26 03:23:00 +0000102 else if (isa<BlockPointerType>(T))
103 ++NumBlockPointer;
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 else if (isa<ReferenceType>(T))
105 ++NumReference;
Sebastian Redlf30208a2009-01-24 21:16:55 +0000106 else if (isa<MemberPointerType>(T))
107 ++NumMemberPointer;
Chris Lattner6d87fc62007-07-18 05:50:59 +0000108 else if (isa<ComplexType>(T))
109 ++NumComplex;
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 else if (isa<ArrayType>(T))
111 ++NumArray;
Chris Lattner6d87fc62007-07-18 05:50:59 +0000112 else if (isa<VectorType>(T))
113 ++NumVector;
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 else if (isa<FunctionTypeNoProto>(T))
115 ++NumFunctionNP;
116 else if (isa<FunctionTypeProto>(T))
117 ++NumFunctionP;
118 else if (isa<TypedefType>(T))
119 ++NumTypeName;
120 else if (TagType *TT = dyn_cast<TagType>(T)) {
121 ++NumTagged;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000122 switch (TT->getDecl()->getTagKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 default: assert(0 && "Unknown tagged type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000124 case TagDecl::TK_struct: ++NumTagStruct; break;
125 case TagDecl::TK_union: ++NumTagUnion; break;
126 case TagDecl::TK_class: ++NumTagClass; break;
127 case TagDecl::TK_enum: ++NumTagEnum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000129 } else if (isa<ObjCInterfaceType>(T))
130 ++NumObjCInterfaces;
131 else if (isa<ObjCQualifiedInterfaceType>(T))
132 ++NumObjCQualifiedInterfaces;
133 else if (isa<ObjCQualifiedIdType>(T))
134 ++NumObjCQualifiedIds;
Steve Naroff6cc18962008-05-21 15:59:22 +0000135 else if (isa<TypeOfType>(T))
136 ++NumTypeOfTypes;
137 else if (isa<TypeOfExpr>(T))
138 ++NumTypeOfExprs;
Steve Naroff3f128ad2007-09-17 14:16:13 +0000139 else {
Chris Lattnerbeb66362007-12-12 06:43:05 +0000140 QualType(T, 0).dump();
Reid Spencer5f016e22007-07-11 17:01:13 +0000141 assert(0 && "Unknown type!");
142 }
143 }
144
145 fprintf(stderr, " %d builtin types\n", NumBuiltin);
146 fprintf(stderr, " %d pointer types\n", NumPointer);
Daniel Dunbar248e1c02008-09-26 03:23:00 +0000147 fprintf(stderr, " %d block pointer types\n", NumBlockPointer);
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 fprintf(stderr, " %d reference types\n", NumReference);
Sebastian Redlf30208a2009-01-24 21:16:55 +0000149 fprintf(stderr, " %d member pointer types\n", NumMemberPointer);
Chris Lattner6d87fc62007-07-18 05:50:59 +0000150 fprintf(stderr, " %d complex types\n", NumComplex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 fprintf(stderr, " %d array types\n", NumArray);
Chris Lattner6d87fc62007-07-18 05:50:59 +0000152 fprintf(stderr, " %d vector types\n", NumVector);
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 fprintf(stderr, " %d function types with proto\n", NumFunctionP);
154 fprintf(stderr, " %d function types with no proto\n", NumFunctionNP);
155 fprintf(stderr, " %d typename (typedef) types\n", NumTypeName);
156 fprintf(stderr, " %d tagged types\n", NumTagged);
157 fprintf(stderr, " %d struct types\n", NumTagStruct);
158 fprintf(stderr, " %d union types\n", NumTagUnion);
159 fprintf(stderr, " %d class types\n", NumTagClass);
160 fprintf(stderr, " %d enum types\n", NumTagEnum);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000161 fprintf(stderr, " %d interface types\n", NumObjCInterfaces);
Chris Lattnerbeb66362007-12-12 06:43:05 +0000162 fprintf(stderr, " %d protocol qualified interface types\n",
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000163 NumObjCQualifiedInterfaces);
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000164 fprintf(stderr, " %d protocol qualified id types\n",
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000165 NumObjCQualifiedIds);
Steve Naroff6cc18962008-05-21 15:59:22 +0000166 fprintf(stderr, " %d typeof types\n", NumTypeOfTypes);
167 fprintf(stderr, " %d typeof exprs\n", NumTypeOfExprs);
168
Reid Spencer5f016e22007-07-11 17:01:13 +0000169 fprintf(stderr, "Total bytes = %d\n", int(NumBuiltin*sizeof(BuiltinType)+
170 NumPointer*sizeof(PointerType)+NumArray*sizeof(ArrayType)+
Chris Lattner6d87fc62007-07-18 05:50:59 +0000171 NumComplex*sizeof(ComplexType)+NumVector*sizeof(VectorType)+
Sebastian Redlf30208a2009-01-24 21:16:55 +0000172 NumMemberPointer*sizeof(MemberPointerType)+
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 NumFunctionP*sizeof(FunctionTypeProto)+
174 NumFunctionNP*sizeof(FunctionTypeNoProto)+
Steve Naroff6cc18962008-05-21 15:59:22 +0000175 NumTypeName*sizeof(TypedefType)+NumTagged*sizeof(TagType)+
176 NumTypeOfTypes*sizeof(TypeOfType)+NumTypeOfExprs*sizeof(TypeOfExpr)));
Reid Spencer5f016e22007-07-11 17:01:13 +0000177}
178
179
180void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
Steve Narofff83820b2009-01-27 22:08:43 +0000181 Types.push_back((R = QualType(new (*this,8) BuiltinType(K),0)).getTypePtr());
Reid Spencer5f016e22007-07-11 17:01:13 +0000182}
183
Reid Spencer5f016e22007-07-11 17:01:13 +0000184void ASTContext::InitBuiltinTypes() {
185 assert(VoidTy.isNull() && "Context reinitialized?");
186
187 // C99 6.2.5p19.
188 InitBuiltinType(VoidTy, BuiltinType::Void);
189
190 // C99 6.2.5p2.
191 InitBuiltinType(BoolTy, BuiltinType::Bool);
192 // C99 6.2.5p3.
Chris Lattner98be4942008-03-05 18:54:05 +0000193 if (Target.isCharSigned())
Reid Spencer5f016e22007-07-11 17:01:13 +0000194 InitBuiltinType(CharTy, BuiltinType::Char_S);
195 else
196 InitBuiltinType(CharTy, BuiltinType::Char_U);
197 // C99 6.2.5p4.
198 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
199 InitBuiltinType(ShortTy, BuiltinType::Short);
200 InitBuiltinType(IntTy, BuiltinType::Int);
201 InitBuiltinType(LongTy, BuiltinType::Long);
202 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
203
204 // C99 6.2.5p6.
205 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
206 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
207 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
208 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
209 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
210
211 // C99 6.2.5p10.
212 InitBuiltinType(FloatTy, BuiltinType::Float);
213 InitBuiltinType(DoubleTy, BuiltinType::Double);
214 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000215
216 // C++ 3.9.1p5
217 InitBuiltinType(WCharTy, BuiltinType::WChar);
218
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000219 // Placeholder type for functions.
Douglas Gregor898574e2008-12-05 23:32:09 +0000220 InitBuiltinType(OverloadTy, BuiltinType::Overload);
221
222 // Placeholder type for type-dependent expressions whose type is
223 // completely unknown. No code should ever check a type against
224 // DependentTy and users should never see it; however, it is here to
225 // help diagnose failures to properly check for type-dependent
226 // expressions.
227 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000228
Reid Spencer5f016e22007-07-11 17:01:13 +0000229 // C99 6.2.5p11.
230 FloatComplexTy = getComplexType(FloatTy);
231 DoubleComplexTy = getComplexType(DoubleTy);
232 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000233
Steve Naroff7e219e42007-10-15 14:41:52 +0000234 BuiltinVaListType = QualType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000235 ObjCIdType = QualType();
Steve Naroff7e219e42007-10-15 14:41:52 +0000236 IdStructType = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000237 ObjCClassType = QualType();
Anders Carlsson8baaca52007-10-31 02:53:19 +0000238 ClassStructType = 0;
239
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000240 ObjCConstantStringType = QualType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000241
242 // void * type
243 VoidPtrTy = getPointerType(VoidTy);
Reid Spencer5f016e22007-07-11 17:01:13 +0000244}
245
Chris Lattner464175b2007-07-18 17:52:12 +0000246//===----------------------------------------------------------------------===//
247// Type Sizing and Analysis
248//===----------------------------------------------------------------------===//
Chris Lattnera7674d82007-07-13 22:13:22 +0000249
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000250/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
251/// scalar floating point type.
252const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
253 const BuiltinType *BT = T->getAsBuiltinType();
254 assert(BT && "Not a floating point type!");
255 switch (BT->getKind()) {
256 default: assert(0 && "Not a floating point type!");
257 case BuiltinType::Float: return Target.getFloatFormat();
258 case BuiltinType::Double: return Target.getDoubleFormat();
259 case BuiltinType::LongDouble: return Target.getLongDoubleFormat();
260 }
261}
262
Chris Lattneraf707ab2009-01-24 21:53:27 +0000263/// getDeclAlign - Return a conservative estimate of the alignment of the
264/// specified decl. Note that bitfields do not have a valid alignment, so
265/// this method will assert on them.
266unsigned ASTContext::getDeclAlign(const Decl *D) {
267 // FIXME: If attribute(align) is specified on the decl, round up to it.
268
269 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
270 QualType T = VD->getType();
271 // Incomplete or function types default to 1.
272 if (T->isIncompleteType() || T->isFunctionType())
273 return 1;
274
275 while (isa<VariableArrayType>(T) || isa<IncompleteArrayType>(T))
276 T = cast<ArrayType>(T)->getElementType();
277
278 return getTypeAlign(T);
279 }
280
281 return 1;
282}
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000283
Chris Lattnera7674d82007-07-13 22:13:22 +0000284/// getTypeSize - Return the size of the specified type, in bits. This method
285/// does not work on incomplete types.
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000286std::pair<uint64_t, unsigned>
Daniel Dunbar1d751182008-11-08 05:48:37 +0000287ASTContext::getTypeInfo(const Type *T) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000288 T = getCanonicalType(T);
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000289 uint64_t Width;
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000290 unsigned Align;
Chris Lattnera7674d82007-07-13 22:13:22 +0000291 switch (T->getTypeClass()) {
Chris Lattner030d8842007-07-19 22:06:24 +0000292 case Type::TypeName: assert(0 && "Not a canonical type!");
Chris Lattner692233e2007-07-13 22:27:08 +0000293 case Type::FunctionNoProto:
294 case Type::FunctionProto:
Chris Lattner5d2a6302007-07-18 18:26:58 +0000295 default:
Chris Lattnerb1c2df92007-07-20 18:13:33 +0000296 assert(0 && "Incomplete types have no size!");
Steve Narofffb22d962007-08-30 01:06:46 +0000297 case Type::VariableArray:
298 assert(0 && "VLAs not implemented yet!");
Douglas Gregor898574e2008-12-05 23:32:09 +0000299 case Type::DependentSizedArray:
300 assert(0 && "Dependently-sized arrays don't have a known size");
Steve Narofffb22d962007-08-30 01:06:46 +0000301 case Type::ConstantArray: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000302 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Steve Narofffb22d962007-08-30 01:06:46 +0000303
Chris Lattner98be4942008-03-05 18:54:05 +0000304 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000305 Width = EltInfo.first*CAT->getSize().getZExtValue();
Chris Lattner030d8842007-07-19 22:06:24 +0000306 Align = EltInfo.second;
307 break;
Christopher Lamb5c09a022007-12-29 05:10:55 +0000308 }
Nate Begeman213541a2008-04-18 23:10:10 +0000309 case Type::ExtVector:
Chris Lattner030d8842007-07-19 22:06:24 +0000310 case Type::Vector: {
311 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000312 getTypeInfo(cast<VectorType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000313 Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
Eli Friedman4bd998b2008-05-30 09:31:38 +0000314 Align = Width;
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000315 // If the alignment is not a power of 2, round up to the next power of 2.
316 // This happens for non-power-of-2 length vectors.
317 // FIXME: this should probably be a target property.
318 Align = 1 << llvm::Log2_32_Ceil(Align);
Chris Lattner030d8842007-07-19 22:06:24 +0000319 break;
320 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000321
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000322 case Type::Builtin:
Chris Lattnera7674d82007-07-13 22:13:22 +0000323 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner692233e2007-07-13 22:27:08 +0000324 default: assert(0 && "Unknown builtin type!");
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000325 case BuiltinType::Void:
326 assert(0 && "Incomplete types have no size!");
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000327 case BuiltinType::Bool:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000328 Width = Target.getBoolWidth();
329 Align = Target.getBoolAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000330 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000331 case BuiltinType::Char_S:
332 case BuiltinType::Char_U:
333 case BuiltinType::UChar:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000334 case BuiltinType::SChar:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000335 Width = Target.getCharWidth();
336 Align = Target.getCharAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000337 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000338 case BuiltinType::WChar:
339 Width = Target.getWCharWidth();
340 Align = Target.getWCharAlign();
341 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000342 case BuiltinType::UShort:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000343 case BuiltinType::Short:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000344 Width = Target.getShortWidth();
345 Align = Target.getShortAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000346 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000347 case BuiltinType::UInt:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000348 case BuiltinType::Int:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000349 Width = Target.getIntWidth();
350 Align = Target.getIntAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000351 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000352 case BuiltinType::ULong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000353 case BuiltinType::Long:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000354 Width = Target.getLongWidth();
355 Align = Target.getLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000356 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000357 case BuiltinType::ULongLong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000358 case BuiltinType::LongLong:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000359 Width = Target.getLongLongWidth();
360 Align = Target.getLongLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000361 break;
362 case BuiltinType::Float:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000363 Width = Target.getFloatWidth();
364 Align = Target.getFloatAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000365 break;
366 case BuiltinType::Double:
Chris Lattner5426bf62008-04-07 07:01:58 +0000367 Width = Target.getDoubleWidth();
368 Align = Target.getDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000369 break;
370 case BuiltinType::LongDouble:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000371 Width = Target.getLongDoubleWidth();
372 Align = Target.getLongDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000373 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000374 }
Chris Lattnerbfef6d72007-07-15 23:46:53 +0000375 break;
Christopher Lambebb97e92008-02-04 02:31:56 +0000376 case Type::ASQual:
Chris Lattner98be4942008-03-05 18:54:05 +0000377 // FIXME: Pointers into different addr spaces could have different sizes and
378 // alignment requirements: getPointerInfo should take an AddrSpace.
379 return getTypeInfo(QualType(cast<ASQualType>(T)->getBaseType(), 0));
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000380 case Type::ObjCQualifiedId:
Chris Lattner5426bf62008-04-07 07:01:58 +0000381 Width = Target.getPointerWidth(0);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000382 Align = Target.getPointerAlign(0);
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000383 break;
Steve Naroff485eeff2008-09-24 15:05:44 +0000384 case Type::BlockPointer: {
385 unsigned AS = cast<BlockPointerType>(T)->getPointeeType().getAddressSpace();
386 Width = Target.getPointerWidth(AS);
387 Align = Target.getPointerAlign(AS);
388 break;
389 }
Chris Lattnerf72a4432008-03-08 08:34:58 +0000390 case Type::Pointer: {
391 unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
Chris Lattner5426bf62008-04-07 07:01:58 +0000392 Width = Target.getPointerWidth(AS);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000393 Align = Target.getPointerAlign(AS);
394 break;
395 }
Chris Lattnera7674d82007-07-13 22:13:22 +0000396 case Type::Reference:
Chris Lattner7ab2ed82007-07-13 22:16:13 +0000397 // "When applied to a reference or a reference type, the result is the size
Chris Lattner5d2a6302007-07-18 18:26:58 +0000398 // of the referenced type." C++98 5.3.3p2: expr.sizeof.
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000399 // FIXME: This is wrong for struct layout: a reference in a struct has
400 // pointer size.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000401 return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
Sebastian Redlf30208a2009-01-24 21:16:55 +0000402 case Type::MemberPointer: {
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000403 // FIXME: This is not only platform- but also ABI-dependent. We follow
Sebastian Redlf30208a2009-01-24 21:16:55 +0000404 // the GCC ABI, where pointers to data are one pointer large, pointers to
405 // functions two pointers. But if we want to support ABI compatibility with
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000406 // other compilers too, we need to delegate this completely to TargetInfo
407 // or some ABI abstraction layer.
Sebastian Redlf30208a2009-01-24 21:16:55 +0000408 QualType Pointee = cast<MemberPointerType>(T)->getPointeeType();
409 unsigned AS = Pointee.getAddressSpace();
410 Width = Target.getPointerWidth(AS);
411 if (Pointee->isFunctionType())
412 Width *= 2;
413 Align = Target.getPointerAlign(AS);
414 // GCC aligns at single pointer width.
415 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000416 case Type::Complex: {
417 // Complex types have the same alignment as their elements, but twice the
418 // size.
419 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000420 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000421 Width = EltInfo.first*2;
Chris Lattner5d2a6302007-07-18 18:26:58 +0000422 Align = EltInfo.second;
423 break;
424 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000425 case Type::ObjCInterface: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000426 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel44a3dde2008-06-04 21:54:36 +0000427 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
428 Width = Layout.getSize();
429 Align = Layout.getAlignment();
430 break;
431 }
Chris Lattner71763312008-04-06 22:05:18 +0000432 case Type::Tagged: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000433 const TagType *TT = cast<TagType>(T);
434
435 if (TT->getDecl()->isInvalidDecl()) {
Chris Lattner8389eab2008-08-09 21:35:13 +0000436 Width = 1;
437 Align = 1;
438 break;
439 }
440
Daniel Dunbar1d751182008-11-08 05:48:37 +0000441 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner71763312008-04-06 22:05:18 +0000442 return getTypeInfo(ET->getDecl()->getIntegerType());
443
Daniel Dunbar1d751182008-11-08 05:48:37 +0000444 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner71763312008-04-06 22:05:18 +0000445 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
446 Width = Layout.getSize();
447 Align = Layout.getAlignment();
Chris Lattnerdc0d73e2007-07-23 22:46:22 +0000448 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000449 }
Chris Lattner71763312008-04-06 22:05:18 +0000450 }
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000451
Chris Lattner464175b2007-07-18 17:52:12 +0000452 assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000453 return std::make_pair(Width, Align);
Chris Lattnera7674d82007-07-13 22:13:22 +0000454}
455
Chris Lattner34ebde42009-01-27 18:08:34 +0000456/// getPreferredTypeAlign - Return the "preferred" alignment of the specified
457/// type for the current target in bits. This can be different than the ABI
458/// alignment in cases where it is beneficial for performance to overalign
459/// a data type.
460unsigned ASTContext::getPreferredTypeAlign(const Type *T) {
461 unsigned ABIAlign = getTypeAlign(T);
462
463 // Doubles should be naturally aligned if possible.
464 if (const BuiltinType *BT = dyn_cast<BuiltinType>(getCanonicalType(T)))
465 if (BT->getKind() == BuiltinType::Double)
Fariborz Jahanian32b978c2009-01-27 18:55:00 +0000466 return std::max(ABIAlign, 64U);
Chris Lattner34ebde42009-01-27 18:08:34 +0000467
468 return ABIAlign;
469}
470
471
Devang Patel8b277042008-06-04 21:22:16 +0000472/// LayoutField - Field layout.
473void ASTRecordLayout::LayoutField(const FieldDecl *FD, unsigned FieldNo,
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000474 bool IsUnion, unsigned StructPacking,
Devang Patel8b277042008-06-04 21:22:16 +0000475 ASTContext &Context) {
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000476 unsigned FieldPacking = StructPacking;
Devang Patel8b277042008-06-04 21:22:16 +0000477 uint64_t FieldOffset = IsUnion ? 0 : Size;
478 uint64_t FieldSize;
479 unsigned FieldAlign;
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000480
481 // FIXME: Should this override struct packing? Probably we want to
482 // take the minimum?
483 if (const PackedAttr *PA = FD->getAttr<PackedAttr>())
484 FieldPacking = PA->getAlignment();
Devang Patel8b277042008-06-04 21:22:16 +0000485
486 if (const Expr *BitWidthExpr = FD->getBitWidth()) {
487 // TODO: Need to check this algorithm on other targets!
488 // (tested on Linux-X86)
Daniel Dunbar32442bb2008-08-13 23:47:13 +0000489 FieldSize =
490 BitWidthExpr->getIntegerConstantExprValue(Context).getZExtValue();
Devang Patel8b277042008-06-04 21:22:16 +0000491
492 std::pair<uint64_t, unsigned> FieldInfo =
493 Context.getTypeInfo(FD->getType());
494 uint64_t TypeSize = FieldInfo.first;
495
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000496 // Determine the alignment of this bitfield. The packing
497 // attributes define a maximum and the alignment attribute defines
498 // a minimum.
499 // FIXME: What is the right behavior when the specified alignment
500 // is smaller than the specified packing?
Devang Patel8b277042008-06-04 21:22:16 +0000501 FieldAlign = FieldInfo.second;
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000502 if (FieldPacking)
503 FieldAlign = std::min(FieldAlign, FieldPacking);
Devang Patel8b277042008-06-04 21:22:16 +0000504 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
505 FieldAlign = std::max(FieldAlign, AA->getAlignment());
506
507 // Check if we need to add padding to give the field the correct
508 // alignment.
509 if (FieldSize == 0 || (FieldOffset & (FieldAlign-1)) + FieldSize > TypeSize)
510 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
511
512 // Padding members don't affect overall alignment
513 if (!FD->getIdentifier())
514 FieldAlign = 1;
515 } else {
Chris Lattner8389eab2008-08-09 21:35:13 +0000516 if (FD->getType()->isIncompleteArrayType()) {
517 // This is a flexible array member; we can't directly
Devang Patel8b277042008-06-04 21:22:16 +0000518 // query getTypeInfo about these, so we figure it out here.
519 // Flexible array members don't have any size, but they
520 // have to be aligned appropriately for their element type.
521 FieldSize = 0;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000522 const ArrayType* ATy = Context.getAsArrayType(FD->getType());
Devang Patel8b277042008-06-04 21:22:16 +0000523 FieldAlign = Context.getTypeAlign(ATy->getElementType());
524 } else {
525 std::pair<uint64_t, unsigned> FieldInfo =
526 Context.getTypeInfo(FD->getType());
527 FieldSize = FieldInfo.first;
528 FieldAlign = FieldInfo.second;
529 }
530
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000531 // Determine the alignment of this bitfield. The packing
532 // attributes define a maximum and the alignment attribute defines
533 // a minimum. Additionally, the packing alignment must be at least
534 // a byte for non-bitfields.
535 //
536 // FIXME: What is the right behavior when the specified alignment
537 // is smaller than the specified packing?
538 if (FieldPacking)
539 FieldAlign = std::min(FieldAlign, std::max(8U, FieldPacking));
Devang Patel8b277042008-06-04 21:22:16 +0000540 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
541 FieldAlign = std::max(FieldAlign, AA->getAlignment());
542
543 // Round up the current record size to the field's alignment boundary.
544 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
545 }
546
547 // Place this field at the current location.
548 FieldOffsets[FieldNo] = FieldOffset;
549
550 // Reserve space for this field.
551 if (IsUnion) {
552 Size = std::max(Size, FieldSize);
553 } else {
554 Size = FieldOffset + FieldSize;
555 }
556
557 // Remember max struct/class alignment.
558 Alignment = std::max(Alignment, FieldAlign);
559}
560
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000561static void CollectObjCIvars(const ObjCInterfaceDecl *OI,
562 std::vector<FieldDecl*> &Fields) {
563 const ObjCInterfaceDecl *SuperClass = OI->getSuperClass();
564 if (SuperClass)
565 CollectObjCIvars(SuperClass, Fields);
566 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
567 E = OI->ivar_end(); I != E; ++I) {
568 ObjCIvarDecl *IVDecl = (*I);
569 if (!IVDecl->isInvalidDecl())
570 Fields.push_back(cast<FieldDecl>(IVDecl));
571 }
572}
573
574/// addRecordToClass - produces record info. for the class for its
575/// ivars and all those inherited.
576///
577const RecordDecl *ASTContext::addRecordToClass(const ObjCInterfaceDecl *D)
578{
579 const RecordDecl *&RD = ASTRecordForInterface[D];
580 if (RD)
581 return RD;
582 std::vector<FieldDecl*> RecFields;
583 CollectObjCIvars(D, RecFields);
584 RecordDecl *NewRD = RecordDecl::Create(*this, TagDecl::TK_struct, 0,
585 D->getLocation(),
586 D->getIdentifier());
587 /// FIXME! Can do collection of ivars and adding to the record while
588 /// doing it.
589 for (unsigned int i = 0; i != RecFields.size(); i++) {
590 FieldDecl *Field = FieldDecl::Create(*this, NewRD,
591 RecFields[i]->getLocation(),
592 RecFields[i]->getIdentifier(),
593 RecFields[i]->getType(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000594 RecFields[i]->getBitWidth(), false);
Douglas Gregor482b77d2009-01-12 23:27:07 +0000595 NewRD->addDecl(Field);
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000596 }
597 NewRD->completeDefinition(*this);
598 RD = NewRD;
599 return RD;
600}
Devang Patel44a3dde2008-06-04 21:54:36 +0000601
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +0000602/// setFieldDecl - maps a field for the given Ivar reference node.
603//
604void ASTContext::setFieldDecl(const ObjCInterfaceDecl *OI,
605 const ObjCIvarDecl *Ivar,
606 const ObjCIvarRefExpr *MRef) {
607 FieldDecl *FD = (const_cast<ObjCInterfaceDecl *>(OI))->
608 lookupFieldDeclForIvar(*this, Ivar);
609 ASTFieldForIvarRef[MRef] = FD;
610}
611
Chris Lattner61710852008-10-05 17:34:18 +0000612/// getASTObjcInterfaceLayout - Get or compute information about the layout of
613/// the specified Objective C, which indicates its size and ivar
Devang Patel44a3dde2008-06-04 21:54:36 +0000614/// position information.
615const ASTRecordLayout &
616ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) {
617 // Look up this layout, if already laid out, return what we have.
618 const ASTRecordLayout *&Entry = ASTObjCInterfaces[D];
619 if (Entry) return *Entry;
620
621 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
622 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
Devang Patel6a5a34c2008-06-06 02:14:01 +0000623 ASTRecordLayout *NewEntry = NULL;
624 unsigned FieldCount = D->ivar_size();
625 if (ObjCInterfaceDecl *SD = D->getSuperClass()) {
626 FieldCount++;
627 const ASTRecordLayout &SL = getASTObjCInterfaceLayout(SD);
628 unsigned Alignment = SL.getAlignment();
629 uint64_t Size = SL.getSize();
630 NewEntry = new ASTRecordLayout(Size, Alignment);
631 NewEntry->InitializeLayout(FieldCount);
Chris Lattner61710852008-10-05 17:34:18 +0000632 // Super class is at the beginning of the layout.
633 NewEntry->SetFieldOffset(0, 0);
Devang Patel6a5a34c2008-06-06 02:14:01 +0000634 } else {
635 NewEntry = new ASTRecordLayout();
636 NewEntry->InitializeLayout(FieldCount);
637 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000638 Entry = NewEntry;
639
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000640 unsigned StructPacking = 0;
641 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
642 StructPacking = PA->getAlignment();
Devang Patel44a3dde2008-06-04 21:54:36 +0000643
644 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
645 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
646 AA->getAlignment()));
647
648 // Layout each ivar sequentially.
649 unsigned i = 0;
650 for (ObjCInterfaceDecl::ivar_iterator IVI = D->ivar_begin(),
651 IVE = D->ivar_end(); IVI != IVE; ++IVI) {
652 const ObjCIvarDecl* Ivar = (*IVI);
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000653 NewEntry->LayoutField(Ivar, i++, false, StructPacking, *this);
Devang Patel44a3dde2008-06-04 21:54:36 +0000654 }
655
656 // Finally, round the size of the total struct up to the alignment of the
657 // struct itself.
658 NewEntry->FinalizeLayout();
659 return *NewEntry;
660}
661
Devang Patel88a981b2007-11-01 19:11:01 +0000662/// getASTRecordLayout - Get or compute information about the layout of the
Chris Lattner464175b2007-07-18 17:52:12 +0000663/// specified record (struct/union/class), which indicates its size and field
664/// position information.
Chris Lattner98be4942008-03-05 18:54:05 +0000665const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000666 D = D->getDefinition(*this);
667 assert(D && "Cannot get layout of forward declarations!");
Eli Friedman4bd998b2008-05-30 09:31:38 +0000668
Chris Lattner464175b2007-07-18 17:52:12 +0000669 // Look up this layout, if already laid out, return what we have.
Devang Patel88a981b2007-11-01 19:11:01 +0000670 const ASTRecordLayout *&Entry = ASTRecordLayouts[D];
Chris Lattner464175b2007-07-18 17:52:12 +0000671 if (Entry) return *Entry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000672
Devang Patel88a981b2007-11-01 19:11:01 +0000673 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
674 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
675 ASTRecordLayout *NewEntry = new ASTRecordLayout();
Chris Lattner464175b2007-07-18 17:52:12 +0000676 Entry = NewEntry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000677
Douglas Gregore267ff32008-12-11 20:41:00 +0000678 // FIXME: Avoid linear walk through the fields, if possible.
Douglas Gregor44b43212008-12-11 16:49:14 +0000679 NewEntry->InitializeLayout(std::distance(D->field_begin(), D->field_end()));
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000680 bool IsUnion = D->isUnion();
Chris Lattner464175b2007-07-18 17:52:12 +0000681
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000682 unsigned StructPacking = 0;
683 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
684 StructPacking = PA->getAlignment();
685
Eli Friedman4bd998b2008-05-30 09:31:38 +0000686 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
Devang Patel8b277042008-06-04 21:22:16 +0000687 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
688 AA->getAlignment()));
Anders Carlsson8af226a2008-02-18 07:13:09 +0000689
Eli Friedman4bd998b2008-05-30 09:31:38 +0000690 // Layout each field, for now, just sequentially, respecting alignment. In
691 // the future, this will need to be tweakable by targets.
Douglas Gregor44b43212008-12-11 16:49:14 +0000692 unsigned FieldIdx = 0;
Douglas Gregorf8d49f62009-01-09 17:18:27 +0000693 for (RecordDecl::field_iterator Field = D->field_begin(),
694 FieldEnd = D->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000695 Field != FieldEnd; (void)++Field, ++FieldIdx)
696 NewEntry->LayoutField(*Field, FieldIdx, IsUnion, StructPacking, *this);
Eli Friedman4bd998b2008-05-30 09:31:38 +0000697
698 // Finally, round the size of the total struct up to the alignment of the
699 // struct itself.
Devang Patel8b277042008-06-04 21:22:16 +0000700 NewEntry->FinalizeLayout();
Chris Lattner5d2a6302007-07-18 18:26:58 +0000701 return *NewEntry;
Chris Lattner464175b2007-07-18 17:52:12 +0000702}
703
Chris Lattnera7674d82007-07-13 22:13:22 +0000704//===----------------------------------------------------------------------===//
705// Type creation/memoization methods
706//===----------------------------------------------------------------------===//
707
Christopher Lambebb97e92008-02-04 02:31:56 +0000708QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000709 QualType CanT = getCanonicalType(T);
710 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattnerf46699c2008-02-20 20:55:12 +0000711 return T;
712
713 // Type's cannot have multiple ASQuals, therefore we know we only have to deal
714 // with CVR qualifiers from here on out.
Chris Lattnerf52ab252008-04-06 22:59:24 +0000715 assert(CanT.getAddressSpace() == 0 &&
Chris Lattnerf46699c2008-02-20 20:55:12 +0000716 "Type is already address space qualified");
717
718 // Check if we've already instantiated an address space qual'd type of this
719 // type.
Christopher Lambebb97e92008-02-04 02:31:56 +0000720 llvm::FoldingSetNodeID ID;
Chris Lattnerf46699c2008-02-20 20:55:12 +0000721 ASQualType::Profile(ID, T.getTypePtr(), AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000722 void *InsertPos = 0;
723 if (ASQualType *ASQy = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos))
724 return QualType(ASQy, 0);
725
726 // If the base type isn't canonical, this won't be a canonical type either,
727 // so fill in the canonical type field.
728 QualType Canonical;
729 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000730 Canonical = getASQualType(CanT, AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000731
732 // Get the new insert position for the node we care about.
733 ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000734 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Christopher Lambebb97e92008-02-04 02:31:56 +0000735 }
Steve Narofff83820b2009-01-27 22:08:43 +0000736 ASQualType *New = new (*this, 8) ASQualType(T.getTypePtr(), Canonical,
737 AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000738 ASQualTypes.InsertNode(New, InsertPos);
739 Types.push_back(New);
Chris Lattnerf46699c2008-02-20 20:55:12 +0000740 return QualType(New, T.getCVRQualifiers());
Christopher Lambebb97e92008-02-04 02:31:56 +0000741}
742
Chris Lattnera7674d82007-07-13 22:13:22 +0000743
Reid Spencer5f016e22007-07-11 17:01:13 +0000744/// getComplexType - Return the uniqued reference to the type for a complex
745/// number with the specified element type.
746QualType ASTContext::getComplexType(QualType T) {
747 // Unique pointers, to guarantee there is only one pointer of a particular
748 // structure.
749 llvm::FoldingSetNodeID ID;
750 ComplexType::Profile(ID, T);
751
752 void *InsertPos = 0;
753 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
754 return QualType(CT, 0);
755
756 // If the pointee type isn't canonical, this won't be a canonical type either,
757 // so fill in the canonical type field.
758 QualType Canonical;
759 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000760 Canonical = getComplexType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000761
762 // Get the new insert position for the node we care about.
763 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000764 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 }
Steve Narofff83820b2009-01-27 22:08:43 +0000766 ComplexType *New = new (*this,8) ComplexType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +0000767 Types.push_back(New);
768 ComplexTypes.InsertNode(New, InsertPos);
769 return QualType(New, 0);
770}
771
772
773/// getPointerType - Return the uniqued reference to the type for a pointer to
774/// the specified type.
775QualType ASTContext::getPointerType(QualType T) {
776 // Unique pointers, to guarantee there is only one pointer of a particular
777 // structure.
778 llvm::FoldingSetNodeID ID;
779 PointerType::Profile(ID, T);
780
781 void *InsertPos = 0;
782 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
783 return QualType(PT, 0);
784
785 // If the pointee type isn't canonical, this won't be a canonical type either,
786 // so fill in the canonical type field.
787 QualType Canonical;
788 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000789 Canonical = getPointerType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000790
791 // Get the new insert position for the node we care about.
792 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000793 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000794 }
Steve Narofff83820b2009-01-27 22:08:43 +0000795 PointerType *New = new (*this,8) PointerType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 Types.push_back(New);
797 PointerTypes.InsertNode(New, InsertPos);
798 return QualType(New, 0);
799}
800
Steve Naroff5618bd42008-08-27 16:04:49 +0000801/// getBlockPointerType - Return the uniqued reference to the type for
802/// a pointer to the specified block.
803QualType ASTContext::getBlockPointerType(QualType T) {
Steve Naroff296e8d52008-08-28 19:20:44 +0000804 assert(T->isFunctionType() && "block of function types only");
805 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff5618bd42008-08-27 16:04:49 +0000806 // structure.
807 llvm::FoldingSetNodeID ID;
808 BlockPointerType::Profile(ID, T);
809
810 void *InsertPos = 0;
811 if (BlockPointerType *PT =
812 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
813 return QualType(PT, 0);
814
Steve Naroff296e8d52008-08-28 19:20:44 +0000815 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff5618bd42008-08-27 16:04:49 +0000816 // type either so fill in the canonical type field.
817 QualType Canonical;
818 if (!T->isCanonical()) {
819 Canonical = getBlockPointerType(getCanonicalType(T));
820
821 // Get the new insert position for the node we care about.
822 BlockPointerType *NewIP =
823 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000824 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff5618bd42008-08-27 16:04:49 +0000825 }
Steve Narofff83820b2009-01-27 22:08:43 +0000826 BlockPointerType *New = new (*this,8) BlockPointerType(T, Canonical);
Steve Naroff5618bd42008-08-27 16:04:49 +0000827 Types.push_back(New);
828 BlockPointerTypes.InsertNode(New, InsertPos);
829 return QualType(New, 0);
830}
831
Reid Spencer5f016e22007-07-11 17:01:13 +0000832/// getReferenceType - Return the uniqued reference to the type for a reference
833/// to the specified type.
834QualType ASTContext::getReferenceType(QualType T) {
835 // Unique pointers, to guarantee there is only one pointer of a particular
836 // structure.
837 llvm::FoldingSetNodeID ID;
838 ReferenceType::Profile(ID, T);
839
840 void *InsertPos = 0;
841 if (ReferenceType *RT = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
842 return QualType(RT, 0);
843
844 // If the referencee type isn't canonical, this won't be a canonical type
845 // either, so fill in the canonical type field.
846 QualType Canonical;
847 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000848 Canonical = getReferenceType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000849
850 // Get the new insert position for the node we care about.
851 ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000852 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000853 }
854
Steve Narofff83820b2009-01-27 22:08:43 +0000855 ReferenceType *New = new (*this,8) ReferenceType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +0000856 Types.push_back(New);
857 ReferenceTypes.InsertNode(New, InsertPos);
858 return QualType(New, 0);
859}
860
Sebastian Redlf30208a2009-01-24 21:16:55 +0000861/// getMemberPointerType - Return the uniqued reference to the type for a
862/// member pointer to the specified type, in the specified class.
863QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls)
864{
865 // Unique pointers, to guarantee there is only one pointer of a particular
866 // structure.
867 llvm::FoldingSetNodeID ID;
868 MemberPointerType::Profile(ID, T, Cls);
869
870 void *InsertPos = 0;
871 if (MemberPointerType *PT =
872 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
873 return QualType(PT, 0);
874
875 // If the pointee or class type isn't canonical, this won't be a canonical
876 // type either, so fill in the canonical type field.
877 QualType Canonical;
878 if (!T->isCanonical()) {
879 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
880
881 // Get the new insert position for the node we care about.
882 MemberPointerType *NewIP =
883 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
884 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
885 }
Steve Narofff83820b2009-01-27 22:08:43 +0000886 MemberPointerType *New = new (*this,8) MemberPointerType(T, Cls, Canonical);
Sebastian Redlf30208a2009-01-24 21:16:55 +0000887 Types.push_back(New);
888 MemberPointerTypes.InsertNode(New, InsertPos);
889 return QualType(New, 0);
890}
891
Steve Narofffb22d962007-08-30 01:06:46 +0000892/// getConstantArrayType - Return the unique reference to the type for an
893/// array of the specified element type.
894QualType ASTContext::getConstantArrayType(QualType EltTy,
Steve Naroffc9406122007-08-30 18:10:14 +0000895 const llvm::APInt &ArySize,
896 ArrayType::ArraySizeModifier ASM,
897 unsigned EltTypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000898 llvm::FoldingSetNodeID ID;
Steve Narofffb22d962007-08-30 01:06:46 +0000899 ConstantArrayType::Profile(ID, EltTy, ArySize);
Reid Spencer5f016e22007-07-11 17:01:13 +0000900
901 void *InsertPos = 0;
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000902 if (ConstantArrayType *ATP =
903 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 return QualType(ATP, 0);
905
906 // If the element type isn't canonical, this won't be a canonical type either,
907 // so fill in the canonical type field.
908 QualType Canonical;
909 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000910 Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
Steve Naroffc9406122007-08-30 18:10:14 +0000911 ASM, EltTypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000912 // Get the new insert position for the node we care about.
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000913 ConstantArrayType *NewIP =
914 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000915 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 }
917
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000918 ConstantArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +0000919 new(*this,8)ConstantArrayType(EltTy, Canonical, ArySize, ASM, EltTypeQuals);
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000920 ConstantArrayTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 Types.push_back(New);
922 return QualType(New, 0);
923}
924
Steve Naroffbdbf7b02007-08-30 18:14:25 +0000925/// getVariableArrayType - Returns a non-unique reference to the type for a
926/// variable array of the specified element type.
Steve Naroffc9406122007-08-30 18:10:14 +0000927QualType ASTContext::getVariableArrayType(QualType EltTy, Expr *NumElts,
928 ArrayType::ArraySizeModifier ASM,
929 unsigned EltTypeQuals) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000930 // Since we don't unique expressions, it isn't possible to unique VLA's
931 // that have an expression provided for their size.
932
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000933 VariableArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +0000934 new(*this,8)VariableArrayType(EltTy,QualType(), NumElts, ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000935
936 VariableArrayTypes.push_back(New);
937 Types.push_back(New);
938 return QualType(New, 0);
939}
940
Douglas Gregor898574e2008-12-05 23:32:09 +0000941/// getDependentSizedArrayType - Returns a non-unique reference to
942/// the type for a dependently-sized array of the specified element
943/// type. FIXME: We will need these to be uniqued, or at least
944/// comparable, at some point.
945QualType ASTContext::getDependentSizedArrayType(QualType EltTy, Expr *NumElts,
946 ArrayType::ArraySizeModifier ASM,
947 unsigned EltTypeQuals) {
948 assert((NumElts->isTypeDependent() || NumElts->isValueDependent()) &&
949 "Size must be type- or value-dependent!");
950
951 // Since we don't unique expressions, it isn't possible to unique
952 // dependently-sized array types.
953
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000954 DependentSizedArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +0000955 new (*this,8) DependentSizedArrayType(EltTy, QualType(), NumElts,
956 ASM, EltTypeQuals);
Douglas Gregor898574e2008-12-05 23:32:09 +0000957
958 DependentSizedArrayTypes.push_back(New);
959 Types.push_back(New);
960 return QualType(New, 0);
961}
962
Eli Friedmanc5773c42008-02-15 18:16:39 +0000963QualType ASTContext::getIncompleteArrayType(QualType EltTy,
964 ArrayType::ArraySizeModifier ASM,
965 unsigned EltTypeQuals) {
966 llvm::FoldingSetNodeID ID;
967 IncompleteArrayType::Profile(ID, EltTy);
968
969 void *InsertPos = 0;
970 if (IncompleteArrayType *ATP =
971 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
972 return QualType(ATP, 0);
973
974 // If the element type isn't canonical, this won't be a canonical type
975 // either, so fill in the canonical type field.
976 QualType Canonical;
977
978 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000979 Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
Ted Kremenek2bd24ba2007-10-29 23:37:31 +0000980 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000981
982 // Get the new insert position for the node we care about.
983 IncompleteArrayType *NewIP =
984 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000985 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Ted Kremenek2bd24ba2007-10-29 23:37:31 +0000986 }
Eli Friedmanc5773c42008-02-15 18:16:39 +0000987
Steve Narofff83820b2009-01-27 22:08:43 +0000988 IncompleteArrayType *New = new (*this,8) IncompleteArrayType(EltTy, Canonical,
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000989 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000990
991 IncompleteArrayTypes.InsertNode(New, InsertPos);
992 Types.push_back(New);
993 return QualType(New, 0);
Steve Narofffb22d962007-08-30 01:06:46 +0000994}
995
Steve Naroff73322922007-07-18 18:00:27 +0000996/// getVectorType - Return the unique reference to a vector type of
997/// the specified element type and size. VectorType must be a built-in type.
998QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000999 BuiltinType *baseType;
1000
Chris Lattnerf52ab252008-04-06 22:59:24 +00001001 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Steve Naroff73322922007-07-18 18:00:27 +00001002 assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001003
1004 // Check if we've already instantiated a vector of this type.
1005 llvm::FoldingSetNodeID ID;
Steve Naroff73322922007-07-18 18:00:27 +00001006 VectorType::Profile(ID, vecType, NumElts, Type::Vector);
Reid Spencer5f016e22007-07-11 17:01:13 +00001007 void *InsertPos = 0;
1008 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
1009 return QualType(VTP, 0);
1010
1011 // If the element type isn't canonical, this won't be a canonical type either,
1012 // so fill in the canonical type field.
1013 QualType Canonical;
1014 if (!vecType->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001015 Canonical = getVectorType(getCanonicalType(vecType), NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001016
1017 // Get the new insert position for the node we care about.
1018 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001019 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001020 }
Steve Narofff83820b2009-01-27 22:08:43 +00001021 VectorType *New = new (*this,8) VectorType(vecType, NumElts, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001022 VectorTypes.InsertNode(New, InsertPos);
1023 Types.push_back(New);
1024 return QualType(New, 0);
1025}
1026
Nate Begeman213541a2008-04-18 23:10:10 +00001027/// getExtVectorType - Return the unique reference to an extended vector type of
Steve Naroff73322922007-07-18 18:00:27 +00001028/// the specified element type and size. VectorType must be a built-in type.
Nate Begeman213541a2008-04-18 23:10:10 +00001029QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) {
Steve Naroff73322922007-07-18 18:00:27 +00001030 BuiltinType *baseType;
1031
Chris Lattnerf52ab252008-04-06 22:59:24 +00001032 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Nate Begeman213541a2008-04-18 23:10:10 +00001033 assert(baseType != 0 && "getExtVectorType(): Expecting a built-in type");
Steve Naroff73322922007-07-18 18:00:27 +00001034
1035 // Check if we've already instantiated a vector of this type.
1036 llvm::FoldingSetNodeID ID;
Nate Begeman213541a2008-04-18 23:10:10 +00001037 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector);
Steve Naroff73322922007-07-18 18:00:27 +00001038 void *InsertPos = 0;
1039 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
1040 return QualType(VTP, 0);
1041
1042 // If the element type isn't canonical, this won't be a canonical type either,
1043 // so fill in the canonical type field.
1044 QualType Canonical;
1045 if (!vecType->isCanonical()) {
Nate Begeman213541a2008-04-18 23:10:10 +00001046 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Steve Naroff73322922007-07-18 18:00:27 +00001047
1048 // Get the new insert position for the node we care about.
1049 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001050 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff73322922007-07-18 18:00:27 +00001051 }
Steve Narofff83820b2009-01-27 22:08:43 +00001052 ExtVectorType *New = new (*this,8) ExtVectorType(vecType, NumElts, Canonical);
Steve Naroff73322922007-07-18 18:00:27 +00001053 VectorTypes.InsertNode(New, InsertPos);
1054 Types.push_back(New);
1055 return QualType(New, 0);
1056}
1057
Reid Spencer5f016e22007-07-11 17:01:13 +00001058/// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'.
1059///
1060QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
1061 // Unique functions, to guarantee there is only one function of a particular
1062 // structure.
1063 llvm::FoldingSetNodeID ID;
1064 FunctionTypeNoProto::Profile(ID, ResultTy);
1065
1066 void *InsertPos = 0;
1067 if (FunctionTypeNoProto *FT =
1068 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos))
1069 return QualType(FT, 0);
1070
1071 QualType Canonical;
1072 if (!ResultTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001073 Canonical = getFunctionTypeNoProto(getCanonicalType(ResultTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001074
1075 // Get the new insert position for the node we care about.
1076 FunctionTypeNoProto *NewIP =
1077 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001078 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001079 }
1080
Steve Narofff83820b2009-01-27 22:08:43 +00001081 FunctionTypeNoProto *New =new(*this,8)FunctionTypeNoProto(ResultTy,Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001082 Types.push_back(New);
Eli Friedman56cd7e32008-02-25 22:11:40 +00001083 FunctionTypeNoProtos.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00001084 return QualType(New, 0);
1085}
1086
1087/// getFunctionType - Return a normal function type with a typed argument
1088/// list. isVariadic indicates whether the argument list includes '...'.
Chris Lattner61710852008-10-05 17:34:18 +00001089QualType ASTContext::getFunctionType(QualType ResultTy,const QualType *ArgArray,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001090 unsigned NumArgs, bool isVariadic,
1091 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001092 // Unique functions, to guarantee there is only one function of a particular
1093 // structure.
1094 llvm::FoldingSetNodeID ID;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001095 FunctionTypeProto::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic,
1096 TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001097
1098 void *InsertPos = 0;
1099 if (FunctionTypeProto *FTP =
1100 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos))
1101 return QualType(FTP, 0);
1102
1103 // Determine whether the type being created is already canonical or not.
1104 bool isCanonical = ResultTy->isCanonical();
1105 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
1106 if (!ArgArray[i]->isCanonical())
1107 isCanonical = false;
1108
1109 // If this type isn't canonical, get the canonical version of it.
1110 QualType Canonical;
1111 if (!isCanonical) {
1112 llvm::SmallVector<QualType, 16> CanonicalArgs;
1113 CanonicalArgs.reserve(NumArgs);
1114 for (unsigned i = 0; i != NumArgs; ++i)
Chris Lattnerf52ab252008-04-06 22:59:24 +00001115 CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
Reid Spencer5f016e22007-07-11 17:01:13 +00001116
Chris Lattnerf52ab252008-04-06 22:59:24 +00001117 Canonical = getFunctionType(getCanonicalType(ResultTy),
Reid Spencer5f016e22007-07-11 17:01:13 +00001118 &CanonicalArgs[0], NumArgs,
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001119 isVariadic, TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001120
1121 // Get the new insert position for the node we care about.
1122 FunctionTypeProto *NewIP =
1123 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001124 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001125 }
1126
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001127 // FunctionTypeProto objects are allocated with extra bytes after them
1128 // for a variable size array (for parameter types) at the end of them.
Reid Spencer5f016e22007-07-11 17:01:13 +00001129 FunctionTypeProto *FTP =
Steve Naroffc0ac4922009-01-27 23:20:32 +00001130 (FunctionTypeProto*)Allocate(sizeof(FunctionTypeProto) +
1131 NumArgs*sizeof(QualType), 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00001132 new (FTP) FunctionTypeProto(ResultTy, ArgArray, NumArgs, isVariadic,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001133 TypeQuals, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001134 Types.push_back(FTP);
1135 FunctionTypeProtos.InsertNode(FTP, InsertPos);
1136 return QualType(FTP, 0);
1137}
1138
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001139/// getTypeDeclType - Return the unique reference to the type for the
1140/// specified type declaration.
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001141QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) {
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001142 assert(Decl && "Passed null for Decl param");
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001143 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1144
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001145 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001146 return getTypedefType(Typedef);
Douglas Gregorfab9d672009-02-05 23:33:38 +00001147 else if (isa<TemplateTypeParmDecl>(Decl)) {
1148 assert(false && "Template type parameter types are always available.");
1149 } else if (ObjCInterfaceDecl *ObjCInterface = dyn_cast<ObjCInterfaceDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001150 return getObjCInterfaceType(ObjCInterface);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001151
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001152 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Decl)) {
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001153 if (PrevDecl)
1154 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001155 else
1156 Decl->TypeForDecl = new (*this,8) CXXRecordType(CXXRecord);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001157 }
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001158 else if (RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001159 if (PrevDecl)
1160 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001161 else
1162 Decl->TypeForDecl = new (*this,8) RecordType(Record);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001163 }
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001164 else if (EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
1165 if (PrevDecl)
1166 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001167 else
1168 Decl->TypeForDecl = new (*this,8) EnumType(Enum);
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001169 }
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001170 else
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001171 assert(false && "TypeDecl without a type?");
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001172
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001173 if (!PrevDecl) Types.push_back(Decl->TypeForDecl);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001174 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001175}
1176
Reid Spencer5f016e22007-07-11 17:01:13 +00001177/// getTypedefType - Return the unique reference to the type for the
1178/// specified typename decl.
1179QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
1180 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1181
Chris Lattnerf52ab252008-04-06 22:59:24 +00001182 QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
Steve Narofff83820b2009-01-27 22:08:43 +00001183 Decl->TypeForDecl = new(*this,8) TypedefType(Type::TypeName, Decl, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001184 Types.push_back(Decl->TypeForDecl);
1185 return QualType(Decl->TypeForDecl, 0);
1186}
1187
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001188/// getObjCInterfaceType - Return the unique reference to the type for the
Steve Naroff3536b442007-09-06 21:24:23 +00001189/// specified ObjC interface decl.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001190QualType ASTContext::getObjCInterfaceType(ObjCInterfaceDecl *Decl) {
Steve Naroff3536b442007-09-06 21:24:23 +00001191 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1192
Steve Narofff83820b2009-01-27 22:08:43 +00001193 Decl->TypeForDecl = new(*this,8) ObjCInterfaceType(Type::ObjCInterface, Decl);
Steve Naroff3536b442007-09-06 21:24:23 +00001194 Types.push_back(Decl->TypeForDecl);
1195 return QualType(Decl->TypeForDecl, 0);
1196}
1197
Douglas Gregorfab9d672009-02-05 23:33:38 +00001198/// \brief Retrieve the template type parameter type for a template
1199/// parameter with the given depth, index, and (optionally) name.
1200QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index,
1201 IdentifierInfo *Name) {
1202 llvm::FoldingSetNodeID ID;
1203 TemplateTypeParmType::Profile(ID, Depth, Index, Name);
1204 void *InsertPos = 0;
1205 TemplateTypeParmType *TypeParm
1206 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos);
1207
1208 if (TypeParm)
1209 return QualType(TypeParm, 0);
1210
1211 if (Name)
1212 TypeParm = new (*this, 8) TemplateTypeParmType(Depth, Index, Name,
1213 getTemplateTypeParmType(Depth, Index));
1214 else
1215 TypeParm = new (*this, 8) TemplateTypeParmType(Depth, Index);
1216
1217 Types.push_back(TypeParm);
1218 TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos);
1219
1220 return QualType(TypeParm, 0);
1221}
1222
Douglas Gregor55f6b142009-02-09 18:46:07 +00001223QualType
1224ASTContext::getClassTemplateSpecializationType(TemplateDecl *Template,
1225 unsigned NumArgs,
1226 uintptr_t *Args, bool *ArgIsType,
1227 QualType Canon) {
1228 llvm::FoldingSetNodeID ID;
1229 ClassTemplateSpecializationType::Profile(ID, Template, NumArgs, Args,
1230 ArgIsType);
1231 void *InsertPos = 0;
1232 ClassTemplateSpecializationType *Spec
1233 = ClassTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos);
1234
1235 if (Spec)
1236 return QualType(Spec, 0);
1237
1238 void *Mem = Allocate(sizeof(ClassTemplateSpecializationType) +
1239 (sizeof(uintptr_t) *
1240 (ClassTemplateSpecializationType::
1241 getNumPackedWords(NumArgs) +
1242 NumArgs)), 8);
1243 Spec = new (Mem) ClassTemplateSpecializationType(Template, NumArgs, Args,
1244 ArgIsType, Canon);
1245 Types.push_back(Spec);
1246 ClassTemplateSpecializationTypes.InsertNode(Spec, InsertPos);
1247
1248 return QualType(Spec, 0);
1249}
1250
Chris Lattner88cb27a2008-04-07 04:56:42 +00001251/// CmpProtocolNames - Comparison predicate for sorting protocols
1252/// alphabetically.
1253static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
1254 const ObjCProtocolDecl *RHS) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001255 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattner88cb27a2008-04-07 04:56:42 +00001256}
1257
1258static void SortAndUniqueProtocols(ObjCProtocolDecl **&Protocols,
1259 unsigned &NumProtocols) {
1260 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
1261
1262 // Sort protocols, keyed by name.
1263 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
1264
1265 // Remove duplicates.
1266 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
1267 NumProtocols = ProtocolsEnd-Protocols;
1268}
1269
1270
Chris Lattner065f0d72008-04-07 04:44:08 +00001271/// getObjCQualifiedInterfaceType - Return a ObjCQualifiedInterfaceType type for
1272/// the given interface decl and the conforming protocol list.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001273QualType ASTContext::getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl,
1274 ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
Chris Lattner88cb27a2008-04-07 04:56:42 +00001275 // Sort the protocol list alphabetically to canonicalize it.
1276 SortAndUniqueProtocols(Protocols, NumProtocols);
1277
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001278 llvm::FoldingSetNodeID ID;
Chris Lattnerb0489812008-04-07 06:38:24 +00001279 ObjCQualifiedInterfaceType::Profile(ID, Decl, Protocols, NumProtocols);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001280
1281 void *InsertPos = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001282 if (ObjCQualifiedInterfaceType *QT =
1283 ObjCQualifiedInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001284 return QualType(QT, 0);
1285
1286 // No Match;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001287 ObjCQualifiedInterfaceType *QType =
Steve Narofff83820b2009-01-27 22:08:43 +00001288 new (*this,8) ObjCQualifiedInterfaceType(Decl, Protocols, NumProtocols);
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001289
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001290 Types.push_back(QType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001291 ObjCQualifiedInterfaceTypes.InsertNode(QType, InsertPos);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001292 return QualType(QType, 0);
1293}
1294
Chris Lattner88cb27a2008-04-07 04:56:42 +00001295/// getObjCQualifiedIdType - Return an ObjCQualifiedIdType for the 'id' decl
1296/// and the conforming protocol list.
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001297QualType ASTContext::getObjCQualifiedIdType(ObjCProtocolDecl **Protocols,
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001298 unsigned NumProtocols) {
Chris Lattner88cb27a2008-04-07 04:56:42 +00001299 // Sort the protocol list alphabetically to canonicalize it.
1300 SortAndUniqueProtocols(Protocols, NumProtocols);
1301
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001302 llvm::FoldingSetNodeID ID;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001303 ObjCQualifiedIdType::Profile(ID, Protocols, NumProtocols);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001304
1305 void *InsertPos = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001306 if (ObjCQualifiedIdType *QT =
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001307 ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001308 return QualType(QT, 0);
1309
1310 // No Match;
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001311 ObjCQualifiedIdType *QType =
Steve Narofff83820b2009-01-27 22:08:43 +00001312 new (*this,8) ObjCQualifiedIdType(Protocols, NumProtocols);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001313 Types.push_back(QType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001314 ObjCQualifiedIdTypes.InsertNode(QType, InsertPos);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001315 return QualType(QType, 0);
1316}
1317
Steve Naroff9752f252007-08-01 18:02:17 +00001318/// getTypeOfExpr - Unlike many "get<Type>" functions, we can't unique
1319/// TypeOfExpr AST's (since expression's are never shared). For example,
1320/// multiple declarations that refer to "typeof(x)" all contain different
1321/// DeclRefExpr's. This doesn't effect the type checker, since it operates
1322/// on canonical type's (which are always unique).
Steve Naroff8d1a3b82007-08-01 17:20:42 +00001323QualType ASTContext::getTypeOfExpr(Expr *tofExpr) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001324 QualType Canonical = getCanonicalType(tofExpr->getType());
Steve Narofff83820b2009-01-27 22:08:43 +00001325 TypeOfExpr *toe = new (*this,8) TypeOfExpr(tofExpr, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00001326 Types.push_back(toe);
1327 return QualType(toe, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001328}
1329
Steve Naroff9752f252007-08-01 18:02:17 +00001330/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
1331/// TypeOfType AST's. The only motivation to unique these nodes would be
1332/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
1333/// an issue. This doesn't effect the type checker, since it operates
1334/// on canonical type's (which are always unique).
Steve Naroffd1861fd2007-07-31 12:34:36 +00001335QualType ASTContext::getTypeOfType(QualType tofType) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001336 QualType Canonical = getCanonicalType(tofType);
Steve Narofff83820b2009-01-27 22:08:43 +00001337 TypeOfType *tot = new (*this,8) TypeOfType(tofType, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00001338 Types.push_back(tot);
1339 return QualType(tot, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001340}
1341
Reid Spencer5f016e22007-07-11 17:01:13 +00001342/// getTagDeclType - Return the unique reference to the type for the
1343/// specified TagDecl (struct/union/class/enum) decl.
1344QualType ASTContext::getTagDeclType(TagDecl *Decl) {
Ted Kremenekd778f882007-11-26 21:16:01 +00001345 assert (Decl);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001346 return getTypeDeclType(Decl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001347}
1348
1349/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
1350/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
1351/// needs to agree with the definition in <stddef.h>.
1352QualType ASTContext::getSizeType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001353 return getFromTargetType(Target.getSizeType());
Reid Spencer5f016e22007-07-11 17:01:13 +00001354}
1355
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +00001356/// getWCharType - Return the unique type for "wchar_t" (C99 7.17), the
Eli Friedmanfd888a52008-02-12 08:29:21 +00001357/// width of characters in wide strings, The value is target dependent and
1358/// needs to agree with the definition in <stddef.h>.
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +00001359QualType ASTContext::getWCharType() const {
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001360 if (LangOpts.CPlusPlus)
1361 return WCharTy;
1362
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001363 // FIXME: In C, shouldn't WCharTy just be a typedef of the target's
1364 // wide-character type?
1365 return getFromTargetType(Target.getWCharType());
Eli Friedmanfd888a52008-02-12 08:29:21 +00001366}
1367
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001368/// getSignedWCharType - Return the type of "signed wchar_t".
1369/// Used when in C++, as a GCC extension.
1370QualType ASTContext::getSignedWCharType() const {
1371 // FIXME: derive from "Target" ?
1372 return WCharTy;
1373}
1374
1375/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
1376/// Used when in C++, as a GCC extension.
1377QualType ASTContext::getUnsignedWCharType() const {
1378 // FIXME: derive from "Target" ?
1379 return UnsignedIntTy;
1380}
1381
Chris Lattner8b9023b2007-07-13 03:05:23 +00001382/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
1383/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
1384QualType ASTContext::getPointerDiffType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001385 return getFromTargetType(Target.getPtrDiffType(0));
Chris Lattner8b9023b2007-07-13 03:05:23 +00001386}
1387
Chris Lattnere6327742008-04-02 05:18:44 +00001388//===----------------------------------------------------------------------===//
1389// Type Operators
1390//===----------------------------------------------------------------------===//
1391
Chris Lattner77c96472008-04-06 22:41:35 +00001392/// getCanonicalType - Return the canonical (structural) type corresponding to
1393/// the specified potentially non-canonical type. The non-canonical version
1394/// of a type may have many "decorated" versions of types. Decorators can
1395/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
1396/// to be free of any of these, allowing two canonical types to be compared
1397/// for exact equality with a simple pointer comparison.
1398QualType ASTContext::getCanonicalType(QualType T) {
1399 QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001400
1401 // If the result has type qualifiers, make sure to canonicalize them as well.
1402 unsigned TypeQuals = T.getCVRQualifiers() | CanType.getCVRQualifiers();
1403 if (TypeQuals == 0) return CanType;
1404
1405 // If the type qualifiers are on an array type, get the canonical type of the
1406 // array with the qualifiers applied to the element type.
1407 ArrayType *AT = dyn_cast<ArrayType>(CanType);
1408 if (!AT)
1409 return CanType.getQualifiedType(TypeQuals);
1410
1411 // Get the canonical version of the element with the extra qualifiers on it.
1412 // This can recursively sink qualifiers through multiple levels of arrays.
1413 QualType NewEltTy=AT->getElementType().getWithAdditionalQualifiers(TypeQuals);
1414 NewEltTy = getCanonicalType(NewEltTy);
1415
1416 if (ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1417 return getConstantArrayType(NewEltTy, CAT->getSize(),CAT->getSizeModifier(),
1418 CAT->getIndexTypeQualifier());
1419 if (IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT))
1420 return getIncompleteArrayType(NewEltTy, IAT->getSizeModifier(),
1421 IAT->getIndexTypeQualifier());
1422
Douglas Gregor898574e2008-12-05 23:32:09 +00001423 if (DependentSizedArrayType *DSAT = dyn_cast<DependentSizedArrayType>(AT))
1424 return getDependentSizedArrayType(NewEltTy, DSAT->getSizeExpr(),
1425 DSAT->getSizeModifier(),
1426 DSAT->getIndexTypeQualifier());
1427
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001428 VariableArrayType *VAT = cast<VariableArrayType>(AT);
1429 return getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1430 VAT->getSizeModifier(),
1431 VAT->getIndexTypeQualifier());
1432}
1433
1434
1435const ArrayType *ASTContext::getAsArrayType(QualType T) {
1436 // Handle the non-qualified case efficiently.
1437 if (T.getCVRQualifiers() == 0) {
1438 // Handle the common positive case fast.
1439 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
1440 return AT;
1441 }
1442
1443 // Handle the common negative case fast, ignoring CVR qualifiers.
1444 QualType CType = T->getCanonicalTypeInternal();
1445
1446 // Make sure to look through type qualifiers (like ASQuals) for the negative
1447 // test.
1448 if (!isa<ArrayType>(CType) &&
1449 !isa<ArrayType>(CType.getUnqualifiedType()))
1450 return 0;
1451
1452 // Apply any CVR qualifiers from the array type to the element type. This
1453 // implements C99 6.7.3p8: "If the specification of an array type includes
1454 // any type qualifiers, the element type is so qualified, not the array type."
1455
1456 // If we get here, we either have type qualifiers on the type, or we have
1457 // sugar such as a typedef in the way. If we have type qualifiers on the type
1458 // we must propagate them down into the elemeng type.
1459 unsigned CVRQuals = T.getCVRQualifiers();
1460 unsigned AddrSpace = 0;
1461 Type *Ty = T.getTypePtr();
1462
1463 // Rip through ASQualType's and typedefs to get to a concrete type.
1464 while (1) {
1465 if (const ASQualType *ASQT = dyn_cast<ASQualType>(Ty)) {
1466 AddrSpace = ASQT->getAddressSpace();
1467 Ty = ASQT->getBaseType();
1468 } else {
1469 T = Ty->getDesugaredType();
1470 if (T.getTypePtr() == Ty && T.getCVRQualifiers() == 0)
1471 break;
1472 CVRQuals |= T.getCVRQualifiers();
1473 Ty = T.getTypePtr();
1474 }
1475 }
1476
1477 // If we have a simple case, just return now.
1478 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
1479 if (ATy == 0 || (AddrSpace == 0 && CVRQuals == 0))
1480 return ATy;
1481
1482 // Otherwise, we have an array and we have qualifiers on it. Push the
1483 // qualifiers into the array element type and return a new array type.
1484 // Get the canonical version of the element with the extra qualifiers on it.
1485 // This can recursively sink qualifiers through multiple levels of arrays.
1486 QualType NewEltTy = ATy->getElementType();
1487 if (AddrSpace)
1488 NewEltTy = getASQualType(NewEltTy, AddrSpace);
1489 NewEltTy = NewEltTy.getWithAdditionalQualifiers(CVRQuals);
1490
1491 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
1492 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
1493 CAT->getSizeModifier(),
1494 CAT->getIndexTypeQualifier()));
1495 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
1496 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
1497 IAT->getSizeModifier(),
1498 IAT->getIndexTypeQualifier()));
Douglas Gregor898574e2008-12-05 23:32:09 +00001499
Douglas Gregor898574e2008-12-05 23:32:09 +00001500 if (const DependentSizedArrayType *DSAT
1501 = dyn_cast<DependentSizedArrayType>(ATy))
1502 return cast<ArrayType>(
1503 getDependentSizedArrayType(NewEltTy,
1504 DSAT->getSizeExpr(),
1505 DSAT->getSizeModifier(),
1506 DSAT->getIndexTypeQualifier()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001507
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001508 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
1509 return cast<ArrayType>(getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1510 VAT->getSizeModifier(),
1511 VAT->getIndexTypeQualifier()));
Chris Lattner77c96472008-04-06 22:41:35 +00001512}
1513
1514
Chris Lattnere6327742008-04-02 05:18:44 +00001515/// getArrayDecayedType - Return the properly qualified result of decaying the
1516/// specified array type to a pointer. This operation is non-trivial when
1517/// handling typedefs etc. The canonical type of "T" must be an array type,
1518/// this returns a pointer to a properly qualified element of the array.
1519///
1520/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
1521QualType ASTContext::getArrayDecayedType(QualType Ty) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001522 // Get the element type with 'getAsArrayType' so that we don't lose any
1523 // typedefs in the element type of the array. This also handles propagation
1524 // of type qualifiers from the array type into the element type if present
1525 // (C99 6.7.3p8).
1526 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
1527 assert(PrettyArrayType && "Not an array type!");
Chris Lattnere6327742008-04-02 05:18:44 +00001528
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001529 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattnere6327742008-04-02 05:18:44 +00001530
1531 // int x[restrict 4] -> int *restrict
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001532 return PtrTy.getQualifiedType(PrettyArrayType->getIndexTypeQualifier());
Chris Lattnere6327742008-04-02 05:18:44 +00001533}
1534
Daniel Dunbard786f6a2009-01-05 22:14:37 +00001535QualType ASTContext::getBaseElementType(const VariableArrayType *VAT) {
Anders Carlsson6183a992008-12-21 03:44:36 +00001536 QualType ElemTy = VAT->getElementType();
1537
1538 if (const VariableArrayType *VAT = getAsVariableArrayType(ElemTy))
1539 return getBaseElementType(VAT);
1540
1541 return ElemTy;
1542}
1543
Reid Spencer5f016e22007-07-11 17:01:13 +00001544/// getFloatingRank - Return a relative rank for floating point types.
1545/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnera75cea32008-04-06 23:38:49 +00001546static FloatingRank getFloatingRank(QualType T) {
Christopher Lambebb97e92008-02-04 02:31:56 +00001547 if (const ComplexType *CT = T->getAsComplexType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001548 return getFloatingRank(CT->getElementType());
Chris Lattnera75cea32008-04-06 23:38:49 +00001549
Daniel Dunbard786f6a2009-01-05 22:14:37 +00001550 assert(T->getAsBuiltinType() && "getFloatingRank(): not a floating type");
Christopher Lambebb97e92008-02-04 02:31:56 +00001551 switch (T->getAsBuiltinType()->getKind()) {
Chris Lattnera75cea32008-04-06 23:38:49 +00001552 default: assert(0 && "getFloatingRank(): not a floating type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001553 case BuiltinType::Float: return FloatRank;
1554 case BuiltinType::Double: return DoubleRank;
1555 case BuiltinType::LongDouble: return LongDoubleRank;
1556 }
1557}
1558
Steve Naroff716c7302007-08-27 01:41:48 +00001559/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
1560/// point or a complex type (based on typeDomain/typeSize).
1561/// 'typeDomain' is a real floating point or complex type.
1562/// 'typeSize' is a real floating point or complex type.
Chris Lattner1361b112008-04-06 23:58:54 +00001563QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
1564 QualType Domain) const {
1565 FloatingRank EltRank = getFloatingRank(Size);
1566 if (Domain->isComplexType()) {
1567 switch (EltRank) {
Steve Naroff716c7302007-08-27 01:41:48 +00001568 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Narofff1448a02007-08-27 01:27:54 +00001569 case FloatRank: return FloatComplexTy;
1570 case DoubleRank: return DoubleComplexTy;
1571 case LongDoubleRank: return LongDoubleComplexTy;
1572 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001573 }
Chris Lattner1361b112008-04-06 23:58:54 +00001574
1575 assert(Domain->isRealFloatingType() && "Unknown domain!");
1576 switch (EltRank) {
1577 default: assert(0 && "getFloatingRank(): illegal value for rank");
1578 case FloatRank: return FloatTy;
1579 case DoubleRank: return DoubleTy;
1580 case LongDoubleRank: return LongDoubleTy;
Steve Narofff1448a02007-08-27 01:27:54 +00001581 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001582}
1583
Chris Lattner7cfeb082008-04-06 23:55:33 +00001584/// getFloatingTypeOrder - Compare the rank of the two specified floating
1585/// point types, ignoring the domain of the type (i.e. 'double' ==
1586/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
1587/// LHS < RHS, return -1.
Chris Lattnera75cea32008-04-06 23:38:49 +00001588int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
1589 FloatingRank LHSR = getFloatingRank(LHS);
1590 FloatingRank RHSR = getFloatingRank(RHS);
1591
1592 if (LHSR == RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00001593 return 0;
Chris Lattnera75cea32008-04-06 23:38:49 +00001594 if (LHSR > RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00001595 return 1;
1596 return -1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001597}
1598
Chris Lattnerf52ab252008-04-06 22:59:24 +00001599/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
1600/// routine will assert if passed a built-in type that isn't an integer or enum,
1601/// or if it is not canonicalized.
1602static unsigned getIntegerRank(Type *T) {
1603 assert(T->isCanonical() && "T should be canonicalized");
1604 if (isa<EnumType>(T))
1605 return 4;
1606
1607 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner7cfeb082008-04-06 23:55:33 +00001608 default: assert(0 && "getIntegerRank(): not a built-in integer");
1609 case BuiltinType::Bool:
1610 return 1;
1611 case BuiltinType::Char_S:
1612 case BuiltinType::Char_U:
1613 case BuiltinType::SChar:
1614 case BuiltinType::UChar:
1615 return 2;
1616 case BuiltinType::Short:
1617 case BuiltinType::UShort:
1618 return 3;
1619 case BuiltinType::Int:
1620 case BuiltinType::UInt:
1621 return 4;
1622 case BuiltinType::Long:
1623 case BuiltinType::ULong:
1624 return 5;
1625 case BuiltinType::LongLong:
1626 case BuiltinType::ULongLong:
1627 return 6;
Chris Lattnerf52ab252008-04-06 22:59:24 +00001628 }
1629}
1630
Chris Lattner7cfeb082008-04-06 23:55:33 +00001631/// getIntegerTypeOrder - Returns the highest ranked integer type:
1632/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
1633/// LHS < RHS, return -1.
1634int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001635 Type *LHSC = getCanonicalType(LHS).getTypePtr();
1636 Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner7cfeb082008-04-06 23:55:33 +00001637 if (LHSC == RHSC) return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001638
Chris Lattnerf52ab252008-04-06 22:59:24 +00001639 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
1640 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001641
Chris Lattner7cfeb082008-04-06 23:55:33 +00001642 unsigned LHSRank = getIntegerRank(LHSC);
1643 unsigned RHSRank = getIntegerRank(RHSC);
Reid Spencer5f016e22007-07-11 17:01:13 +00001644
Chris Lattner7cfeb082008-04-06 23:55:33 +00001645 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
1646 if (LHSRank == RHSRank) return 0;
1647 return LHSRank > RHSRank ? 1 : -1;
1648 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001649
Chris Lattner7cfeb082008-04-06 23:55:33 +00001650 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
1651 if (LHSUnsigned) {
1652 // If the unsigned [LHS] type is larger, return it.
1653 if (LHSRank >= RHSRank)
1654 return 1;
1655
1656 // If the signed type can represent all values of the unsigned type, it
1657 // wins. Because we are dealing with 2's complement and types that are
1658 // powers of two larger than each other, this is always safe.
1659 return -1;
1660 }
Chris Lattnerf52ab252008-04-06 22:59:24 +00001661
Chris Lattner7cfeb082008-04-06 23:55:33 +00001662 // If the unsigned [RHS] type is larger, return it.
1663 if (RHSRank >= LHSRank)
1664 return -1;
1665
1666 // If the signed type can represent all values of the unsigned type, it
1667 // wins. Because we are dealing with 2's complement and types that are
1668 // powers of two larger than each other, this is always safe.
1669 return 1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001670}
Anders Carlsson71993dd2007-08-17 05:31:46 +00001671
1672// getCFConstantStringType - Return the type used for constant CFStrings.
1673QualType ASTContext::getCFConstantStringType() {
1674 if (!CFConstantStringTypeDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001675 CFConstantStringTypeDecl =
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001676 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
Ted Kremenekdf042e62008-09-05 01:34:33 +00001677 &Idents.get("NSConstantString"));
Anders Carlssonf06273f2007-11-19 00:25:30 +00001678 QualType FieldTypes[4];
Anders Carlsson71993dd2007-08-17 05:31:46 +00001679
1680 // const int *isa;
1681 FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
Anders Carlssonf06273f2007-11-19 00:25:30 +00001682 // int flags;
1683 FieldTypes[1] = IntTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +00001684 // const char *str;
Anders Carlssonf06273f2007-11-19 00:25:30 +00001685 FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
Anders Carlsson71993dd2007-08-17 05:31:46 +00001686 // long length;
Anders Carlssonf06273f2007-11-19 00:25:30 +00001687 FieldTypes[3] = LongTy;
Douglas Gregor44b43212008-12-11 16:49:14 +00001688
Anders Carlsson71993dd2007-08-17 05:31:46 +00001689 // Create fields
Douglas Gregor44b43212008-12-11 16:49:14 +00001690 for (unsigned i = 0; i < 4; ++i) {
1691 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
1692 SourceLocation(), 0,
1693 FieldTypes[i], /*BitWidth=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001694 /*Mutable=*/false);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001695 CFConstantStringTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00001696 }
1697
1698 CFConstantStringTypeDecl->completeDefinition(*this);
Anders Carlsson71993dd2007-08-17 05:31:46 +00001699 }
1700
1701 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif84675832007-09-11 15:32:40 +00001702}
Anders Carlssonb2cf3572007-10-11 01:00:40 +00001703
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001704QualType ASTContext::getObjCFastEnumerationStateType()
1705{
1706 if (!ObjCFastEnumerationStateTypeDecl) {
Douglas Gregor44b43212008-12-11 16:49:14 +00001707 ObjCFastEnumerationStateTypeDecl =
1708 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
1709 &Idents.get("__objcFastEnumerationState"));
1710
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001711 QualType FieldTypes[] = {
1712 UnsignedLongTy,
1713 getPointerType(ObjCIdType),
1714 getPointerType(UnsignedLongTy),
1715 getConstantArrayType(UnsignedLongTy,
1716 llvm::APInt(32, 5), ArrayType::Normal, 0)
1717 };
1718
Douglas Gregor44b43212008-12-11 16:49:14 +00001719 for (size_t i = 0; i < 4; ++i) {
1720 FieldDecl *Field = FieldDecl::Create(*this,
1721 ObjCFastEnumerationStateTypeDecl,
1722 SourceLocation(), 0,
1723 FieldTypes[i], /*BitWidth=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001724 /*Mutable=*/false);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001725 ObjCFastEnumerationStateTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00001726 }
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001727
Douglas Gregor44b43212008-12-11 16:49:14 +00001728 ObjCFastEnumerationStateTypeDecl->completeDefinition(*this);
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001729 }
1730
1731 return getTagDeclType(ObjCFastEnumerationStateTypeDecl);
1732}
1733
Anders Carlssone8c49532007-10-29 06:33:42 +00001734// This returns true if a type has been typedefed to BOOL:
1735// typedef <type> BOOL;
Chris Lattner2d998332007-10-30 20:27:44 +00001736static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone8c49532007-10-29 06:33:42 +00001737 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnerbb49c3e2008-11-24 03:52:59 +00001738 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
1739 return II->isStr("BOOL");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001740
1741 return false;
1742}
1743
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001744/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001745/// purpose.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001746int ASTContext::getObjCEncodingTypeSize(QualType type) {
Chris Lattner98be4942008-03-05 18:54:05 +00001747 uint64_t sz = getTypeSize(type);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001748
1749 // Make all integer and enum types at least as large as an int
1750 if (sz > 0 && type->isIntegralType())
Chris Lattner98be4942008-03-05 18:54:05 +00001751 sz = std::max(sz, getTypeSize(IntTy));
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001752 // Treat arrays as pointers, since that's how they're passed in.
1753 else if (type->isArrayType())
Chris Lattner98be4942008-03-05 18:54:05 +00001754 sz = getTypeSize(VoidPtrTy);
1755 return sz / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001756}
1757
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001758/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001759/// declaration.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001760void ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Chris Lattnere6db3b02008-11-19 07:24:05 +00001761 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001762 // FIXME: This is not very efficient.
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001763 // Encode type qualifer, 'in', 'inout', etc. for the return type.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001764 getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001765 // Encode result type.
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001766 getObjCEncodingForType(Decl->getResultType(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001767 // Compute size of all parameters.
1768 // Start with computing size of a pointer in number of bytes.
1769 // FIXME: There might(should) be a better way of doing this computation!
1770 SourceLocation Loc;
Chris Lattner98be4942008-03-05 18:54:05 +00001771 int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001772 // The first two arguments (self and _cmd) are pointers; account for
1773 // their size.
1774 int ParmOffset = 2 * PtrSize;
1775 int NumOfParams = Decl->getNumParams();
1776 for (int i = 0; i < NumOfParams; i++) {
1777 QualType PType = Decl->getParamDecl(i)->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001778 int sz = getObjCEncodingTypeSize (PType);
1779 assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001780 ParmOffset += sz;
1781 }
1782 S += llvm::utostr(ParmOffset);
1783 S += "@0:";
1784 S += llvm::utostr(PtrSize);
1785
1786 // Argument types.
1787 ParmOffset = 2 * PtrSize;
1788 for (int i = 0; i < NumOfParams; i++) {
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001789 ParmVarDecl *PVDecl = Decl->getParamDecl(i);
1790 QualType PType = PVDecl->getOriginalType();
1791 if (const ArrayType *AT =
1792 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal()))
1793 // Use array's original type only if it has known number of
1794 // elements.
1795 if (!dyn_cast<ConstantArrayType>(AT))
1796 PType = PVDecl->getType();
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001797 // Process argument qualifiers for user supplied arguments; such as,
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001798 // 'in', 'inout', etc.
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001799 getObjCEncodingForTypeQualifier(PVDecl->getObjCDeclQualifier(), S);
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001800 getObjCEncodingForType(PType, S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001801 S += llvm::utostr(ParmOffset);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001802 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001803 }
1804}
1805
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001806/// getObjCEncodingForPropertyDecl - Return the encoded type for this
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00001807/// property declaration. If non-NULL, Container must be either an
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001808/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
1809/// NULL when getting encodings for protocol properties.
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00001810/// Property attributes are stored as a comma-delimited C string. The simple
1811/// attributes readonly and bycopy are encoded as single characters. The
1812/// parametrized attributes, getter=name, setter=name, and ivar=name, are
1813/// encoded as single characters, followed by an identifier. Property types
1814/// are also encoded as a parametrized attribute. The characters used to encode
1815/// these attributes are defined by the following enumeration:
1816/// @code
1817/// enum PropertyAttributes {
1818/// kPropertyReadOnly = 'R', // property is read-only.
1819/// kPropertyBycopy = 'C', // property is a copy of the value last assigned
1820/// kPropertyByref = '&', // property is a reference to the value last assigned
1821/// kPropertyDynamic = 'D', // property is dynamic
1822/// kPropertyGetter = 'G', // followed by getter selector name
1823/// kPropertySetter = 'S', // followed by setter selector name
1824/// kPropertyInstanceVariable = 'V' // followed by instance variable name
1825/// kPropertyType = 't' // followed by old-style type encoding.
1826/// kPropertyWeak = 'W' // 'weak' property
1827/// kPropertyStrong = 'P' // property GC'able
1828/// kPropertyNonAtomic = 'N' // property non-atomic
1829/// };
1830/// @endcode
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001831void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
1832 const Decl *Container,
Chris Lattnere6db3b02008-11-19 07:24:05 +00001833 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001834 // Collect information from the property implementation decl(s).
1835 bool Dynamic = false;
1836 ObjCPropertyImplDecl *SynthesizePID = 0;
1837
1838 // FIXME: Duplicated code due to poor abstraction.
1839 if (Container) {
1840 if (const ObjCCategoryImplDecl *CID =
1841 dyn_cast<ObjCCategoryImplDecl>(Container)) {
1842 for (ObjCCategoryImplDecl::propimpl_iterator
1843 i = CID->propimpl_begin(), e = CID->propimpl_end(); i != e; ++i) {
1844 ObjCPropertyImplDecl *PID = *i;
1845 if (PID->getPropertyDecl() == PD) {
1846 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1847 Dynamic = true;
1848 } else {
1849 SynthesizePID = PID;
1850 }
1851 }
1852 }
1853 } else {
Chris Lattner61710852008-10-05 17:34:18 +00001854 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001855 for (ObjCCategoryImplDecl::propimpl_iterator
1856 i = OID->propimpl_begin(), e = OID->propimpl_end(); i != e; ++i) {
1857 ObjCPropertyImplDecl *PID = *i;
1858 if (PID->getPropertyDecl() == PD) {
1859 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1860 Dynamic = true;
1861 } else {
1862 SynthesizePID = PID;
1863 }
1864 }
1865 }
1866 }
1867 }
1868
1869 // FIXME: This is not very efficient.
1870 S = "T";
1871
1872 // Encode result type.
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001873 // GCC has some special rules regarding encoding of properties which
1874 // closely resembles encoding of ivars.
1875 getObjCEncodingForTypeImpl(PD->getType(), S, true, true, NULL,
1876 true /* outermost type */,
1877 true /* encoding for property */);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001878
1879 if (PD->isReadOnly()) {
1880 S += ",R";
1881 } else {
1882 switch (PD->getSetterKind()) {
1883 case ObjCPropertyDecl::Assign: break;
1884 case ObjCPropertyDecl::Copy: S += ",C"; break;
1885 case ObjCPropertyDecl::Retain: S += ",&"; break;
1886 }
1887 }
1888
1889 // It really isn't clear at all what this means, since properties
1890 // are "dynamic by default".
1891 if (Dynamic)
1892 S += ",D";
1893
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001894 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
1895 S += ",N";
1896
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001897 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
1898 S += ",G";
Chris Lattner077bf5e2008-11-24 03:33:13 +00001899 S += PD->getGetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001900 }
1901
1902 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
1903 S += ",S";
Chris Lattner077bf5e2008-11-24 03:33:13 +00001904 S += PD->getSetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001905 }
1906
1907 if (SynthesizePID) {
1908 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
1909 S += ",V";
Chris Lattner39f34e92008-11-24 04:00:27 +00001910 S += OID->getNameAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001911 }
1912
1913 // FIXME: OBJCGC: weak & strong
1914}
1915
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001916/// getLegacyIntegralTypeEncoding -
1917/// Another legacy compatibility encoding: 32-bit longs are encoded as
1918/// 'l' or 'L', but not always. For typedefs, we need to use
1919/// 'i' or 'I' instead if encoding a struct field, or a pointer!
1920///
1921void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
1922 if (dyn_cast<TypedefType>(PointeeTy.getTypePtr())) {
1923 if (const BuiltinType *BT = PointeeTy->getAsBuiltinType()) {
1924 if (BT->getKind() == BuiltinType::ULong)
1925 PointeeTy = UnsignedIntTy;
1926 else if (BT->getKind() == BuiltinType::Long)
1927 PointeeTy = IntTy;
1928 }
1929 }
1930}
1931
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001932void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001933 FieldDecl *Field) const {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001934 // We follow the behavior of gcc, expanding structures which are
1935 // directly pointed to, and expanding embedded structures. Note that
1936 // these rules are sufficient to prevent recursive encoding of the
1937 // same type.
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00001938 getObjCEncodingForTypeImpl(T, S, true, true, Field,
1939 true /* outermost type */);
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001940}
1941
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00001942static void EncodeBitField(const ASTContext *Context, std::string& S,
1943 FieldDecl *FD) {
1944 const Expr *E = FD->getBitWidth();
1945 assert(E && "bitfield width not there - getObjCEncodingForTypeImpl");
1946 ASTContext *Ctx = const_cast<ASTContext*>(Context);
1947 unsigned N = E->getIntegerConstantExprValue(*Ctx).getZExtValue();
1948 S += 'b';
1949 S += llvm::utostr(N);
1950}
1951
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001952void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
1953 bool ExpandPointedToStructures,
1954 bool ExpandStructures,
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00001955 FieldDecl *FD,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001956 bool OutermostType,
1957 bool EncodingProperty) const {
Anders Carlssone8c49532007-10-29 06:33:42 +00001958 if (const BuiltinType *BT = T->getAsBuiltinType()) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001959 if (FD && FD->isBitField()) {
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00001960 EncodeBitField(this, S, FD);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001961 }
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001962 else {
1963 char encoding;
1964 switch (BT->getKind()) {
1965 default: assert(0 && "Unhandled builtin type kind");
1966 case BuiltinType::Void: encoding = 'v'; break;
1967 case BuiltinType::Bool: encoding = 'B'; break;
1968 case BuiltinType::Char_U:
1969 case BuiltinType::UChar: encoding = 'C'; break;
1970 case BuiltinType::UShort: encoding = 'S'; break;
1971 case BuiltinType::UInt: encoding = 'I'; break;
1972 case BuiltinType::ULong: encoding = 'L'; break;
1973 case BuiltinType::ULongLong: encoding = 'Q'; break;
1974 case BuiltinType::Char_S:
1975 case BuiltinType::SChar: encoding = 'c'; break;
1976 case BuiltinType::Short: encoding = 's'; break;
1977 case BuiltinType::Int: encoding = 'i'; break;
1978 case BuiltinType::Long: encoding = 'l'; break;
1979 case BuiltinType::LongLong: encoding = 'q'; break;
1980 case BuiltinType::Float: encoding = 'f'; break;
1981 case BuiltinType::Double: encoding = 'd'; break;
1982 case BuiltinType::LongDouble: encoding = 'd'; break;
1983 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001984
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001985 S += encoding;
1986 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001987 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001988 else if (T->isObjCQualifiedIdType()) {
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001989 getObjCEncodingForTypeImpl(getObjCIdType(), S,
1990 ExpandPointedToStructures,
1991 ExpandStructures, FD);
1992 if (FD || EncodingProperty) {
1993 // Note that we do extended encoding of protocol qualifer list
1994 // Only when doing ivar or property encoding.
1995 const ObjCQualifiedIdType *QIDT = T->getAsObjCQualifiedIdType();
1996 S += '"';
1997 for (unsigned i =0; i < QIDT->getNumProtocols(); i++) {
1998 ObjCProtocolDecl *Proto = QIDT->getProtocols(i);
1999 S += '<';
2000 S += Proto->getNameAsString();
2001 S += '>';
2002 }
2003 S += '"';
2004 }
2005 return;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002006 }
2007 else if (const PointerType *PT = T->getAsPointerType()) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002008 QualType PointeeTy = PT->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002009 bool isReadOnly = false;
2010 // For historical/compatibility reasons, the read-only qualifier of the
2011 // pointee gets emitted _before_ the '^'. The read-only qualifier of
2012 // the pointer itself gets ignored, _unless_ we are looking at a typedef!
2013 // Also, do not emit the 'r' for anything but the outermost type!
2014 if (dyn_cast<TypedefType>(T.getTypePtr())) {
2015 if (OutermostType && T.isConstQualified()) {
2016 isReadOnly = true;
2017 S += 'r';
2018 }
2019 }
2020 else if (OutermostType) {
2021 QualType P = PointeeTy;
2022 while (P->getAsPointerType())
2023 P = P->getAsPointerType()->getPointeeType();
2024 if (P.isConstQualified()) {
2025 isReadOnly = true;
2026 S += 'r';
2027 }
2028 }
2029 if (isReadOnly) {
2030 // Another legacy compatibility encoding. Some ObjC qualifier and type
2031 // combinations need to be rearranged.
2032 // Rewrite "in const" from "nr" to "rn"
2033 const char * s = S.c_str();
2034 int len = S.length();
2035 if (len >= 2 && s[len-2] == 'n' && s[len-1] == 'r') {
2036 std::string replace = "rn";
2037 S.replace(S.end()-2, S.end(), replace);
2038 }
2039 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002040 if (isObjCIdType(PointeeTy)) {
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00002041 S += '@';
2042 return;
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002043 }
2044 else if (PointeeTy->isObjCInterfaceType()) {
Fariborz Jahanian3e1b16c2008-12-23 21:30:15 +00002045 if (dyn_cast<TypedefType>(PointeeTy.getTypePtr())) {
2046 // Another historical/compatibility reason.
2047 // We encode the underlying type which comes out as
2048 // {...};
2049 S += '^';
2050 getObjCEncodingForTypeImpl(PointeeTy, S,
2051 false, ExpandPointedToStructures,
2052 NULL);
2053 return;
2054 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002055 S += '@';
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002056 if (FD || EncodingProperty) {
2057 const ObjCInterfaceType *OIT = PointeeTy->getAsObjCInterfaceType();
2058 ObjCInterfaceDecl *OI = OIT->getDecl();
Fariborz Jahanianadcaf542008-12-20 19:17:01 +00002059 S += '"';
2060 S += OI->getNameAsCString();
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002061 for (unsigned i =0; i < OIT->getNumProtocols(); i++) {
2062 ObjCProtocolDecl *Proto = OIT->getProtocol(i);
2063 S += '<';
2064 S += Proto->getNameAsString();
2065 S += '>';
2066 }
Fariborz Jahanianadcaf542008-12-20 19:17:01 +00002067 S += '"';
2068 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002069 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002070 } else if (isObjCClassType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00002071 S += '#';
2072 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002073 } else if (isObjCSelType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00002074 S += ':';
2075 return;
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00002076 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002077
2078 if (PointeeTy->isCharType()) {
2079 // char pointer types should be encoded as '*' unless it is a
2080 // type that has been typedef'd to 'BOOL'.
Anders Carlssone8c49532007-10-29 06:33:42 +00002081 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002082 S += '*';
2083 return;
2084 }
2085 }
2086
2087 S += '^';
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002088 getLegacyIntegralTypeEncoding(PointeeTy);
2089
2090 getObjCEncodingForTypeImpl(PointeeTy, S,
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002091 false, ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002092 NULL);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002093 } else if (const ArrayType *AT =
2094 // Ignore type qualifiers etc.
2095 dyn_cast<ArrayType>(T->getCanonicalTypeInternal())) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002096 S += '[';
2097
2098 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
2099 S += llvm::utostr(CAT->getSize().getZExtValue());
2100 else
2101 assert(0 && "Unhandled array type!");
2102
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002103 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002104 false, ExpandStructures, FD);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002105 S += ']';
Anders Carlssonc0a87b72007-10-30 00:06:20 +00002106 } else if (T->getAsFunctionType()) {
2107 S += '?';
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00002108 } else if (const RecordType *RTy = T->getAsRecordType()) {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002109 RecordDecl *RDecl = RTy->getDecl();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002110 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar502a4a12008-10-17 06:22:57 +00002111 // Anonymous structures print as '?'
2112 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
2113 S += II->getName();
2114 } else {
2115 S += '?';
2116 }
Daniel Dunbar0d504c12008-10-17 20:21:44 +00002117 if (ExpandStructures) {
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002118 S += '=';
Douglas Gregor44b43212008-12-11 16:49:14 +00002119 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
2120 FieldEnd = RDecl->field_end();
2121 Field != FieldEnd; ++Field) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002122 if (FD) {
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002123 S += '"';
Douglas Gregor44b43212008-12-11 16:49:14 +00002124 S += Field->getNameAsString();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002125 S += '"';
2126 }
2127
2128 // Special case bit-fields.
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002129 if (Field->isBitField()) {
2130 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
2131 (*Field));
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002132 } else {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002133 QualType qt = Field->getType();
2134 getLegacyIntegralTypeEncoding(qt);
2135 getObjCEncodingForTypeImpl(qt, S, false, true,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002136 FD);
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002137 }
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002138 }
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00002139 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002140 S += RDecl->isUnion() ? ')' : '}';
Steve Naroff5e711242007-12-12 22:30:11 +00002141 } else if (T->isEnumeralType()) {
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00002142 if (FD && FD->isBitField())
2143 EncodeBitField(this, S, FD);
2144 else
2145 S += 'i';
Steve Naroff485eeff2008-09-24 15:05:44 +00002146 } else if (T->isBlockPointerType()) {
Steve Naroff21a98b12009-02-02 18:24:29 +00002147 S += "@?"; // Unlike a pointer-to-function, which is "^?".
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002148 } else if (T->isObjCInterfaceType()) {
2149 // @encode(class_name)
2150 ObjCInterfaceDecl *OI = T->getAsObjCInterfaceType()->getDecl();
2151 S += '{';
2152 const IdentifierInfo *II = OI->getIdentifier();
2153 S += II->getName();
2154 S += '=';
2155 std::vector<FieldDecl*> RecFields;
2156 CollectObjCIvars(OI, RecFields);
2157 for (unsigned int i = 0; i != RecFields.size(); i++) {
2158 if (RecFields[i]->isBitField())
2159 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
2160 RecFields[i]);
2161 else
2162 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
2163 FD);
2164 }
2165 S += '}';
2166 }
2167 else
Steve Narofff69cc5d2008-01-30 19:17:43 +00002168 assert(0 && "@encode for type not implemented!");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002169}
2170
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002171void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00002172 std::string& S) const {
2173 if (QT & Decl::OBJC_TQ_In)
2174 S += 'n';
2175 if (QT & Decl::OBJC_TQ_Inout)
2176 S += 'N';
2177 if (QT & Decl::OBJC_TQ_Out)
2178 S += 'o';
2179 if (QT & Decl::OBJC_TQ_Bycopy)
2180 S += 'O';
2181 if (QT & Decl::OBJC_TQ_Byref)
2182 S += 'R';
2183 if (QT & Decl::OBJC_TQ_Oneway)
2184 S += 'V';
2185}
2186
Anders Carlssonb2cf3572007-10-11 01:00:40 +00002187void ASTContext::setBuiltinVaListType(QualType T)
2188{
2189 assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
2190
2191 BuiltinVaListType = T;
2192}
2193
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002194void ASTContext::setObjCIdType(TypedefDecl *TD)
Steve Naroff7e219e42007-10-15 14:41:52 +00002195{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002196 ObjCIdType = getTypedefType(TD);
Steve Naroff7e219e42007-10-15 14:41:52 +00002197
2198 // typedef struct objc_object *id;
2199 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002200 // User error - caller will issue diagnostics.
2201 if (!ptr)
2202 return;
Steve Naroff7e219e42007-10-15 14:41:52 +00002203 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002204 // User error - caller will issue diagnostics.
2205 if (!rec)
2206 return;
Steve Naroff7e219e42007-10-15 14:41:52 +00002207 IdStructType = rec;
2208}
2209
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002210void ASTContext::setObjCSelType(TypedefDecl *TD)
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002211{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002212 ObjCSelType = getTypedefType(TD);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002213
2214 // typedef struct objc_selector *SEL;
2215 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002216 if (!ptr)
2217 return;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002218 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002219 if (!rec)
2220 return;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002221 SelStructType = rec;
2222}
2223
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002224void ASTContext::setObjCProtoType(QualType QT)
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002225{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002226 ObjCProtoType = QT;
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002227}
2228
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002229void ASTContext::setObjCClassType(TypedefDecl *TD)
Anders Carlsson8baaca52007-10-31 02:53:19 +00002230{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002231 ObjCClassType = getTypedefType(TD);
Anders Carlsson8baaca52007-10-31 02:53:19 +00002232
2233 // typedef struct objc_class *Class;
2234 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
2235 assert(ptr && "'Class' incorrectly typed");
2236 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
2237 assert(rec && "'Class' incorrectly typed");
2238 ClassStructType = rec;
2239}
2240
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002241void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
2242 assert(ObjCConstantStringType.isNull() &&
Steve Naroff21988912007-10-15 23:35:17 +00002243 "'NSConstantString' type already set!");
2244
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002245 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Naroff21988912007-10-15 23:35:17 +00002246}
2247
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002248/// getFromTargetType - Given one of the integer types provided by
Douglas Gregord9341122008-11-03 15:57:00 +00002249/// TargetInfo, produce the corresponding type. The unsigned @p Type
2250/// is actually a value of type @c TargetInfo::IntType.
2251QualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002252 switch (Type) {
2253 case TargetInfo::NoInt: return QualType();
2254 case TargetInfo::SignedShort: return ShortTy;
2255 case TargetInfo::UnsignedShort: return UnsignedShortTy;
2256 case TargetInfo::SignedInt: return IntTy;
2257 case TargetInfo::UnsignedInt: return UnsignedIntTy;
2258 case TargetInfo::SignedLong: return LongTy;
2259 case TargetInfo::UnsignedLong: return UnsignedLongTy;
2260 case TargetInfo::SignedLongLong: return LongLongTy;
2261 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
2262 }
2263
2264 assert(false && "Unhandled TargetInfo::IntType value");
Daniel Dunbarb3ac5432008-11-11 01:16:00 +00002265 return QualType();
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002266}
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002267
2268//===----------------------------------------------------------------------===//
2269// Type Predicates.
2270//===----------------------------------------------------------------------===//
2271
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002272/// isObjCNSObjectType - Return true if this is an NSObject object using
2273/// NSObject attribute on a c-style pointer type.
2274/// FIXME - Make it work directly on types.
2275///
2276bool ASTContext::isObjCNSObjectType(QualType Ty) const {
2277 if (TypedefType *TDT = dyn_cast<TypedefType>(Ty)) {
2278 if (TypedefDecl *TD = TDT->getDecl())
2279 if (TD->getAttr<ObjCNSObjectAttr>())
2280 return true;
2281 }
2282 return false;
2283}
2284
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002285/// isObjCObjectPointerType - Returns true if type is an Objective-C pointer
2286/// to an object type. This includes "id" and "Class" (two 'special' pointers
2287/// to struct), Interface* (pointer to ObjCInterfaceType) and id<P> (qualified
2288/// ID type).
2289bool ASTContext::isObjCObjectPointerType(QualType Ty) const {
2290 if (Ty->isObjCQualifiedIdType())
2291 return true;
2292
Steve Naroff6ae98502008-10-21 18:24:04 +00002293 // Blocks are objects.
2294 if (Ty->isBlockPointerType())
2295 return true;
2296
2297 // All other object types are pointers.
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002298 if (!Ty->isPointerType())
2299 return false;
2300
2301 // Check to see if this is 'id' or 'Class', both of which are typedefs for
2302 // pointer types. This looks for the typedef specifically, not for the
2303 // underlying type.
2304 if (Ty == getObjCIdType() || Ty == getObjCClassType())
2305 return true;
2306
2307 // If this a pointer to an interface (e.g. NSString*), it is ok.
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002308 if (Ty->getAsPointerType()->getPointeeType()->isObjCInterfaceType())
2309 return true;
2310
2311 // If is has NSObject attribute, OK as well.
2312 return isObjCNSObjectType(Ty);
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002313}
2314
Chris Lattner6ac46a42008-04-07 06:51:04 +00002315//===----------------------------------------------------------------------===//
2316// Type Compatibility Testing
2317//===----------------------------------------------------------------------===//
Chris Lattner770951b2007-11-01 05:03:41 +00002318
Steve Naroff1c7d0672008-09-04 15:10:53 +00002319/// typesAreBlockCompatible - This routine is called when comparing two
Steve Naroffdd972f22008-09-05 22:11:13 +00002320/// block types. Types must be strictly compatible here. For example,
2321/// C unfortunately doesn't produce an error for the following:
2322///
2323/// int (*emptyArgFunc)();
2324/// int (*intArgList)(int) = emptyArgFunc;
2325///
2326/// For blocks, we will produce an error for the following (similar to C++):
2327///
2328/// int (^emptyArgBlock)();
2329/// int (^intArgBlock)(int) = emptyArgBlock;
2330///
2331/// FIXME: When the dust settles on this integration, fold this into mergeTypes.
2332///
Steve Naroff1c7d0672008-09-04 15:10:53 +00002333bool ASTContext::typesAreBlockCompatible(QualType lhs, QualType rhs) {
Steve Naroffc0febd52008-12-10 17:49:55 +00002334 const FunctionType *lbase = lhs->getAsFunctionType();
2335 const FunctionType *rbase = rhs->getAsFunctionType();
2336 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2337 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2338 if (lproto && rproto)
2339 return !mergeTypes(lhs, rhs).isNull();
2340 return false;
Steve Naroff1c7d0672008-09-04 15:10:53 +00002341}
2342
Chris Lattner6ac46a42008-04-07 06:51:04 +00002343/// areCompatVectorTypes - Return true if the two specified vector types are
2344/// compatible.
2345static bool areCompatVectorTypes(const VectorType *LHS,
2346 const VectorType *RHS) {
2347 assert(LHS->isCanonical() && RHS->isCanonical());
2348 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner61710852008-10-05 17:34:18 +00002349 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ac46a42008-04-07 06:51:04 +00002350}
2351
Eli Friedman3d815e72008-08-22 00:56:42 +00002352/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00002353/// compatible for assignment from RHS to LHS. This handles validation of any
2354/// protocol qualifiers on the LHS or RHS.
2355///
Eli Friedman3d815e72008-08-22 00:56:42 +00002356bool ASTContext::canAssignObjCInterfaces(const ObjCInterfaceType *LHS,
2357 const ObjCInterfaceType *RHS) {
Chris Lattner6ac46a42008-04-07 06:51:04 +00002358 // Verify that the base decls are compatible: the RHS must be a subclass of
2359 // the LHS.
2360 if (!LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
2361 return false;
2362
2363 // RHS must have a superset of the protocols in the LHS. If the LHS is not
2364 // protocol qualified at all, then we are good.
2365 if (!isa<ObjCQualifiedInterfaceType>(LHS))
2366 return true;
2367
2368 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't, then it
2369 // isn't a superset.
2370 if (!isa<ObjCQualifiedInterfaceType>(RHS))
2371 return true; // FIXME: should return false!
2372
2373 // Finally, we must have two protocol-qualified interfaces.
2374 const ObjCQualifiedInterfaceType *LHSP =cast<ObjCQualifiedInterfaceType>(LHS);
2375 const ObjCQualifiedInterfaceType *RHSP =cast<ObjCQualifiedInterfaceType>(RHS);
2376 ObjCQualifiedInterfaceType::qual_iterator LHSPI = LHSP->qual_begin();
2377 ObjCQualifiedInterfaceType::qual_iterator LHSPE = LHSP->qual_end();
2378 ObjCQualifiedInterfaceType::qual_iterator RHSPI = RHSP->qual_begin();
2379 ObjCQualifiedInterfaceType::qual_iterator RHSPE = RHSP->qual_end();
2380
2381 // All protocols in LHS must have a presence in RHS. Since the protocol lists
2382 // are both sorted alphabetically and have no duplicates, we can scan RHS and
2383 // LHS in a single parallel scan until we run out of elements in LHS.
2384 assert(LHSPI != LHSPE && "Empty LHS protocol list?");
2385 ObjCProtocolDecl *LHSProto = *LHSPI;
2386
2387 while (RHSPI != RHSPE) {
2388 ObjCProtocolDecl *RHSProto = *RHSPI++;
2389 // If the RHS has a protocol that the LHS doesn't, ignore it.
2390 if (RHSProto != LHSProto)
2391 continue;
2392
2393 // Otherwise, the RHS does have this element.
2394 ++LHSPI;
2395 if (LHSPI == LHSPE)
2396 return true; // All protocols in LHS exist in RHS.
2397
2398 LHSProto = *LHSPI;
2399 }
2400
2401 // If we got here, we didn't find one of the LHS's protocols in the RHS list.
2402 return false;
2403}
2404
Steve Naroffec0550f2007-10-15 20:41:53 +00002405/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
2406/// both shall have the identically qualified version of a compatible type.
2407/// C99 6.2.7p1: Two types have compatible types if their types are the
2408/// same. See 6.7.[2,3,5] for additional rules.
Eli Friedman3d815e72008-08-22 00:56:42 +00002409bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS) {
2410 return !mergeTypes(LHS, RHS).isNull();
2411}
2412
2413QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs) {
2414 const FunctionType *lbase = lhs->getAsFunctionType();
2415 const FunctionType *rbase = rhs->getAsFunctionType();
2416 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2417 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2418 bool allLTypes = true;
2419 bool allRTypes = true;
2420
2421 // Check return type
2422 QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
2423 if (retType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002424 if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType()))
2425 allLTypes = false;
2426 if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType()))
2427 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00002428
2429 if (lproto && rproto) { // two C99 style function prototypes
2430 unsigned lproto_nargs = lproto->getNumArgs();
2431 unsigned rproto_nargs = rproto->getNumArgs();
2432
2433 // Compatible functions must have the same number of arguments
2434 if (lproto_nargs != rproto_nargs)
2435 return QualType();
2436
2437 // Variadic and non-variadic functions aren't compatible
2438 if (lproto->isVariadic() != rproto->isVariadic())
2439 return QualType();
2440
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002441 if (lproto->getTypeQuals() != rproto->getTypeQuals())
2442 return QualType();
2443
Eli Friedman3d815e72008-08-22 00:56:42 +00002444 // Check argument compatibility
2445 llvm::SmallVector<QualType, 10> types;
2446 for (unsigned i = 0; i < lproto_nargs; i++) {
2447 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
2448 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
2449 QualType argtype = mergeTypes(largtype, rargtype);
2450 if (argtype.isNull()) return QualType();
2451 types.push_back(argtype);
Chris Lattner61710852008-10-05 17:34:18 +00002452 if (getCanonicalType(argtype) != getCanonicalType(largtype))
2453 allLTypes = false;
2454 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
2455 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00002456 }
2457 if (allLTypes) return lhs;
2458 if (allRTypes) return rhs;
2459 return getFunctionType(retType, types.begin(), types.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002460 lproto->isVariadic(), lproto->getTypeQuals());
Eli Friedman3d815e72008-08-22 00:56:42 +00002461 }
2462
2463 if (lproto) allRTypes = false;
2464 if (rproto) allLTypes = false;
2465
2466 const FunctionTypeProto *proto = lproto ? lproto : rproto;
2467 if (proto) {
2468 if (proto->isVariadic()) return QualType();
2469 // Check that the types are compatible with the types that
2470 // would result from default argument promotions (C99 6.7.5.3p15).
2471 // The only types actually affected are promotable integer
2472 // types and floats, which would be passed as a different
2473 // type depending on whether the prototype is visible.
2474 unsigned proto_nargs = proto->getNumArgs();
2475 for (unsigned i = 0; i < proto_nargs; ++i) {
2476 QualType argTy = proto->getArgType(i);
2477 if (argTy->isPromotableIntegerType() ||
2478 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
2479 return QualType();
2480 }
2481
2482 if (allLTypes) return lhs;
2483 if (allRTypes) return rhs;
2484 return getFunctionType(retType, proto->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002485 proto->getNumArgs(), lproto->isVariadic(),
2486 lproto->getTypeQuals());
Eli Friedman3d815e72008-08-22 00:56:42 +00002487 }
2488
2489 if (allLTypes) return lhs;
2490 if (allRTypes) return rhs;
2491 return getFunctionTypeNoProto(retType);
2492}
2493
2494QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
Bill Wendling43d69752007-12-03 07:33:35 +00002495 // C++ [expr]: If an expression initially has the type "reference to T", the
2496 // type is adjusted to "T" prior to any further analysis, the expression
2497 // designates the object or function denoted by the reference, and the
2498 // expression is an lvalue.
Eli Friedman3d815e72008-08-22 00:56:42 +00002499 // FIXME: C++ shouldn't be going through here! The rules are different
2500 // enough that they should be handled separately.
2501 if (const ReferenceType *RT = LHS->getAsReferenceType())
Chris Lattnerc4e40592008-04-07 04:07:56 +00002502 LHS = RT->getPointeeType();
Eli Friedman3d815e72008-08-22 00:56:42 +00002503 if (const ReferenceType *RT = RHS->getAsReferenceType())
Chris Lattnerc4e40592008-04-07 04:07:56 +00002504 RHS = RT->getPointeeType();
Chris Lattnerf3692dc2008-04-07 05:37:56 +00002505
Eli Friedman3d815e72008-08-22 00:56:42 +00002506 QualType LHSCan = getCanonicalType(LHS),
2507 RHSCan = getCanonicalType(RHS);
2508
2509 // If two types are identical, they are compatible.
2510 if (LHSCan == RHSCan)
2511 return LHS;
2512
2513 // If the qualifiers are different, the types aren't compatible
2514 if (LHSCan.getCVRQualifiers() != RHSCan.getCVRQualifiers() ||
2515 LHSCan.getAddressSpace() != RHSCan.getAddressSpace())
2516 return QualType();
2517
2518 Type::TypeClass LHSClass = LHSCan->getTypeClass();
2519 Type::TypeClass RHSClass = RHSCan->getTypeClass();
2520
Chris Lattner1adb8832008-01-14 05:45:46 +00002521 // We want to consider the two function types to be the same for these
2522 // comparisons, just force one to the other.
2523 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
2524 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman4c721d32008-02-12 08:23:06 +00002525
2526 // Same as above for arrays
Chris Lattnera36a61f2008-04-07 05:43:21 +00002527 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
2528 LHSClass = Type::ConstantArray;
2529 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
2530 RHSClass = Type::ConstantArray;
Steve Naroffec0550f2007-10-15 20:41:53 +00002531
Nate Begeman213541a2008-04-18 23:10:10 +00002532 // Canonicalize ExtVector -> Vector.
2533 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
2534 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Chris Lattnera36a61f2008-04-07 05:43:21 +00002535
Chris Lattnerb0489812008-04-07 06:38:24 +00002536 // Consider qualified interfaces and interfaces the same.
2537 if (LHSClass == Type::ObjCQualifiedInterface) LHSClass = Type::ObjCInterface;
2538 if (RHSClass == Type::ObjCQualifiedInterface) RHSClass = Type::ObjCInterface;
Eli Friedman3d815e72008-08-22 00:56:42 +00002539
Chris Lattnera36a61f2008-04-07 05:43:21 +00002540 // If the canonical type classes don't match.
Chris Lattner1adb8832008-01-14 05:45:46 +00002541 if (LHSClass != RHSClass) {
Steve Naroffbc76dd02008-12-10 22:14:21 +00002542 // ID is compatible with all qualified id types.
2543 if (LHS->isObjCQualifiedIdType()) {
2544 if (const PointerType *PT = RHS->getAsPointerType()) {
2545 QualType pType = PT->getPointeeType();
2546 if (isObjCIdType(pType))
2547 return LHS;
2548 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2549 // Unfortunately, this API is part of Sema (which we don't have access
2550 // to. Need to refactor. The following check is insufficient, since we
2551 // need to make sure the class implements the protocol.
2552 if (pType->isObjCInterfaceType())
2553 return LHS;
2554 }
2555 }
2556 if (RHS->isObjCQualifiedIdType()) {
2557 if (const PointerType *PT = LHS->getAsPointerType()) {
2558 QualType pType = PT->getPointeeType();
2559 if (isObjCIdType(pType))
2560 return RHS;
2561 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2562 // Unfortunately, this API is part of Sema (which we don't have access
2563 // to. Need to refactor. The following check is insufficient, since we
2564 // need to make sure the class implements the protocol.
2565 if (pType->isObjCInterfaceType())
2566 return RHS;
2567 }
2568 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002569 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
2570 // a signed integer type, or an unsigned integer type.
Eli Friedman3d815e72008-08-22 00:56:42 +00002571 if (const EnumType* ETy = LHS->getAsEnumType()) {
2572 if (ETy->getDecl()->getIntegerType() == RHSCan.getUnqualifiedType())
2573 return RHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00002574 }
Eli Friedman3d815e72008-08-22 00:56:42 +00002575 if (const EnumType* ETy = RHS->getAsEnumType()) {
2576 if (ETy->getDecl()->getIntegerType() == LHSCan.getUnqualifiedType())
2577 return LHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00002578 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002579
Eli Friedman3d815e72008-08-22 00:56:42 +00002580 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00002581 }
Eli Friedman3d815e72008-08-22 00:56:42 +00002582
Steve Naroff4a746782008-01-09 22:43:08 +00002583 // The canonical type classes match.
Chris Lattner1adb8832008-01-14 05:45:46 +00002584 switch (LHSClass) {
Chris Lattner1adb8832008-01-14 05:45:46 +00002585 case Type::Pointer:
Eli Friedman3d815e72008-08-22 00:56:42 +00002586 {
2587 // Merge two pointer types, while trying to preserve typedef info
2588 QualType LHSPointee = LHS->getAsPointerType()->getPointeeType();
2589 QualType RHSPointee = RHS->getAsPointerType()->getPointeeType();
2590 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2591 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002592 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2593 return LHS;
2594 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2595 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00002596 return getPointerType(ResultType);
2597 }
Steve Naroffc0febd52008-12-10 17:49:55 +00002598 case Type::BlockPointer:
2599 {
2600 // Merge two block pointer types, while trying to preserve typedef info
2601 QualType LHSPointee = LHS->getAsBlockPointerType()->getPointeeType();
2602 QualType RHSPointee = RHS->getAsBlockPointerType()->getPointeeType();
2603 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2604 if (ResultType.isNull()) return QualType();
2605 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2606 return LHS;
2607 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2608 return RHS;
2609 return getBlockPointerType(ResultType);
2610 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002611 case Type::ConstantArray:
Eli Friedman3d815e72008-08-22 00:56:42 +00002612 {
2613 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
2614 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
2615 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
2616 return QualType();
2617
2618 QualType LHSElem = getAsArrayType(LHS)->getElementType();
2619 QualType RHSElem = getAsArrayType(RHS)->getElementType();
2620 QualType ResultType = mergeTypes(LHSElem, RHSElem);
2621 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002622 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2623 return LHS;
2624 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2625 return RHS;
Eli Friedman3bc0f452008-08-22 01:48:21 +00002626 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
2627 ArrayType::ArraySizeModifier(), 0);
2628 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
2629 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00002630 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
2631 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner61710852008-10-05 17:34:18 +00002632 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2633 return LHS;
2634 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2635 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00002636 if (LVAT) {
2637 // FIXME: This isn't correct! But tricky to implement because
2638 // the array's size has to be the size of LHS, but the type
2639 // has to be different.
2640 return LHS;
2641 }
2642 if (RVAT) {
2643 // FIXME: This isn't correct! But tricky to implement because
2644 // the array's size has to be the size of RHS, but the type
2645 // has to be different.
2646 return RHS;
2647 }
Eli Friedman3bc0f452008-08-22 01:48:21 +00002648 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
2649 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Chris Lattner61710852008-10-05 17:34:18 +00002650 return getIncompleteArrayType(ResultType, ArrayType::ArraySizeModifier(),0);
Eli Friedman3d815e72008-08-22 00:56:42 +00002651 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002652 case Type::FunctionNoProto:
Eli Friedman3d815e72008-08-22 00:56:42 +00002653 return mergeFunctionTypes(LHS, RHS);
2654 case Type::Tagged:
Eli Friedman3d815e72008-08-22 00:56:42 +00002655 // FIXME: Why are these compatible?
2656 if (isObjCIdType(LHS) && isObjCClassType(RHS)) return LHS;
2657 if (isObjCClassType(LHS) && isObjCIdType(RHS)) return LHS;
2658 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002659 case Type::Builtin:
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00002660 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman3d815e72008-08-22 00:56:42 +00002661 return QualType();
Daniel Dunbar64cfdb72009-01-28 21:22:12 +00002662 case Type::Complex:
2663 // Distinct complex types are incompatible.
2664 return QualType();
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00002665 case Type::Vector:
Eli Friedman3d815e72008-08-22 00:56:42 +00002666 if (areCompatVectorTypes(LHS->getAsVectorType(), RHS->getAsVectorType()))
2667 return LHS;
Chris Lattner61710852008-10-05 17:34:18 +00002668 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002669 case Type::ObjCInterface:
Eli Friedman3d815e72008-08-22 00:56:42 +00002670 // Distinct ObjC interfaces are not compatible; see canAssignObjCInterfaces
2671 // for checking assignment/comparison safety
2672 return QualType();
Steve Naroffbc76dd02008-12-10 22:14:21 +00002673 case Type::ObjCQualifiedId:
2674 // Distinct qualified id's are not compatible.
2675 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002676 default:
2677 assert(0 && "unexpected type");
Eli Friedman3d815e72008-08-22 00:56:42 +00002678 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00002679 }
Steve Naroffec0550f2007-10-15 20:41:53 +00002680}
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002681
Chris Lattner5426bf62008-04-07 07:01:58 +00002682//===----------------------------------------------------------------------===//
Eli Friedmanad74a752008-06-28 06:23:08 +00002683// Integer Predicates
2684//===----------------------------------------------------------------------===//
Chris Lattner88054de2009-01-16 07:15:35 +00002685
Eli Friedmanad74a752008-06-28 06:23:08 +00002686unsigned ASTContext::getIntWidth(QualType T) {
2687 if (T == BoolTy)
2688 return 1;
2689 // At the moment, only bool has padding bits
2690 return (unsigned)getTypeSize(T);
2691}
2692
2693QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
2694 assert(T->isSignedIntegerType() && "Unexpected type");
2695 if (const EnumType* ETy = T->getAsEnumType())
2696 T = ETy->getDecl()->getIntegerType();
2697 const BuiltinType* BTy = T->getAsBuiltinType();
2698 assert (BTy && "Unexpected signed integer type");
2699 switch (BTy->getKind()) {
2700 case BuiltinType::Char_S:
2701 case BuiltinType::SChar:
2702 return UnsignedCharTy;
2703 case BuiltinType::Short:
2704 return UnsignedShortTy;
2705 case BuiltinType::Int:
2706 return UnsignedIntTy;
2707 case BuiltinType::Long:
2708 return UnsignedLongTy;
2709 case BuiltinType::LongLong:
2710 return UnsignedLongLongTy;
2711 default:
2712 assert(0 && "Unexpected signed integer type");
2713 return QualType();
2714 }
2715}
2716
2717
2718//===----------------------------------------------------------------------===//
Chris Lattner5426bf62008-04-07 07:01:58 +00002719// Serialization Support
2720//===----------------------------------------------------------------------===//
2721
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002722/// Emit - Serialize an ASTContext object to Bitcode.
2723void ASTContext::Emit(llvm::Serializer& S) const {
Ted Kremeneke7d07d12008-06-04 15:55:15 +00002724 S.Emit(LangOpts);
Ted Kremenek54513502007-10-31 20:00:03 +00002725 S.EmitRef(SourceMgr);
2726 S.EmitRef(Target);
2727 S.EmitRef(Idents);
2728 S.EmitRef(Selectors);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002729
Ted Kremenekfee04522007-10-31 22:44:07 +00002730 // Emit the size of the type vector so that we can reserve that size
2731 // when we reconstitute the ASTContext object.
Ted Kremeneka4559c32007-11-06 22:26:16 +00002732 S.EmitInt(Types.size());
2733
Ted Kremenek03ed4402007-11-13 22:02:55 +00002734 for (std::vector<Type*>::const_iterator I=Types.begin(), E=Types.end();
2735 I!=E;++I)
2736 (*I)->Emit(S);
Ted Kremeneka4559c32007-11-06 22:26:16 +00002737
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00002738 S.EmitOwnedPtr(TUDecl);
2739
Ted Kremeneka9a4a242007-11-01 18:11:32 +00002740 // FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002741}
2742
Ted Kremenek0f84c002007-11-13 00:25:37 +00002743ASTContext* ASTContext::Create(llvm::Deserializer& D) {
Ted Kremeneke7d07d12008-06-04 15:55:15 +00002744
2745 // Read the language options.
2746 LangOptions LOpts;
2747 LOpts.Read(D);
2748
Ted Kremenekfee04522007-10-31 22:44:07 +00002749 SourceManager &SM = D.ReadRef<SourceManager>();
2750 TargetInfo &t = D.ReadRef<TargetInfo>();
2751 IdentifierTable &idents = D.ReadRef<IdentifierTable>();
2752 SelectorTable &sels = D.ReadRef<SelectorTable>();
Chris Lattner0ed844b2008-04-04 06:12:32 +00002753
Ted Kremenekfee04522007-10-31 22:44:07 +00002754 unsigned size_reserve = D.ReadInt();
2755
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002756 ASTContext* A = new ASTContext(LOpts, SM, t, idents, sels,
2757 size_reserve);
Ted Kremenekfee04522007-10-31 22:44:07 +00002758
Ted Kremenek03ed4402007-11-13 22:02:55 +00002759 for (unsigned i = 0; i < size_reserve; ++i)
2760 Type::Create(*A,i,D);
Chris Lattner0ed844b2008-04-04 06:12:32 +00002761
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00002762 A->TUDecl = cast<TranslationUnitDecl>(D.ReadOwnedPtr<Decl>(*A));
2763
Ted Kremeneka9a4a242007-11-01 18:11:32 +00002764 // FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
Ted Kremenekfee04522007-10-31 22:44:07 +00002765
2766 return A;
2767}