blob: b9514f35a095a3c62099c40a88fb47eee77e5a1a [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"
Daniel Dunbare91593e2008-08-11 04:54:23 +000017#include "clang/AST/Expr.h"
18#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/Basic/TargetInfo.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000020#include "llvm/ADT/StringExtras.h"
Ted Kremenek7192f8e2007-10-31 17:10:13 +000021#include "llvm/Bitcode/Serialize.h"
22#include "llvm/Bitcode/Deserialize.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000023
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
26enum FloatingRank {
27 FloatRank, DoubleRank, LongDoubleRank
28};
29
Chris Lattner61710852008-10-05 17:34:18 +000030ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM,
31 TargetInfo &t,
Daniel Dunbare91593e2008-08-11 04:54:23 +000032 IdentifierTable &idents, SelectorTable &sels,
33 unsigned size_reserve) :
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +000034 CFConstantStringTypeDecl(0), ObjCFastEnumerationStateTypeDecl(0),
35 SourceMgr(SM), LangOpts(LOpts), Target(t),
Douglas Gregor2e1cd422008-11-17 14:58:09 +000036 Idents(idents), Selectors(sels)
Daniel Dunbare91593e2008-08-11 04:54:23 +000037{
38 if (size_reserve > 0) Types.reserve(size_reserve);
39 InitBuiltinTypes();
40 BuiltinInfo.InitializeBuiltins(idents, Target);
41 TUDecl = TranslationUnitDecl::Create(*this);
42}
43
Reid Spencer5f016e22007-07-11 17:01:13 +000044ASTContext::~ASTContext() {
45 // Deallocate all the types.
46 while (!Types.empty()) {
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000047 Types.back()->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000048 Types.pop_back();
49 }
Eli Friedmanb26153c2008-05-27 03:08:09 +000050
Nuno Lopesb74668e2008-12-17 22:30:25 +000051 {
52 llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
53 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end();
54 while (I != E) {
55 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
56 delete R;
57 }
58 }
59
60 {
61 llvm::DenseMap<const ObjCInterfaceDecl*, const ASTRecordLayout*>::iterator
62 I = ASTObjCInterfaces.begin(), E = ASTObjCInterfaces.end();
63 while (I != E) {
64 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
65 delete R;
66 }
67 }
68
69 {
70 llvm::DenseMap<const ObjCInterfaceDecl*, const RecordDecl*>::iterator
71 I = ASTRecordForInterface.begin(), E = ASTRecordForInterface.end();
72 while (I != E) {
73 RecordDecl *R = const_cast<RecordDecl*>((I++)->second);
74 R->Destroy(*this);
75 }
76 }
77
Eli Friedmanb26153c2008-05-27 03:08:09 +000078 TUDecl->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000079}
80
81void ASTContext::PrintStats() const {
82 fprintf(stderr, "*** AST Context Stats:\n");
83 fprintf(stderr, " %d types total.\n", (int)Types.size());
84 unsigned NumBuiltin = 0, NumPointer = 0, NumArray = 0, NumFunctionP = 0;
Daniel Dunbar248e1c02008-09-26 03:23:00 +000085 unsigned NumVector = 0, NumComplex = 0, NumBlockPointer = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000086 unsigned NumFunctionNP = 0, NumTypeName = 0, NumTagged = 0, NumReference = 0;
87
88 unsigned NumTagStruct = 0, NumTagUnion = 0, NumTagEnum = 0, NumTagClass = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000089 unsigned NumObjCInterfaces = 0, NumObjCQualifiedInterfaces = 0;
90 unsigned NumObjCQualifiedIds = 0;
Steve Naroff6cc18962008-05-21 15:59:22 +000091 unsigned NumTypeOfTypes = 0, NumTypeOfExprs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000092
93 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
94 Type *T = Types[i];
95 if (isa<BuiltinType>(T))
96 ++NumBuiltin;
97 else if (isa<PointerType>(T))
98 ++NumPointer;
Daniel Dunbar248e1c02008-09-26 03:23:00 +000099 else if (isa<BlockPointerType>(T))
100 ++NumBlockPointer;
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 else if (isa<ReferenceType>(T))
102 ++NumReference;
Chris Lattner6d87fc62007-07-18 05:50:59 +0000103 else if (isa<ComplexType>(T))
104 ++NumComplex;
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 else if (isa<ArrayType>(T))
106 ++NumArray;
Chris Lattner6d87fc62007-07-18 05:50:59 +0000107 else if (isa<VectorType>(T))
108 ++NumVector;
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 else if (isa<FunctionTypeNoProto>(T))
110 ++NumFunctionNP;
111 else if (isa<FunctionTypeProto>(T))
112 ++NumFunctionP;
113 else if (isa<TypedefType>(T))
114 ++NumTypeName;
115 else if (TagType *TT = dyn_cast<TagType>(T)) {
116 ++NumTagged;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000117 switch (TT->getDecl()->getTagKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000118 default: assert(0 && "Unknown tagged type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000119 case TagDecl::TK_struct: ++NumTagStruct; break;
120 case TagDecl::TK_union: ++NumTagUnion; break;
121 case TagDecl::TK_class: ++NumTagClass; break;
122 case TagDecl::TK_enum: ++NumTagEnum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000124 } else if (isa<ObjCInterfaceType>(T))
125 ++NumObjCInterfaces;
126 else if (isa<ObjCQualifiedInterfaceType>(T))
127 ++NumObjCQualifiedInterfaces;
128 else if (isa<ObjCQualifiedIdType>(T))
129 ++NumObjCQualifiedIds;
Steve Naroff6cc18962008-05-21 15:59:22 +0000130 else if (isa<TypeOfType>(T))
131 ++NumTypeOfTypes;
132 else if (isa<TypeOfExpr>(T))
133 ++NumTypeOfExprs;
Steve Naroff3f128ad2007-09-17 14:16:13 +0000134 else {
Chris Lattnerbeb66362007-12-12 06:43:05 +0000135 QualType(T, 0).dump();
Reid Spencer5f016e22007-07-11 17:01:13 +0000136 assert(0 && "Unknown type!");
137 }
138 }
139
140 fprintf(stderr, " %d builtin types\n", NumBuiltin);
141 fprintf(stderr, " %d pointer types\n", NumPointer);
Daniel Dunbar248e1c02008-09-26 03:23:00 +0000142 fprintf(stderr, " %d block pointer types\n", NumBlockPointer);
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 fprintf(stderr, " %d reference types\n", NumReference);
Chris Lattner6d87fc62007-07-18 05:50:59 +0000144 fprintf(stderr, " %d complex types\n", NumComplex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000145 fprintf(stderr, " %d array types\n", NumArray);
Chris Lattner6d87fc62007-07-18 05:50:59 +0000146 fprintf(stderr, " %d vector types\n", NumVector);
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 fprintf(stderr, " %d function types with proto\n", NumFunctionP);
148 fprintf(stderr, " %d function types with no proto\n", NumFunctionNP);
149 fprintf(stderr, " %d typename (typedef) types\n", NumTypeName);
150 fprintf(stderr, " %d tagged types\n", NumTagged);
151 fprintf(stderr, " %d struct types\n", NumTagStruct);
152 fprintf(stderr, " %d union types\n", NumTagUnion);
153 fprintf(stderr, " %d class types\n", NumTagClass);
154 fprintf(stderr, " %d enum types\n", NumTagEnum);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000155 fprintf(stderr, " %d interface types\n", NumObjCInterfaces);
Chris Lattnerbeb66362007-12-12 06:43:05 +0000156 fprintf(stderr, " %d protocol qualified interface types\n",
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000157 NumObjCQualifiedInterfaces);
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000158 fprintf(stderr, " %d protocol qualified id types\n",
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000159 NumObjCQualifiedIds);
Steve Naroff6cc18962008-05-21 15:59:22 +0000160 fprintf(stderr, " %d typeof types\n", NumTypeOfTypes);
161 fprintf(stderr, " %d typeof exprs\n", NumTypeOfExprs);
162
Reid Spencer5f016e22007-07-11 17:01:13 +0000163 fprintf(stderr, "Total bytes = %d\n", int(NumBuiltin*sizeof(BuiltinType)+
164 NumPointer*sizeof(PointerType)+NumArray*sizeof(ArrayType)+
Chris Lattner6d87fc62007-07-18 05:50:59 +0000165 NumComplex*sizeof(ComplexType)+NumVector*sizeof(VectorType)+
Reid Spencer5f016e22007-07-11 17:01:13 +0000166 NumFunctionP*sizeof(FunctionTypeProto)+
167 NumFunctionNP*sizeof(FunctionTypeNoProto)+
Steve Naroff6cc18962008-05-21 15:59:22 +0000168 NumTypeName*sizeof(TypedefType)+NumTagged*sizeof(TagType)+
169 NumTypeOfTypes*sizeof(TypeOfType)+NumTypeOfExprs*sizeof(TypeOfExpr)));
Reid Spencer5f016e22007-07-11 17:01:13 +0000170}
171
172
173void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
174 Types.push_back((R = QualType(new BuiltinType(K),0)).getTypePtr());
175}
176
Reid Spencer5f016e22007-07-11 17:01:13 +0000177void ASTContext::InitBuiltinTypes() {
178 assert(VoidTy.isNull() && "Context reinitialized?");
179
180 // C99 6.2.5p19.
181 InitBuiltinType(VoidTy, BuiltinType::Void);
182
183 // C99 6.2.5p2.
184 InitBuiltinType(BoolTy, BuiltinType::Bool);
185 // C99 6.2.5p3.
Chris Lattner98be4942008-03-05 18:54:05 +0000186 if (Target.isCharSigned())
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 InitBuiltinType(CharTy, BuiltinType::Char_S);
188 else
189 InitBuiltinType(CharTy, BuiltinType::Char_U);
190 // C99 6.2.5p4.
191 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
192 InitBuiltinType(ShortTy, BuiltinType::Short);
193 InitBuiltinType(IntTy, BuiltinType::Int);
194 InitBuiltinType(LongTy, BuiltinType::Long);
195 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
196
197 // C99 6.2.5p6.
198 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
199 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
200 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
201 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
202 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
203
204 // C99 6.2.5p10.
205 InitBuiltinType(FloatTy, BuiltinType::Float);
206 InitBuiltinType(DoubleTy, BuiltinType::Double);
207 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000208
209 // C++ 3.9.1p5
210 InitBuiltinType(WCharTy, BuiltinType::WChar);
211
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000212 // Placeholder type for functions.
Douglas Gregor898574e2008-12-05 23:32:09 +0000213 InitBuiltinType(OverloadTy, BuiltinType::Overload);
214
215 // Placeholder type for type-dependent expressions whose type is
216 // completely unknown. No code should ever check a type against
217 // DependentTy and users should never see it; however, it is here to
218 // help diagnose failures to properly check for type-dependent
219 // expressions.
220 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000221
Reid Spencer5f016e22007-07-11 17:01:13 +0000222 // C99 6.2.5p11.
223 FloatComplexTy = getComplexType(FloatTy);
224 DoubleComplexTy = getComplexType(DoubleTy);
225 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000226
Steve Naroff7e219e42007-10-15 14:41:52 +0000227 BuiltinVaListType = QualType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000228 ObjCIdType = QualType();
Steve Naroff7e219e42007-10-15 14:41:52 +0000229 IdStructType = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000230 ObjCClassType = QualType();
Anders Carlsson8baaca52007-10-31 02:53:19 +0000231 ClassStructType = 0;
232
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000233 ObjCConstantStringType = QualType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000234
235 // void * type
236 VoidPtrTy = getPointerType(VoidTy);
Reid Spencer5f016e22007-07-11 17:01:13 +0000237}
238
Chris Lattner464175b2007-07-18 17:52:12 +0000239//===----------------------------------------------------------------------===//
240// Type Sizing and Analysis
241//===----------------------------------------------------------------------===//
Chris Lattnera7674d82007-07-13 22:13:22 +0000242
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000243/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
244/// scalar floating point type.
245const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
246 const BuiltinType *BT = T->getAsBuiltinType();
247 assert(BT && "Not a floating point type!");
248 switch (BT->getKind()) {
249 default: assert(0 && "Not a floating point type!");
250 case BuiltinType::Float: return Target.getFloatFormat();
251 case BuiltinType::Double: return Target.getDoubleFormat();
252 case BuiltinType::LongDouble: return Target.getLongDoubleFormat();
253 }
254}
255
256
Chris Lattnera7674d82007-07-13 22:13:22 +0000257/// getTypeSize - Return the size of the specified type, in bits. This method
258/// does not work on incomplete types.
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000259std::pair<uint64_t, unsigned>
Daniel Dunbar1d751182008-11-08 05:48:37 +0000260ASTContext::getTypeInfo(const Type *T) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000261 T = getCanonicalType(T);
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000262 uint64_t Width;
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000263 unsigned Align;
Chris Lattnera7674d82007-07-13 22:13:22 +0000264 switch (T->getTypeClass()) {
Chris Lattner030d8842007-07-19 22:06:24 +0000265 case Type::TypeName: assert(0 && "Not a canonical type!");
Chris Lattner692233e2007-07-13 22:27:08 +0000266 case Type::FunctionNoProto:
267 case Type::FunctionProto:
Chris Lattner5d2a6302007-07-18 18:26:58 +0000268 default:
Chris Lattnerb1c2df92007-07-20 18:13:33 +0000269 assert(0 && "Incomplete types have no size!");
Steve Narofffb22d962007-08-30 01:06:46 +0000270 case Type::VariableArray:
271 assert(0 && "VLAs not implemented yet!");
Douglas Gregor898574e2008-12-05 23:32:09 +0000272 case Type::DependentSizedArray:
273 assert(0 && "Dependently-sized arrays don't have a known size");
Steve Narofffb22d962007-08-30 01:06:46 +0000274 case Type::ConstantArray: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000275 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Steve Narofffb22d962007-08-30 01:06:46 +0000276
Chris Lattner98be4942008-03-05 18:54:05 +0000277 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000278 Width = EltInfo.first*CAT->getSize().getZExtValue();
Chris Lattner030d8842007-07-19 22:06:24 +0000279 Align = EltInfo.second;
280 break;
Christopher Lamb5c09a022007-12-29 05:10:55 +0000281 }
Nate Begeman213541a2008-04-18 23:10:10 +0000282 case Type::ExtVector:
Chris Lattner030d8842007-07-19 22:06:24 +0000283 case Type::Vector: {
284 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000285 getTypeInfo(cast<VectorType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000286 Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
Eli Friedman4bd998b2008-05-30 09:31:38 +0000287 // FIXME: This isn't right for unusual vectors
288 Align = Width;
Chris Lattner030d8842007-07-19 22:06:24 +0000289 break;
290 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000291
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000292 case Type::Builtin:
Chris Lattnera7674d82007-07-13 22:13:22 +0000293 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner692233e2007-07-13 22:27:08 +0000294 default: assert(0 && "Unknown builtin type!");
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000295 case BuiltinType::Void:
296 assert(0 && "Incomplete types have no size!");
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000297 case BuiltinType::Bool:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000298 Width = Target.getBoolWidth();
299 Align = Target.getBoolAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000300 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000301 case BuiltinType::Char_S:
302 case BuiltinType::Char_U:
303 case BuiltinType::UChar:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000304 case BuiltinType::SChar:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000305 Width = Target.getCharWidth();
306 Align = Target.getCharAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000307 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000308 case BuiltinType::WChar:
309 Width = Target.getWCharWidth();
310 Align = Target.getWCharAlign();
311 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000312 case BuiltinType::UShort:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000313 case BuiltinType::Short:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000314 Width = Target.getShortWidth();
315 Align = Target.getShortAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000316 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000317 case BuiltinType::UInt:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000318 case BuiltinType::Int:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000319 Width = Target.getIntWidth();
320 Align = Target.getIntAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000321 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000322 case BuiltinType::ULong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000323 case BuiltinType::Long:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000324 Width = Target.getLongWidth();
325 Align = Target.getLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000326 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000327 case BuiltinType::ULongLong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000328 case BuiltinType::LongLong:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000329 Width = Target.getLongLongWidth();
330 Align = Target.getLongLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000331 break;
332 case BuiltinType::Float:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000333 Width = Target.getFloatWidth();
334 Align = Target.getFloatAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000335 break;
336 case BuiltinType::Double:
Chris Lattner5426bf62008-04-07 07:01:58 +0000337 Width = Target.getDoubleWidth();
338 Align = Target.getDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000339 break;
340 case BuiltinType::LongDouble:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000341 Width = Target.getLongDoubleWidth();
342 Align = Target.getLongDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000343 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000344 }
Chris Lattnerbfef6d72007-07-15 23:46:53 +0000345 break;
Christopher Lambebb97e92008-02-04 02:31:56 +0000346 case Type::ASQual:
Chris Lattner98be4942008-03-05 18:54:05 +0000347 // FIXME: Pointers into different addr spaces could have different sizes and
348 // alignment requirements: getPointerInfo should take an AddrSpace.
349 return getTypeInfo(QualType(cast<ASQualType>(T)->getBaseType(), 0));
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000350 case Type::ObjCQualifiedId:
Chris Lattner5426bf62008-04-07 07:01:58 +0000351 Width = Target.getPointerWidth(0);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000352 Align = Target.getPointerAlign(0);
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000353 break;
Steve Naroff485eeff2008-09-24 15:05:44 +0000354 case Type::BlockPointer: {
355 unsigned AS = cast<BlockPointerType>(T)->getPointeeType().getAddressSpace();
356 Width = Target.getPointerWidth(AS);
357 Align = Target.getPointerAlign(AS);
358 break;
359 }
Chris Lattnerf72a4432008-03-08 08:34:58 +0000360 case Type::Pointer: {
361 unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
Chris Lattner5426bf62008-04-07 07:01:58 +0000362 Width = Target.getPointerWidth(AS);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000363 Align = Target.getPointerAlign(AS);
364 break;
365 }
Chris Lattnera7674d82007-07-13 22:13:22 +0000366 case Type::Reference:
Chris Lattner7ab2ed82007-07-13 22:16:13 +0000367 // "When applied to a reference or a reference type, the result is the size
Chris Lattner5d2a6302007-07-18 18:26:58 +0000368 // of the referenced type." C++98 5.3.3p2: expr.sizeof.
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000369 // FIXME: This is wrong for struct layout: a reference in a struct has
370 // pointer size.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000371 return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
Chris Lattner5d2a6302007-07-18 18:26:58 +0000372
373 case Type::Complex: {
374 // Complex types have the same alignment as their elements, but twice the
375 // size.
376 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000377 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000378 Width = EltInfo.first*2;
Chris Lattner5d2a6302007-07-18 18:26:58 +0000379 Align = EltInfo.second;
380 break;
381 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000382 case Type::ObjCInterface: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000383 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel44a3dde2008-06-04 21:54:36 +0000384 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
385 Width = Layout.getSize();
386 Align = Layout.getAlignment();
387 break;
388 }
Chris Lattner71763312008-04-06 22:05:18 +0000389 case Type::Tagged: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000390 const TagType *TT = cast<TagType>(T);
391
392 if (TT->getDecl()->isInvalidDecl()) {
Chris Lattner8389eab2008-08-09 21:35:13 +0000393 Width = 1;
394 Align = 1;
395 break;
396 }
397
Daniel Dunbar1d751182008-11-08 05:48:37 +0000398 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner71763312008-04-06 22:05:18 +0000399 return getTypeInfo(ET->getDecl()->getIntegerType());
400
Daniel Dunbar1d751182008-11-08 05:48:37 +0000401 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner71763312008-04-06 22:05:18 +0000402 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
403 Width = Layout.getSize();
404 Align = Layout.getAlignment();
Chris Lattnerdc0d73e2007-07-23 22:46:22 +0000405 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000406 }
Chris Lattner71763312008-04-06 22:05:18 +0000407 }
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000408
Chris Lattner464175b2007-07-18 17:52:12 +0000409 assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000410 return std::make_pair(Width, Align);
Chris Lattnera7674d82007-07-13 22:13:22 +0000411}
412
Devang Patel8b277042008-06-04 21:22:16 +0000413/// LayoutField - Field layout.
414void ASTRecordLayout::LayoutField(const FieldDecl *FD, unsigned FieldNo,
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000415 bool IsUnion, unsigned StructPacking,
Devang Patel8b277042008-06-04 21:22:16 +0000416 ASTContext &Context) {
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000417 unsigned FieldPacking = StructPacking;
Devang Patel8b277042008-06-04 21:22:16 +0000418 uint64_t FieldOffset = IsUnion ? 0 : Size;
419 uint64_t FieldSize;
420 unsigned FieldAlign;
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000421
422 // FIXME: Should this override struct packing? Probably we want to
423 // take the minimum?
424 if (const PackedAttr *PA = FD->getAttr<PackedAttr>())
425 FieldPacking = PA->getAlignment();
Devang Patel8b277042008-06-04 21:22:16 +0000426
427 if (const Expr *BitWidthExpr = FD->getBitWidth()) {
428 // TODO: Need to check this algorithm on other targets!
429 // (tested on Linux-X86)
Daniel Dunbar32442bb2008-08-13 23:47:13 +0000430 FieldSize =
431 BitWidthExpr->getIntegerConstantExprValue(Context).getZExtValue();
Devang Patel8b277042008-06-04 21:22:16 +0000432
433 std::pair<uint64_t, unsigned> FieldInfo =
434 Context.getTypeInfo(FD->getType());
435 uint64_t TypeSize = FieldInfo.first;
436
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000437 // Determine the alignment of this bitfield. The packing
438 // attributes define a maximum and the alignment attribute defines
439 // a minimum.
440 // FIXME: What is the right behavior when the specified alignment
441 // is smaller than the specified packing?
Devang Patel8b277042008-06-04 21:22:16 +0000442 FieldAlign = FieldInfo.second;
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000443 if (FieldPacking)
444 FieldAlign = std::min(FieldAlign, FieldPacking);
Devang Patel8b277042008-06-04 21:22:16 +0000445 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
446 FieldAlign = std::max(FieldAlign, AA->getAlignment());
447
448 // Check if we need to add padding to give the field the correct
449 // alignment.
450 if (FieldSize == 0 || (FieldOffset & (FieldAlign-1)) + FieldSize > TypeSize)
451 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
452
453 // Padding members don't affect overall alignment
454 if (!FD->getIdentifier())
455 FieldAlign = 1;
456 } else {
Chris Lattner8389eab2008-08-09 21:35:13 +0000457 if (FD->getType()->isIncompleteArrayType()) {
458 // This is a flexible array member; we can't directly
Devang Patel8b277042008-06-04 21:22:16 +0000459 // query getTypeInfo about these, so we figure it out here.
460 // Flexible array members don't have any size, but they
461 // have to be aligned appropriately for their element type.
462 FieldSize = 0;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000463 const ArrayType* ATy = Context.getAsArrayType(FD->getType());
Devang Patel8b277042008-06-04 21:22:16 +0000464 FieldAlign = Context.getTypeAlign(ATy->getElementType());
465 } else {
466 std::pair<uint64_t, unsigned> FieldInfo =
467 Context.getTypeInfo(FD->getType());
468 FieldSize = FieldInfo.first;
469 FieldAlign = FieldInfo.second;
470 }
471
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000472 // Determine the alignment of this bitfield. The packing
473 // attributes define a maximum and the alignment attribute defines
474 // a minimum. Additionally, the packing alignment must be at least
475 // a byte for non-bitfields.
476 //
477 // FIXME: What is the right behavior when the specified alignment
478 // is smaller than the specified packing?
479 if (FieldPacking)
480 FieldAlign = std::min(FieldAlign, std::max(8U, FieldPacking));
Devang Patel8b277042008-06-04 21:22:16 +0000481 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
482 FieldAlign = std::max(FieldAlign, AA->getAlignment());
483
484 // Round up the current record size to the field's alignment boundary.
485 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
486 }
487
488 // Place this field at the current location.
489 FieldOffsets[FieldNo] = FieldOffset;
490
491 // Reserve space for this field.
492 if (IsUnion) {
493 Size = std::max(Size, FieldSize);
494 } else {
495 Size = FieldOffset + FieldSize;
496 }
497
498 // Remember max struct/class alignment.
499 Alignment = std::max(Alignment, FieldAlign);
500}
501
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000502static void CollectObjCIvars(const ObjCInterfaceDecl *OI,
503 std::vector<FieldDecl*> &Fields) {
504 const ObjCInterfaceDecl *SuperClass = OI->getSuperClass();
505 if (SuperClass)
506 CollectObjCIvars(SuperClass, Fields);
507 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
508 E = OI->ivar_end(); I != E; ++I) {
509 ObjCIvarDecl *IVDecl = (*I);
510 if (!IVDecl->isInvalidDecl())
511 Fields.push_back(cast<FieldDecl>(IVDecl));
512 }
513}
514
515/// addRecordToClass - produces record info. for the class for its
516/// ivars and all those inherited.
517///
518const RecordDecl *ASTContext::addRecordToClass(const ObjCInterfaceDecl *D)
519{
520 const RecordDecl *&RD = ASTRecordForInterface[D];
521 if (RD)
522 return RD;
523 std::vector<FieldDecl*> RecFields;
524 CollectObjCIvars(D, RecFields);
525 RecordDecl *NewRD = RecordDecl::Create(*this, TagDecl::TK_struct, 0,
526 D->getLocation(),
527 D->getIdentifier());
528 /// FIXME! Can do collection of ivars and adding to the record while
529 /// doing it.
530 for (unsigned int i = 0; i != RecFields.size(); i++) {
531 FieldDecl *Field = FieldDecl::Create(*this, NewRD,
532 RecFields[i]->getLocation(),
533 RecFields[i]->getIdentifier(),
534 RecFields[i]->getType(),
535 RecFields[i]->getBitWidth(), false, 0);
536 NewRD->addDecl(*this, Field);
537 }
538 NewRD->completeDefinition(*this);
539 RD = NewRD;
540 return RD;
541}
Devang Patel44a3dde2008-06-04 21:54:36 +0000542
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +0000543/// setFieldDecl - maps a field for the given Ivar reference node.
544//
545void ASTContext::setFieldDecl(const ObjCInterfaceDecl *OI,
546 const ObjCIvarDecl *Ivar,
547 const ObjCIvarRefExpr *MRef) {
548 FieldDecl *FD = (const_cast<ObjCInterfaceDecl *>(OI))->
549 lookupFieldDeclForIvar(*this, Ivar);
550 ASTFieldForIvarRef[MRef] = FD;
551}
552
Chris Lattner61710852008-10-05 17:34:18 +0000553/// getASTObjcInterfaceLayout - Get or compute information about the layout of
554/// the specified Objective C, which indicates its size and ivar
Devang Patel44a3dde2008-06-04 21:54:36 +0000555/// position information.
556const ASTRecordLayout &
557ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) {
558 // Look up this layout, if already laid out, return what we have.
559 const ASTRecordLayout *&Entry = ASTObjCInterfaces[D];
560 if (Entry) return *Entry;
561
562 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
563 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
Devang Patel6a5a34c2008-06-06 02:14:01 +0000564 ASTRecordLayout *NewEntry = NULL;
565 unsigned FieldCount = D->ivar_size();
566 if (ObjCInterfaceDecl *SD = D->getSuperClass()) {
567 FieldCount++;
568 const ASTRecordLayout &SL = getASTObjCInterfaceLayout(SD);
569 unsigned Alignment = SL.getAlignment();
570 uint64_t Size = SL.getSize();
571 NewEntry = new ASTRecordLayout(Size, Alignment);
572 NewEntry->InitializeLayout(FieldCount);
Chris Lattner61710852008-10-05 17:34:18 +0000573 // Super class is at the beginning of the layout.
574 NewEntry->SetFieldOffset(0, 0);
Devang Patel6a5a34c2008-06-06 02:14:01 +0000575 } else {
576 NewEntry = new ASTRecordLayout();
577 NewEntry->InitializeLayout(FieldCount);
578 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000579 Entry = NewEntry;
580
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000581 unsigned StructPacking = 0;
582 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
583 StructPacking = PA->getAlignment();
Devang Patel44a3dde2008-06-04 21:54:36 +0000584
585 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
586 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
587 AA->getAlignment()));
588
589 // Layout each ivar sequentially.
590 unsigned i = 0;
591 for (ObjCInterfaceDecl::ivar_iterator IVI = D->ivar_begin(),
592 IVE = D->ivar_end(); IVI != IVE; ++IVI) {
593 const ObjCIvarDecl* Ivar = (*IVI);
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000594 NewEntry->LayoutField(Ivar, i++, false, StructPacking, *this);
Devang Patel44a3dde2008-06-04 21:54:36 +0000595 }
596
597 // Finally, round the size of the total struct up to the alignment of the
598 // struct itself.
599 NewEntry->FinalizeLayout();
600 return *NewEntry;
601}
602
Devang Patel88a981b2007-11-01 19:11:01 +0000603/// getASTRecordLayout - Get or compute information about the layout of the
Chris Lattner464175b2007-07-18 17:52:12 +0000604/// specified record (struct/union/class), which indicates its size and field
605/// position information.
Chris Lattner98be4942008-03-05 18:54:05 +0000606const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000607 D = D->getDefinition(*this);
608 assert(D && "Cannot get layout of forward declarations!");
Eli Friedman4bd998b2008-05-30 09:31:38 +0000609
Chris Lattner464175b2007-07-18 17:52:12 +0000610 // Look up this layout, if already laid out, return what we have.
Devang Patel88a981b2007-11-01 19:11:01 +0000611 const ASTRecordLayout *&Entry = ASTRecordLayouts[D];
Chris Lattner464175b2007-07-18 17:52:12 +0000612 if (Entry) return *Entry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000613
Devang Patel88a981b2007-11-01 19:11:01 +0000614 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
615 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
616 ASTRecordLayout *NewEntry = new ASTRecordLayout();
Chris Lattner464175b2007-07-18 17:52:12 +0000617 Entry = NewEntry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000618
Douglas Gregore267ff32008-12-11 20:41:00 +0000619 // FIXME: Avoid linear walk through the fields, if possible.
Douglas Gregor44b43212008-12-11 16:49:14 +0000620 NewEntry->InitializeLayout(std::distance(D->field_begin(), D->field_end()));
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000621 bool IsUnion = D->isUnion();
Chris Lattner464175b2007-07-18 17:52:12 +0000622
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000623 unsigned StructPacking = 0;
624 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
625 StructPacking = PA->getAlignment();
626
Eli Friedman4bd998b2008-05-30 09:31:38 +0000627 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
Devang Patel8b277042008-06-04 21:22:16 +0000628 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
629 AA->getAlignment()));
Anders Carlsson8af226a2008-02-18 07:13:09 +0000630
Eli Friedman4bd998b2008-05-30 09:31:38 +0000631 // Layout each field, for now, just sequentially, respecting alignment. In
632 // the future, this will need to be tweakable by targets.
Douglas Gregor44b43212008-12-11 16:49:14 +0000633 unsigned FieldIdx = 0;
Douglas Gregora4c46df2008-12-11 17:59:21 +0000634 for (RecordDecl::field_const_iterator Field = D->field_begin(),
635 FieldEnd = D->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000636 Field != FieldEnd; (void)++Field, ++FieldIdx)
637 NewEntry->LayoutField(*Field, FieldIdx, IsUnion, StructPacking, *this);
Eli Friedman4bd998b2008-05-30 09:31:38 +0000638
639 // Finally, round the size of the total struct up to the alignment of the
640 // struct itself.
Devang Patel8b277042008-06-04 21:22:16 +0000641 NewEntry->FinalizeLayout();
Chris Lattner5d2a6302007-07-18 18:26:58 +0000642 return *NewEntry;
Chris Lattner464175b2007-07-18 17:52:12 +0000643}
644
Chris Lattnera7674d82007-07-13 22:13:22 +0000645//===----------------------------------------------------------------------===//
646// Type creation/memoization methods
647//===----------------------------------------------------------------------===//
648
Christopher Lambebb97e92008-02-04 02:31:56 +0000649QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000650 QualType CanT = getCanonicalType(T);
651 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattnerf46699c2008-02-20 20:55:12 +0000652 return T;
653
654 // Type's cannot have multiple ASQuals, therefore we know we only have to deal
655 // with CVR qualifiers from here on out.
Chris Lattnerf52ab252008-04-06 22:59:24 +0000656 assert(CanT.getAddressSpace() == 0 &&
Chris Lattnerf46699c2008-02-20 20:55:12 +0000657 "Type is already address space qualified");
658
659 // Check if we've already instantiated an address space qual'd type of this
660 // type.
Christopher Lambebb97e92008-02-04 02:31:56 +0000661 llvm::FoldingSetNodeID ID;
Chris Lattnerf46699c2008-02-20 20:55:12 +0000662 ASQualType::Profile(ID, T.getTypePtr(), AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000663 void *InsertPos = 0;
664 if (ASQualType *ASQy = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos))
665 return QualType(ASQy, 0);
666
667 // If the base type isn't canonical, this won't be a canonical type either,
668 // so fill in the canonical type field.
669 QualType Canonical;
670 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000671 Canonical = getASQualType(CanT, AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000672
673 // Get the new insert position for the node we care about.
674 ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000675 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Christopher Lambebb97e92008-02-04 02:31:56 +0000676 }
Chris Lattnerf46699c2008-02-20 20:55:12 +0000677 ASQualType *New = new ASQualType(T.getTypePtr(), Canonical, AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000678 ASQualTypes.InsertNode(New, InsertPos);
679 Types.push_back(New);
Chris Lattnerf46699c2008-02-20 20:55:12 +0000680 return QualType(New, T.getCVRQualifiers());
Christopher Lambebb97e92008-02-04 02:31:56 +0000681}
682
Chris Lattnera7674d82007-07-13 22:13:22 +0000683
Reid Spencer5f016e22007-07-11 17:01:13 +0000684/// getComplexType - Return the uniqued reference to the type for a complex
685/// number with the specified element type.
686QualType ASTContext::getComplexType(QualType T) {
687 // Unique pointers, to guarantee there is only one pointer of a particular
688 // structure.
689 llvm::FoldingSetNodeID ID;
690 ComplexType::Profile(ID, T);
691
692 void *InsertPos = 0;
693 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
694 return QualType(CT, 0);
695
696 // If the pointee type isn't canonical, this won't be a canonical type either,
697 // so fill in the canonical type field.
698 QualType Canonical;
699 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000700 Canonical = getComplexType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000701
702 // Get the new insert position for the node we care about.
703 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000704 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000705 }
706 ComplexType *New = new ComplexType(T, Canonical);
707 Types.push_back(New);
708 ComplexTypes.InsertNode(New, InsertPos);
709 return QualType(New, 0);
710}
711
712
713/// getPointerType - Return the uniqued reference to the type for a pointer to
714/// the specified type.
715QualType ASTContext::getPointerType(QualType T) {
716 // Unique pointers, to guarantee there is only one pointer of a particular
717 // structure.
718 llvm::FoldingSetNodeID ID;
719 PointerType::Profile(ID, T);
720
721 void *InsertPos = 0;
722 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
723 return QualType(PT, 0);
724
725 // If the pointee type isn't canonical, this won't be a canonical type either,
726 // so fill in the canonical type field.
727 QualType Canonical;
728 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000729 Canonical = getPointerType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000730
731 // Get the new insert position for the node we care about.
732 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000733 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000734 }
735 PointerType *New = new PointerType(T, Canonical);
736 Types.push_back(New);
737 PointerTypes.InsertNode(New, InsertPos);
738 return QualType(New, 0);
739}
740
Steve Naroff5618bd42008-08-27 16:04:49 +0000741/// getBlockPointerType - Return the uniqued reference to the type for
742/// a pointer to the specified block.
743QualType ASTContext::getBlockPointerType(QualType T) {
Steve Naroff296e8d52008-08-28 19:20:44 +0000744 assert(T->isFunctionType() && "block of function types only");
745 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff5618bd42008-08-27 16:04:49 +0000746 // structure.
747 llvm::FoldingSetNodeID ID;
748 BlockPointerType::Profile(ID, T);
749
750 void *InsertPos = 0;
751 if (BlockPointerType *PT =
752 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
753 return QualType(PT, 0);
754
Steve Naroff296e8d52008-08-28 19:20:44 +0000755 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff5618bd42008-08-27 16:04:49 +0000756 // type either so fill in the canonical type field.
757 QualType Canonical;
758 if (!T->isCanonical()) {
759 Canonical = getBlockPointerType(getCanonicalType(T));
760
761 // Get the new insert position for the node we care about.
762 BlockPointerType *NewIP =
763 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000764 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff5618bd42008-08-27 16:04:49 +0000765 }
766 BlockPointerType *New = new BlockPointerType(T, Canonical);
767 Types.push_back(New);
768 BlockPointerTypes.InsertNode(New, InsertPos);
769 return QualType(New, 0);
770}
771
Reid Spencer5f016e22007-07-11 17:01:13 +0000772/// getReferenceType - Return the uniqued reference to the type for a reference
773/// to the specified type.
774QualType ASTContext::getReferenceType(QualType T) {
775 // Unique pointers, to guarantee there is only one pointer of a particular
776 // structure.
777 llvm::FoldingSetNodeID ID;
778 ReferenceType::Profile(ID, T);
779
780 void *InsertPos = 0;
781 if (ReferenceType *RT = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
782 return QualType(RT, 0);
783
784 // If the referencee type isn't canonical, this won't be a canonical type
785 // either, so fill in the canonical type field.
786 QualType Canonical;
787 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000788 Canonical = getReferenceType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000789
790 // Get the new insert position for the node we care about.
791 ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000792 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000793 }
794
795 ReferenceType *New = new ReferenceType(T, Canonical);
796 Types.push_back(New);
797 ReferenceTypes.InsertNode(New, InsertPos);
798 return QualType(New, 0);
799}
800
Steve Narofffb22d962007-08-30 01:06:46 +0000801/// getConstantArrayType - Return the unique reference to the type for an
802/// array of the specified element type.
803QualType ASTContext::getConstantArrayType(QualType EltTy,
Steve Naroffc9406122007-08-30 18:10:14 +0000804 const llvm::APInt &ArySize,
805 ArrayType::ArraySizeModifier ASM,
806 unsigned EltTypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 llvm::FoldingSetNodeID ID;
Steve Narofffb22d962007-08-30 01:06:46 +0000808 ConstantArrayType::Profile(ID, EltTy, ArySize);
Reid Spencer5f016e22007-07-11 17:01:13 +0000809
810 void *InsertPos = 0;
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000811 if (ConstantArrayType *ATP =
812 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 return QualType(ATP, 0);
814
815 // If the element type isn't canonical, this won't be a canonical type either,
816 // so fill in the canonical type field.
817 QualType Canonical;
818 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000819 Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
Steve Naroffc9406122007-08-30 18:10:14 +0000820 ASM, EltTypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 // Get the new insert position for the node we care about.
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000822 ConstantArrayType *NewIP =
823 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000824 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000825 }
826
Steve Naroffc9406122007-08-30 18:10:14 +0000827 ConstantArrayType *New = new ConstantArrayType(EltTy, Canonical, ArySize,
828 ASM, EltTypeQuals);
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000829 ConstantArrayTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 Types.push_back(New);
831 return QualType(New, 0);
832}
833
Steve Naroffbdbf7b02007-08-30 18:14:25 +0000834/// getVariableArrayType - Returns a non-unique reference to the type for a
835/// variable array of the specified element type.
Steve Naroffc9406122007-08-30 18:10:14 +0000836QualType ASTContext::getVariableArrayType(QualType EltTy, Expr *NumElts,
837 ArrayType::ArraySizeModifier ASM,
838 unsigned EltTypeQuals) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000839 // Since we don't unique expressions, it isn't possible to unique VLA's
840 // that have an expression provided for their size.
841
842 VariableArrayType *New = new VariableArrayType(EltTy, QualType(), NumElts,
843 ASM, EltTypeQuals);
844
845 VariableArrayTypes.push_back(New);
846 Types.push_back(New);
847 return QualType(New, 0);
848}
849
Douglas Gregor898574e2008-12-05 23:32:09 +0000850/// getDependentSizedArrayType - Returns a non-unique reference to
851/// the type for a dependently-sized array of the specified element
852/// type. FIXME: We will need these to be uniqued, or at least
853/// comparable, at some point.
854QualType ASTContext::getDependentSizedArrayType(QualType EltTy, Expr *NumElts,
855 ArrayType::ArraySizeModifier ASM,
856 unsigned EltTypeQuals) {
857 assert((NumElts->isTypeDependent() || NumElts->isValueDependent()) &&
858 "Size must be type- or value-dependent!");
859
860 // Since we don't unique expressions, it isn't possible to unique
861 // dependently-sized array types.
862
863 DependentSizedArrayType *New
864 = new DependentSizedArrayType(EltTy, QualType(), NumElts,
865 ASM, EltTypeQuals);
866
867 DependentSizedArrayTypes.push_back(New);
868 Types.push_back(New);
869 return QualType(New, 0);
870}
871
Eli Friedmanc5773c42008-02-15 18:16:39 +0000872QualType ASTContext::getIncompleteArrayType(QualType EltTy,
873 ArrayType::ArraySizeModifier ASM,
874 unsigned EltTypeQuals) {
875 llvm::FoldingSetNodeID ID;
876 IncompleteArrayType::Profile(ID, EltTy);
877
878 void *InsertPos = 0;
879 if (IncompleteArrayType *ATP =
880 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
881 return QualType(ATP, 0);
882
883 // If the element type isn't canonical, this won't be a canonical type
884 // either, so fill in the canonical type field.
885 QualType Canonical;
886
887 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000888 Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
Ted Kremenek2bd24ba2007-10-29 23:37:31 +0000889 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000890
891 // Get the new insert position for the node we care about.
892 IncompleteArrayType *NewIP =
893 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000894 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Ted Kremenek2bd24ba2007-10-29 23:37:31 +0000895 }
Eli Friedmanc5773c42008-02-15 18:16:39 +0000896
897 IncompleteArrayType *New = new IncompleteArrayType(EltTy, Canonical,
898 ASM, EltTypeQuals);
899
900 IncompleteArrayTypes.InsertNode(New, InsertPos);
901 Types.push_back(New);
902 return QualType(New, 0);
Steve Narofffb22d962007-08-30 01:06:46 +0000903}
904
Steve Naroff73322922007-07-18 18:00:27 +0000905/// getVectorType - Return the unique reference to a vector type of
906/// the specified element type and size. VectorType must be a built-in type.
907QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000908 BuiltinType *baseType;
909
Chris Lattnerf52ab252008-04-06 22:59:24 +0000910 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Steve Naroff73322922007-07-18 18:00:27 +0000911 assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000912
913 // Check if we've already instantiated a vector of this type.
914 llvm::FoldingSetNodeID ID;
Steve Naroff73322922007-07-18 18:00:27 +0000915 VectorType::Profile(ID, vecType, NumElts, Type::Vector);
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 void *InsertPos = 0;
917 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
918 return QualType(VTP, 0);
919
920 // If the element type isn't canonical, this won't be a canonical type either,
921 // so fill in the canonical type field.
922 QualType Canonical;
923 if (!vecType->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000924 Canonical = getVectorType(getCanonicalType(vecType), NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000925
926 // Get the new insert position for the node we care about.
927 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000928 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000929 }
930 VectorType *New = new VectorType(vecType, NumElts, Canonical);
931 VectorTypes.InsertNode(New, InsertPos);
932 Types.push_back(New);
933 return QualType(New, 0);
934}
935
Nate Begeman213541a2008-04-18 23:10:10 +0000936/// getExtVectorType - Return the unique reference to an extended vector type of
Steve Naroff73322922007-07-18 18:00:27 +0000937/// the specified element type and size. VectorType must be a built-in type.
Nate Begeman213541a2008-04-18 23:10:10 +0000938QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) {
Steve Naroff73322922007-07-18 18:00:27 +0000939 BuiltinType *baseType;
940
Chris Lattnerf52ab252008-04-06 22:59:24 +0000941 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Nate Begeman213541a2008-04-18 23:10:10 +0000942 assert(baseType != 0 && "getExtVectorType(): Expecting a built-in type");
Steve Naroff73322922007-07-18 18:00:27 +0000943
944 // Check if we've already instantiated a vector of this type.
945 llvm::FoldingSetNodeID ID;
Nate Begeman213541a2008-04-18 23:10:10 +0000946 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector);
Steve Naroff73322922007-07-18 18:00:27 +0000947 void *InsertPos = 0;
948 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
949 return QualType(VTP, 0);
950
951 // If the element type isn't canonical, this won't be a canonical type either,
952 // so fill in the canonical type field.
953 QualType Canonical;
954 if (!vecType->isCanonical()) {
Nate Begeman213541a2008-04-18 23:10:10 +0000955 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Steve Naroff73322922007-07-18 18:00:27 +0000956
957 // Get the new insert position for the node we care about.
958 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000959 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff73322922007-07-18 18:00:27 +0000960 }
Nate Begeman213541a2008-04-18 23:10:10 +0000961 ExtVectorType *New = new ExtVectorType(vecType, NumElts, Canonical);
Steve Naroff73322922007-07-18 18:00:27 +0000962 VectorTypes.InsertNode(New, InsertPos);
963 Types.push_back(New);
964 return QualType(New, 0);
965}
966
Reid Spencer5f016e22007-07-11 17:01:13 +0000967/// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'.
968///
969QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
970 // Unique functions, to guarantee there is only one function of a particular
971 // structure.
972 llvm::FoldingSetNodeID ID;
973 FunctionTypeNoProto::Profile(ID, ResultTy);
974
975 void *InsertPos = 0;
976 if (FunctionTypeNoProto *FT =
977 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos))
978 return QualType(FT, 0);
979
980 QualType Canonical;
981 if (!ResultTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000982 Canonical = getFunctionTypeNoProto(getCanonicalType(ResultTy));
Reid Spencer5f016e22007-07-11 17:01:13 +0000983
984 // Get the new insert position for the node we care about.
985 FunctionTypeNoProto *NewIP =
986 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000987 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 }
989
990 FunctionTypeNoProto *New = new FunctionTypeNoProto(ResultTy, Canonical);
991 Types.push_back(New);
Eli Friedman56cd7e32008-02-25 22:11:40 +0000992 FunctionTypeNoProtos.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 return QualType(New, 0);
994}
995
996/// getFunctionType - Return a normal function type with a typed argument
997/// list. isVariadic indicates whether the argument list includes '...'.
Chris Lattner61710852008-10-05 17:34:18 +0000998QualType ASTContext::getFunctionType(QualType ResultTy,const QualType *ArgArray,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000999 unsigned NumArgs, bool isVariadic,
1000 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001001 // Unique functions, to guarantee there is only one function of a particular
1002 // structure.
1003 llvm::FoldingSetNodeID ID;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001004 FunctionTypeProto::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic,
1005 TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001006
1007 void *InsertPos = 0;
1008 if (FunctionTypeProto *FTP =
1009 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos))
1010 return QualType(FTP, 0);
1011
1012 // Determine whether the type being created is already canonical or not.
1013 bool isCanonical = ResultTy->isCanonical();
1014 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
1015 if (!ArgArray[i]->isCanonical())
1016 isCanonical = false;
1017
1018 // If this type isn't canonical, get the canonical version of it.
1019 QualType Canonical;
1020 if (!isCanonical) {
1021 llvm::SmallVector<QualType, 16> CanonicalArgs;
1022 CanonicalArgs.reserve(NumArgs);
1023 for (unsigned i = 0; i != NumArgs; ++i)
Chris Lattnerf52ab252008-04-06 22:59:24 +00001024 CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
Reid Spencer5f016e22007-07-11 17:01:13 +00001025
Chris Lattnerf52ab252008-04-06 22:59:24 +00001026 Canonical = getFunctionType(getCanonicalType(ResultTy),
Reid Spencer5f016e22007-07-11 17:01:13 +00001027 &CanonicalArgs[0], NumArgs,
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001028 isVariadic, TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001029
1030 // Get the new insert position for the node we care about.
1031 FunctionTypeProto *NewIP =
1032 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001033 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001034 }
1035
1036 // FunctionTypeProto objects are not allocated with new because they have a
1037 // variable size array (for parameter types) at the end of them.
1038 FunctionTypeProto *FTP =
1039 (FunctionTypeProto*)malloc(sizeof(FunctionTypeProto) +
Chris Lattner942cfd32007-07-20 18:48:28 +00001040 NumArgs*sizeof(QualType));
Reid Spencer5f016e22007-07-11 17:01:13 +00001041 new (FTP) FunctionTypeProto(ResultTy, ArgArray, NumArgs, isVariadic,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001042 TypeQuals, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001043 Types.push_back(FTP);
1044 FunctionTypeProtos.InsertNode(FTP, InsertPos);
1045 return QualType(FTP, 0);
1046}
1047
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001048/// getTypeDeclType - Return the unique reference to the type for the
1049/// specified type declaration.
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001050QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) {
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001051 assert(Decl && "Passed null for Decl param");
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001052 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1053
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001054 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001055 return getTypedefType(Typedef);
Douglas Gregor72c3f312008-12-05 18:15:24 +00001056 else if (TemplateTypeParmDecl *TP = dyn_cast<TemplateTypeParmDecl>(Decl))
1057 return getTemplateTypeParmType(TP);
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001058 else if (ObjCInterfaceDecl *ObjCInterface = dyn_cast<ObjCInterfaceDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001059 return getObjCInterfaceType(ObjCInterface);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001060
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001061 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Decl)) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001062 Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
1063 : new CXXRecordType(CXXRecord);
1064 }
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001065 else if (RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001066 Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
1067 : new RecordType(Record);
1068 }
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001069 else if (EnumDecl *Enum = dyn_cast<EnumDecl>(Decl))
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00001070 Decl->TypeForDecl = PrevDecl ? PrevDecl->TypeForDecl
1071 : new EnumType(Enum);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001072 else
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001073 assert(false && "TypeDecl without a type?");
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001074
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001075 if (!PrevDecl) Types.push_back(Decl->TypeForDecl);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001076 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001077}
1078
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001079void ASTContext::setTagDefinition(TagDecl* D) {
1080 assert (D->isDefinition());
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00001081 cast<TagType>(D->TypeForDecl)->decl = D;
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001082}
1083
Reid Spencer5f016e22007-07-11 17:01:13 +00001084/// getTypedefType - Return the unique reference to the type for the
1085/// specified typename decl.
1086QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
1087 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1088
Chris Lattnerf52ab252008-04-06 22:59:24 +00001089 QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001090 Decl->TypeForDecl = new TypedefType(Type::TypeName, Decl, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001091 Types.push_back(Decl->TypeForDecl);
1092 return QualType(Decl->TypeForDecl, 0);
1093}
1094
Douglas Gregor72c3f312008-12-05 18:15:24 +00001095/// getTemplateTypeParmType - Return the unique reference to the type
1096/// for the specified template type parameter declaration.
1097QualType ASTContext::getTemplateTypeParmType(TemplateTypeParmDecl *Decl) {
1098 if (!Decl->TypeForDecl) {
1099 Decl->TypeForDecl = new TemplateTypeParmType(Decl);
1100 Types.push_back(Decl->TypeForDecl);
1101 }
1102 return QualType(Decl->TypeForDecl, 0);
1103}
1104
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001105/// getObjCInterfaceType - Return the unique reference to the type for the
Steve Naroff3536b442007-09-06 21:24:23 +00001106/// specified ObjC interface decl.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001107QualType ASTContext::getObjCInterfaceType(ObjCInterfaceDecl *Decl) {
Steve Naroff3536b442007-09-06 21:24:23 +00001108 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1109
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001110 Decl->TypeForDecl = new ObjCInterfaceType(Type::ObjCInterface, Decl);
Steve Naroff3536b442007-09-06 21:24:23 +00001111 Types.push_back(Decl->TypeForDecl);
1112 return QualType(Decl->TypeForDecl, 0);
1113}
1114
Chris Lattner88cb27a2008-04-07 04:56:42 +00001115/// CmpProtocolNames - Comparison predicate for sorting protocols
1116/// alphabetically.
1117static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
1118 const ObjCProtocolDecl *RHS) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001119 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattner88cb27a2008-04-07 04:56:42 +00001120}
1121
1122static void SortAndUniqueProtocols(ObjCProtocolDecl **&Protocols,
1123 unsigned &NumProtocols) {
1124 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
1125
1126 // Sort protocols, keyed by name.
1127 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
1128
1129 // Remove duplicates.
1130 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
1131 NumProtocols = ProtocolsEnd-Protocols;
1132}
1133
1134
Chris Lattner065f0d72008-04-07 04:44:08 +00001135/// getObjCQualifiedInterfaceType - Return a ObjCQualifiedInterfaceType type for
1136/// the given interface decl and the conforming protocol list.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001137QualType ASTContext::getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl,
1138 ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
Chris Lattner88cb27a2008-04-07 04:56:42 +00001139 // Sort the protocol list alphabetically to canonicalize it.
1140 SortAndUniqueProtocols(Protocols, NumProtocols);
1141
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001142 llvm::FoldingSetNodeID ID;
Chris Lattnerb0489812008-04-07 06:38:24 +00001143 ObjCQualifiedInterfaceType::Profile(ID, Decl, Protocols, NumProtocols);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001144
1145 void *InsertPos = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001146 if (ObjCQualifiedInterfaceType *QT =
1147 ObjCQualifiedInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001148 return QualType(QT, 0);
1149
1150 // No Match;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001151 ObjCQualifiedInterfaceType *QType =
1152 new ObjCQualifiedInterfaceType(Decl, Protocols, NumProtocols);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001153 Types.push_back(QType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001154 ObjCQualifiedInterfaceTypes.InsertNode(QType, InsertPos);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001155 return QualType(QType, 0);
1156}
1157
Chris Lattner88cb27a2008-04-07 04:56:42 +00001158/// getObjCQualifiedIdType - Return an ObjCQualifiedIdType for the 'id' decl
1159/// and the conforming protocol list.
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001160QualType ASTContext::getObjCQualifiedIdType(ObjCProtocolDecl **Protocols,
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001161 unsigned NumProtocols) {
Chris Lattner88cb27a2008-04-07 04:56:42 +00001162 // Sort the protocol list alphabetically to canonicalize it.
1163 SortAndUniqueProtocols(Protocols, NumProtocols);
1164
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001165 llvm::FoldingSetNodeID ID;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001166 ObjCQualifiedIdType::Profile(ID, Protocols, NumProtocols);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001167
1168 void *InsertPos = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001169 if (ObjCQualifiedIdType *QT =
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001170 ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001171 return QualType(QT, 0);
1172
1173 // No Match;
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001174 ObjCQualifiedIdType *QType = new ObjCQualifiedIdType(Protocols, NumProtocols);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001175 Types.push_back(QType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001176 ObjCQualifiedIdTypes.InsertNode(QType, InsertPos);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001177 return QualType(QType, 0);
1178}
1179
Steve Naroff9752f252007-08-01 18:02:17 +00001180/// getTypeOfExpr - Unlike many "get<Type>" functions, we can't unique
1181/// TypeOfExpr AST's (since expression's are never shared). For example,
1182/// multiple declarations that refer to "typeof(x)" all contain different
1183/// DeclRefExpr's. This doesn't effect the type checker, since it operates
1184/// on canonical type's (which are always unique).
Steve Naroff8d1a3b82007-08-01 17:20:42 +00001185QualType ASTContext::getTypeOfExpr(Expr *tofExpr) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001186 QualType Canonical = getCanonicalType(tofExpr->getType());
Steve Naroff9752f252007-08-01 18:02:17 +00001187 TypeOfExpr *toe = new TypeOfExpr(tofExpr, Canonical);
1188 Types.push_back(toe);
1189 return QualType(toe, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001190}
1191
Steve Naroff9752f252007-08-01 18:02:17 +00001192/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
1193/// TypeOfType AST's. The only motivation to unique these nodes would be
1194/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
1195/// an issue. This doesn't effect the type checker, since it operates
1196/// on canonical type's (which are always unique).
Steve Naroffd1861fd2007-07-31 12:34:36 +00001197QualType ASTContext::getTypeOfType(QualType tofType) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001198 QualType Canonical = getCanonicalType(tofType);
Steve Naroff9752f252007-08-01 18:02:17 +00001199 TypeOfType *tot = new TypeOfType(tofType, Canonical);
1200 Types.push_back(tot);
1201 return QualType(tot, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001202}
1203
Reid Spencer5f016e22007-07-11 17:01:13 +00001204/// getTagDeclType - Return the unique reference to the type for the
1205/// specified TagDecl (struct/union/class/enum) decl.
1206QualType ASTContext::getTagDeclType(TagDecl *Decl) {
Ted Kremenekd778f882007-11-26 21:16:01 +00001207 assert (Decl);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001208 return getTypeDeclType(Decl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001209}
1210
1211/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
1212/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
1213/// needs to agree with the definition in <stddef.h>.
1214QualType ASTContext::getSizeType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001215 return getFromTargetType(Target.getSizeType());
Reid Spencer5f016e22007-07-11 17:01:13 +00001216}
1217
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +00001218/// getWCharType - Return the unique type for "wchar_t" (C99 7.17), the
Eli Friedmanfd888a52008-02-12 08:29:21 +00001219/// width of characters in wide strings, The value is target dependent and
1220/// needs to agree with the definition in <stddef.h>.
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +00001221QualType ASTContext::getWCharType() const {
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001222 if (LangOpts.CPlusPlus)
1223 return WCharTy;
1224
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001225 // FIXME: In C, shouldn't WCharTy just be a typedef of the target's
1226 // wide-character type?
1227 return getFromTargetType(Target.getWCharType());
Eli Friedmanfd888a52008-02-12 08:29:21 +00001228}
1229
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001230/// getSignedWCharType - Return the type of "signed wchar_t".
1231/// Used when in C++, as a GCC extension.
1232QualType ASTContext::getSignedWCharType() const {
1233 // FIXME: derive from "Target" ?
1234 return WCharTy;
1235}
1236
1237/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
1238/// Used when in C++, as a GCC extension.
1239QualType ASTContext::getUnsignedWCharType() const {
1240 // FIXME: derive from "Target" ?
1241 return UnsignedIntTy;
1242}
1243
Chris Lattner8b9023b2007-07-13 03:05:23 +00001244/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
1245/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
1246QualType ASTContext::getPointerDiffType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001247 return getFromTargetType(Target.getPtrDiffType(0));
Chris Lattner8b9023b2007-07-13 03:05:23 +00001248}
1249
Chris Lattnere6327742008-04-02 05:18:44 +00001250//===----------------------------------------------------------------------===//
1251// Type Operators
1252//===----------------------------------------------------------------------===//
1253
Chris Lattner77c96472008-04-06 22:41:35 +00001254/// getCanonicalType - Return the canonical (structural) type corresponding to
1255/// the specified potentially non-canonical type. The non-canonical version
1256/// of a type may have many "decorated" versions of types. Decorators can
1257/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
1258/// to be free of any of these, allowing two canonical types to be compared
1259/// for exact equality with a simple pointer comparison.
1260QualType ASTContext::getCanonicalType(QualType T) {
1261 QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001262
1263 // If the result has type qualifiers, make sure to canonicalize them as well.
1264 unsigned TypeQuals = T.getCVRQualifiers() | CanType.getCVRQualifiers();
1265 if (TypeQuals == 0) return CanType;
1266
1267 // If the type qualifiers are on an array type, get the canonical type of the
1268 // array with the qualifiers applied to the element type.
1269 ArrayType *AT = dyn_cast<ArrayType>(CanType);
1270 if (!AT)
1271 return CanType.getQualifiedType(TypeQuals);
1272
1273 // Get the canonical version of the element with the extra qualifiers on it.
1274 // This can recursively sink qualifiers through multiple levels of arrays.
1275 QualType NewEltTy=AT->getElementType().getWithAdditionalQualifiers(TypeQuals);
1276 NewEltTy = getCanonicalType(NewEltTy);
1277
1278 if (ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1279 return getConstantArrayType(NewEltTy, CAT->getSize(),CAT->getSizeModifier(),
1280 CAT->getIndexTypeQualifier());
1281 if (IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT))
1282 return getIncompleteArrayType(NewEltTy, IAT->getSizeModifier(),
1283 IAT->getIndexTypeQualifier());
1284
Douglas Gregor898574e2008-12-05 23:32:09 +00001285 if (DependentSizedArrayType *DSAT = dyn_cast<DependentSizedArrayType>(AT))
1286 return getDependentSizedArrayType(NewEltTy, DSAT->getSizeExpr(),
1287 DSAT->getSizeModifier(),
1288 DSAT->getIndexTypeQualifier());
1289
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001290 VariableArrayType *VAT = cast<VariableArrayType>(AT);
1291 return getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1292 VAT->getSizeModifier(),
1293 VAT->getIndexTypeQualifier());
1294}
1295
1296
1297const ArrayType *ASTContext::getAsArrayType(QualType T) {
1298 // Handle the non-qualified case efficiently.
1299 if (T.getCVRQualifiers() == 0) {
1300 // Handle the common positive case fast.
1301 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
1302 return AT;
1303 }
1304
1305 // Handle the common negative case fast, ignoring CVR qualifiers.
1306 QualType CType = T->getCanonicalTypeInternal();
1307
1308 // Make sure to look through type qualifiers (like ASQuals) for the negative
1309 // test.
1310 if (!isa<ArrayType>(CType) &&
1311 !isa<ArrayType>(CType.getUnqualifiedType()))
1312 return 0;
1313
1314 // Apply any CVR qualifiers from the array type to the element type. This
1315 // implements C99 6.7.3p8: "If the specification of an array type includes
1316 // any type qualifiers, the element type is so qualified, not the array type."
1317
1318 // If we get here, we either have type qualifiers on the type, or we have
1319 // sugar such as a typedef in the way. If we have type qualifiers on the type
1320 // we must propagate them down into the elemeng type.
1321 unsigned CVRQuals = T.getCVRQualifiers();
1322 unsigned AddrSpace = 0;
1323 Type *Ty = T.getTypePtr();
1324
1325 // Rip through ASQualType's and typedefs to get to a concrete type.
1326 while (1) {
1327 if (const ASQualType *ASQT = dyn_cast<ASQualType>(Ty)) {
1328 AddrSpace = ASQT->getAddressSpace();
1329 Ty = ASQT->getBaseType();
1330 } else {
1331 T = Ty->getDesugaredType();
1332 if (T.getTypePtr() == Ty && T.getCVRQualifiers() == 0)
1333 break;
1334 CVRQuals |= T.getCVRQualifiers();
1335 Ty = T.getTypePtr();
1336 }
1337 }
1338
1339 // If we have a simple case, just return now.
1340 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
1341 if (ATy == 0 || (AddrSpace == 0 && CVRQuals == 0))
1342 return ATy;
1343
1344 // Otherwise, we have an array and we have qualifiers on it. Push the
1345 // qualifiers into the array element type and return a new array type.
1346 // Get the canonical version of the element with the extra qualifiers on it.
1347 // This can recursively sink qualifiers through multiple levels of arrays.
1348 QualType NewEltTy = ATy->getElementType();
1349 if (AddrSpace)
1350 NewEltTy = getASQualType(NewEltTy, AddrSpace);
1351 NewEltTy = NewEltTy.getWithAdditionalQualifiers(CVRQuals);
1352
1353 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
1354 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
1355 CAT->getSizeModifier(),
1356 CAT->getIndexTypeQualifier()));
1357 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
1358 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
1359 IAT->getSizeModifier(),
1360 IAT->getIndexTypeQualifier()));
Douglas Gregor898574e2008-12-05 23:32:09 +00001361
Douglas Gregor898574e2008-12-05 23:32:09 +00001362 if (const DependentSizedArrayType *DSAT
1363 = dyn_cast<DependentSizedArrayType>(ATy))
1364 return cast<ArrayType>(
1365 getDependentSizedArrayType(NewEltTy,
1366 DSAT->getSizeExpr(),
1367 DSAT->getSizeModifier(),
1368 DSAT->getIndexTypeQualifier()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001369
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001370 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
1371 return cast<ArrayType>(getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1372 VAT->getSizeModifier(),
1373 VAT->getIndexTypeQualifier()));
Chris Lattner77c96472008-04-06 22:41:35 +00001374}
1375
1376
Chris Lattnere6327742008-04-02 05:18:44 +00001377/// getArrayDecayedType - Return the properly qualified result of decaying the
1378/// specified array type to a pointer. This operation is non-trivial when
1379/// handling typedefs etc. The canonical type of "T" must be an array type,
1380/// this returns a pointer to a properly qualified element of the array.
1381///
1382/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
1383QualType ASTContext::getArrayDecayedType(QualType Ty) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001384 // Get the element type with 'getAsArrayType' so that we don't lose any
1385 // typedefs in the element type of the array. This also handles propagation
1386 // of type qualifiers from the array type into the element type if present
1387 // (C99 6.7.3p8).
1388 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
1389 assert(PrettyArrayType && "Not an array type!");
Chris Lattnere6327742008-04-02 05:18:44 +00001390
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001391 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattnere6327742008-04-02 05:18:44 +00001392
1393 // int x[restrict 4] -> int *restrict
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001394 return PtrTy.getQualifiedType(PrettyArrayType->getIndexTypeQualifier());
Chris Lattnere6327742008-04-02 05:18:44 +00001395}
1396
Anders Carlsson6183a992008-12-21 03:44:36 +00001397QualType ASTContext::getBaseElementType(const VariableArrayType *VAT)
1398{
1399 QualType ElemTy = VAT->getElementType();
1400
1401 if (const VariableArrayType *VAT = getAsVariableArrayType(ElemTy))
1402 return getBaseElementType(VAT);
1403
1404 return ElemTy;
1405}
1406
Reid Spencer5f016e22007-07-11 17:01:13 +00001407/// getFloatingRank - Return a relative rank for floating point types.
1408/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnera75cea32008-04-06 23:38:49 +00001409static FloatingRank getFloatingRank(QualType T) {
Christopher Lambebb97e92008-02-04 02:31:56 +00001410 if (const ComplexType *CT = T->getAsComplexType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 return getFloatingRank(CT->getElementType());
Chris Lattnera75cea32008-04-06 23:38:49 +00001412
Christopher Lambebb97e92008-02-04 02:31:56 +00001413 switch (T->getAsBuiltinType()->getKind()) {
Chris Lattnera75cea32008-04-06 23:38:49 +00001414 default: assert(0 && "getFloatingRank(): not a floating type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 case BuiltinType::Float: return FloatRank;
1416 case BuiltinType::Double: return DoubleRank;
1417 case BuiltinType::LongDouble: return LongDoubleRank;
1418 }
1419}
1420
Steve Naroff716c7302007-08-27 01:41:48 +00001421/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
1422/// point or a complex type (based on typeDomain/typeSize).
1423/// 'typeDomain' is a real floating point or complex type.
1424/// 'typeSize' is a real floating point or complex type.
Chris Lattner1361b112008-04-06 23:58:54 +00001425QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
1426 QualType Domain) const {
1427 FloatingRank EltRank = getFloatingRank(Size);
1428 if (Domain->isComplexType()) {
1429 switch (EltRank) {
Steve Naroff716c7302007-08-27 01:41:48 +00001430 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Narofff1448a02007-08-27 01:27:54 +00001431 case FloatRank: return FloatComplexTy;
1432 case DoubleRank: return DoubleComplexTy;
1433 case LongDoubleRank: return LongDoubleComplexTy;
1434 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001435 }
Chris Lattner1361b112008-04-06 23:58:54 +00001436
1437 assert(Domain->isRealFloatingType() && "Unknown domain!");
1438 switch (EltRank) {
1439 default: assert(0 && "getFloatingRank(): illegal value for rank");
1440 case FloatRank: return FloatTy;
1441 case DoubleRank: return DoubleTy;
1442 case LongDoubleRank: return LongDoubleTy;
Steve Narofff1448a02007-08-27 01:27:54 +00001443 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001444}
1445
Chris Lattner7cfeb082008-04-06 23:55:33 +00001446/// getFloatingTypeOrder - Compare the rank of the two specified floating
1447/// point types, ignoring the domain of the type (i.e. 'double' ==
1448/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
1449/// LHS < RHS, return -1.
Chris Lattnera75cea32008-04-06 23:38:49 +00001450int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
1451 FloatingRank LHSR = getFloatingRank(LHS);
1452 FloatingRank RHSR = getFloatingRank(RHS);
1453
1454 if (LHSR == RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00001455 return 0;
Chris Lattnera75cea32008-04-06 23:38:49 +00001456 if (LHSR > RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00001457 return 1;
1458 return -1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001459}
1460
Chris Lattnerf52ab252008-04-06 22:59:24 +00001461/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
1462/// routine will assert if passed a built-in type that isn't an integer or enum,
1463/// or if it is not canonicalized.
1464static unsigned getIntegerRank(Type *T) {
1465 assert(T->isCanonical() && "T should be canonicalized");
1466 if (isa<EnumType>(T))
1467 return 4;
1468
1469 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner7cfeb082008-04-06 23:55:33 +00001470 default: assert(0 && "getIntegerRank(): not a built-in integer");
1471 case BuiltinType::Bool:
1472 return 1;
1473 case BuiltinType::Char_S:
1474 case BuiltinType::Char_U:
1475 case BuiltinType::SChar:
1476 case BuiltinType::UChar:
1477 return 2;
1478 case BuiltinType::Short:
1479 case BuiltinType::UShort:
1480 return 3;
1481 case BuiltinType::Int:
1482 case BuiltinType::UInt:
1483 return 4;
1484 case BuiltinType::Long:
1485 case BuiltinType::ULong:
1486 return 5;
1487 case BuiltinType::LongLong:
1488 case BuiltinType::ULongLong:
1489 return 6;
Chris Lattnerf52ab252008-04-06 22:59:24 +00001490 }
1491}
1492
Chris Lattner7cfeb082008-04-06 23:55:33 +00001493/// getIntegerTypeOrder - Returns the highest ranked integer type:
1494/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
1495/// LHS < RHS, return -1.
1496int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001497 Type *LHSC = getCanonicalType(LHS).getTypePtr();
1498 Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner7cfeb082008-04-06 23:55:33 +00001499 if (LHSC == RHSC) return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001500
Chris Lattnerf52ab252008-04-06 22:59:24 +00001501 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
1502 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001503
Chris Lattner7cfeb082008-04-06 23:55:33 +00001504 unsigned LHSRank = getIntegerRank(LHSC);
1505 unsigned RHSRank = getIntegerRank(RHSC);
Reid Spencer5f016e22007-07-11 17:01:13 +00001506
Chris Lattner7cfeb082008-04-06 23:55:33 +00001507 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
1508 if (LHSRank == RHSRank) return 0;
1509 return LHSRank > RHSRank ? 1 : -1;
1510 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001511
Chris Lattner7cfeb082008-04-06 23:55:33 +00001512 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
1513 if (LHSUnsigned) {
1514 // If the unsigned [LHS] type is larger, return it.
1515 if (LHSRank >= RHSRank)
1516 return 1;
1517
1518 // If the signed type can represent all values of the unsigned type, it
1519 // wins. Because we are dealing with 2's complement and types that are
1520 // powers of two larger than each other, this is always safe.
1521 return -1;
1522 }
Chris Lattnerf52ab252008-04-06 22:59:24 +00001523
Chris Lattner7cfeb082008-04-06 23:55:33 +00001524 // If the unsigned [RHS] type is larger, return it.
1525 if (RHSRank >= LHSRank)
1526 return -1;
1527
1528 // If the signed type can represent all values of the unsigned type, it
1529 // wins. Because we are dealing with 2's complement and types that are
1530 // powers of two larger than each other, this is always safe.
1531 return 1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001532}
Anders Carlsson71993dd2007-08-17 05:31:46 +00001533
1534// getCFConstantStringType - Return the type used for constant CFStrings.
1535QualType ASTContext::getCFConstantStringType() {
1536 if (!CFConstantStringTypeDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001537 CFConstantStringTypeDecl =
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001538 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
Ted Kremenekdf042e62008-09-05 01:34:33 +00001539 &Idents.get("NSConstantString"));
Anders Carlssonf06273f2007-11-19 00:25:30 +00001540 QualType FieldTypes[4];
Anders Carlsson71993dd2007-08-17 05:31:46 +00001541
1542 // const int *isa;
1543 FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
Anders Carlssonf06273f2007-11-19 00:25:30 +00001544 // int flags;
1545 FieldTypes[1] = IntTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +00001546 // const char *str;
Anders Carlssonf06273f2007-11-19 00:25:30 +00001547 FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
Anders Carlsson71993dd2007-08-17 05:31:46 +00001548 // long length;
Anders Carlssonf06273f2007-11-19 00:25:30 +00001549 FieldTypes[3] = LongTy;
Douglas Gregor44b43212008-12-11 16:49:14 +00001550
Anders Carlsson71993dd2007-08-17 05:31:46 +00001551 // Create fields
Douglas Gregor44b43212008-12-11 16:49:14 +00001552 for (unsigned i = 0; i < 4; ++i) {
1553 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
1554 SourceLocation(), 0,
1555 FieldTypes[i], /*BitWidth=*/0,
1556 /*Mutable=*/false, /*PrevDecl=*/0);
1557 CFConstantStringTypeDecl->addDecl(*this, Field, true);
1558 }
1559
1560 CFConstantStringTypeDecl->completeDefinition(*this);
Anders Carlsson71993dd2007-08-17 05:31:46 +00001561 }
1562
1563 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif84675832007-09-11 15:32:40 +00001564}
Anders Carlssonb2cf3572007-10-11 01:00:40 +00001565
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001566QualType ASTContext::getObjCFastEnumerationStateType()
1567{
1568 if (!ObjCFastEnumerationStateTypeDecl) {
Douglas Gregor44b43212008-12-11 16:49:14 +00001569 ObjCFastEnumerationStateTypeDecl =
1570 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
1571 &Idents.get("__objcFastEnumerationState"));
1572
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001573 QualType FieldTypes[] = {
1574 UnsignedLongTy,
1575 getPointerType(ObjCIdType),
1576 getPointerType(UnsignedLongTy),
1577 getConstantArrayType(UnsignedLongTy,
1578 llvm::APInt(32, 5), ArrayType::Normal, 0)
1579 };
1580
Douglas Gregor44b43212008-12-11 16:49:14 +00001581 for (size_t i = 0; i < 4; ++i) {
1582 FieldDecl *Field = FieldDecl::Create(*this,
1583 ObjCFastEnumerationStateTypeDecl,
1584 SourceLocation(), 0,
1585 FieldTypes[i], /*BitWidth=*/0,
1586 /*Mutable=*/false, /*PrevDecl=*/0);
1587 ObjCFastEnumerationStateTypeDecl->addDecl(*this, Field, true);
1588 }
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001589
Douglas Gregor44b43212008-12-11 16:49:14 +00001590 ObjCFastEnumerationStateTypeDecl->completeDefinition(*this);
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001591 }
1592
1593 return getTagDeclType(ObjCFastEnumerationStateTypeDecl);
1594}
1595
Anders Carlssone8c49532007-10-29 06:33:42 +00001596// This returns true if a type has been typedefed to BOOL:
1597// typedef <type> BOOL;
Chris Lattner2d998332007-10-30 20:27:44 +00001598static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone8c49532007-10-29 06:33:42 +00001599 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnerbb49c3e2008-11-24 03:52:59 +00001600 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
1601 return II->isStr("BOOL");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001602
1603 return false;
1604}
1605
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001606/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001607/// purpose.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001608int ASTContext::getObjCEncodingTypeSize(QualType type) {
Chris Lattner98be4942008-03-05 18:54:05 +00001609 uint64_t sz = getTypeSize(type);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001610
1611 // Make all integer and enum types at least as large as an int
1612 if (sz > 0 && type->isIntegralType())
Chris Lattner98be4942008-03-05 18:54:05 +00001613 sz = std::max(sz, getTypeSize(IntTy));
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001614 // Treat arrays as pointers, since that's how they're passed in.
1615 else if (type->isArrayType())
Chris Lattner98be4942008-03-05 18:54:05 +00001616 sz = getTypeSize(VoidPtrTy);
1617 return sz / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001618}
1619
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001620/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001621/// declaration.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001622void ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Chris Lattnere6db3b02008-11-19 07:24:05 +00001623 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001624 // FIXME: This is not very efficient.
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001625 // Encode type qualifer, 'in', 'inout', etc. for the return type.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001626 getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001627 // Encode result type.
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001628 getObjCEncodingForType(Decl->getResultType(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001629 // Compute size of all parameters.
1630 // Start with computing size of a pointer in number of bytes.
1631 // FIXME: There might(should) be a better way of doing this computation!
1632 SourceLocation Loc;
Chris Lattner98be4942008-03-05 18:54:05 +00001633 int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001634 // The first two arguments (self and _cmd) are pointers; account for
1635 // their size.
1636 int ParmOffset = 2 * PtrSize;
1637 int NumOfParams = Decl->getNumParams();
1638 for (int i = 0; i < NumOfParams; i++) {
1639 QualType PType = Decl->getParamDecl(i)->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001640 int sz = getObjCEncodingTypeSize (PType);
1641 assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001642 ParmOffset += sz;
1643 }
1644 S += llvm::utostr(ParmOffset);
1645 S += "@0:";
1646 S += llvm::utostr(PtrSize);
1647
1648 // Argument types.
1649 ParmOffset = 2 * PtrSize;
1650 for (int i = 0; i < NumOfParams; i++) {
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001651 ParmVarDecl *PVDecl = Decl->getParamDecl(i);
1652 QualType PType = PVDecl->getOriginalType();
1653 if (const ArrayType *AT =
1654 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal()))
1655 // Use array's original type only if it has known number of
1656 // elements.
1657 if (!dyn_cast<ConstantArrayType>(AT))
1658 PType = PVDecl->getType();
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001659 // Process argument qualifiers for user supplied arguments; such as,
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001660 // 'in', 'inout', etc.
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001661 getObjCEncodingForTypeQualifier(PVDecl->getObjCDeclQualifier(), S);
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001662 getObjCEncodingForType(PType, S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001663 S += llvm::utostr(ParmOffset);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001664 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001665 }
1666}
1667
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001668/// getObjCEncodingForPropertyDecl - Return the encoded type for this
1669/// method declaration. If non-NULL, Container must be either an
1670/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
1671/// NULL when getting encodings for protocol properties.
1672void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
1673 const Decl *Container,
Chris Lattnere6db3b02008-11-19 07:24:05 +00001674 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001675 // Collect information from the property implementation decl(s).
1676 bool Dynamic = false;
1677 ObjCPropertyImplDecl *SynthesizePID = 0;
1678
1679 // FIXME: Duplicated code due to poor abstraction.
1680 if (Container) {
1681 if (const ObjCCategoryImplDecl *CID =
1682 dyn_cast<ObjCCategoryImplDecl>(Container)) {
1683 for (ObjCCategoryImplDecl::propimpl_iterator
1684 i = CID->propimpl_begin(), e = CID->propimpl_end(); i != e; ++i) {
1685 ObjCPropertyImplDecl *PID = *i;
1686 if (PID->getPropertyDecl() == PD) {
1687 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1688 Dynamic = true;
1689 } else {
1690 SynthesizePID = PID;
1691 }
1692 }
1693 }
1694 } else {
Chris Lattner61710852008-10-05 17:34:18 +00001695 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001696 for (ObjCCategoryImplDecl::propimpl_iterator
1697 i = OID->propimpl_begin(), e = OID->propimpl_end(); i != e; ++i) {
1698 ObjCPropertyImplDecl *PID = *i;
1699 if (PID->getPropertyDecl() == PD) {
1700 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1701 Dynamic = true;
1702 } else {
1703 SynthesizePID = PID;
1704 }
1705 }
1706 }
1707 }
1708 }
1709
1710 // FIXME: This is not very efficient.
1711 S = "T";
1712
1713 // Encode result type.
1714 // FIXME: GCC uses a generating_property_type_encoding mode during
1715 // this part. Investigate.
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001716 getObjCEncodingForType(PD->getType(), S);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001717
1718 if (PD->isReadOnly()) {
1719 S += ",R";
1720 } else {
1721 switch (PD->getSetterKind()) {
1722 case ObjCPropertyDecl::Assign: break;
1723 case ObjCPropertyDecl::Copy: S += ",C"; break;
1724 case ObjCPropertyDecl::Retain: S += ",&"; break;
1725 }
1726 }
1727
1728 // It really isn't clear at all what this means, since properties
1729 // are "dynamic by default".
1730 if (Dynamic)
1731 S += ",D";
1732
1733 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
1734 S += ",G";
Chris Lattner077bf5e2008-11-24 03:33:13 +00001735 S += PD->getGetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001736 }
1737
1738 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
1739 S += ",S";
Chris Lattner077bf5e2008-11-24 03:33:13 +00001740 S += PD->getSetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001741 }
1742
1743 if (SynthesizePID) {
1744 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
1745 S += ",V";
Chris Lattner39f34e92008-11-24 04:00:27 +00001746 S += OID->getNameAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001747 }
1748
1749 // FIXME: OBJCGC: weak & strong
1750}
1751
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001752/// getLegacyIntegralTypeEncoding -
1753/// Another legacy compatibility encoding: 32-bit longs are encoded as
1754/// 'l' or 'L', but not always. For typedefs, we need to use
1755/// 'i' or 'I' instead if encoding a struct field, or a pointer!
1756///
1757void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
1758 if (dyn_cast<TypedefType>(PointeeTy.getTypePtr())) {
1759 if (const BuiltinType *BT = PointeeTy->getAsBuiltinType()) {
1760 if (BT->getKind() == BuiltinType::ULong)
1761 PointeeTy = UnsignedIntTy;
1762 else if (BT->getKind() == BuiltinType::Long)
1763 PointeeTy = IntTy;
1764 }
1765 }
1766}
1767
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001768void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001769 FieldDecl *Field) const {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001770 // We follow the behavior of gcc, expanding structures which are
1771 // directly pointed to, and expanding embedded structures. Note that
1772 // these rules are sufficient to prevent recursive encoding of the
1773 // same type.
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00001774 getObjCEncodingForTypeImpl(T, S, true, true, Field,
1775 true /* outermost type */);
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001776}
1777
1778void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
1779 bool ExpandPointedToStructures,
1780 bool ExpandStructures,
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00001781 FieldDecl *FD,
1782 bool OutermostType) const {
Anders Carlssone8c49532007-10-29 06:33:42 +00001783 if (const BuiltinType *BT = T->getAsBuiltinType()) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001784 if (FD && FD->isBitField()) {
1785 const Expr *E = FD->getBitWidth();
1786 assert(E && "bitfield width not there - getObjCEncodingForTypeImpl");
1787 ASTContext *Ctx = const_cast<ASTContext*>(this);
1788 unsigned N = E->getIntegerConstantExprValue(*Ctx).getZExtValue();
1789 S += 'b';
1790 S += llvm::utostr(N);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001791 }
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001792 else {
1793 char encoding;
1794 switch (BT->getKind()) {
1795 default: assert(0 && "Unhandled builtin type kind");
1796 case BuiltinType::Void: encoding = 'v'; break;
1797 case BuiltinType::Bool: encoding = 'B'; break;
1798 case BuiltinType::Char_U:
1799 case BuiltinType::UChar: encoding = 'C'; break;
1800 case BuiltinType::UShort: encoding = 'S'; break;
1801 case BuiltinType::UInt: encoding = 'I'; break;
1802 case BuiltinType::ULong: encoding = 'L'; break;
1803 case BuiltinType::ULongLong: encoding = 'Q'; break;
1804 case BuiltinType::Char_S:
1805 case BuiltinType::SChar: encoding = 'c'; break;
1806 case BuiltinType::Short: encoding = 's'; break;
1807 case BuiltinType::Int: encoding = 'i'; break;
1808 case BuiltinType::Long: encoding = 'l'; break;
1809 case BuiltinType::LongLong: encoding = 'q'; break;
1810 case BuiltinType::Float: encoding = 'f'; break;
1811 case BuiltinType::Double: encoding = 'd'; break;
1812 case BuiltinType::LongDouble: encoding = 'd'; break;
1813 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001814
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001815 S += encoding;
1816 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001817 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001818 else if (T->isObjCQualifiedIdType()) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001819 // Treat id<P...> same as 'id' for encoding purposes.
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001820 return getObjCEncodingForTypeImpl(getObjCIdType(), S,
1821 ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001822 ExpandStructures, FD);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001823 }
1824 else if (const PointerType *PT = T->getAsPointerType()) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001825 QualType PointeeTy = PT->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001826 bool isReadOnly = false;
1827 // For historical/compatibility reasons, the read-only qualifier of the
1828 // pointee gets emitted _before_ the '^'. The read-only qualifier of
1829 // the pointer itself gets ignored, _unless_ we are looking at a typedef!
1830 // Also, do not emit the 'r' for anything but the outermost type!
1831 if (dyn_cast<TypedefType>(T.getTypePtr())) {
1832 if (OutermostType && T.isConstQualified()) {
1833 isReadOnly = true;
1834 S += 'r';
1835 }
1836 }
1837 else if (OutermostType) {
1838 QualType P = PointeeTy;
1839 while (P->getAsPointerType())
1840 P = P->getAsPointerType()->getPointeeType();
1841 if (P.isConstQualified()) {
1842 isReadOnly = true;
1843 S += 'r';
1844 }
1845 }
1846 if (isReadOnly) {
1847 // Another legacy compatibility encoding. Some ObjC qualifier and type
1848 // combinations need to be rearranged.
1849 // Rewrite "in const" from "nr" to "rn"
1850 const char * s = S.c_str();
1851 int len = S.length();
1852 if (len >= 2 && s[len-2] == 'n' && s[len-1] == 'r') {
1853 std::string replace = "rn";
1854 S.replace(S.end()-2, S.end(), replace);
1855 }
1856 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00001857 if (isObjCIdType(PointeeTy)) {
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00001858 S += '@';
1859 return;
Fariborz Jahanianc166d732008-12-19 00:14:49 +00001860 }
1861 else if (PointeeTy->isObjCInterfaceType()) {
1862 S += '@';
Fariborz Jahanianadcaf542008-12-20 19:17:01 +00001863 if (FD) {
1864 ObjCInterfaceDecl *OI = PointeeTy->getAsObjCInterfaceType()->getDecl();
1865 S += '"';
1866 S += OI->getNameAsCString();
1867 S += '"';
1868 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00001869 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001870 } else if (isObjCClassType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00001871 S += '#';
1872 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001873 } else if (isObjCSelType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00001874 S += ':';
1875 return;
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00001876 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001877
1878 if (PointeeTy->isCharType()) {
1879 // char pointer types should be encoded as '*' unless it is a
1880 // type that has been typedef'd to 'BOOL'.
Anders Carlssone8c49532007-10-29 06:33:42 +00001881 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001882 S += '*';
1883 return;
1884 }
1885 }
1886
1887 S += '^';
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001888 getLegacyIntegralTypeEncoding(PointeeTy);
1889
1890 getObjCEncodingForTypeImpl(PointeeTy, S,
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001891 false, ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001892 NULL);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001893 } else if (const ArrayType *AT =
1894 // Ignore type qualifiers etc.
1895 dyn_cast<ArrayType>(T->getCanonicalTypeInternal())) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001896 S += '[';
1897
1898 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1899 S += llvm::utostr(CAT->getSize().getZExtValue());
1900 else
1901 assert(0 && "Unhandled array type!");
1902
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001903 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001904 false, ExpandStructures, FD);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001905 S += ']';
Anders Carlssonc0a87b72007-10-30 00:06:20 +00001906 } else if (T->getAsFunctionType()) {
1907 S += '?';
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00001908 } else if (const RecordType *RTy = T->getAsRecordType()) {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001909 RecordDecl *RDecl = RTy->getDecl();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001910 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar502a4a12008-10-17 06:22:57 +00001911 // Anonymous structures print as '?'
1912 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
1913 S += II->getName();
1914 } else {
1915 S += '?';
1916 }
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001917 if (ExpandStructures) {
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001918 S += '=';
Douglas Gregor44b43212008-12-11 16:49:14 +00001919 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
1920 FieldEnd = RDecl->field_end();
1921 Field != FieldEnd; ++Field) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001922 if (FD) {
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001923 S += '"';
Douglas Gregor44b43212008-12-11 16:49:14 +00001924 S += Field->getNameAsString();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001925 S += '"';
1926 }
1927
1928 // Special case bit-fields.
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001929 if (Field->isBitField()) {
1930 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
1931 (*Field));
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001932 } else {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001933 QualType qt = Field->getType();
1934 getLegacyIntegralTypeEncoding(qt);
1935 getObjCEncodingForTypeImpl(qt, S, false, true,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001936 FD);
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001937 }
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001938 }
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00001939 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00001940 S += RDecl->isUnion() ? ')' : '}';
Steve Naroff5e711242007-12-12 22:30:11 +00001941 } else if (T->isEnumeralType()) {
1942 S += 'i';
Steve Naroff485eeff2008-09-24 15:05:44 +00001943 } else if (T->isBlockPointerType()) {
1944 S += '^'; // This type string is the same as general pointers.
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001945 } else if (T->isObjCInterfaceType()) {
1946 // @encode(class_name)
1947 ObjCInterfaceDecl *OI = T->getAsObjCInterfaceType()->getDecl();
1948 S += '{';
1949 const IdentifierInfo *II = OI->getIdentifier();
1950 S += II->getName();
1951 S += '=';
1952 std::vector<FieldDecl*> RecFields;
1953 CollectObjCIvars(OI, RecFields);
1954 for (unsigned int i = 0; i != RecFields.size(); i++) {
1955 if (RecFields[i]->isBitField())
1956 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
1957 RecFields[i]);
1958 else
1959 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
1960 FD);
1961 }
1962 S += '}';
1963 }
1964 else
Steve Narofff69cc5d2008-01-30 19:17:43 +00001965 assert(0 && "@encode for type not implemented!");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001966}
1967
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001968void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001969 std::string& S) const {
1970 if (QT & Decl::OBJC_TQ_In)
1971 S += 'n';
1972 if (QT & Decl::OBJC_TQ_Inout)
1973 S += 'N';
1974 if (QT & Decl::OBJC_TQ_Out)
1975 S += 'o';
1976 if (QT & Decl::OBJC_TQ_Bycopy)
1977 S += 'O';
1978 if (QT & Decl::OBJC_TQ_Byref)
1979 S += 'R';
1980 if (QT & Decl::OBJC_TQ_Oneway)
1981 S += 'V';
1982}
1983
Anders Carlssonb2cf3572007-10-11 01:00:40 +00001984void ASTContext::setBuiltinVaListType(QualType T)
1985{
1986 assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
1987
1988 BuiltinVaListType = T;
1989}
1990
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001991void ASTContext::setObjCIdType(TypedefDecl *TD)
Steve Naroff7e219e42007-10-15 14:41:52 +00001992{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001993 ObjCIdType = getTypedefType(TD);
Steve Naroff7e219e42007-10-15 14:41:52 +00001994
1995 // typedef struct objc_object *id;
1996 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
1997 assert(ptr && "'id' incorrectly typed");
1998 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
1999 assert(rec && "'id' incorrectly typed");
2000 IdStructType = rec;
2001}
2002
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002003void ASTContext::setObjCSelType(TypedefDecl *TD)
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002004{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002005 ObjCSelType = getTypedefType(TD);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002006
2007 // typedef struct objc_selector *SEL;
2008 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
2009 assert(ptr && "'SEL' incorrectly typed");
2010 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
2011 assert(rec && "'SEL' incorrectly typed");
2012 SelStructType = rec;
2013}
2014
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002015void ASTContext::setObjCProtoType(QualType QT)
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002016{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002017 ObjCProtoType = QT;
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002018}
2019
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002020void ASTContext::setObjCClassType(TypedefDecl *TD)
Anders Carlsson8baaca52007-10-31 02:53:19 +00002021{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002022 ObjCClassType = getTypedefType(TD);
Anders Carlsson8baaca52007-10-31 02:53:19 +00002023
2024 // typedef struct objc_class *Class;
2025 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
2026 assert(ptr && "'Class' incorrectly typed");
2027 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
2028 assert(rec && "'Class' incorrectly typed");
2029 ClassStructType = rec;
2030}
2031
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002032void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
2033 assert(ObjCConstantStringType.isNull() &&
Steve Naroff21988912007-10-15 23:35:17 +00002034 "'NSConstantString' type already set!");
2035
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002036 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Naroff21988912007-10-15 23:35:17 +00002037}
2038
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002039/// getFromTargetType - Given one of the integer types provided by
Douglas Gregord9341122008-11-03 15:57:00 +00002040/// TargetInfo, produce the corresponding type. The unsigned @p Type
2041/// is actually a value of type @c TargetInfo::IntType.
2042QualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002043 switch (Type) {
2044 case TargetInfo::NoInt: return QualType();
2045 case TargetInfo::SignedShort: return ShortTy;
2046 case TargetInfo::UnsignedShort: return UnsignedShortTy;
2047 case TargetInfo::SignedInt: return IntTy;
2048 case TargetInfo::UnsignedInt: return UnsignedIntTy;
2049 case TargetInfo::SignedLong: return LongTy;
2050 case TargetInfo::UnsignedLong: return UnsignedLongTy;
2051 case TargetInfo::SignedLongLong: return LongLongTy;
2052 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
2053 }
2054
2055 assert(false && "Unhandled TargetInfo::IntType value");
Daniel Dunbarb3ac5432008-11-11 01:16:00 +00002056 return QualType();
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002057}
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002058
2059//===----------------------------------------------------------------------===//
2060// Type Predicates.
2061//===----------------------------------------------------------------------===//
2062
2063/// isObjCObjectPointerType - Returns true if type is an Objective-C pointer
2064/// to an object type. This includes "id" and "Class" (two 'special' pointers
2065/// to struct), Interface* (pointer to ObjCInterfaceType) and id<P> (qualified
2066/// ID type).
2067bool ASTContext::isObjCObjectPointerType(QualType Ty) const {
2068 if (Ty->isObjCQualifiedIdType())
2069 return true;
2070
Steve Naroff6ae98502008-10-21 18:24:04 +00002071 // Blocks are objects.
2072 if (Ty->isBlockPointerType())
2073 return true;
2074
2075 // All other object types are pointers.
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002076 if (!Ty->isPointerType())
2077 return false;
2078
2079 // Check to see if this is 'id' or 'Class', both of which are typedefs for
2080 // pointer types. This looks for the typedef specifically, not for the
2081 // underlying type.
2082 if (Ty == getObjCIdType() || Ty == getObjCClassType())
2083 return true;
2084
2085 // If this a pointer to an interface (e.g. NSString*), it is ok.
2086 return Ty->getAsPointerType()->getPointeeType()->isObjCInterfaceType();
2087}
2088
Chris Lattner6ac46a42008-04-07 06:51:04 +00002089//===----------------------------------------------------------------------===//
2090// Type Compatibility Testing
2091//===----------------------------------------------------------------------===//
Chris Lattner770951b2007-11-01 05:03:41 +00002092
Steve Naroff1c7d0672008-09-04 15:10:53 +00002093/// typesAreBlockCompatible - This routine is called when comparing two
Steve Naroffdd972f22008-09-05 22:11:13 +00002094/// block types. Types must be strictly compatible here. For example,
2095/// C unfortunately doesn't produce an error for the following:
2096///
2097/// int (*emptyArgFunc)();
2098/// int (*intArgList)(int) = emptyArgFunc;
2099///
2100/// For blocks, we will produce an error for the following (similar to C++):
2101///
2102/// int (^emptyArgBlock)();
2103/// int (^intArgBlock)(int) = emptyArgBlock;
2104///
2105/// FIXME: When the dust settles on this integration, fold this into mergeTypes.
2106///
Steve Naroff1c7d0672008-09-04 15:10:53 +00002107bool ASTContext::typesAreBlockCompatible(QualType lhs, QualType rhs) {
Steve Naroffc0febd52008-12-10 17:49:55 +00002108 const FunctionType *lbase = lhs->getAsFunctionType();
2109 const FunctionType *rbase = rhs->getAsFunctionType();
2110 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2111 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2112 if (lproto && rproto)
2113 return !mergeTypes(lhs, rhs).isNull();
2114 return false;
Steve Naroff1c7d0672008-09-04 15:10:53 +00002115}
2116
Chris Lattner6ac46a42008-04-07 06:51:04 +00002117/// areCompatVectorTypes - Return true if the two specified vector types are
2118/// compatible.
2119static bool areCompatVectorTypes(const VectorType *LHS,
2120 const VectorType *RHS) {
2121 assert(LHS->isCanonical() && RHS->isCanonical());
2122 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner61710852008-10-05 17:34:18 +00002123 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ac46a42008-04-07 06:51:04 +00002124}
2125
Eli Friedman3d815e72008-08-22 00:56:42 +00002126/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00002127/// compatible for assignment from RHS to LHS. This handles validation of any
2128/// protocol qualifiers on the LHS or RHS.
2129///
Eli Friedman3d815e72008-08-22 00:56:42 +00002130bool ASTContext::canAssignObjCInterfaces(const ObjCInterfaceType *LHS,
2131 const ObjCInterfaceType *RHS) {
Chris Lattner6ac46a42008-04-07 06:51:04 +00002132 // Verify that the base decls are compatible: the RHS must be a subclass of
2133 // the LHS.
2134 if (!LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
2135 return false;
2136
2137 // RHS must have a superset of the protocols in the LHS. If the LHS is not
2138 // protocol qualified at all, then we are good.
2139 if (!isa<ObjCQualifiedInterfaceType>(LHS))
2140 return true;
2141
2142 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't, then it
2143 // isn't a superset.
2144 if (!isa<ObjCQualifiedInterfaceType>(RHS))
2145 return true; // FIXME: should return false!
2146
2147 // Finally, we must have two protocol-qualified interfaces.
2148 const ObjCQualifiedInterfaceType *LHSP =cast<ObjCQualifiedInterfaceType>(LHS);
2149 const ObjCQualifiedInterfaceType *RHSP =cast<ObjCQualifiedInterfaceType>(RHS);
2150 ObjCQualifiedInterfaceType::qual_iterator LHSPI = LHSP->qual_begin();
2151 ObjCQualifiedInterfaceType::qual_iterator LHSPE = LHSP->qual_end();
2152 ObjCQualifiedInterfaceType::qual_iterator RHSPI = RHSP->qual_begin();
2153 ObjCQualifiedInterfaceType::qual_iterator RHSPE = RHSP->qual_end();
2154
2155 // All protocols in LHS must have a presence in RHS. Since the protocol lists
2156 // are both sorted alphabetically and have no duplicates, we can scan RHS and
2157 // LHS in a single parallel scan until we run out of elements in LHS.
2158 assert(LHSPI != LHSPE && "Empty LHS protocol list?");
2159 ObjCProtocolDecl *LHSProto = *LHSPI;
2160
2161 while (RHSPI != RHSPE) {
2162 ObjCProtocolDecl *RHSProto = *RHSPI++;
2163 // If the RHS has a protocol that the LHS doesn't, ignore it.
2164 if (RHSProto != LHSProto)
2165 continue;
2166
2167 // Otherwise, the RHS does have this element.
2168 ++LHSPI;
2169 if (LHSPI == LHSPE)
2170 return true; // All protocols in LHS exist in RHS.
2171
2172 LHSProto = *LHSPI;
2173 }
2174
2175 // If we got here, we didn't find one of the LHS's protocols in the RHS list.
2176 return false;
2177}
2178
Steve Naroffec0550f2007-10-15 20:41:53 +00002179/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
2180/// both shall have the identically qualified version of a compatible type.
2181/// C99 6.2.7p1: Two types have compatible types if their types are the
2182/// same. See 6.7.[2,3,5] for additional rules.
Eli Friedman3d815e72008-08-22 00:56:42 +00002183bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS) {
2184 return !mergeTypes(LHS, RHS).isNull();
2185}
2186
2187QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs) {
2188 const FunctionType *lbase = lhs->getAsFunctionType();
2189 const FunctionType *rbase = rhs->getAsFunctionType();
2190 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2191 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2192 bool allLTypes = true;
2193 bool allRTypes = true;
2194
2195 // Check return type
2196 QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
2197 if (retType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002198 if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType()))
2199 allLTypes = false;
2200 if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType()))
2201 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00002202
2203 if (lproto && rproto) { // two C99 style function prototypes
2204 unsigned lproto_nargs = lproto->getNumArgs();
2205 unsigned rproto_nargs = rproto->getNumArgs();
2206
2207 // Compatible functions must have the same number of arguments
2208 if (lproto_nargs != rproto_nargs)
2209 return QualType();
2210
2211 // Variadic and non-variadic functions aren't compatible
2212 if (lproto->isVariadic() != rproto->isVariadic())
2213 return QualType();
2214
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002215 if (lproto->getTypeQuals() != rproto->getTypeQuals())
2216 return QualType();
2217
Eli Friedman3d815e72008-08-22 00:56:42 +00002218 // Check argument compatibility
2219 llvm::SmallVector<QualType, 10> types;
2220 for (unsigned i = 0; i < lproto_nargs; i++) {
2221 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
2222 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
2223 QualType argtype = mergeTypes(largtype, rargtype);
2224 if (argtype.isNull()) return QualType();
2225 types.push_back(argtype);
Chris Lattner61710852008-10-05 17:34:18 +00002226 if (getCanonicalType(argtype) != getCanonicalType(largtype))
2227 allLTypes = false;
2228 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
2229 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00002230 }
2231 if (allLTypes) return lhs;
2232 if (allRTypes) return rhs;
2233 return getFunctionType(retType, types.begin(), types.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002234 lproto->isVariadic(), lproto->getTypeQuals());
Eli Friedman3d815e72008-08-22 00:56:42 +00002235 }
2236
2237 if (lproto) allRTypes = false;
2238 if (rproto) allLTypes = false;
2239
2240 const FunctionTypeProto *proto = lproto ? lproto : rproto;
2241 if (proto) {
2242 if (proto->isVariadic()) return QualType();
2243 // Check that the types are compatible with the types that
2244 // would result from default argument promotions (C99 6.7.5.3p15).
2245 // The only types actually affected are promotable integer
2246 // types and floats, which would be passed as a different
2247 // type depending on whether the prototype is visible.
2248 unsigned proto_nargs = proto->getNumArgs();
2249 for (unsigned i = 0; i < proto_nargs; ++i) {
2250 QualType argTy = proto->getArgType(i);
2251 if (argTy->isPromotableIntegerType() ||
2252 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
2253 return QualType();
2254 }
2255
2256 if (allLTypes) return lhs;
2257 if (allRTypes) return rhs;
2258 return getFunctionType(retType, proto->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002259 proto->getNumArgs(), lproto->isVariadic(),
2260 lproto->getTypeQuals());
Eli Friedman3d815e72008-08-22 00:56:42 +00002261 }
2262
2263 if (allLTypes) return lhs;
2264 if (allRTypes) return rhs;
2265 return getFunctionTypeNoProto(retType);
2266}
2267
2268QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
Bill Wendling43d69752007-12-03 07:33:35 +00002269 // C++ [expr]: If an expression initially has the type "reference to T", the
2270 // type is adjusted to "T" prior to any further analysis, the expression
2271 // designates the object or function denoted by the reference, and the
2272 // expression is an lvalue.
Eli Friedman3d815e72008-08-22 00:56:42 +00002273 // FIXME: C++ shouldn't be going through here! The rules are different
2274 // enough that they should be handled separately.
2275 if (const ReferenceType *RT = LHS->getAsReferenceType())
Chris Lattnerc4e40592008-04-07 04:07:56 +00002276 LHS = RT->getPointeeType();
Eli Friedman3d815e72008-08-22 00:56:42 +00002277 if (const ReferenceType *RT = RHS->getAsReferenceType())
Chris Lattnerc4e40592008-04-07 04:07:56 +00002278 RHS = RT->getPointeeType();
Chris Lattnerf3692dc2008-04-07 05:37:56 +00002279
Eli Friedman3d815e72008-08-22 00:56:42 +00002280 QualType LHSCan = getCanonicalType(LHS),
2281 RHSCan = getCanonicalType(RHS);
2282
2283 // If two types are identical, they are compatible.
2284 if (LHSCan == RHSCan)
2285 return LHS;
2286
2287 // If the qualifiers are different, the types aren't compatible
2288 if (LHSCan.getCVRQualifiers() != RHSCan.getCVRQualifiers() ||
2289 LHSCan.getAddressSpace() != RHSCan.getAddressSpace())
2290 return QualType();
2291
2292 Type::TypeClass LHSClass = LHSCan->getTypeClass();
2293 Type::TypeClass RHSClass = RHSCan->getTypeClass();
2294
Chris Lattner1adb8832008-01-14 05:45:46 +00002295 // We want to consider the two function types to be the same for these
2296 // comparisons, just force one to the other.
2297 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
2298 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman4c721d32008-02-12 08:23:06 +00002299
2300 // Same as above for arrays
Chris Lattnera36a61f2008-04-07 05:43:21 +00002301 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
2302 LHSClass = Type::ConstantArray;
2303 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
2304 RHSClass = Type::ConstantArray;
Steve Naroffec0550f2007-10-15 20:41:53 +00002305
Nate Begeman213541a2008-04-18 23:10:10 +00002306 // Canonicalize ExtVector -> Vector.
2307 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
2308 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Chris Lattnera36a61f2008-04-07 05:43:21 +00002309
Chris Lattnerb0489812008-04-07 06:38:24 +00002310 // Consider qualified interfaces and interfaces the same.
2311 if (LHSClass == Type::ObjCQualifiedInterface) LHSClass = Type::ObjCInterface;
2312 if (RHSClass == Type::ObjCQualifiedInterface) RHSClass = Type::ObjCInterface;
Eli Friedman3d815e72008-08-22 00:56:42 +00002313
Chris Lattnera36a61f2008-04-07 05:43:21 +00002314 // If the canonical type classes don't match.
Chris Lattner1adb8832008-01-14 05:45:46 +00002315 if (LHSClass != RHSClass) {
Steve Naroffbc76dd02008-12-10 22:14:21 +00002316 // ID is compatible with all qualified id types.
2317 if (LHS->isObjCQualifiedIdType()) {
2318 if (const PointerType *PT = RHS->getAsPointerType()) {
2319 QualType pType = PT->getPointeeType();
2320 if (isObjCIdType(pType))
2321 return LHS;
2322 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2323 // Unfortunately, this API is part of Sema (which we don't have access
2324 // to. Need to refactor. The following check is insufficient, since we
2325 // need to make sure the class implements the protocol.
2326 if (pType->isObjCInterfaceType())
2327 return LHS;
2328 }
2329 }
2330 if (RHS->isObjCQualifiedIdType()) {
2331 if (const PointerType *PT = LHS->getAsPointerType()) {
2332 QualType pType = PT->getPointeeType();
2333 if (isObjCIdType(pType))
2334 return RHS;
2335 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2336 // Unfortunately, this API is part of Sema (which we don't have access
2337 // to. Need to refactor. The following check is insufficient, since we
2338 // need to make sure the class implements the protocol.
2339 if (pType->isObjCInterfaceType())
2340 return RHS;
2341 }
2342 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002343 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
2344 // a signed integer type, or an unsigned integer type.
Eli Friedman3d815e72008-08-22 00:56:42 +00002345 if (const EnumType* ETy = LHS->getAsEnumType()) {
2346 if (ETy->getDecl()->getIntegerType() == RHSCan.getUnqualifiedType())
2347 return RHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00002348 }
Eli Friedman3d815e72008-08-22 00:56:42 +00002349 if (const EnumType* ETy = RHS->getAsEnumType()) {
2350 if (ETy->getDecl()->getIntegerType() == LHSCan.getUnqualifiedType())
2351 return LHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00002352 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002353
Eli Friedman3d815e72008-08-22 00:56:42 +00002354 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00002355 }
Eli Friedman3d815e72008-08-22 00:56:42 +00002356
Steve Naroff4a746782008-01-09 22:43:08 +00002357 // The canonical type classes match.
Chris Lattner1adb8832008-01-14 05:45:46 +00002358 switch (LHSClass) {
Chris Lattner1adb8832008-01-14 05:45:46 +00002359 case Type::Pointer:
Eli Friedman3d815e72008-08-22 00:56:42 +00002360 {
2361 // Merge two pointer types, while trying to preserve typedef info
2362 QualType LHSPointee = LHS->getAsPointerType()->getPointeeType();
2363 QualType RHSPointee = RHS->getAsPointerType()->getPointeeType();
2364 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2365 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002366 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2367 return LHS;
2368 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2369 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00002370 return getPointerType(ResultType);
2371 }
Steve Naroffc0febd52008-12-10 17:49:55 +00002372 case Type::BlockPointer:
2373 {
2374 // Merge two block pointer types, while trying to preserve typedef info
2375 QualType LHSPointee = LHS->getAsBlockPointerType()->getPointeeType();
2376 QualType RHSPointee = RHS->getAsBlockPointerType()->getPointeeType();
2377 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2378 if (ResultType.isNull()) return QualType();
2379 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2380 return LHS;
2381 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2382 return RHS;
2383 return getBlockPointerType(ResultType);
2384 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002385 case Type::ConstantArray:
Eli Friedman3d815e72008-08-22 00:56:42 +00002386 {
2387 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
2388 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
2389 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
2390 return QualType();
2391
2392 QualType LHSElem = getAsArrayType(LHS)->getElementType();
2393 QualType RHSElem = getAsArrayType(RHS)->getElementType();
2394 QualType ResultType = mergeTypes(LHSElem, RHSElem);
2395 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002396 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2397 return LHS;
2398 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2399 return RHS;
Eli Friedman3bc0f452008-08-22 01:48:21 +00002400 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
2401 ArrayType::ArraySizeModifier(), 0);
2402 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
2403 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00002404 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
2405 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner61710852008-10-05 17:34:18 +00002406 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2407 return LHS;
2408 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2409 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00002410 if (LVAT) {
2411 // FIXME: This isn't correct! But tricky to implement because
2412 // the array's size has to be the size of LHS, but the type
2413 // has to be different.
2414 return LHS;
2415 }
2416 if (RVAT) {
2417 // FIXME: This isn't correct! But tricky to implement because
2418 // the array's size has to be the size of RHS, but the type
2419 // has to be different.
2420 return RHS;
2421 }
Eli Friedman3bc0f452008-08-22 01:48:21 +00002422 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
2423 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Chris Lattner61710852008-10-05 17:34:18 +00002424 return getIncompleteArrayType(ResultType, ArrayType::ArraySizeModifier(),0);
Eli Friedman3d815e72008-08-22 00:56:42 +00002425 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002426 case Type::FunctionNoProto:
Eli Friedman3d815e72008-08-22 00:56:42 +00002427 return mergeFunctionTypes(LHS, RHS);
2428 case Type::Tagged:
Eli Friedman3d815e72008-08-22 00:56:42 +00002429 // FIXME: Why are these compatible?
2430 if (isObjCIdType(LHS) && isObjCClassType(RHS)) return LHS;
2431 if (isObjCClassType(LHS) && isObjCIdType(RHS)) return LHS;
2432 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002433 case Type::Builtin:
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00002434 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman3d815e72008-08-22 00:56:42 +00002435 return QualType();
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00002436 case Type::Vector:
Eli Friedman3d815e72008-08-22 00:56:42 +00002437 if (areCompatVectorTypes(LHS->getAsVectorType(), RHS->getAsVectorType()))
2438 return LHS;
Chris Lattner61710852008-10-05 17:34:18 +00002439 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002440 case Type::ObjCInterface:
Eli Friedman3d815e72008-08-22 00:56:42 +00002441 // Distinct ObjC interfaces are not compatible; see canAssignObjCInterfaces
2442 // for checking assignment/comparison safety
2443 return QualType();
Steve Naroffbc76dd02008-12-10 22:14:21 +00002444 case Type::ObjCQualifiedId:
2445 // Distinct qualified id's are not compatible.
2446 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002447 default:
2448 assert(0 && "unexpected type");
Eli Friedman3d815e72008-08-22 00:56:42 +00002449 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00002450 }
Steve Naroffec0550f2007-10-15 20:41:53 +00002451}
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002452
Chris Lattner5426bf62008-04-07 07:01:58 +00002453//===----------------------------------------------------------------------===//
Eli Friedmanad74a752008-06-28 06:23:08 +00002454// Integer Predicates
2455//===----------------------------------------------------------------------===//
2456unsigned ASTContext::getIntWidth(QualType T) {
2457 if (T == BoolTy)
2458 return 1;
2459 // At the moment, only bool has padding bits
2460 return (unsigned)getTypeSize(T);
2461}
2462
2463QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
2464 assert(T->isSignedIntegerType() && "Unexpected type");
2465 if (const EnumType* ETy = T->getAsEnumType())
2466 T = ETy->getDecl()->getIntegerType();
2467 const BuiltinType* BTy = T->getAsBuiltinType();
2468 assert (BTy && "Unexpected signed integer type");
2469 switch (BTy->getKind()) {
2470 case BuiltinType::Char_S:
2471 case BuiltinType::SChar:
2472 return UnsignedCharTy;
2473 case BuiltinType::Short:
2474 return UnsignedShortTy;
2475 case BuiltinType::Int:
2476 return UnsignedIntTy;
2477 case BuiltinType::Long:
2478 return UnsignedLongTy;
2479 case BuiltinType::LongLong:
2480 return UnsignedLongLongTy;
2481 default:
2482 assert(0 && "Unexpected signed integer type");
2483 return QualType();
2484 }
2485}
2486
2487
2488//===----------------------------------------------------------------------===//
Chris Lattner5426bf62008-04-07 07:01:58 +00002489// Serialization Support
2490//===----------------------------------------------------------------------===//
2491
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002492/// Emit - Serialize an ASTContext object to Bitcode.
2493void ASTContext::Emit(llvm::Serializer& S) const {
Ted Kremeneke7d07d12008-06-04 15:55:15 +00002494 S.Emit(LangOpts);
Ted Kremenek54513502007-10-31 20:00:03 +00002495 S.EmitRef(SourceMgr);
2496 S.EmitRef(Target);
2497 S.EmitRef(Idents);
2498 S.EmitRef(Selectors);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002499
Ted Kremenekfee04522007-10-31 22:44:07 +00002500 // Emit the size of the type vector so that we can reserve that size
2501 // when we reconstitute the ASTContext object.
Ted Kremeneka4559c32007-11-06 22:26:16 +00002502 S.EmitInt(Types.size());
2503
Ted Kremenek03ed4402007-11-13 22:02:55 +00002504 for (std::vector<Type*>::const_iterator I=Types.begin(), E=Types.end();
2505 I!=E;++I)
2506 (*I)->Emit(S);
Ted Kremeneka4559c32007-11-06 22:26:16 +00002507
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00002508 S.EmitOwnedPtr(TUDecl);
2509
Ted Kremeneka9a4a242007-11-01 18:11:32 +00002510 // FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002511}
2512
Ted Kremenek0f84c002007-11-13 00:25:37 +00002513ASTContext* ASTContext::Create(llvm::Deserializer& D) {
Ted Kremeneke7d07d12008-06-04 15:55:15 +00002514
2515 // Read the language options.
2516 LangOptions LOpts;
2517 LOpts.Read(D);
2518
Ted Kremenekfee04522007-10-31 22:44:07 +00002519 SourceManager &SM = D.ReadRef<SourceManager>();
2520 TargetInfo &t = D.ReadRef<TargetInfo>();
2521 IdentifierTable &idents = D.ReadRef<IdentifierTable>();
2522 SelectorTable &sels = D.ReadRef<SelectorTable>();
Chris Lattner0ed844b2008-04-04 06:12:32 +00002523
Ted Kremenekfee04522007-10-31 22:44:07 +00002524 unsigned size_reserve = D.ReadInt();
2525
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002526 ASTContext* A = new ASTContext(LOpts, SM, t, idents, sels,
2527 size_reserve);
Ted Kremenekfee04522007-10-31 22:44:07 +00002528
Ted Kremenek03ed4402007-11-13 22:02:55 +00002529 for (unsigned i = 0; i < size_reserve; ++i)
2530 Type::Create(*A,i,D);
Chris Lattner0ed844b2008-04-04 06:12:32 +00002531
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00002532 A->TUDecl = cast<TranslationUnitDecl>(D.ReadOwnedPtr<Decl>(*A));
2533
Ted Kremeneka9a4a242007-11-01 18:11:32 +00002534 // FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
Ted Kremenekfee04522007-10-31 22:44:07 +00002535
2536 return A;
2537}