blob: 7784aed764ceb82f2a9ef888d3b641efec658f75 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- ASTContext.cpp - Context to hold long-lived AST nodes ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ASTContext interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +000015#include "clang/AST/DeclCXX.h"
Steve Naroff980e5082007-10-01 19:00:59 +000016#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000017#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/AST/Expr.h"
19#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Basic/TargetInfo.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000021#include "llvm/ADT/StringExtras.h"
Ted Kremenek7192f8e2007-10-31 17:10:13 +000022#include "llvm/Bitcode/Serialize.h"
23#include "llvm/Bitcode/Deserialize.h"
Nate Begeman6fe7c8a2009-01-18 06:42:49 +000024#include "llvm/Support/MathExtras.h"
Anders Carlsson85f9bce2007-10-29 05:01:08 +000025
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
28enum FloatingRank {
29 FloatRank, DoubleRank, LongDoubleRank
30};
31
Chris Lattner61710852008-10-05 17:34:18 +000032ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM,
33 TargetInfo &t,
Daniel Dunbare91593e2008-08-11 04:54:23 +000034 IdentifierTable &idents, SelectorTable &sels,
Steve Naroffc0ac4922009-01-27 23:20:32 +000035 bool FreeMem, unsigned size_reserve) :
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +000036 CFConstantStringTypeDecl(0), ObjCFastEnumerationStateTypeDecl(0),
Steve Naroffc0ac4922009-01-27 23:20:32 +000037 SourceMgr(SM), LangOpts(LOpts), FreeMemory(FreeMem), Target(t),
Douglas Gregor2e1cd422008-11-17 14:58:09 +000038 Idents(idents), Selectors(sels)
Daniel Dunbare91593e2008-08-11 04:54:23 +000039{
40 if (size_reserve > 0) Types.reserve(size_reserve);
41 InitBuiltinTypes();
42 BuiltinInfo.InitializeBuiltins(idents, Target);
43 TUDecl = TranslationUnitDecl::Create(*this);
44}
45
Reid Spencer5f016e22007-07-11 17:01:13 +000046ASTContext::~ASTContext() {
47 // Deallocate all the types.
48 while (!Types.empty()) {
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000049 Types.back()->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000050 Types.pop_back();
51 }
Eli Friedmanb26153c2008-05-27 03:08:09 +000052
Nuno Lopesb74668e2008-12-17 22:30:25 +000053 {
54 llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator
55 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end();
56 while (I != E) {
57 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
58 delete R;
59 }
60 }
61
62 {
63 llvm::DenseMap<const ObjCInterfaceDecl*, const ASTRecordLayout*>::iterator
64 I = ASTObjCInterfaces.begin(), E = ASTObjCInterfaces.end();
65 while (I != E) {
66 ASTRecordLayout *R = const_cast<ASTRecordLayout*>((I++)->second);
67 delete R;
68 }
69 }
70
71 {
72 llvm::DenseMap<const ObjCInterfaceDecl*, const RecordDecl*>::iterator
73 I = ASTRecordForInterface.begin(), E = ASTRecordForInterface.end();
74 while (I != E) {
75 RecordDecl *R = const_cast<RecordDecl*>((I++)->second);
76 R->Destroy(*this);
77 }
78 }
79
Eli Friedmanb26153c2008-05-27 03:08:09 +000080 TUDecl->Destroy(*this);
Reid Spencer5f016e22007-07-11 17:01:13 +000081}
82
83void ASTContext::PrintStats() const {
84 fprintf(stderr, "*** AST Context Stats:\n");
85 fprintf(stderr, " %d types total.\n", (int)Types.size());
86 unsigned NumBuiltin = 0, NumPointer = 0, NumArray = 0, NumFunctionP = 0;
Daniel Dunbar248e1c02008-09-26 03:23:00 +000087 unsigned NumVector = 0, NumComplex = 0, NumBlockPointer = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000088 unsigned NumFunctionNP = 0, NumTypeName = 0, NumTagged = 0, NumReference = 0;
Sebastian Redlf30208a2009-01-24 21:16:55 +000089 unsigned NumMemberPointer = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000090
91 unsigned NumTagStruct = 0, NumTagUnion = 0, NumTagEnum = 0, NumTagClass = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000092 unsigned NumObjCInterfaces = 0, NumObjCQualifiedInterfaces = 0;
93 unsigned NumObjCQualifiedIds = 0;
Steve Naroff6cc18962008-05-21 15:59:22 +000094 unsigned NumTypeOfTypes = 0, NumTypeOfExprs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000095
96 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
97 Type *T = Types[i];
98 if (isa<BuiltinType>(T))
99 ++NumBuiltin;
100 else if (isa<PointerType>(T))
101 ++NumPointer;
Daniel Dunbar248e1c02008-09-26 03:23:00 +0000102 else if (isa<BlockPointerType>(T))
103 ++NumBlockPointer;
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 else if (isa<ReferenceType>(T))
105 ++NumReference;
Sebastian Redlf30208a2009-01-24 21:16:55 +0000106 else if (isa<MemberPointerType>(T))
107 ++NumMemberPointer;
Chris Lattner6d87fc62007-07-18 05:50:59 +0000108 else if (isa<ComplexType>(T))
109 ++NumComplex;
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 else if (isa<ArrayType>(T))
111 ++NumArray;
Chris Lattner6d87fc62007-07-18 05:50:59 +0000112 else if (isa<VectorType>(T))
113 ++NumVector;
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 else if (isa<FunctionTypeNoProto>(T))
115 ++NumFunctionNP;
116 else if (isa<FunctionTypeProto>(T))
117 ++NumFunctionP;
118 else if (isa<TypedefType>(T))
119 ++NumTypeName;
120 else if (TagType *TT = dyn_cast<TagType>(T)) {
121 ++NumTagged;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000122 switch (TT->getDecl()->getTagKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 default: assert(0 && "Unknown tagged type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000124 case TagDecl::TK_struct: ++NumTagStruct; break;
125 case TagDecl::TK_union: ++NumTagUnion; break;
126 case TagDecl::TK_class: ++NumTagClass; break;
127 case TagDecl::TK_enum: ++NumTagEnum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000129 } else if (isa<ObjCInterfaceType>(T))
130 ++NumObjCInterfaces;
131 else if (isa<ObjCQualifiedInterfaceType>(T))
132 ++NumObjCQualifiedInterfaces;
133 else if (isa<ObjCQualifiedIdType>(T))
134 ++NumObjCQualifiedIds;
Steve Naroff6cc18962008-05-21 15:59:22 +0000135 else if (isa<TypeOfType>(T))
136 ++NumTypeOfTypes;
137 else if (isa<TypeOfExpr>(T))
138 ++NumTypeOfExprs;
Steve Naroff3f128ad2007-09-17 14:16:13 +0000139 else {
Chris Lattnerbeb66362007-12-12 06:43:05 +0000140 QualType(T, 0).dump();
Reid Spencer5f016e22007-07-11 17:01:13 +0000141 assert(0 && "Unknown type!");
142 }
143 }
144
145 fprintf(stderr, " %d builtin types\n", NumBuiltin);
146 fprintf(stderr, " %d pointer types\n", NumPointer);
Daniel Dunbar248e1c02008-09-26 03:23:00 +0000147 fprintf(stderr, " %d block pointer types\n", NumBlockPointer);
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 fprintf(stderr, " %d reference types\n", NumReference);
Sebastian Redlf30208a2009-01-24 21:16:55 +0000149 fprintf(stderr, " %d member pointer types\n", NumMemberPointer);
Chris Lattner6d87fc62007-07-18 05:50:59 +0000150 fprintf(stderr, " %d complex types\n", NumComplex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 fprintf(stderr, " %d array types\n", NumArray);
Chris Lattner6d87fc62007-07-18 05:50:59 +0000152 fprintf(stderr, " %d vector types\n", NumVector);
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 fprintf(stderr, " %d function types with proto\n", NumFunctionP);
154 fprintf(stderr, " %d function types with no proto\n", NumFunctionNP);
155 fprintf(stderr, " %d typename (typedef) types\n", NumTypeName);
156 fprintf(stderr, " %d tagged types\n", NumTagged);
157 fprintf(stderr, " %d struct types\n", NumTagStruct);
158 fprintf(stderr, " %d union types\n", NumTagUnion);
159 fprintf(stderr, " %d class types\n", NumTagClass);
160 fprintf(stderr, " %d enum types\n", NumTagEnum);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000161 fprintf(stderr, " %d interface types\n", NumObjCInterfaces);
Chris Lattnerbeb66362007-12-12 06:43:05 +0000162 fprintf(stderr, " %d protocol qualified interface types\n",
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000163 NumObjCQualifiedInterfaces);
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000164 fprintf(stderr, " %d protocol qualified id types\n",
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000165 NumObjCQualifiedIds);
Steve Naroff6cc18962008-05-21 15:59:22 +0000166 fprintf(stderr, " %d typeof types\n", NumTypeOfTypes);
167 fprintf(stderr, " %d typeof exprs\n", NumTypeOfExprs);
168
Reid Spencer5f016e22007-07-11 17:01:13 +0000169 fprintf(stderr, "Total bytes = %d\n", int(NumBuiltin*sizeof(BuiltinType)+
170 NumPointer*sizeof(PointerType)+NumArray*sizeof(ArrayType)+
Chris Lattner6d87fc62007-07-18 05:50:59 +0000171 NumComplex*sizeof(ComplexType)+NumVector*sizeof(VectorType)+
Sebastian Redlf30208a2009-01-24 21:16:55 +0000172 NumMemberPointer*sizeof(MemberPointerType)+
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 NumFunctionP*sizeof(FunctionTypeProto)+
174 NumFunctionNP*sizeof(FunctionTypeNoProto)+
Steve Naroff6cc18962008-05-21 15:59:22 +0000175 NumTypeName*sizeof(TypedefType)+NumTagged*sizeof(TagType)+
176 NumTypeOfTypes*sizeof(TypeOfType)+NumTypeOfExprs*sizeof(TypeOfExpr)));
Reid Spencer5f016e22007-07-11 17:01:13 +0000177}
178
179
180void ASTContext::InitBuiltinType(QualType &R, BuiltinType::Kind K) {
Steve Narofff83820b2009-01-27 22:08:43 +0000181 Types.push_back((R = QualType(new (*this,8) BuiltinType(K),0)).getTypePtr());
Reid Spencer5f016e22007-07-11 17:01:13 +0000182}
183
Reid Spencer5f016e22007-07-11 17:01:13 +0000184void ASTContext::InitBuiltinTypes() {
185 assert(VoidTy.isNull() && "Context reinitialized?");
186
187 // C99 6.2.5p19.
188 InitBuiltinType(VoidTy, BuiltinType::Void);
189
190 // C99 6.2.5p2.
191 InitBuiltinType(BoolTy, BuiltinType::Bool);
192 // C99 6.2.5p3.
Chris Lattner98be4942008-03-05 18:54:05 +0000193 if (Target.isCharSigned())
Reid Spencer5f016e22007-07-11 17:01:13 +0000194 InitBuiltinType(CharTy, BuiltinType::Char_S);
195 else
196 InitBuiltinType(CharTy, BuiltinType::Char_U);
197 // C99 6.2.5p4.
198 InitBuiltinType(SignedCharTy, BuiltinType::SChar);
199 InitBuiltinType(ShortTy, BuiltinType::Short);
200 InitBuiltinType(IntTy, BuiltinType::Int);
201 InitBuiltinType(LongTy, BuiltinType::Long);
202 InitBuiltinType(LongLongTy, BuiltinType::LongLong);
203
204 // C99 6.2.5p6.
205 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar);
206 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort);
207 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt);
208 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong);
209 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong);
210
211 // C99 6.2.5p10.
212 InitBuiltinType(FloatTy, BuiltinType::Float);
213 InitBuiltinType(DoubleTy, BuiltinType::Double);
214 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble);
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000215
216 // C++ 3.9.1p5
217 InitBuiltinType(WCharTy, BuiltinType::WChar);
218
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000219 // Placeholder type for functions.
Douglas Gregor898574e2008-12-05 23:32:09 +0000220 InitBuiltinType(OverloadTy, BuiltinType::Overload);
221
222 // Placeholder type for type-dependent expressions whose type is
223 // completely unknown. No code should ever check a type against
224 // DependentTy and users should never see it; however, it is here to
225 // help diagnose failures to properly check for type-dependent
226 // expressions.
227 InitBuiltinType(DependentTy, BuiltinType::Dependent);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000228
Reid Spencer5f016e22007-07-11 17:01:13 +0000229 // C99 6.2.5p11.
230 FloatComplexTy = getComplexType(FloatTy);
231 DoubleComplexTy = getComplexType(DoubleTy);
232 LongDoubleComplexTy = getComplexType(LongDoubleTy);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000233
Steve Naroff7e219e42007-10-15 14:41:52 +0000234 BuiltinVaListType = QualType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000235 ObjCIdType = QualType();
Steve Naroff7e219e42007-10-15 14:41:52 +0000236 IdStructType = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000237 ObjCClassType = QualType();
Anders Carlsson8baaca52007-10-31 02:53:19 +0000238 ClassStructType = 0;
239
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000240 ObjCConstantStringType = QualType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000241
242 // void * type
243 VoidPtrTy = getPointerType(VoidTy);
Reid Spencer5f016e22007-07-11 17:01:13 +0000244}
245
Chris Lattner464175b2007-07-18 17:52:12 +0000246//===----------------------------------------------------------------------===//
247// Type Sizing and Analysis
248//===----------------------------------------------------------------------===//
Chris Lattnera7674d82007-07-13 22:13:22 +0000249
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000250/// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified
251/// scalar floating point type.
252const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const {
253 const BuiltinType *BT = T->getAsBuiltinType();
254 assert(BT && "Not a floating point type!");
255 switch (BT->getKind()) {
256 default: assert(0 && "Not a floating point type!");
257 case BuiltinType::Float: return Target.getFloatFormat();
258 case BuiltinType::Double: return Target.getDoubleFormat();
259 case BuiltinType::LongDouble: return Target.getLongDoubleFormat();
260 }
261}
262
Chris Lattneraf707ab2009-01-24 21:53:27 +0000263/// getDeclAlign - Return a conservative estimate of the alignment of the
264/// specified decl. Note that bitfields do not have a valid alignment, so
265/// this method will assert on them.
266unsigned ASTContext::getDeclAlign(const Decl *D) {
267 // FIXME: If attribute(align) is specified on the decl, round up to it.
268
269 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
270 QualType T = VD->getType();
271 // Incomplete or function types default to 1.
272 if (T->isIncompleteType() || T->isFunctionType())
273 return 1;
274
275 while (isa<VariableArrayType>(T) || isa<IncompleteArrayType>(T))
276 T = cast<ArrayType>(T)->getElementType();
277
278 return getTypeAlign(T);
279 }
280
281 return 1;
282}
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000283
Chris Lattnera7674d82007-07-13 22:13:22 +0000284/// getTypeSize - Return the size of the specified type, in bits. This method
285/// does not work on incomplete types.
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000286std::pair<uint64_t, unsigned>
Daniel Dunbar1d751182008-11-08 05:48:37 +0000287ASTContext::getTypeInfo(const Type *T) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000288 T = getCanonicalType(T);
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000289 uint64_t Width;
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000290 unsigned Align;
Chris Lattnera7674d82007-07-13 22:13:22 +0000291 switch (T->getTypeClass()) {
Chris Lattner030d8842007-07-19 22:06:24 +0000292 case Type::TypeName: assert(0 && "Not a canonical type!");
Chris Lattner692233e2007-07-13 22:27:08 +0000293 case Type::FunctionNoProto:
294 case Type::FunctionProto:
Chris Lattner5d2a6302007-07-18 18:26:58 +0000295 default:
Chris Lattnerb1c2df92007-07-20 18:13:33 +0000296 assert(0 && "Incomplete types have no size!");
Steve Narofffb22d962007-08-30 01:06:46 +0000297 case Type::VariableArray:
298 assert(0 && "VLAs not implemented yet!");
Douglas Gregor898574e2008-12-05 23:32:09 +0000299 case Type::DependentSizedArray:
300 assert(0 && "Dependently-sized arrays don't have a known size");
Steve Narofffb22d962007-08-30 01:06:46 +0000301 case Type::ConstantArray: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000302 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
Steve Narofffb22d962007-08-30 01:06:46 +0000303
Chris Lattner98be4942008-03-05 18:54:05 +0000304 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000305 Width = EltInfo.first*CAT->getSize().getZExtValue();
Chris Lattner030d8842007-07-19 22:06:24 +0000306 Align = EltInfo.second;
307 break;
Christopher Lamb5c09a022007-12-29 05:10:55 +0000308 }
Nate Begeman213541a2008-04-18 23:10:10 +0000309 case Type::ExtVector:
Chris Lattner030d8842007-07-19 22:06:24 +0000310 case Type::Vector: {
311 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000312 getTypeInfo(cast<VectorType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000313 Width = EltInfo.first*cast<VectorType>(T)->getNumElements();
Eli Friedman4bd998b2008-05-30 09:31:38 +0000314 Align = Width;
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000315 // If the alignment is not a power of 2, round up to the next power of 2.
316 // This happens for non-power-of-2 length vectors.
317 // FIXME: this should probably be a target property.
318 Align = 1 << llvm::Log2_32_Ceil(Align);
Chris Lattner030d8842007-07-19 22:06:24 +0000319 break;
320 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000321
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000322 case Type::Builtin:
Chris Lattnera7674d82007-07-13 22:13:22 +0000323 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner692233e2007-07-13 22:27:08 +0000324 default: assert(0 && "Unknown builtin type!");
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000325 case BuiltinType::Void:
326 assert(0 && "Incomplete types have no size!");
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000327 case BuiltinType::Bool:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000328 Width = Target.getBoolWidth();
329 Align = Target.getBoolAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000330 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000331 case BuiltinType::Char_S:
332 case BuiltinType::Char_U:
333 case BuiltinType::UChar:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000334 case BuiltinType::SChar:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000335 Width = Target.getCharWidth();
336 Align = Target.getCharAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000337 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000338 case BuiltinType::WChar:
339 Width = Target.getWCharWidth();
340 Align = Target.getWCharAlign();
341 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000342 case BuiltinType::UShort:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000343 case BuiltinType::Short:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000344 Width = Target.getShortWidth();
345 Align = Target.getShortAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000346 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000347 case BuiltinType::UInt:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000348 case BuiltinType::Int:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000349 Width = Target.getIntWidth();
350 Align = Target.getIntAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000351 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000352 case BuiltinType::ULong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000353 case BuiltinType::Long:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000354 Width = Target.getLongWidth();
355 Align = Target.getLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000356 break;
Chris Lattner692233e2007-07-13 22:27:08 +0000357 case BuiltinType::ULongLong:
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000358 case BuiltinType::LongLong:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000359 Width = Target.getLongLongWidth();
360 Align = Target.getLongLongAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000361 break;
362 case BuiltinType::Float:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000363 Width = Target.getFloatWidth();
364 Align = Target.getFloatAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000365 break;
366 case BuiltinType::Double:
Chris Lattner5426bf62008-04-07 07:01:58 +0000367 Width = Target.getDoubleWidth();
368 Align = Target.getDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000369 break;
370 case BuiltinType::LongDouble:
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000371 Width = Target.getLongDoubleWidth();
372 Align = Target.getLongDoubleAlign();
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000373 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000374 }
Chris Lattnerbfef6d72007-07-15 23:46:53 +0000375 break;
Christopher Lambebb97e92008-02-04 02:31:56 +0000376 case Type::ASQual:
Chris Lattner98be4942008-03-05 18:54:05 +0000377 // FIXME: Pointers into different addr spaces could have different sizes and
378 // alignment requirements: getPointerInfo should take an AddrSpace.
379 return getTypeInfo(QualType(cast<ASQualType>(T)->getBaseType(), 0));
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000380 case Type::ObjCQualifiedId:
Chris Lattner5426bf62008-04-07 07:01:58 +0000381 Width = Target.getPointerWidth(0);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000382 Align = Target.getPointerAlign(0);
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000383 break;
Steve Naroff485eeff2008-09-24 15:05:44 +0000384 case Type::BlockPointer: {
385 unsigned AS = cast<BlockPointerType>(T)->getPointeeType().getAddressSpace();
386 Width = Target.getPointerWidth(AS);
387 Align = Target.getPointerAlign(AS);
388 break;
389 }
Chris Lattnerf72a4432008-03-08 08:34:58 +0000390 case Type::Pointer: {
391 unsigned AS = cast<PointerType>(T)->getPointeeType().getAddressSpace();
Chris Lattner5426bf62008-04-07 07:01:58 +0000392 Width = Target.getPointerWidth(AS);
Chris Lattnerf72a4432008-03-08 08:34:58 +0000393 Align = Target.getPointerAlign(AS);
394 break;
395 }
Chris Lattnera7674d82007-07-13 22:13:22 +0000396 case Type::Reference:
Chris Lattner7ab2ed82007-07-13 22:16:13 +0000397 // "When applied to a reference or a reference type, the result is the size
Chris Lattner5d2a6302007-07-18 18:26:58 +0000398 // of the referenced type." C++98 5.3.3p2: expr.sizeof.
Chris Lattner6f62c2a2007-12-19 19:23:28 +0000399 // FIXME: This is wrong for struct layout: a reference in a struct has
400 // pointer size.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000401 return getTypeInfo(cast<ReferenceType>(T)->getPointeeType());
Sebastian Redlf30208a2009-01-24 21:16:55 +0000402 case Type::MemberPointer: {
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000403 // FIXME: This is not only platform- but also ABI-dependent. We follow
Sebastian Redlf30208a2009-01-24 21:16:55 +0000404 // the GCC ABI, where pointers to data are one pointer large, pointers to
405 // functions two pointers. But if we want to support ABI compatibility with
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000406 // other compilers too, we need to delegate this completely to TargetInfo
407 // or some ABI abstraction layer.
Sebastian Redlf30208a2009-01-24 21:16:55 +0000408 QualType Pointee = cast<MemberPointerType>(T)->getPointeeType();
409 unsigned AS = Pointee.getAddressSpace();
410 Width = Target.getPointerWidth(AS);
411 if (Pointee->isFunctionType())
412 Width *= 2;
413 Align = Target.getPointerAlign(AS);
414 // GCC aligns at single pointer width.
415 }
Chris Lattner5d2a6302007-07-18 18:26:58 +0000416 case Type::Complex: {
417 // Complex types have the same alignment as their elements, but twice the
418 // size.
419 std::pair<uint64_t, unsigned> EltInfo =
Chris Lattner98be4942008-03-05 18:54:05 +0000420 getTypeInfo(cast<ComplexType>(T)->getElementType());
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000421 Width = EltInfo.first*2;
Chris Lattner5d2a6302007-07-18 18:26:58 +0000422 Align = EltInfo.second;
423 break;
424 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000425 case Type::ObjCInterface: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000426 const ObjCInterfaceType *ObjCI = cast<ObjCInterfaceType>(T);
Devang Patel44a3dde2008-06-04 21:54:36 +0000427 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl());
428 Width = Layout.getSize();
429 Align = Layout.getAlignment();
430 break;
431 }
Chris Lattner71763312008-04-06 22:05:18 +0000432 case Type::Tagged: {
Daniel Dunbar1d751182008-11-08 05:48:37 +0000433 const TagType *TT = cast<TagType>(T);
434
435 if (TT->getDecl()->isInvalidDecl()) {
Chris Lattner8389eab2008-08-09 21:35:13 +0000436 Width = 1;
437 Align = 1;
438 break;
439 }
440
Daniel Dunbar1d751182008-11-08 05:48:37 +0000441 if (const EnumType *ET = dyn_cast<EnumType>(TT))
Chris Lattner71763312008-04-06 22:05:18 +0000442 return getTypeInfo(ET->getDecl()->getIntegerType());
443
Daniel Dunbar1d751182008-11-08 05:48:37 +0000444 const RecordType *RT = cast<RecordType>(TT);
Chris Lattner71763312008-04-06 22:05:18 +0000445 const ASTRecordLayout &Layout = getASTRecordLayout(RT->getDecl());
446 Width = Layout.getSize();
447 Align = Layout.getAlignment();
Chris Lattnerdc0d73e2007-07-23 22:46:22 +0000448 break;
Chris Lattnera7674d82007-07-13 22:13:22 +0000449 }
Chris Lattner71763312008-04-06 22:05:18 +0000450 }
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000451
Chris Lattner464175b2007-07-18 17:52:12 +0000452 assert(Align && (Align & (Align-1)) == 0 && "Alignment must be power of 2");
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000453 return std::make_pair(Width, Align);
Chris Lattnera7674d82007-07-13 22:13:22 +0000454}
455
Chris Lattner34ebde42009-01-27 18:08:34 +0000456/// getPreferredTypeAlign - Return the "preferred" alignment of the specified
457/// type for the current target in bits. This can be different than the ABI
458/// alignment in cases where it is beneficial for performance to overalign
459/// a data type.
460unsigned ASTContext::getPreferredTypeAlign(const Type *T) {
461 unsigned ABIAlign = getTypeAlign(T);
462
463 // Doubles should be naturally aligned if possible.
464 if (const BuiltinType *BT = dyn_cast<BuiltinType>(getCanonicalType(T)))
465 if (BT->getKind() == BuiltinType::Double)
Fariborz Jahanian32b978c2009-01-27 18:55:00 +0000466 return std::max(ABIAlign, 64U);
Chris Lattner34ebde42009-01-27 18:08:34 +0000467
468 return ABIAlign;
469}
470
471
Devang Patel8b277042008-06-04 21:22:16 +0000472/// LayoutField - Field layout.
473void ASTRecordLayout::LayoutField(const FieldDecl *FD, unsigned FieldNo,
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000474 bool IsUnion, unsigned StructPacking,
Devang Patel8b277042008-06-04 21:22:16 +0000475 ASTContext &Context) {
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000476 unsigned FieldPacking = StructPacking;
Devang Patel8b277042008-06-04 21:22:16 +0000477 uint64_t FieldOffset = IsUnion ? 0 : Size;
478 uint64_t FieldSize;
479 unsigned FieldAlign;
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000480
481 // FIXME: Should this override struct packing? Probably we want to
482 // take the minimum?
483 if (const PackedAttr *PA = FD->getAttr<PackedAttr>())
484 FieldPacking = PA->getAlignment();
Devang Patel8b277042008-06-04 21:22:16 +0000485
486 if (const Expr *BitWidthExpr = FD->getBitWidth()) {
487 // TODO: Need to check this algorithm on other targets!
488 // (tested on Linux-X86)
Daniel Dunbar32442bb2008-08-13 23:47:13 +0000489 FieldSize =
490 BitWidthExpr->getIntegerConstantExprValue(Context).getZExtValue();
Devang Patel8b277042008-06-04 21:22:16 +0000491
492 std::pair<uint64_t, unsigned> FieldInfo =
493 Context.getTypeInfo(FD->getType());
494 uint64_t TypeSize = FieldInfo.first;
495
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000496 // Determine the alignment of this bitfield. The packing
497 // attributes define a maximum and the alignment attribute defines
498 // a minimum.
499 // FIXME: What is the right behavior when the specified alignment
500 // is smaller than the specified packing?
Devang Patel8b277042008-06-04 21:22:16 +0000501 FieldAlign = FieldInfo.second;
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000502 if (FieldPacking)
503 FieldAlign = std::min(FieldAlign, FieldPacking);
Devang Patel8b277042008-06-04 21:22:16 +0000504 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
505 FieldAlign = std::max(FieldAlign, AA->getAlignment());
506
507 // Check if we need to add padding to give the field the correct
508 // alignment.
509 if (FieldSize == 0 || (FieldOffset & (FieldAlign-1)) + FieldSize > TypeSize)
510 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
511
512 // Padding members don't affect overall alignment
513 if (!FD->getIdentifier())
514 FieldAlign = 1;
515 } else {
Chris Lattner8389eab2008-08-09 21:35:13 +0000516 if (FD->getType()->isIncompleteArrayType()) {
517 // This is a flexible array member; we can't directly
Devang Patel8b277042008-06-04 21:22:16 +0000518 // query getTypeInfo about these, so we figure it out here.
519 // Flexible array members don't have any size, but they
520 // have to be aligned appropriately for their element type.
521 FieldSize = 0;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000522 const ArrayType* ATy = Context.getAsArrayType(FD->getType());
Devang Patel8b277042008-06-04 21:22:16 +0000523 FieldAlign = Context.getTypeAlign(ATy->getElementType());
524 } else {
525 std::pair<uint64_t, unsigned> FieldInfo =
526 Context.getTypeInfo(FD->getType());
527 FieldSize = FieldInfo.first;
528 FieldAlign = FieldInfo.second;
529 }
530
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000531 // Determine the alignment of this bitfield. The packing
532 // attributes define a maximum and the alignment attribute defines
533 // a minimum. Additionally, the packing alignment must be at least
534 // a byte for non-bitfields.
535 //
536 // FIXME: What is the right behavior when the specified alignment
537 // is smaller than the specified packing?
538 if (FieldPacking)
539 FieldAlign = std::min(FieldAlign, std::max(8U, FieldPacking));
Devang Patel8b277042008-06-04 21:22:16 +0000540 if (const AlignedAttr *AA = FD->getAttr<AlignedAttr>())
541 FieldAlign = std::max(FieldAlign, AA->getAlignment());
542
543 // Round up the current record size to the field's alignment boundary.
544 FieldOffset = (FieldOffset + (FieldAlign-1)) & ~(FieldAlign-1);
545 }
546
547 // Place this field at the current location.
548 FieldOffsets[FieldNo] = FieldOffset;
549
550 // Reserve space for this field.
551 if (IsUnion) {
552 Size = std::max(Size, FieldSize);
553 } else {
554 Size = FieldOffset + FieldSize;
555 }
556
557 // Remember max struct/class alignment.
558 Alignment = std::max(Alignment, FieldAlign);
559}
560
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000561static void CollectObjCIvars(const ObjCInterfaceDecl *OI,
562 std::vector<FieldDecl*> &Fields) {
563 const ObjCInterfaceDecl *SuperClass = OI->getSuperClass();
564 if (SuperClass)
565 CollectObjCIvars(SuperClass, Fields);
566 for (ObjCInterfaceDecl::ivar_iterator I = OI->ivar_begin(),
567 E = OI->ivar_end(); I != E; ++I) {
568 ObjCIvarDecl *IVDecl = (*I);
569 if (!IVDecl->isInvalidDecl())
570 Fields.push_back(cast<FieldDecl>(IVDecl));
571 }
572}
573
574/// addRecordToClass - produces record info. for the class for its
575/// ivars and all those inherited.
576///
577const RecordDecl *ASTContext::addRecordToClass(const ObjCInterfaceDecl *D)
578{
579 const RecordDecl *&RD = ASTRecordForInterface[D];
580 if (RD)
581 return RD;
582 std::vector<FieldDecl*> RecFields;
583 CollectObjCIvars(D, RecFields);
584 RecordDecl *NewRD = RecordDecl::Create(*this, TagDecl::TK_struct, 0,
585 D->getLocation(),
586 D->getIdentifier());
587 /// FIXME! Can do collection of ivars and adding to the record while
588 /// doing it.
589 for (unsigned int i = 0; i != RecFields.size(); i++) {
590 FieldDecl *Field = FieldDecl::Create(*this, NewRD,
591 RecFields[i]->getLocation(),
592 RecFields[i]->getIdentifier(),
593 RecFields[i]->getType(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000594 RecFields[i]->getBitWidth(), false);
Douglas Gregor482b77d2009-01-12 23:27:07 +0000595 NewRD->addDecl(Field);
Fariborz Jahaniana769c002008-12-17 21:40:49 +0000596 }
597 NewRD->completeDefinition(*this);
598 RD = NewRD;
599 return RD;
600}
Devang Patel44a3dde2008-06-04 21:54:36 +0000601
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +0000602/// setFieldDecl - maps a field for the given Ivar reference node.
603//
604void ASTContext::setFieldDecl(const ObjCInterfaceDecl *OI,
605 const ObjCIvarDecl *Ivar,
606 const ObjCIvarRefExpr *MRef) {
607 FieldDecl *FD = (const_cast<ObjCInterfaceDecl *>(OI))->
608 lookupFieldDeclForIvar(*this, Ivar);
609 ASTFieldForIvarRef[MRef] = FD;
610}
611
Chris Lattner61710852008-10-05 17:34:18 +0000612/// getASTObjcInterfaceLayout - Get or compute information about the layout of
613/// the specified Objective C, which indicates its size and ivar
Devang Patel44a3dde2008-06-04 21:54:36 +0000614/// position information.
615const ASTRecordLayout &
616ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) {
617 // Look up this layout, if already laid out, return what we have.
618 const ASTRecordLayout *&Entry = ASTObjCInterfaces[D];
619 if (Entry) return *Entry;
620
621 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
622 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
Devang Patel6a5a34c2008-06-06 02:14:01 +0000623 ASTRecordLayout *NewEntry = NULL;
624 unsigned FieldCount = D->ivar_size();
625 if (ObjCInterfaceDecl *SD = D->getSuperClass()) {
626 FieldCount++;
627 const ASTRecordLayout &SL = getASTObjCInterfaceLayout(SD);
628 unsigned Alignment = SL.getAlignment();
629 uint64_t Size = SL.getSize();
630 NewEntry = new ASTRecordLayout(Size, Alignment);
631 NewEntry->InitializeLayout(FieldCount);
Chris Lattner61710852008-10-05 17:34:18 +0000632 // Super class is at the beginning of the layout.
633 NewEntry->SetFieldOffset(0, 0);
Devang Patel6a5a34c2008-06-06 02:14:01 +0000634 } else {
635 NewEntry = new ASTRecordLayout();
636 NewEntry->InitializeLayout(FieldCount);
637 }
Devang Patel44a3dde2008-06-04 21:54:36 +0000638 Entry = NewEntry;
639
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000640 unsigned StructPacking = 0;
641 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
642 StructPacking = PA->getAlignment();
Devang Patel44a3dde2008-06-04 21:54:36 +0000643
644 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
645 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
646 AA->getAlignment()));
647
648 // Layout each ivar sequentially.
649 unsigned i = 0;
650 for (ObjCInterfaceDecl::ivar_iterator IVI = D->ivar_begin(),
651 IVE = D->ivar_end(); IVI != IVE; ++IVI) {
652 const ObjCIvarDecl* Ivar = (*IVI);
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000653 NewEntry->LayoutField(Ivar, i++, false, StructPacking, *this);
Devang Patel44a3dde2008-06-04 21:54:36 +0000654 }
655
656 // Finally, round the size of the total struct up to the alignment of the
657 // struct itself.
658 NewEntry->FinalizeLayout();
659 return *NewEntry;
660}
661
Devang Patel88a981b2007-11-01 19:11:01 +0000662/// getASTRecordLayout - Get or compute information about the layout of the
Chris Lattner464175b2007-07-18 17:52:12 +0000663/// specified record (struct/union/class), which indicates its size and field
664/// position information.
Chris Lattner98be4942008-03-05 18:54:05 +0000665const ASTRecordLayout &ASTContext::getASTRecordLayout(const RecordDecl *D) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000666 D = D->getDefinition(*this);
667 assert(D && "Cannot get layout of forward declarations!");
Eli Friedman4bd998b2008-05-30 09:31:38 +0000668
Chris Lattner464175b2007-07-18 17:52:12 +0000669 // Look up this layout, if already laid out, return what we have.
Devang Patel88a981b2007-11-01 19:11:01 +0000670 const ASTRecordLayout *&Entry = ASTRecordLayouts[D];
Chris Lattner464175b2007-07-18 17:52:12 +0000671 if (Entry) return *Entry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000672
Devang Patel88a981b2007-11-01 19:11:01 +0000673 // Allocate and assign into ASTRecordLayouts here. The "Entry" reference can
674 // be invalidated (dangle) if the ASTRecordLayouts hashtable is inserted into.
675 ASTRecordLayout *NewEntry = new ASTRecordLayout();
Chris Lattner464175b2007-07-18 17:52:12 +0000676 Entry = NewEntry;
Eli Friedman4bd998b2008-05-30 09:31:38 +0000677
Douglas Gregore267ff32008-12-11 20:41:00 +0000678 // FIXME: Avoid linear walk through the fields, if possible.
Douglas Gregor44b43212008-12-11 16:49:14 +0000679 NewEntry->InitializeLayout(std::distance(D->field_begin(), D->field_end()));
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000680 bool IsUnion = D->isUnion();
Chris Lattner464175b2007-07-18 17:52:12 +0000681
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000682 unsigned StructPacking = 0;
683 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
684 StructPacking = PA->getAlignment();
685
Eli Friedman4bd998b2008-05-30 09:31:38 +0000686 if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
Devang Patel8b277042008-06-04 21:22:16 +0000687 NewEntry->SetAlignment(std::max(NewEntry->getAlignment(),
688 AA->getAlignment()));
Anders Carlsson8af226a2008-02-18 07:13:09 +0000689
Eli Friedman4bd998b2008-05-30 09:31:38 +0000690 // Layout each field, for now, just sequentially, respecting alignment. In
691 // the future, this will need to be tweakable by targets.
Douglas Gregor44b43212008-12-11 16:49:14 +0000692 unsigned FieldIdx = 0;
Douglas Gregorf8d49f62009-01-09 17:18:27 +0000693 for (RecordDecl::field_iterator Field = D->field_begin(),
694 FieldEnd = D->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000695 Field != FieldEnd; (void)++Field, ++FieldIdx)
696 NewEntry->LayoutField(*Field, FieldIdx, IsUnion, StructPacking, *this);
Eli Friedman4bd998b2008-05-30 09:31:38 +0000697
698 // Finally, round the size of the total struct up to the alignment of the
699 // struct itself.
Devang Patel8b277042008-06-04 21:22:16 +0000700 NewEntry->FinalizeLayout();
Chris Lattner5d2a6302007-07-18 18:26:58 +0000701 return *NewEntry;
Chris Lattner464175b2007-07-18 17:52:12 +0000702}
703
Chris Lattnera7674d82007-07-13 22:13:22 +0000704//===----------------------------------------------------------------------===//
705// Type creation/memoization methods
706//===----------------------------------------------------------------------===//
707
Christopher Lambebb97e92008-02-04 02:31:56 +0000708QualType ASTContext::getASQualType(QualType T, unsigned AddressSpace) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000709 QualType CanT = getCanonicalType(T);
710 if (CanT.getAddressSpace() == AddressSpace)
Chris Lattnerf46699c2008-02-20 20:55:12 +0000711 return T;
712
713 // Type's cannot have multiple ASQuals, therefore we know we only have to deal
714 // with CVR qualifiers from here on out.
Chris Lattnerf52ab252008-04-06 22:59:24 +0000715 assert(CanT.getAddressSpace() == 0 &&
Chris Lattnerf46699c2008-02-20 20:55:12 +0000716 "Type is already address space qualified");
717
718 // Check if we've already instantiated an address space qual'd type of this
719 // type.
Christopher Lambebb97e92008-02-04 02:31:56 +0000720 llvm::FoldingSetNodeID ID;
Chris Lattnerf46699c2008-02-20 20:55:12 +0000721 ASQualType::Profile(ID, T.getTypePtr(), AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000722 void *InsertPos = 0;
723 if (ASQualType *ASQy = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos))
724 return QualType(ASQy, 0);
725
726 // If the base type isn't canonical, this won't be a canonical type either,
727 // so fill in the canonical type field.
728 QualType Canonical;
729 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000730 Canonical = getASQualType(CanT, AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000731
732 // Get the new insert position for the node we care about.
733 ASQualType *NewIP = ASQualTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000734 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Christopher Lambebb97e92008-02-04 02:31:56 +0000735 }
Steve Narofff83820b2009-01-27 22:08:43 +0000736 ASQualType *New = new (*this, 8) ASQualType(T.getTypePtr(), Canonical,
737 AddressSpace);
Christopher Lambebb97e92008-02-04 02:31:56 +0000738 ASQualTypes.InsertNode(New, InsertPos);
739 Types.push_back(New);
Chris Lattnerf46699c2008-02-20 20:55:12 +0000740 return QualType(New, T.getCVRQualifiers());
Christopher Lambebb97e92008-02-04 02:31:56 +0000741}
742
Chris Lattnera7674d82007-07-13 22:13:22 +0000743
Reid Spencer5f016e22007-07-11 17:01:13 +0000744/// getComplexType - Return the uniqued reference to the type for a complex
745/// number with the specified element type.
746QualType ASTContext::getComplexType(QualType T) {
747 // Unique pointers, to guarantee there is only one pointer of a particular
748 // structure.
749 llvm::FoldingSetNodeID ID;
750 ComplexType::Profile(ID, T);
751
752 void *InsertPos = 0;
753 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
754 return QualType(CT, 0);
755
756 // If the pointee type isn't canonical, this won't be a canonical type either,
757 // so fill in the canonical type field.
758 QualType Canonical;
759 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000760 Canonical = getComplexType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000761
762 // Get the new insert position for the node we care about.
763 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000764 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 }
Steve Narofff83820b2009-01-27 22:08:43 +0000766 ComplexType *New = new (*this,8) ComplexType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +0000767 Types.push_back(New);
768 ComplexTypes.InsertNode(New, InsertPos);
769 return QualType(New, 0);
770}
771
772
773/// getPointerType - Return the uniqued reference to the type for a pointer to
774/// the specified type.
775QualType ASTContext::getPointerType(QualType T) {
776 // Unique pointers, to guarantee there is only one pointer of a particular
777 // structure.
778 llvm::FoldingSetNodeID ID;
779 PointerType::Profile(ID, T);
780
781 void *InsertPos = 0;
782 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
783 return QualType(PT, 0);
784
785 // If the pointee type isn't canonical, this won't be a canonical type either,
786 // so fill in the canonical type field.
787 QualType Canonical;
788 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000789 Canonical = getPointerType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000790
791 // Get the new insert position for the node we care about.
792 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000793 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000794 }
Steve Narofff83820b2009-01-27 22:08:43 +0000795 PointerType *New = new (*this,8) PointerType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 Types.push_back(New);
797 PointerTypes.InsertNode(New, InsertPos);
798 return QualType(New, 0);
799}
800
Steve Naroff5618bd42008-08-27 16:04:49 +0000801/// getBlockPointerType - Return the uniqued reference to the type for
802/// a pointer to the specified block.
803QualType ASTContext::getBlockPointerType(QualType T) {
Steve Naroff296e8d52008-08-28 19:20:44 +0000804 assert(T->isFunctionType() && "block of function types only");
805 // Unique pointers, to guarantee there is only one block of a particular
Steve Naroff5618bd42008-08-27 16:04:49 +0000806 // structure.
807 llvm::FoldingSetNodeID ID;
808 BlockPointerType::Profile(ID, T);
809
810 void *InsertPos = 0;
811 if (BlockPointerType *PT =
812 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
813 return QualType(PT, 0);
814
Steve Naroff296e8d52008-08-28 19:20:44 +0000815 // If the block pointee type isn't canonical, this won't be a canonical
Steve Naroff5618bd42008-08-27 16:04:49 +0000816 // type either so fill in the canonical type field.
817 QualType Canonical;
818 if (!T->isCanonical()) {
819 Canonical = getBlockPointerType(getCanonicalType(T));
820
821 // Get the new insert position for the node we care about.
822 BlockPointerType *NewIP =
823 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000824 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff5618bd42008-08-27 16:04:49 +0000825 }
Steve Narofff83820b2009-01-27 22:08:43 +0000826 BlockPointerType *New = new (*this,8) BlockPointerType(T, Canonical);
Steve Naroff5618bd42008-08-27 16:04:49 +0000827 Types.push_back(New);
828 BlockPointerTypes.InsertNode(New, InsertPos);
829 return QualType(New, 0);
830}
831
Reid Spencer5f016e22007-07-11 17:01:13 +0000832/// getReferenceType - Return the uniqued reference to the type for a reference
833/// to the specified type.
834QualType ASTContext::getReferenceType(QualType T) {
835 // Unique pointers, to guarantee there is only one pointer of a particular
836 // structure.
837 llvm::FoldingSetNodeID ID;
838 ReferenceType::Profile(ID, T);
839
840 void *InsertPos = 0;
841 if (ReferenceType *RT = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos))
842 return QualType(RT, 0);
843
844 // If the referencee type isn't canonical, this won't be a canonical type
845 // either, so fill in the canonical type field.
846 QualType Canonical;
847 if (!T->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000848 Canonical = getReferenceType(getCanonicalType(T));
Reid Spencer5f016e22007-07-11 17:01:13 +0000849
850 // Get the new insert position for the node we care about.
851 ReferenceType *NewIP = ReferenceTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000852 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000853 }
854
Steve Narofff83820b2009-01-27 22:08:43 +0000855 ReferenceType *New = new (*this,8) ReferenceType(T, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +0000856 Types.push_back(New);
857 ReferenceTypes.InsertNode(New, InsertPos);
858 return QualType(New, 0);
859}
860
Sebastian Redlf30208a2009-01-24 21:16:55 +0000861/// getMemberPointerType - Return the uniqued reference to the type for a
862/// member pointer to the specified type, in the specified class.
863QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls)
864{
865 // Unique pointers, to guarantee there is only one pointer of a particular
866 // structure.
867 llvm::FoldingSetNodeID ID;
868 MemberPointerType::Profile(ID, T, Cls);
869
870 void *InsertPos = 0;
871 if (MemberPointerType *PT =
872 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos))
873 return QualType(PT, 0);
874
875 // If the pointee or class type isn't canonical, this won't be a canonical
876 // type either, so fill in the canonical type field.
877 QualType Canonical;
878 if (!T->isCanonical()) {
879 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls));
880
881 // Get the new insert position for the node we care about.
882 MemberPointerType *NewIP =
883 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos);
884 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
885 }
Steve Narofff83820b2009-01-27 22:08:43 +0000886 MemberPointerType *New = new (*this,8) MemberPointerType(T, Cls, Canonical);
Sebastian Redlf30208a2009-01-24 21:16:55 +0000887 Types.push_back(New);
888 MemberPointerTypes.InsertNode(New, InsertPos);
889 return QualType(New, 0);
890}
891
Steve Narofffb22d962007-08-30 01:06:46 +0000892/// getConstantArrayType - Return the unique reference to the type for an
893/// array of the specified element type.
894QualType ASTContext::getConstantArrayType(QualType EltTy,
Steve Naroffc9406122007-08-30 18:10:14 +0000895 const llvm::APInt &ArySize,
896 ArrayType::ArraySizeModifier ASM,
897 unsigned EltTypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000898 llvm::FoldingSetNodeID ID;
Steve Narofffb22d962007-08-30 01:06:46 +0000899 ConstantArrayType::Profile(ID, EltTy, ArySize);
Reid Spencer5f016e22007-07-11 17:01:13 +0000900
901 void *InsertPos = 0;
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000902 if (ConstantArrayType *ATP =
903 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 return QualType(ATP, 0);
905
906 // If the element type isn't canonical, this won't be a canonical type either,
907 // so fill in the canonical type field.
908 QualType Canonical;
909 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000910 Canonical = getConstantArrayType(getCanonicalType(EltTy), ArySize,
Steve Naroffc9406122007-08-30 18:10:14 +0000911 ASM, EltTypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000912 // Get the new insert position for the node we care about.
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000913 ConstantArrayType *NewIP =
914 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000915 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 }
917
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000918 ConstantArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +0000919 new(*this,8)ConstantArrayType(EltTy, Canonical, ArySize, ASM, EltTypeQuals);
Ted Kremenek7192f8e2007-10-31 17:10:13 +0000920 ConstantArrayTypes.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 Types.push_back(New);
922 return QualType(New, 0);
923}
924
Steve Naroffbdbf7b02007-08-30 18:14:25 +0000925/// getVariableArrayType - Returns a non-unique reference to the type for a
926/// variable array of the specified element type.
Steve Naroffc9406122007-08-30 18:10:14 +0000927QualType ASTContext::getVariableArrayType(QualType EltTy, Expr *NumElts,
928 ArrayType::ArraySizeModifier ASM,
929 unsigned EltTypeQuals) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000930 // Since we don't unique expressions, it isn't possible to unique VLA's
931 // that have an expression provided for their size.
932
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000933 VariableArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +0000934 new(*this,8)VariableArrayType(EltTy,QualType(), NumElts, ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000935
936 VariableArrayTypes.push_back(New);
937 Types.push_back(New);
938 return QualType(New, 0);
939}
940
Douglas Gregor898574e2008-12-05 23:32:09 +0000941/// getDependentSizedArrayType - Returns a non-unique reference to
942/// the type for a dependently-sized array of the specified element
943/// type. FIXME: We will need these to be uniqued, or at least
944/// comparable, at some point.
945QualType ASTContext::getDependentSizedArrayType(QualType EltTy, Expr *NumElts,
946 ArrayType::ArraySizeModifier ASM,
947 unsigned EltTypeQuals) {
948 assert((NumElts->isTypeDependent() || NumElts->isValueDependent()) &&
949 "Size must be type- or value-dependent!");
950
951 // Since we don't unique expressions, it isn't possible to unique
952 // dependently-sized array types.
953
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000954 DependentSizedArrayType *New =
Steve Narofff83820b2009-01-27 22:08:43 +0000955 new (*this,8) DependentSizedArrayType(EltTy, QualType(), NumElts,
956 ASM, EltTypeQuals);
Douglas Gregor898574e2008-12-05 23:32:09 +0000957
958 DependentSizedArrayTypes.push_back(New);
959 Types.push_back(New);
960 return QualType(New, 0);
961}
962
Eli Friedmanc5773c42008-02-15 18:16:39 +0000963QualType ASTContext::getIncompleteArrayType(QualType EltTy,
964 ArrayType::ArraySizeModifier ASM,
965 unsigned EltTypeQuals) {
966 llvm::FoldingSetNodeID ID;
967 IncompleteArrayType::Profile(ID, EltTy);
968
969 void *InsertPos = 0;
970 if (IncompleteArrayType *ATP =
971 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos))
972 return QualType(ATP, 0);
973
974 // If the element type isn't canonical, this won't be a canonical type
975 // either, so fill in the canonical type field.
976 QualType Canonical;
977
978 if (!EltTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +0000979 Canonical = getIncompleteArrayType(getCanonicalType(EltTy),
Ted Kremenek2bd24ba2007-10-29 23:37:31 +0000980 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000981
982 // Get the new insert position for the node we care about.
983 IncompleteArrayType *NewIP =
984 IncompleteArrayTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +0000985 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Ted Kremenek2bd24ba2007-10-29 23:37:31 +0000986 }
Eli Friedmanc5773c42008-02-15 18:16:39 +0000987
Steve Narofff83820b2009-01-27 22:08:43 +0000988 IncompleteArrayType *New = new (*this,8) IncompleteArrayType(EltTy, Canonical,
Ted Kremenek566c2ba2009-01-19 21:31:22 +0000989 ASM, EltTypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000990
991 IncompleteArrayTypes.InsertNode(New, InsertPos);
992 Types.push_back(New);
993 return QualType(New, 0);
Steve Narofffb22d962007-08-30 01:06:46 +0000994}
995
Steve Naroff73322922007-07-18 18:00:27 +0000996/// getVectorType - Return the unique reference to a vector type of
997/// the specified element type and size. VectorType must be a built-in type.
998QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000999 BuiltinType *baseType;
1000
Chris Lattnerf52ab252008-04-06 22:59:24 +00001001 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Steve Naroff73322922007-07-18 18:00:27 +00001002 assert(baseType != 0 && "getVectorType(): Expecting a built-in type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001003
1004 // Check if we've already instantiated a vector of this type.
1005 llvm::FoldingSetNodeID ID;
Steve Naroff73322922007-07-18 18:00:27 +00001006 VectorType::Profile(ID, vecType, NumElts, Type::Vector);
Reid Spencer5f016e22007-07-11 17:01:13 +00001007 void *InsertPos = 0;
1008 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
1009 return QualType(VTP, 0);
1010
1011 // If the element type isn't canonical, this won't be a canonical type either,
1012 // so fill in the canonical type field.
1013 QualType Canonical;
1014 if (!vecType->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001015 Canonical = getVectorType(getCanonicalType(vecType), NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001016
1017 // Get the new insert position for the node we care about.
1018 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001019 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001020 }
Steve Narofff83820b2009-01-27 22:08:43 +00001021 VectorType *New = new (*this,8) VectorType(vecType, NumElts, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001022 VectorTypes.InsertNode(New, InsertPos);
1023 Types.push_back(New);
1024 return QualType(New, 0);
1025}
1026
Nate Begeman213541a2008-04-18 23:10:10 +00001027/// getExtVectorType - Return the unique reference to an extended vector type of
Steve Naroff73322922007-07-18 18:00:27 +00001028/// the specified element type and size. VectorType must be a built-in type.
Nate Begeman213541a2008-04-18 23:10:10 +00001029QualType ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) {
Steve Naroff73322922007-07-18 18:00:27 +00001030 BuiltinType *baseType;
1031
Chris Lattnerf52ab252008-04-06 22:59:24 +00001032 baseType = dyn_cast<BuiltinType>(getCanonicalType(vecType).getTypePtr());
Nate Begeman213541a2008-04-18 23:10:10 +00001033 assert(baseType != 0 && "getExtVectorType(): Expecting a built-in type");
Steve Naroff73322922007-07-18 18:00:27 +00001034
1035 // Check if we've already instantiated a vector of this type.
1036 llvm::FoldingSetNodeID ID;
Nate Begeman213541a2008-04-18 23:10:10 +00001037 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector);
Steve Naroff73322922007-07-18 18:00:27 +00001038 void *InsertPos = 0;
1039 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos))
1040 return QualType(VTP, 0);
1041
1042 // If the element type isn't canonical, this won't be a canonical type either,
1043 // so fill in the canonical type field.
1044 QualType Canonical;
1045 if (!vecType->isCanonical()) {
Nate Begeman213541a2008-04-18 23:10:10 +00001046 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts);
Steve Naroff73322922007-07-18 18:00:27 +00001047
1048 // Get the new insert position for the node we care about.
1049 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001050 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Steve Naroff73322922007-07-18 18:00:27 +00001051 }
Steve Narofff83820b2009-01-27 22:08:43 +00001052 ExtVectorType *New = new (*this,8) ExtVectorType(vecType, NumElts, Canonical);
Steve Naroff73322922007-07-18 18:00:27 +00001053 VectorTypes.InsertNode(New, InsertPos);
1054 Types.push_back(New);
1055 return QualType(New, 0);
1056}
1057
Reid Spencer5f016e22007-07-11 17:01:13 +00001058/// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'.
1059///
1060QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
1061 // Unique functions, to guarantee there is only one function of a particular
1062 // structure.
1063 llvm::FoldingSetNodeID ID;
1064 FunctionTypeNoProto::Profile(ID, ResultTy);
1065
1066 void *InsertPos = 0;
1067 if (FunctionTypeNoProto *FT =
1068 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos))
1069 return QualType(FT, 0);
1070
1071 QualType Canonical;
1072 if (!ResultTy->isCanonical()) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001073 Canonical = getFunctionTypeNoProto(getCanonicalType(ResultTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001074
1075 // Get the new insert position for the node we care about.
1076 FunctionTypeNoProto *NewIP =
1077 FunctionTypeNoProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001078 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001079 }
1080
Steve Narofff83820b2009-01-27 22:08:43 +00001081 FunctionTypeNoProto *New =new(*this,8)FunctionTypeNoProto(ResultTy,Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001082 Types.push_back(New);
Eli Friedman56cd7e32008-02-25 22:11:40 +00001083 FunctionTypeNoProtos.InsertNode(New, InsertPos);
Reid Spencer5f016e22007-07-11 17:01:13 +00001084 return QualType(New, 0);
1085}
1086
1087/// getFunctionType - Return a normal function type with a typed argument
1088/// list. isVariadic indicates whether the argument list includes '...'.
Chris Lattner61710852008-10-05 17:34:18 +00001089QualType ASTContext::getFunctionType(QualType ResultTy,const QualType *ArgArray,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001090 unsigned NumArgs, bool isVariadic,
1091 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001092 // Unique functions, to guarantee there is only one function of a particular
1093 // structure.
1094 llvm::FoldingSetNodeID ID;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001095 FunctionTypeProto::Profile(ID, ResultTy, ArgArray, NumArgs, isVariadic,
1096 TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001097
1098 void *InsertPos = 0;
1099 if (FunctionTypeProto *FTP =
1100 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos))
1101 return QualType(FTP, 0);
1102
1103 // Determine whether the type being created is already canonical or not.
1104 bool isCanonical = ResultTy->isCanonical();
1105 for (unsigned i = 0; i != NumArgs && isCanonical; ++i)
1106 if (!ArgArray[i]->isCanonical())
1107 isCanonical = false;
1108
1109 // If this type isn't canonical, get the canonical version of it.
1110 QualType Canonical;
1111 if (!isCanonical) {
1112 llvm::SmallVector<QualType, 16> CanonicalArgs;
1113 CanonicalArgs.reserve(NumArgs);
1114 for (unsigned i = 0; i != NumArgs; ++i)
Chris Lattnerf52ab252008-04-06 22:59:24 +00001115 CanonicalArgs.push_back(getCanonicalType(ArgArray[i]));
Reid Spencer5f016e22007-07-11 17:01:13 +00001116
Chris Lattnerf52ab252008-04-06 22:59:24 +00001117 Canonical = getFunctionType(getCanonicalType(ResultTy),
Reid Spencer5f016e22007-07-11 17:01:13 +00001118 &CanonicalArgs[0], NumArgs,
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001119 isVariadic, TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001120
1121 // Get the new insert position for the node we care about.
1122 FunctionTypeProto *NewIP =
1123 FunctionTypeProtos.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf6e764f2008-10-12 00:26:57 +00001124 assert(NewIP == 0 && "Shouldn't be in the map!"); NewIP = NewIP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001125 }
1126
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001127 // FunctionTypeProto objects are allocated with extra bytes after them
1128 // for a variable size array (for parameter types) at the end of them.
Reid Spencer5f016e22007-07-11 17:01:13 +00001129 FunctionTypeProto *FTP =
Steve Naroffc0ac4922009-01-27 23:20:32 +00001130 (FunctionTypeProto*)Allocate(sizeof(FunctionTypeProto) +
1131 NumArgs*sizeof(QualType), 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00001132 new (FTP) FunctionTypeProto(ResultTy, ArgArray, NumArgs, isVariadic,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001133 TypeQuals, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001134 Types.push_back(FTP);
1135 FunctionTypeProtos.InsertNode(FTP, InsertPos);
1136 return QualType(FTP, 0);
1137}
1138
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001139/// getTypeDeclType - Return the unique reference to the type for the
1140/// specified type declaration.
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001141QualType ASTContext::getTypeDeclType(TypeDecl *Decl, TypeDecl* PrevDecl) {
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001142 assert(Decl && "Passed null for Decl param");
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001143 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1144
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001145 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001146 return getTypedefType(Typedef);
Douglas Gregor72c3f312008-12-05 18:15:24 +00001147 else if (TemplateTypeParmDecl *TP = dyn_cast<TemplateTypeParmDecl>(Decl))
1148 return getTemplateTypeParmType(TP);
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001149 else if (ObjCInterfaceDecl *ObjCInterface = dyn_cast<ObjCInterfaceDecl>(Decl))
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001150 return getObjCInterfaceType(ObjCInterface);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001151
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001152 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Decl)) {
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001153 if (PrevDecl)
1154 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001155 else
1156 Decl->TypeForDecl = new (*this,8) CXXRecordType(CXXRecord);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001157 }
Argyrios Kyrtzidis1e6759e2008-10-16 16:50:47 +00001158 else if (RecordDecl *Record = dyn_cast<RecordDecl>(Decl)) {
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001159 if (PrevDecl)
1160 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001161 else
1162 Decl->TypeForDecl = new (*this,8) RecordType(Record);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001163 }
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001164 else if (EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
1165 if (PrevDecl)
1166 Decl->TypeForDecl = PrevDecl->TypeForDecl;
Steve Narofff83820b2009-01-27 22:08:43 +00001167 else
1168 Decl->TypeForDecl = new (*this,8) EnumType(Enum);
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001169 }
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001170 else
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001171 assert(false && "TypeDecl without a type?");
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001172
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001173 if (!PrevDecl) Types.push_back(Decl->TypeForDecl);
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +00001174 return QualType(Decl->TypeForDecl, 0);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001175}
1176
Reid Spencer5f016e22007-07-11 17:01:13 +00001177/// getTypedefType - Return the unique reference to the type for the
1178/// specified typename decl.
1179QualType ASTContext::getTypedefType(TypedefDecl *Decl) {
1180 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1181
Chris Lattnerf52ab252008-04-06 22:59:24 +00001182 QualType Canonical = getCanonicalType(Decl->getUnderlyingType());
Steve Narofff83820b2009-01-27 22:08:43 +00001183 Decl->TypeForDecl = new(*this,8) TypedefType(Type::TypeName, Decl, Canonical);
Reid Spencer5f016e22007-07-11 17:01:13 +00001184 Types.push_back(Decl->TypeForDecl);
1185 return QualType(Decl->TypeForDecl, 0);
1186}
1187
Douglas Gregor72c3f312008-12-05 18:15:24 +00001188/// getTemplateTypeParmType - Return the unique reference to the type
1189/// for the specified template type parameter declaration.
1190QualType ASTContext::getTemplateTypeParmType(TemplateTypeParmDecl *Decl) {
1191 if (!Decl->TypeForDecl) {
Steve Narofff83820b2009-01-27 22:08:43 +00001192 Decl->TypeForDecl = new (*this,8) TemplateTypeParmType(Decl);
Douglas Gregor72c3f312008-12-05 18:15:24 +00001193 Types.push_back(Decl->TypeForDecl);
1194 }
1195 return QualType(Decl->TypeForDecl, 0);
1196}
1197
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001198/// getObjCInterfaceType - Return the unique reference to the type for the
Steve Naroff3536b442007-09-06 21:24:23 +00001199/// specified ObjC interface decl.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001200QualType ASTContext::getObjCInterfaceType(ObjCInterfaceDecl *Decl) {
Steve Naroff3536b442007-09-06 21:24:23 +00001201 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0);
1202
Steve Narofff83820b2009-01-27 22:08:43 +00001203 Decl->TypeForDecl = new(*this,8) ObjCInterfaceType(Type::ObjCInterface, Decl);
Steve Naroff3536b442007-09-06 21:24:23 +00001204 Types.push_back(Decl->TypeForDecl);
1205 return QualType(Decl->TypeForDecl, 0);
1206}
1207
Chris Lattner88cb27a2008-04-07 04:56:42 +00001208/// CmpProtocolNames - Comparison predicate for sorting protocols
1209/// alphabetically.
1210static bool CmpProtocolNames(const ObjCProtocolDecl *LHS,
1211 const ObjCProtocolDecl *RHS) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001212 return LHS->getDeclName() < RHS->getDeclName();
Chris Lattner88cb27a2008-04-07 04:56:42 +00001213}
1214
1215static void SortAndUniqueProtocols(ObjCProtocolDecl **&Protocols,
1216 unsigned &NumProtocols) {
1217 ObjCProtocolDecl **ProtocolsEnd = Protocols+NumProtocols;
1218
1219 // Sort protocols, keyed by name.
1220 std::sort(Protocols, Protocols+NumProtocols, CmpProtocolNames);
1221
1222 // Remove duplicates.
1223 ProtocolsEnd = std::unique(Protocols, ProtocolsEnd);
1224 NumProtocols = ProtocolsEnd-Protocols;
1225}
1226
1227
Chris Lattner065f0d72008-04-07 04:44:08 +00001228/// getObjCQualifiedInterfaceType - Return a ObjCQualifiedInterfaceType type for
1229/// the given interface decl and the conforming protocol list.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001230QualType ASTContext::getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl,
1231 ObjCProtocolDecl **Protocols, unsigned NumProtocols) {
Chris Lattner88cb27a2008-04-07 04:56:42 +00001232 // Sort the protocol list alphabetically to canonicalize it.
1233 SortAndUniqueProtocols(Protocols, NumProtocols);
1234
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001235 llvm::FoldingSetNodeID ID;
Chris Lattnerb0489812008-04-07 06:38:24 +00001236 ObjCQualifiedInterfaceType::Profile(ID, Decl, Protocols, NumProtocols);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001237
1238 void *InsertPos = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001239 if (ObjCQualifiedInterfaceType *QT =
1240 ObjCQualifiedInterfaceTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001241 return QualType(QT, 0);
1242
1243 // No Match;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001244 ObjCQualifiedInterfaceType *QType =
Steve Narofff83820b2009-01-27 22:08:43 +00001245 new (*this,8) ObjCQualifiedInterfaceType(Decl, Protocols, NumProtocols);
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001246
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001247 Types.push_back(QType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001248 ObjCQualifiedInterfaceTypes.InsertNode(QType, InsertPos);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001249 return QualType(QType, 0);
1250}
1251
Chris Lattner88cb27a2008-04-07 04:56:42 +00001252/// getObjCQualifiedIdType - Return an ObjCQualifiedIdType for the 'id' decl
1253/// and the conforming protocol list.
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001254QualType ASTContext::getObjCQualifiedIdType(ObjCProtocolDecl **Protocols,
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001255 unsigned NumProtocols) {
Chris Lattner88cb27a2008-04-07 04:56:42 +00001256 // Sort the protocol list alphabetically to canonicalize it.
1257 SortAndUniqueProtocols(Protocols, NumProtocols);
1258
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001259 llvm::FoldingSetNodeID ID;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001260 ObjCQualifiedIdType::Profile(ID, Protocols, NumProtocols);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001261
1262 void *InsertPos = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001263 if (ObjCQualifiedIdType *QT =
Chris Lattner62f5f7f2008-07-26 00:46:50 +00001264 ObjCQualifiedIdTypes.FindNodeOrInsertPos(ID, InsertPos))
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001265 return QualType(QT, 0);
1266
1267 // No Match;
Ted Kremenek566c2ba2009-01-19 21:31:22 +00001268 ObjCQualifiedIdType *QType =
Steve Narofff83820b2009-01-27 22:08:43 +00001269 new (*this,8) ObjCQualifiedIdType(Protocols, NumProtocols);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001270 Types.push_back(QType);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001271 ObjCQualifiedIdTypes.InsertNode(QType, InsertPos);
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001272 return QualType(QType, 0);
1273}
1274
Steve Naroff9752f252007-08-01 18:02:17 +00001275/// getTypeOfExpr - Unlike many "get<Type>" functions, we can't unique
1276/// TypeOfExpr AST's (since expression's are never shared). For example,
1277/// multiple declarations that refer to "typeof(x)" all contain different
1278/// DeclRefExpr's. This doesn't effect the type checker, since it operates
1279/// on canonical type's (which are always unique).
Steve Naroff8d1a3b82007-08-01 17:20:42 +00001280QualType ASTContext::getTypeOfExpr(Expr *tofExpr) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001281 QualType Canonical = getCanonicalType(tofExpr->getType());
Steve Narofff83820b2009-01-27 22:08:43 +00001282 TypeOfExpr *toe = new (*this,8) TypeOfExpr(tofExpr, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00001283 Types.push_back(toe);
1284 return QualType(toe, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001285}
1286
Steve Naroff9752f252007-08-01 18:02:17 +00001287/// getTypeOfType - Unlike many "get<Type>" functions, we don't unique
1288/// TypeOfType AST's. The only motivation to unique these nodes would be
1289/// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be
1290/// an issue. This doesn't effect the type checker, since it operates
1291/// on canonical type's (which are always unique).
Steve Naroffd1861fd2007-07-31 12:34:36 +00001292QualType ASTContext::getTypeOfType(QualType tofType) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001293 QualType Canonical = getCanonicalType(tofType);
Steve Narofff83820b2009-01-27 22:08:43 +00001294 TypeOfType *tot = new (*this,8) TypeOfType(tofType, Canonical);
Steve Naroff9752f252007-08-01 18:02:17 +00001295 Types.push_back(tot);
1296 return QualType(tot, 0);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001297}
1298
Reid Spencer5f016e22007-07-11 17:01:13 +00001299/// getTagDeclType - Return the unique reference to the type for the
1300/// specified TagDecl (struct/union/class/enum) decl.
1301QualType ASTContext::getTagDeclType(TagDecl *Decl) {
Ted Kremenekd778f882007-11-26 21:16:01 +00001302 assert (Decl);
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001303 return getTypeDeclType(Decl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001304}
1305
1306/// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
1307/// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
1308/// needs to agree with the definition in <stddef.h>.
1309QualType ASTContext::getSizeType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001310 return getFromTargetType(Target.getSizeType());
Reid Spencer5f016e22007-07-11 17:01:13 +00001311}
1312
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +00001313/// getWCharType - Return the unique type for "wchar_t" (C99 7.17), the
Eli Friedmanfd888a52008-02-12 08:29:21 +00001314/// width of characters in wide strings, The value is target dependent and
1315/// needs to agree with the definition in <stddef.h>.
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +00001316QualType ASTContext::getWCharType() const {
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001317 if (LangOpts.CPlusPlus)
1318 return WCharTy;
1319
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001320 // FIXME: In C, shouldn't WCharTy just be a typedef of the target's
1321 // wide-character type?
1322 return getFromTargetType(Target.getWCharType());
Eli Friedmanfd888a52008-02-12 08:29:21 +00001323}
1324
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +00001325/// getSignedWCharType - Return the type of "signed wchar_t".
1326/// Used when in C++, as a GCC extension.
1327QualType ASTContext::getSignedWCharType() const {
1328 // FIXME: derive from "Target" ?
1329 return WCharTy;
1330}
1331
1332/// getUnsignedWCharType - Return the type of "unsigned wchar_t".
1333/// Used when in C++, as a GCC extension.
1334QualType ASTContext::getUnsignedWCharType() const {
1335 // FIXME: derive from "Target" ?
1336 return UnsignedIntTy;
1337}
1338
Chris Lattner8b9023b2007-07-13 03:05:23 +00001339/// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?)
1340/// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
1341QualType ASTContext::getPointerDiffType() const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00001342 return getFromTargetType(Target.getPtrDiffType(0));
Chris Lattner8b9023b2007-07-13 03:05:23 +00001343}
1344
Chris Lattnere6327742008-04-02 05:18:44 +00001345//===----------------------------------------------------------------------===//
1346// Type Operators
1347//===----------------------------------------------------------------------===//
1348
Chris Lattner77c96472008-04-06 22:41:35 +00001349/// getCanonicalType - Return the canonical (structural) type corresponding to
1350/// the specified potentially non-canonical type. The non-canonical version
1351/// of a type may have many "decorated" versions of types. Decorators can
1352/// include typedefs, 'typeof' operators, etc. The returned type is guaranteed
1353/// to be free of any of these, allowing two canonical types to be compared
1354/// for exact equality with a simple pointer comparison.
1355QualType ASTContext::getCanonicalType(QualType T) {
1356 QualType CanType = T.getTypePtr()->getCanonicalTypeInternal();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001357
1358 // If the result has type qualifiers, make sure to canonicalize them as well.
1359 unsigned TypeQuals = T.getCVRQualifiers() | CanType.getCVRQualifiers();
1360 if (TypeQuals == 0) return CanType;
1361
1362 // If the type qualifiers are on an array type, get the canonical type of the
1363 // array with the qualifiers applied to the element type.
1364 ArrayType *AT = dyn_cast<ArrayType>(CanType);
1365 if (!AT)
1366 return CanType.getQualifiedType(TypeQuals);
1367
1368 // Get the canonical version of the element with the extra qualifiers on it.
1369 // This can recursively sink qualifiers through multiple levels of arrays.
1370 QualType NewEltTy=AT->getElementType().getWithAdditionalQualifiers(TypeQuals);
1371 NewEltTy = getCanonicalType(NewEltTy);
1372
1373 if (ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
1374 return getConstantArrayType(NewEltTy, CAT->getSize(),CAT->getSizeModifier(),
1375 CAT->getIndexTypeQualifier());
1376 if (IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT))
1377 return getIncompleteArrayType(NewEltTy, IAT->getSizeModifier(),
1378 IAT->getIndexTypeQualifier());
1379
Douglas Gregor898574e2008-12-05 23:32:09 +00001380 if (DependentSizedArrayType *DSAT = dyn_cast<DependentSizedArrayType>(AT))
1381 return getDependentSizedArrayType(NewEltTy, DSAT->getSizeExpr(),
1382 DSAT->getSizeModifier(),
1383 DSAT->getIndexTypeQualifier());
1384
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001385 VariableArrayType *VAT = cast<VariableArrayType>(AT);
1386 return getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1387 VAT->getSizeModifier(),
1388 VAT->getIndexTypeQualifier());
1389}
1390
1391
1392const ArrayType *ASTContext::getAsArrayType(QualType T) {
1393 // Handle the non-qualified case efficiently.
1394 if (T.getCVRQualifiers() == 0) {
1395 // Handle the common positive case fast.
1396 if (const ArrayType *AT = dyn_cast<ArrayType>(T))
1397 return AT;
1398 }
1399
1400 // Handle the common negative case fast, ignoring CVR qualifiers.
1401 QualType CType = T->getCanonicalTypeInternal();
1402
1403 // Make sure to look through type qualifiers (like ASQuals) for the negative
1404 // test.
1405 if (!isa<ArrayType>(CType) &&
1406 !isa<ArrayType>(CType.getUnqualifiedType()))
1407 return 0;
1408
1409 // Apply any CVR qualifiers from the array type to the element type. This
1410 // implements C99 6.7.3p8: "If the specification of an array type includes
1411 // any type qualifiers, the element type is so qualified, not the array type."
1412
1413 // If we get here, we either have type qualifiers on the type, or we have
1414 // sugar such as a typedef in the way. If we have type qualifiers on the type
1415 // we must propagate them down into the elemeng type.
1416 unsigned CVRQuals = T.getCVRQualifiers();
1417 unsigned AddrSpace = 0;
1418 Type *Ty = T.getTypePtr();
1419
1420 // Rip through ASQualType's and typedefs to get to a concrete type.
1421 while (1) {
1422 if (const ASQualType *ASQT = dyn_cast<ASQualType>(Ty)) {
1423 AddrSpace = ASQT->getAddressSpace();
1424 Ty = ASQT->getBaseType();
1425 } else {
1426 T = Ty->getDesugaredType();
1427 if (T.getTypePtr() == Ty && T.getCVRQualifiers() == 0)
1428 break;
1429 CVRQuals |= T.getCVRQualifiers();
1430 Ty = T.getTypePtr();
1431 }
1432 }
1433
1434 // If we have a simple case, just return now.
1435 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
1436 if (ATy == 0 || (AddrSpace == 0 && CVRQuals == 0))
1437 return ATy;
1438
1439 // Otherwise, we have an array and we have qualifiers on it. Push the
1440 // qualifiers into the array element type and return a new array type.
1441 // Get the canonical version of the element with the extra qualifiers on it.
1442 // This can recursively sink qualifiers through multiple levels of arrays.
1443 QualType NewEltTy = ATy->getElementType();
1444 if (AddrSpace)
1445 NewEltTy = getASQualType(NewEltTy, AddrSpace);
1446 NewEltTy = NewEltTy.getWithAdditionalQualifiers(CVRQuals);
1447
1448 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
1449 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
1450 CAT->getSizeModifier(),
1451 CAT->getIndexTypeQualifier()));
1452 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(ATy))
1453 return cast<ArrayType>(getIncompleteArrayType(NewEltTy,
1454 IAT->getSizeModifier(),
1455 IAT->getIndexTypeQualifier()));
Douglas Gregor898574e2008-12-05 23:32:09 +00001456
Douglas Gregor898574e2008-12-05 23:32:09 +00001457 if (const DependentSizedArrayType *DSAT
1458 = dyn_cast<DependentSizedArrayType>(ATy))
1459 return cast<ArrayType>(
1460 getDependentSizedArrayType(NewEltTy,
1461 DSAT->getSizeExpr(),
1462 DSAT->getSizeModifier(),
1463 DSAT->getIndexTypeQualifier()));
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001464
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001465 const VariableArrayType *VAT = cast<VariableArrayType>(ATy);
1466 return cast<ArrayType>(getVariableArrayType(NewEltTy, VAT->getSizeExpr(),
1467 VAT->getSizeModifier(),
1468 VAT->getIndexTypeQualifier()));
Chris Lattner77c96472008-04-06 22:41:35 +00001469}
1470
1471
Chris Lattnere6327742008-04-02 05:18:44 +00001472/// getArrayDecayedType - Return the properly qualified result of decaying the
1473/// specified array type to a pointer. This operation is non-trivial when
1474/// handling typedefs etc. The canonical type of "T" must be an array type,
1475/// this returns a pointer to a properly qualified element of the array.
1476///
1477/// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
1478QualType ASTContext::getArrayDecayedType(QualType Ty) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001479 // Get the element type with 'getAsArrayType' so that we don't lose any
1480 // typedefs in the element type of the array. This also handles propagation
1481 // of type qualifiers from the array type into the element type if present
1482 // (C99 6.7.3p8).
1483 const ArrayType *PrettyArrayType = getAsArrayType(Ty);
1484 assert(PrettyArrayType && "Not an array type!");
Chris Lattnere6327742008-04-02 05:18:44 +00001485
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001486 QualType PtrTy = getPointerType(PrettyArrayType->getElementType());
Chris Lattnere6327742008-04-02 05:18:44 +00001487
1488 // int x[restrict 4] -> int *restrict
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001489 return PtrTy.getQualifiedType(PrettyArrayType->getIndexTypeQualifier());
Chris Lattnere6327742008-04-02 05:18:44 +00001490}
1491
Daniel Dunbard786f6a2009-01-05 22:14:37 +00001492QualType ASTContext::getBaseElementType(const VariableArrayType *VAT) {
Anders Carlsson6183a992008-12-21 03:44:36 +00001493 QualType ElemTy = VAT->getElementType();
1494
1495 if (const VariableArrayType *VAT = getAsVariableArrayType(ElemTy))
1496 return getBaseElementType(VAT);
1497
1498 return ElemTy;
1499}
1500
Reid Spencer5f016e22007-07-11 17:01:13 +00001501/// getFloatingRank - Return a relative rank for floating point types.
1502/// This routine will assert if passed a built-in type that isn't a float.
Chris Lattnera75cea32008-04-06 23:38:49 +00001503static FloatingRank getFloatingRank(QualType T) {
Christopher Lambebb97e92008-02-04 02:31:56 +00001504 if (const ComplexType *CT = T->getAsComplexType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001505 return getFloatingRank(CT->getElementType());
Chris Lattnera75cea32008-04-06 23:38:49 +00001506
Daniel Dunbard786f6a2009-01-05 22:14:37 +00001507 assert(T->getAsBuiltinType() && "getFloatingRank(): not a floating type");
Christopher Lambebb97e92008-02-04 02:31:56 +00001508 switch (T->getAsBuiltinType()->getKind()) {
Chris Lattnera75cea32008-04-06 23:38:49 +00001509 default: assert(0 && "getFloatingRank(): not a floating type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001510 case BuiltinType::Float: return FloatRank;
1511 case BuiltinType::Double: return DoubleRank;
1512 case BuiltinType::LongDouble: return LongDoubleRank;
1513 }
1514}
1515
Steve Naroff716c7302007-08-27 01:41:48 +00001516/// getFloatingTypeOfSizeWithinDomain - Returns a real floating
1517/// point or a complex type (based on typeDomain/typeSize).
1518/// 'typeDomain' is a real floating point or complex type.
1519/// 'typeSize' is a real floating point or complex type.
Chris Lattner1361b112008-04-06 23:58:54 +00001520QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size,
1521 QualType Domain) const {
1522 FloatingRank EltRank = getFloatingRank(Size);
1523 if (Domain->isComplexType()) {
1524 switch (EltRank) {
Steve Naroff716c7302007-08-27 01:41:48 +00001525 default: assert(0 && "getFloatingRank(): illegal value for rank");
Steve Narofff1448a02007-08-27 01:27:54 +00001526 case FloatRank: return FloatComplexTy;
1527 case DoubleRank: return DoubleComplexTy;
1528 case LongDoubleRank: return LongDoubleComplexTy;
1529 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001530 }
Chris Lattner1361b112008-04-06 23:58:54 +00001531
1532 assert(Domain->isRealFloatingType() && "Unknown domain!");
1533 switch (EltRank) {
1534 default: assert(0 && "getFloatingRank(): illegal value for rank");
1535 case FloatRank: return FloatTy;
1536 case DoubleRank: return DoubleTy;
1537 case LongDoubleRank: return LongDoubleTy;
Steve Narofff1448a02007-08-27 01:27:54 +00001538 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001539}
1540
Chris Lattner7cfeb082008-04-06 23:55:33 +00001541/// getFloatingTypeOrder - Compare the rank of the two specified floating
1542/// point types, ignoring the domain of the type (i.e. 'double' ==
1543/// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If
1544/// LHS < RHS, return -1.
Chris Lattnera75cea32008-04-06 23:38:49 +00001545int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) {
1546 FloatingRank LHSR = getFloatingRank(LHS);
1547 FloatingRank RHSR = getFloatingRank(RHS);
1548
1549 if (LHSR == RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00001550 return 0;
Chris Lattnera75cea32008-04-06 23:38:49 +00001551 if (LHSR > RHSR)
Steve Narofffb0d4962007-08-27 15:30:22 +00001552 return 1;
1553 return -1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001554}
1555
Chris Lattnerf52ab252008-04-06 22:59:24 +00001556/// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
1557/// routine will assert if passed a built-in type that isn't an integer or enum,
1558/// or if it is not canonicalized.
1559static unsigned getIntegerRank(Type *T) {
1560 assert(T->isCanonical() && "T should be canonicalized");
1561 if (isa<EnumType>(T))
1562 return 4;
1563
1564 switch (cast<BuiltinType>(T)->getKind()) {
Chris Lattner7cfeb082008-04-06 23:55:33 +00001565 default: assert(0 && "getIntegerRank(): not a built-in integer");
1566 case BuiltinType::Bool:
1567 return 1;
1568 case BuiltinType::Char_S:
1569 case BuiltinType::Char_U:
1570 case BuiltinType::SChar:
1571 case BuiltinType::UChar:
1572 return 2;
1573 case BuiltinType::Short:
1574 case BuiltinType::UShort:
1575 return 3;
1576 case BuiltinType::Int:
1577 case BuiltinType::UInt:
1578 return 4;
1579 case BuiltinType::Long:
1580 case BuiltinType::ULong:
1581 return 5;
1582 case BuiltinType::LongLong:
1583 case BuiltinType::ULongLong:
1584 return 6;
Chris Lattnerf52ab252008-04-06 22:59:24 +00001585 }
1586}
1587
Chris Lattner7cfeb082008-04-06 23:55:33 +00001588/// getIntegerTypeOrder - Returns the highest ranked integer type:
1589/// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
1590/// LHS < RHS, return -1.
1591int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) {
Chris Lattnerf52ab252008-04-06 22:59:24 +00001592 Type *LHSC = getCanonicalType(LHS).getTypePtr();
1593 Type *RHSC = getCanonicalType(RHS).getTypePtr();
Chris Lattner7cfeb082008-04-06 23:55:33 +00001594 if (LHSC == RHSC) return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001595
Chris Lattnerf52ab252008-04-06 22:59:24 +00001596 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
1597 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001598
Chris Lattner7cfeb082008-04-06 23:55:33 +00001599 unsigned LHSRank = getIntegerRank(LHSC);
1600 unsigned RHSRank = getIntegerRank(RHSC);
Reid Spencer5f016e22007-07-11 17:01:13 +00001601
Chris Lattner7cfeb082008-04-06 23:55:33 +00001602 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned.
1603 if (LHSRank == RHSRank) return 0;
1604 return LHSRank > RHSRank ? 1 : -1;
1605 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001606
Chris Lattner7cfeb082008-04-06 23:55:33 +00001607 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa.
1608 if (LHSUnsigned) {
1609 // If the unsigned [LHS] type is larger, return it.
1610 if (LHSRank >= RHSRank)
1611 return 1;
1612
1613 // If the signed type can represent all values of the unsigned type, it
1614 // wins. Because we are dealing with 2's complement and types that are
1615 // powers of two larger than each other, this is always safe.
1616 return -1;
1617 }
Chris Lattnerf52ab252008-04-06 22:59:24 +00001618
Chris Lattner7cfeb082008-04-06 23:55:33 +00001619 // If the unsigned [RHS] type is larger, return it.
1620 if (RHSRank >= LHSRank)
1621 return -1;
1622
1623 // If the signed type can represent all values of the unsigned type, it
1624 // wins. Because we are dealing with 2's complement and types that are
1625 // powers of two larger than each other, this is always safe.
1626 return 1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001627}
Anders Carlsson71993dd2007-08-17 05:31:46 +00001628
1629// getCFConstantStringType - Return the type used for constant CFStrings.
1630QualType ASTContext::getCFConstantStringType() {
1631 if (!CFConstantStringTypeDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001632 CFConstantStringTypeDecl =
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001633 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
Ted Kremenekdf042e62008-09-05 01:34:33 +00001634 &Idents.get("NSConstantString"));
Anders Carlssonf06273f2007-11-19 00:25:30 +00001635 QualType FieldTypes[4];
Anders Carlsson71993dd2007-08-17 05:31:46 +00001636
1637 // const int *isa;
1638 FieldTypes[0] = getPointerType(IntTy.getQualifiedType(QualType::Const));
Anders Carlssonf06273f2007-11-19 00:25:30 +00001639 // int flags;
1640 FieldTypes[1] = IntTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +00001641 // const char *str;
Anders Carlssonf06273f2007-11-19 00:25:30 +00001642 FieldTypes[2] = getPointerType(CharTy.getQualifiedType(QualType::Const));
Anders Carlsson71993dd2007-08-17 05:31:46 +00001643 // long length;
Anders Carlssonf06273f2007-11-19 00:25:30 +00001644 FieldTypes[3] = LongTy;
Douglas Gregor44b43212008-12-11 16:49:14 +00001645
Anders Carlsson71993dd2007-08-17 05:31:46 +00001646 // Create fields
Douglas Gregor44b43212008-12-11 16:49:14 +00001647 for (unsigned i = 0; i < 4; ++i) {
1648 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl,
1649 SourceLocation(), 0,
1650 FieldTypes[i], /*BitWidth=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001651 /*Mutable=*/false);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001652 CFConstantStringTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00001653 }
1654
1655 CFConstantStringTypeDecl->completeDefinition(*this);
Anders Carlsson71993dd2007-08-17 05:31:46 +00001656 }
1657
1658 return getTagDeclType(CFConstantStringTypeDecl);
Gabor Greif84675832007-09-11 15:32:40 +00001659}
Anders Carlssonb2cf3572007-10-11 01:00:40 +00001660
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001661QualType ASTContext::getObjCFastEnumerationStateType()
1662{
1663 if (!ObjCFastEnumerationStateTypeDecl) {
Douglas Gregor44b43212008-12-11 16:49:14 +00001664 ObjCFastEnumerationStateTypeDecl =
1665 RecordDecl::Create(*this, TagDecl::TK_struct, TUDecl, SourceLocation(),
1666 &Idents.get("__objcFastEnumerationState"));
1667
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001668 QualType FieldTypes[] = {
1669 UnsignedLongTy,
1670 getPointerType(ObjCIdType),
1671 getPointerType(UnsignedLongTy),
1672 getConstantArrayType(UnsignedLongTy,
1673 llvm::APInt(32, 5), ArrayType::Normal, 0)
1674 };
1675
Douglas Gregor44b43212008-12-11 16:49:14 +00001676 for (size_t i = 0; i < 4; ++i) {
1677 FieldDecl *Field = FieldDecl::Create(*this,
1678 ObjCFastEnumerationStateTypeDecl,
1679 SourceLocation(), 0,
1680 FieldTypes[i], /*BitWidth=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001681 /*Mutable=*/false);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001682 ObjCFastEnumerationStateTypeDecl->addDecl(Field);
Douglas Gregor44b43212008-12-11 16:49:14 +00001683 }
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001684
Douglas Gregor44b43212008-12-11 16:49:14 +00001685 ObjCFastEnumerationStateTypeDecl->completeDefinition(*this);
Anders Carlssonbd4c1ad2008-08-30 19:34:46 +00001686 }
1687
1688 return getTagDeclType(ObjCFastEnumerationStateTypeDecl);
1689}
1690
Anders Carlssone8c49532007-10-29 06:33:42 +00001691// This returns true if a type has been typedefed to BOOL:
1692// typedef <type> BOOL;
Chris Lattner2d998332007-10-30 20:27:44 +00001693static bool isTypeTypedefedAsBOOL(QualType T) {
Anders Carlssone8c49532007-10-29 06:33:42 +00001694 if (const TypedefType *TT = dyn_cast<TypedefType>(T))
Chris Lattnerbb49c3e2008-11-24 03:52:59 +00001695 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
1696 return II->isStr("BOOL");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001697
1698 return false;
1699}
1700
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001701/// getObjCEncodingTypeSize returns size of type for objective-c encoding
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001702/// purpose.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001703int ASTContext::getObjCEncodingTypeSize(QualType type) {
Chris Lattner98be4942008-03-05 18:54:05 +00001704 uint64_t sz = getTypeSize(type);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001705
1706 // Make all integer and enum types at least as large as an int
1707 if (sz > 0 && type->isIntegralType())
Chris Lattner98be4942008-03-05 18:54:05 +00001708 sz = std::max(sz, getTypeSize(IntTy));
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001709 // Treat arrays as pointers, since that's how they're passed in.
1710 else if (type->isArrayType())
Chris Lattner98be4942008-03-05 18:54:05 +00001711 sz = getTypeSize(VoidPtrTy);
1712 return sz / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001713}
1714
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001715/// getObjCEncodingForMethodDecl - Return the encoded type for this method
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001716/// declaration.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001717void ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
Chris Lattnere6db3b02008-11-19 07:24:05 +00001718 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001719 // FIXME: This is not very efficient.
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001720 // Encode type qualifer, 'in', 'inout', etc. for the return type.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001721 getObjCEncodingForTypeQualifier(Decl->getObjCDeclQualifier(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001722 // Encode result type.
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001723 getObjCEncodingForType(Decl->getResultType(), S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001724 // Compute size of all parameters.
1725 // Start with computing size of a pointer in number of bytes.
1726 // FIXME: There might(should) be a better way of doing this computation!
1727 SourceLocation Loc;
Chris Lattner98be4942008-03-05 18:54:05 +00001728 int PtrSize = getTypeSize(VoidPtrTy) / getTypeSize(CharTy);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001729 // The first two arguments (self and _cmd) are pointers; account for
1730 // their size.
1731 int ParmOffset = 2 * PtrSize;
1732 int NumOfParams = Decl->getNumParams();
1733 for (int i = 0; i < NumOfParams; i++) {
1734 QualType PType = Decl->getParamDecl(i)->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001735 int sz = getObjCEncodingTypeSize (PType);
1736 assert (sz > 0 && "getObjCEncodingForMethodDecl - Incomplete param type");
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001737 ParmOffset += sz;
1738 }
1739 S += llvm::utostr(ParmOffset);
1740 S += "@0:";
1741 S += llvm::utostr(PtrSize);
1742
1743 // Argument types.
1744 ParmOffset = 2 * PtrSize;
1745 for (int i = 0; i < NumOfParams; i++) {
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001746 ParmVarDecl *PVDecl = Decl->getParamDecl(i);
1747 QualType PType = PVDecl->getOriginalType();
1748 if (const ArrayType *AT =
1749 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal()))
1750 // Use array's original type only if it has known number of
1751 // elements.
1752 if (!dyn_cast<ConstantArrayType>(AT))
1753 PType = PVDecl->getType();
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001754 // Process argument qualifiers for user supplied arguments; such as,
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001755 // 'in', 'inout', etc.
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001756 getObjCEncodingForTypeQualifier(PVDecl->getObjCDeclQualifier(), S);
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001757 getObjCEncodingForType(PType, S);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001758 S += llvm::utostr(ParmOffset);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001759 ParmOffset += getObjCEncodingTypeSize(PType);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00001760 }
1761}
1762
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001763/// getObjCEncodingForPropertyDecl - Return the encoded type for this
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00001764/// property declaration. If non-NULL, Container must be either an
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001765/// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be
1766/// NULL when getting encodings for protocol properties.
Fariborz Jahanian83bccb82009-01-20 20:04:12 +00001767/// Property attributes are stored as a comma-delimited C string. The simple
1768/// attributes readonly and bycopy are encoded as single characters. The
1769/// parametrized attributes, getter=name, setter=name, and ivar=name, are
1770/// encoded as single characters, followed by an identifier. Property types
1771/// are also encoded as a parametrized attribute. The characters used to encode
1772/// these attributes are defined by the following enumeration:
1773/// @code
1774/// enum PropertyAttributes {
1775/// kPropertyReadOnly = 'R', // property is read-only.
1776/// kPropertyBycopy = 'C', // property is a copy of the value last assigned
1777/// kPropertyByref = '&', // property is a reference to the value last assigned
1778/// kPropertyDynamic = 'D', // property is dynamic
1779/// kPropertyGetter = 'G', // followed by getter selector name
1780/// kPropertySetter = 'S', // followed by setter selector name
1781/// kPropertyInstanceVariable = 'V' // followed by instance variable name
1782/// kPropertyType = 't' // followed by old-style type encoding.
1783/// kPropertyWeak = 'W' // 'weak' property
1784/// kPropertyStrong = 'P' // property GC'able
1785/// kPropertyNonAtomic = 'N' // property non-atomic
1786/// };
1787/// @endcode
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001788void ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD,
1789 const Decl *Container,
Chris Lattnere6db3b02008-11-19 07:24:05 +00001790 std::string& S) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001791 // Collect information from the property implementation decl(s).
1792 bool Dynamic = false;
1793 ObjCPropertyImplDecl *SynthesizePID = 0;
1794
1795 // FIXME: Duplicated code due to poor abstraction.
1796 if (Container) {
1797 if (const ObjCCategoryImplDecl *CID =
1798 dyn_cast<ObjCCategoryImplDecl>(Container)) {
1799 for (ObjCCategoryImplDecl::propimpl_iterator
1800 i = CID->propimpl_begin(), e = CID->propimpl_end(); i != e; ++i) {
1801 ObjCPropertyImplDecl *PID = *i;
1802 if (PID->getPropertyDecl() == PD) {
1803 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1804 Dynamic = true;
1805 } else {
1806 SynthesizePID = PID;
1807 }
1808 }
1809 }
1810 } else {
Chris Lattner61710852008-10-05 17:34:18 +00001811 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001812 for (ObjCCategoryImplDecl::propimpl_iterator
1813 i = OID->propimpl_begin(), e = OID->propimpl_end(); i != e; ++i) {
1814 ObjCPropertyImplDecl *PID = *i;
1815 if (PID->getPropertyDecl() == PD) {
1816 if (PID->getPropertyImplementation()==ObjCPropertyImplDecl::Dynamic) {
1817 Dynamic = true;
1818 } else {
1819 SynthesizePID = PID;
1820 }
1821 }
1822 }
1823 }
1824 }
1825
1826 // FIXME: This is not very efficient.
1827 S = "T";
1828
1829 // Encode result type.
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001830 // GCC has some special rules regarding encoding of properties which
1831 // closely resembles encoding of ivars.
1832 getObjCEncodingForTypeImpl(PD->getType(), S, true, true, NULL,
1833 true /* outermost type */,
1834 true /* encoding for property */);
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001835
1836 if (PD->isReadOnly()) {
1837 S += ",R";
1838 } else {
1839 switch (PD->getSetterKind()) {
1840 case ObjCPropertyDecl::Assign: break;
1841 case ObjCPropertyDecl::Copy: S += ",C"; break;
1842 case ObjCPropertyDecl::Retain: S += ",&"; break;
1843 }
1844 }
1845
1846 // It really isn't clear at all what this means, since properties
1847 // are "dynamic by default".
1848 if (Dynamic)
1849 S += ",D";
1850
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001851 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
1852 S += ",N";
1853
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001854 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
1855 S += ",G";
Chris Lattner077bf5e2008-11-24 03:33:13 +00001856 S += PD->getGetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001857 }
1858
1859 if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
1860 S += ",S";
Chris Lattner077bf5e2008-11-24 03:33:13 +00001861 S += PD->getSetterName().getAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001862 }
1863
1864 if (SynthesizePID) {
1865 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl();
1866 S += ",V";
Chris Lattner39f34e92008-11-24 04:00:27 +00001867 S += OID->getNameAsString();
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001868 }
1869
1870 // FIXME: OBJCGC: weak & strong
1871}
1872
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001873/// getLegacyIntegralTypeEncoding -
1874/// Another legacy compatibility encoding: 32-bit longs are encoded as
1875/// 'l' or 'L', but not always. For typedefs, we need to use
1876/// 'i' or 'I' instead if encoding a struct field, or a pointer!
1877///
1878void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const {
1879 if (dyn_cast<TypedefType>(PointeeTy.getTypePtr())) {
1880 if (const BuiltinType *BT = PointeeTy->getAsBuiltinType()) {
1881 if (BT->getKind() == BuiltinType::ULong)
1882 PointeeTy = UnsignedIntTy;
1883 else if (BT->getKind() == BuiltinType::Long)
1884 PointeeTy = IntTy;
1885 }
1886 }
1887}
1888
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001889void ASTContext::getObjCEncodingForType(QualType T, std::string& S,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001890 FieldDecl *Field) const {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001891 // We follow the behavior of gcc, expanding structures which are
1892 // directly pointed to, and expanding embedded structures. Note that
1893 // these rules are sufficient to prevent recursive encoding of the
1894 // same type.
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00001895 getObjCEncodingForTypeImpl(T, S, true, true, Field,
1896 true /* outermost type */);
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001897}
1898
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00001899static void EncodeBitField(const ASTContext *Context, std::string& S,
1900 FieldDecl *FD) {
1901 const Expr *E = FD->getBitWidth();
1902 assert(E && "bitfield width not there - getObjCEncodingForTypeImpl");
1903 ASTContext *Ctx = const_cast<ASTContext*>(Context);
1904 unsigned N = E->getIntegerConstantExprValue(*Ctx).getZExtValue();
1905 S += 'b';
1906 S += llvm::utostr(N);
1907}
1908
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00001909void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S,
1910 bool ExpandPointedToStructures,
1911 bool ExpandStructures,
Fariborz Jahanian5b8c7d92008-12-22 23:22:27 +00001912 FieldDecl *FD,
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001913 bool OutermostType,
1914 bool EncodingProperty) const {
Anders Carlssone8c49532007-10-29 06:33:42 +00001915 if (const BuiltinType *BT = T->getAsBuiltinType()) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001916 if (FD && FD->isBitField()) {
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00001917 EncodeBitField(this, S, FD);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001918 }
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001919 else {
1920 char encoding;
1921 switch (BT->getKind()) {
1922 default: assert(0 && "Unhandled builtin type kind");
1923 case BuiltinType::Void: encoding = 'v'; break;
1924 case BuiltinType::Bool: encoding = 'B'; break;
1925 case BuiltinType::Char_U:
1926 case BuiltinType::UChar: encoding = 'C'; break;
1927 case BuiltinType::UShort: encoding = 'S'; break;
1928 case BuiltinType::UInt: encoding = 'I'; break;
1929 case BuiltinType::ULong: encoding = 'L'; break;
1930 case BuiltinType::ULongLong: encoding = 'Q'; break;
1931 case BuiltinType::Char_S:
1932 case BuiltinType::SChar: encoding = 'c'; break;
1933 case BuiltinType::Short: encoding = 's'; break;
1934 case BuiltinType::Int: encoding = 'i'; break;
1935 case BuiltinType::Long: encoding = 'l'; break;
1936 case BuiltinType::LongLong: encoding = 'q'; break;
1937 case BuiltinType::Float: encoding = 'f'; break;
1938 case BuiltinType::Double: encoding = 'd'; break;
1939 case BuiltinType::LongDouble: encoding = 'd'; break;
1940 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001941
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00001942 S += encoding;
1943 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001944 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001945 else if (T->isObjCQualifiedIdType()) {
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00001946 getObjCEncodingForTypeImpl(getObjCIdType(), S,
1947 ExpandPointedToStructures,
1948 ExpandStructures, FD);
1949 if (FD || EncodingProperty) {
1950 // Note that we do extended encoding of protocol qualifer list
1951 // Only when doing ivar or property encoding.
1952 const ObjCQualifiedIdType *QIDT = T->getAsObjCQualifiedIdType();
1953 S += '"';
1954 for (unsigned i =0; i < QIDT->getNumProtocols(); i++) {
1955 ObjCProtocolDecl *Proto = QIDT->getProtocols(i);
1956 S += '<';
1957 S += Proto->getNameAsString();
1958 S += '>';
1959 }
1960 S += '"';
1961 }
1962 return;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001963 }
1964 else if (const PointerType *PT = T->getAsPointerType()) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001965 QualType PointeeTy = PT->getPointeeType();
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00001966 bool isReadOnly = false;
1967 // For historical/compatibility reasons, the read-only qualifier of the
1968 // pointee gets emitted _before_ the '^'. The read-only qualifier of
1969 // the pointer itself gets ignored, _unless_ we are looking at a typedef!
1970 // Also, do not emit the 'r' for anything but the outermost type!
1971 if (dyn_cast<TypedefType>(T.getTypePtr())) {
1972 if (OutermostType && T.isConstQualified()) {
1973 isReadOnly = true;
1974 S += 'r';
1975 }
1976 }
1977 else if (OutermostType) {
1978 QualType P = PointeeTy;
1979 while (P->getAsPointerType())
1980 P = P->getAsPointerType()->getPointeeType();
1981 if (P.isConstQualified()) {
1982 isReadOnly = true;
1983 S += 'r';
1984 }
1985 }
1986 if (isReadOnly) {
1987 // Another legacy compatibility encoding. Some ObjC qualifier and type
1988 // combinations need to be rearranged.
1989 // Rewrite "in const" from "nr" to "rn"
1990 const char * s = S.c_str();
1991 int len = S.length();
1992 if (len >= 2 && s[len-2] == 'n' && s[len-1] == 'r') {
1993 std::string replace = "rn";
1994 S.replace(S.end()-2, S.end(), replace);
1995 }
1996 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00001997 if (isObjCIdType(PointeeTy)) {
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00001998 S += '@';
1999 return;
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002000 }
2001 else if (PointeeTy->isObjCInterfaceType()) {
Fariborz Jahanian3e1b16c2008-12-23 21:30:15 +00002002 if (dyn_cast<TypedefType>(PointeeTy.getTypePtr())) {
2003 // Another historical/compatibility reason.
2004 // We encode the underlying type which comes out as
2005 // {...};
2006 S += '^';
2007 getObjCEncodingForTypeImpl(PointeeTy, S,
2008 false, ExpandPointedToStructures,
2009 NULL);
2010 return;
2011 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002012 S += '@';
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002013 if (FD || EncodingProperty) {
2014 const ObjCInterfaceType *OIT = PointeeTy->getAsObjCInterfaceType();
2015 ObjCInterfaceDecl *OI = OIT->getDecl();
Fariborz Jahanianadcaf542008-12-20 19:17:01 +00002016 S += '"';
2017 S += OI->getNameAsCString();
Fariborz Jahanian090b3f72009-01-20 19:14:18 +00002018 for (unsigned i =0; i < OIT->getNumProtocols(); i++) {
2019 ObjCProtocolDecl *Proto = OIT->getProtocol(i);
2020 S += '<';
2021 S += Proto->getNameAsString();
2022 S += '>';
2023 }
Fariborz Jahanianadcaf542008-12-20 19:17:01 +00002024 S += '"';
2025 }
Fariborz Jahanianc166d732008-12-19 00:14:49 +00002026 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002027 } else if (isObjCClassType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00002028 S += '#';
2029 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002030 } else if (isObjCSelType(PointeeTy)) {
Anders Carlsson8baaca52007-10-31 02:53:19 +00002031 S += ':';
2032 return;
Fariborz Jahanianc2939bc2007-10-30 17:06:23 +00002033 }
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002034
2035 if (PointeeTy->isCharType()) {
2036 // char pointer types should be encoded as '*' unless it is a
2037 // type that has been typedef'd to 'BOOL'.
Anders Carlssone8c49532007-10-29 06:33:42 +00002038 if (!isTypeTypedefedAsBOOL(PointeeTy)) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002039 S += '*';
2040 return;
2041 }
2042 }
2043
2044 S += '^';
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002045 getLegacyIntegralTypeEncoding(PointeeTy);
2046
2047 getObjCEncodingForTypeImpl(PointeeTy, S,
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002048 false, ExpandPointedToStructures,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002049 NULL);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00002050 } else if (const ArrayType *AT =
2051 // Ignore type qualifiers etc.
2052 dyn_cast<ArrayType>(T->getCanonicalTypeInternal())) {
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002053 S += '[';
2054
2055 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
2056 S += llvm::utostr(CAT->getSize().getZExtValue());
2057 else
2058 assert(0 && "Unhandled array type!");
2059
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002060 getObjCEncodingForTypeImpl(AT->getElementType(), S,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002061 false, ExpandStructures, FD);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002062 S += ']';
Anders Carlssonc0a87b72007-10-30 00:06:20 +00002063 } else if (T->getAsFunctionType()) {
2064 S += '?';
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00002065 } else if (const RecordType *RTy = T->getAsRecordType()) {
Daniel Dunbar82a6cfb2008-10-17 07:30:50 +00002066 RecordDecl *RDecl = RTy->getDecl();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002067 S += RDecl->isUnion() ? '(' : '{';
Daniel Dunbar502a4a12008-10-17 06:22:57 +00002068 // Anonymous structures print as '?'
2069 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
2070 S += II->getName();
2071 } else {
2072 S += '?';
2073 }
Daniel Dunbar0d504c12008-10-17 20:21:44 +00002074 if (ExpandStructures) {
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002075 S += '=';
Douglas Gregor44b43212008-12-11 16:49:14 +00002076 for (RecordDecl::field_iterator Field = RDecl->field_begin(),
2077 FieldEnd = RDecl->field_end();
2078 Field != FieldEnd; ++Field) {
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002079 if (FD) {
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002080 S += '"';
Douglas Gregor44b43212008-12-11 16:49:14 +00002081 S += Field->getNameAsString();
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002082 S += '"';
2083 }
2084
2085 // Special case bit-fields.
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002086 if (Field->isBitField()) {
2087 getObjCEncodingForTypeImpl(Field->getType(), S, false, true,
2088 (*Field));
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002089 } else {
Fariborz Jahaniana1c033e2008-12-23 19:56:47 +00002090 QualType qt = Field->getType();
2091 getLegacyIntegralTypeEncoding(qt);
2092 getObjCEncodingForTypeImpl(qt, S, false, true,
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002093 FD);
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002094 }
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002095 }
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00002096 }
Daniel Dunbard96b35b2008-10-17 16:17:37 +00002097 S += RDecl->isUnion() ? ')' : '}';
Steve Naroff5e711242007-12-12 22:30:11 +00002098 } else if (T->isEnumeralType()) {
Fariborz Jahanian8b4bf902009-01-13 01:18:13 +00002099 if (FD && FD->isBitField())
2100 EncodeBitField(this, S, FD);
2101 else
2102 S += 'i';
Steve Naroff485eeff2008-09-24 15:05:44 +00002103 } else if (T->isBlockPointerType()) {
Steve Naroff21a98b12009-02-02 18:24:29 +00002104 S += "@?"; // Unlike a pointer-to-function, which is "^?".
Fariborz Jahanian43822ea2008-12-19 23:34:38 +00002105 } else if (T->isObjCInterfaceType()) {
2106 // @encode(class_name)
2107 ObjCInterfaceDecl *OI = T->getAsObjCInterfaceType()->getDecl();
2108 S += '{';
2109 const IdentifierInfo *II = OI->getIdentifier();
2110 S += II->getName();
2111 S += '=';
2112 std::vector<FieldDecl*> RecFields;
2113 CollectObjCIvars(OI, RecFields);
2114 for (unsigned int i = 0; i != RecFields.size(); i++) {
2115 if (RecFields[i]->isBitField())
2116 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
2117 RecFields[i]);
2118 else
2119 getObjCEncodingForTypeImpl(RecFields[i]->getType(), S, false, true,
2120 FD);
2121 }
2122 S += '}';
2123 }
2124 else
Steve Narofff69cc5d2008-01-30 19:17:43 +00002125 assert(0 && "@encode for type not implemented!");
Anders Carlsson85f9bce2007-10-29 05:01:08 +00002126}
2127
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002128void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00002129 std::string& S) const {
2130 if (QT & Decl::OBJC_TQ_In)
2131 S += 'n';
2132 if (QT & Decl::OBJC_TQ_Inout)
2133 S += 'N';
2134 if (QT & Decl::OBJC_TQ_Out)
2135 S += 'o';
2136 if (QT & Decl::OBJC_TQ_Bycopy)
2137 S += 'O';
2138 if (QT & Decl::OBJC_TQ_Byref)
2139 S += 'R';
2140 if (QT & Decl::OBJC_TQ_Oneway)
2141 S += 'V';
2142}
2143
Anders Carlssonb2cf3572007-10-11 01:00:40 +00002144void ASTContext::setBuiltinVaListType(QualType T)
2145{
2146 assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
2147
2148 BuiltinVaListType = T;
2149}
2150
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002151void ASTContext::setObjCIdType(TypedefDecl *TD)
Steve Naroff7e219e42007-10-15 14:41:52 +00002152{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002153 ObjCIdType = getTypedefType(TD);
Steve Naroff7e219e42007-10-15 14:41:52 +00002154
2155 // typedef struct objc_object *id;
2156 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002157 // User error - caller will issue diagnostics.
2158 if (!ptr)
2159 return;
Steve Naroff7e219e42007-10-15 14:41:52 +00002160 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002161 // User error - caller will issue diagnostics.
2162 if (!rec)
2163 return;
Steve Naroff7e219e42007-10-15 14:41:52 +00002164 IdStructType = rec;
2165}
2166
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002167void ASTContext::setObjCSelType(TypedefDecl *TD)
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002168{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002169 ObjCSelType = getTypedefType(TD);
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002170
2171 // typedef struct objc_selector *SEL;
2172 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002173 if (!ptr)
2174 return;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002175 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00002176 if (!rec)
2177 return;
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002178 SelStructType = rec;
2179}
2180
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002181void ASTContext::setObjCProtoType(QualType QT)
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002182{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002183 ObjCProtoType = QT;
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002184}
2185
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002186void ASTContext::setObjCClassType(TypedefDecl *TD)
Anders Carlsson8baaca52007-10-31 02:53:19 +00002187{
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002188 ObjCClassType = getTypedefType(TD);
Anders Carlsson8baaca52007-10-31 02:53:19 +00002189
2190 // typedef struct objc_class *Class;
2191 const PointerType *ptr = TD->getUnderlyingType()->getAsPointerType();
2192 assert(ptr && "'Class' incorrectly typed");
2193 const RecordType *rec = ptr->getPointeeType()->getAsStructureType();
2194 assert(rec && "'Class' incorrectly typed");
2195 ClassStructType = rec;
2196}
2197
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002198void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) {
2199 assert(ObjCConstantStringType.isNull() &&
Steve Naroff21988912007-10-15 23:35:17 +00002200 "'NSConstantString' type already set!");
2201
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002202 ObjCConstantStringType = getObjCInterfaceType(Decl);
Steve Naroff21988912007-10-15 23:35:17 +00002203}
2204
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002205/// getFromTargetType - Given one of the integer types provided by
Douglas Gregord9341122008-11-03 15:57:00 +00002206/// TargetInfo, produce the corresponding type. The unsigned @p Type
2207/// is actually a value of type @c TargetInfo::IntType.
2208QualType ASTContext::getFromTargetType(unsigned Type) const {
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002209 switch (Type) {
2210 case TargetInfo::NoInt: return QualType();
2211 case TargetInfo::SignedShort: return ShortTy;
2212 case TargetInfo::UnsignedShort: return UnsignedShortTy;
2213 case TargetInfo::SignedInt: return IntTy;
2214 case TargetInfo::UnsignedInt: return UnsignedIntTy;
2215 case TargetInfo::SignedLong: return LongTy;
2216 case TargetInfo::UnsignedLong: return UnsignedLongTy;
2217 case TargetInfo::SignedLongLong: return LongLongTy;
2218 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy;
2219 }
2220
2221 assert(false && "Unhandled TargetInfo::IntType value");
Daniel Dunbarb3ac5432008-11-11 01:16:00 +00002222 return QualType();
Douglas Gregorb4e66d52008-11-03 14:12:49 +00002223}
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002224
2225//===----------------------------------------------------------------------===//
2226// Type Predicates.
2227//===----------------------------------------------------------------------===//
2228
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002229/// isObjCNSObjectType - Return true if this is an NSObject object using
2230/// NSObject attribute on a c-style pointer type.
2231/// FIXME - Make it work directly on types.
2232///
2233bool ASTContext::isObjCNSObjectType(QualType Ty) const {
2234 if (TypedefType *TDT = dyn_cast<TypedefType>(Ty)) {
2235 if (TypedefDecl *TD = TDT->getDecl())
2236 if (TD->getAttr<ObjCNSObjectAttr>())
2237 return true;
2238 }
2239 return false;
2240}
2241
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002242/// isObjCObjectPointerType - Returns true if type is an Objective-C pointer
2243/// to an object type. This includes "id" and "Class" (two 'special' pointers
2244/// to struct), Interface* (pointer to ObjCInterfaceType) and id<P> (qualified
2245/// ID type).
2246bool ASTContext::isObjCObjectPointerType(QualType Ty) const {
2247 if (Ty->isObjCQualifiedIdType())
2248 return true;
2249
Steve Naroff6ae98502008-10-21 18:24:04 +00002250 // Blocks are objects.
2251 if (Ty->isBlockPointerType())
2252 return true;
2253
2254 // All other object types are pointers.
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002255 if (!Ty->isPointerType())
2256 return false;
2257
2258 // Check to see if this is 'id' or 'Class', both of which are typedefs for
2259 // pointer types. This looks for the typedef specifically, not for the
2260 // underlying type.
2261 if (Ty == getObjCIdType() || Ty == getObjCClassType())
2262 return true;
2263
2264 // If this a pointer to an interface (e.g. NSString*), it is ok.
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002265 if (Ty->getAsPointerType()->getPointeeType()->isObjCInterfaceType())
2266 return true;
2267
2268 // If is has NSObject attribute, OK as well.
2269 return isObjCNSObjectType(Ty);
Ted Kremenekb6ccaac2008-07-24 23:58:27 +00002270}
2271
Chris Lattner6ac46a42008-04-07 06:51:04 +00002272//===----------------------------------------------------------------------===//
2273// Type Compatibility Testing
2274//===----------------------------------------------------------------------===//
Chris Lattner770951b2007-11-01 05:03:41 +00002275
Steve Naroff1c7d0672008-09-04 15:10:53 +00002276/// typesAreBlockCompatible - This routine is called when comparing two
Steve Naroffdd972f22008-09-05 22:11:13 +00002277/// block types. Types must be strictly compatible here. For example,
2278/// C unfortunately doesn't produce an error for the following:
2279///
2280/// int (*emptyArgFunc)();
2281/// int (*intArgList)(int) = emptyArgFunc;
2282///
2283/// For blocks, we will produce an error for the following (similar to C++):
2284///
2285/// int (^emptyArgBlock)();
2286/// int (^intArgBlock)(int) = emptyArgBlock;
2287///
2288/// FIXME: When the dust settles on this integration, fold this into mergeTypes.
2289///
Steve Naroff1c7d0672008-09-04 15:10:53 +00002290bool ASTContext::typesAreBlockCompatible(QualType lhs, QualType rhs) {
Steve Naroffc0febd52008-12-10 17:49:55 +00002291 const FunctionType *lbase = lhs->getAsFunctionType();
2292 const FunctionType *rbase = rhs->getAsFunctionType();
2293 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2294 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2295 if (lproto && rproto)
2296 return !mergeTypes(lhs, rhs).isNull();
2297 return false;
Steve Naroff1c7d0672008-09-04 15:10:53 +00002298}
2299
Chris Lattner6ac46a42008-04-07 06:51:04 +00002300/// areCompatVectorTypes - Return true if the two specified vector types are
2301/// compatible.
2302static bool areCompatVectorTypes(const VectorType *LHS,
2303 const VectorType *RHS) {
2304 assert(LHS->isCanonical() && RHS->isCanonical());
2305 return LHS->getElementType() == RHS->getElementType() &&
Chris Lattner61710852008-10-05 17:34:18 +00002306 LHS->getNumElements() == RHS->getNumElements();
Chris Lattner6ac46a42008-04-07 06:51:04 +00002307}
2308
Eli Friedman3d815e72008-08-22 00:56:42 +00002309/// canAssignObjCInterfaces - Return true if the two interface types are
Chris Lattner6ac46a42008-04-07 06:51:04 +00002310/// compatible for assignment from RHS to LHS. This handles validation of any
2311/// protocol qualifiers on the LHS or RHS.
2312///
Eli Friedman3d815e72008-08-22 00:56:42 +00002313bool ASTContext::canAssignObjCInterfaces(const ObjCInterfaceType *LHS,
2314 const ObjCInterfaceType *RHS) {
Chris Lattner6ac46a42008-04-07 06:51:04 +00002315 // Verify that the base decls are compatible: the RHS must be a subclass of
2316 // the LHS.
2317 if (!LHS->getDecl()->isSuperClassOf(RHS->getDecl()))
2318 return false;
2319
2320 // RHS must have a superset of the protocols in the LHS. If the LHS is not
2321 // protocol qualified at all, then we are good.
2322 if (!isa<ObjCQualifiedInterfaceType>(LHS))
2323 return true;
2324
2325 // Okay, we know the LHS has protocol qualifiers. If the RHS doesn't, then it
2326 // isn't a superset.
2327 if (!isa<ObjCQualifiedInterfaceType>(RHS))
2328 return true; // FIXME: should return false!
2329
2330 // Finally, we must have two protocol-qualified interfaces.
2331 const ObjCQualifiedInterfaceType *LHSP =cast<ObjCQualifiedInterfaceType>(LHS);
2332 const ObjCQualifiedInterfaceType *RHSP =cast<ObjCQualifiedInterfaceType>(RHS);
2333 ObjCQualifiedInterfaceType::qual_iterator LHSPI = LHSP->qual_begin();
2334 ObjCQualifiedInterfaceType::qual_iterator LHSPE = LHSP->qual_end();
2335 ObjCQualifiedInterfaceType::qual_iterator RHSPI = RHSP->qual_begin();
2336 ObjCQualifiedInterfaceType::qual_iterator RHSPE = RHSP->qual_end();
2337
2338 // All protocols in LHS must have a presence in RHS. Since the protocol lists
2339 // are both sorted alphabetically and have no duplicates, we can scan RHS and
2340 // LHS in a single parallel scan until we run out of elements in LHS.
2341 assert(LHSPI != LHSPE && "Empty LHS protocol list?");
2342 ObjCProtocolDecl *LHSProto = *LHSPI;
2343
2344 while (RHSPI != RHSPE) {
2345 ObjCProtocolDecl *RHSProto = *RHSPI++;
2346 // If the RHS has a protocol that the LHS doesn't, ignore it.
2347 if (RHSProto != LHSProto)
2348 continue;
2349
2350 // Otherwise, the RHS does have this element.
2351 ++LHSPI;
2352 if (LHSPI == LHSPE)
2353 return true; // All protocols in LHS exist in RHS.
2354
2355 LHSProto = *LHSPI;
2356 }
2357
2358 // If we got here, we didn't find one of the LHS's protocols in the RHS list.
2359 return false;
2360}
2361
Steve Naroffec0550f2007-10-15 20:41:53 +00002362/// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
2363/// both shall have the identically qualified version of a compatible type.
2364/// C99 6.2.7p1: Two types have compatible types if their types are the
2365/// same. See 6.7.[2,3,5] for additional rules.
Eli Friedman3d815e72008-08-22 00:56:42 +00002366bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS) {
2367 return !mergeTypes(LHS, RHS).isNull();
2368}
2369
2370QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs) {
2371 const FunctionType *lbase = lhs->getAsFunctionType();
2372 const FunctionType *rbase = rhs->getAsFunctionType();
2373 const FunctionTypeProto *lproto = dyn_cast<FunctionTypeProto>(lbase);
2374 const FunctionTypeProto *rproto = dyn_cast<FunctionTypeProto>(rbase);
2375 bool allLTypes = true;
2376 bool allRTypes = true;
2377
2378 // Check return type
2379 QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
2380 if (retType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002381 if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType()))
2382 allLTypes = false;
2383 if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType()))
2384 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00002385
2386 if (lproto && rproto) { // two C99 style function prototypes
2387 unsigned lproto_nargs = lproto->getNumArgs();
2388 unsigned rproto_nargs = rproto->getNumArgs();
2389
2390 // Compatible functions must have the same number of arguments
2391 if (lproto_nargs != rproto_nargs)
2392 return QualType();
2393
2394 // Variadic and non-variadic functions aren't compatible
2395 if (lproto->isVariadic() != rproto->isVariadic())
2396 return QualType();
2397
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002398 if (lproto->getTypeQuals() != rproto->getTypeQuals())
2399 return QualType();
2400
Eli Friedman3d815e72008-08-22 00:56:42 +00002401 // Check argument compatibility
2402 llvm::SmallVector<QualType, 10> types;
2403 for (unsigned i = 0; i < lproto_nargs; i++) {
2404 QualType largtype = lproto->getArgType(i).getUnqualifiedType();
2405 QualType rargtype = rproto->getArgType(i).getUnqualifiedType();
2406 QualType argtype = mergeTypes(largtype, rargtype);
2407 if (argtype.isNull()) return QualType();
2408 types.push_back(argtype);
Chris Lattner61710852008-10-05 17:34:18 +00002409 if (getCanonicalType(argtype) != getCanonicalType(largtype))
2410 allLTypes = false;
2411 if (getCanonicalType(argtype) != getCanonicalType(rargtype))
2412 allRTypes = false;
Eli Friedman3d815e72008-08-22 00:56:42 +00002413 }
2414 if (allLTypes) return lhs;
2415 if (allRTypes) return rhs;
2416 return getFunctionType(retType, types.begin(), types.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002417 lproto->isVariadic(), lproto->getTypeQuals());
Eli Friedman3d815e72008-08-22 00:56:42 +00002418 }
2419
2420 if (lproto) allRTypes = false;
2421 if (rproto) allLTypes = false;
2422
2423 const FunctionTypeProto *proto = lproto ? lproto : rproto;
2424 if (proto) {
2425 if (proto->isVariadic()) return QualType();
2426 // Check that the types are compatible with the types that
2427 // would result from default argument promotions (C99 6.7.5.3p15).
2428 // The only types actually affected are promotable integer
2429 // types and floats, which would be passed as a different
2430 // type depending on whether the prototype is visible.
2431 unsigned proto_nargs = proto->getNumArgs();
2432 for (unsigned i = 0; i < proto_nargs; ++i) {
2433 QualType argTy = proto->getArgType(i);
2434 if (argTy->isPromotableIntegerType() ||
2435 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)
2436 return QualType();
2437 }
2438
2439 if (allLTypes) return lhs;
2440 if (allRTypes) return rhs;
2441 return getFunctionType(retType, proto->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00002442 proto->getNumArgs(), lproto->isVariadic(),
2443 lproto->getTypeQuals());
Eli Friedman3d815e72008-08-22 00:56:42 +00002444 }
2445
2446 if (allLTypes) return lhs;
2447 if (allRTypes) return rhs;
2448 return getFunctionTypeNoProto(retType);
2449}
2450
2451QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
Bill Wendling43d69752007-12-03 07:33:35 +00002452 // C++ [expr]: If an expression initially has the type "reference to T", the
2453 // type is adjusted to "T" prior to any further analysis, the expression
2454 // designates the object or function denoted by the reference, and the
2455 // expression is an lvalue.
Eli Friedman3d815e72008-08-22 00:56:42 +00002456 // FIXME: C++ shouldn't be going through here! The rules are different
2457 // enough that they should be handled separately.
2458 if (const ReferenceType *RT = LHS->getAsReferenceType())
Chris Lattnerc4e40592008-04-07 04:07:56 +00002459 LHS = RT->getPointeeType();
Eli Friedman3d815e72008-08-22 00:56:42 +00002460 if (const ReferenceType *RT = RHS->getAsReferenceType())
Chris Lattnerc4e40592008-04-07 04:07:56 +00002461 RHS = RT->getPointeeType();
Chris Lattnerf3692dc2008-04-07 05:37:56 +00002462
Eli Friedman3d815e72008-08-22 00:56:42 +00002463 QualType LHSCan = getCanonicalType(LHS),
2464 RHSCan = getCanonicalType(RHS);
2465
2466 // If two types are identical, they are compatible.
2467 if (LHSCan == RHSCan)
2468 return LHS;
2469
2470 // If the qualifiers are different, the types aren't compatible
2471 if (LHSCan.getCVRQualifiers() != RHSCan.getCVRQualifiers() ||
2472 LHSCan.getAddressSpace() != RHSCan.getAddressSpace())
2473 return QualType();
2474
2475 Type::TypeClass LHSClass = LHSCan->getTypeClass();
2476 Type::TypeClass RHSClass = RHSCan->getTypeClass();
2477
Chris Lattner1adb8832008-01-14 05:45:46 +00002478 // We want to consider the two function types to be the same for these
2479 // comparisons, just force one to the other.
2480 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto;
2481 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto;
Eli Friedman4c721d32008-02-12 08:23:06 +00002482
2483 // Same as above for arrays
Chris Lattnera36a61f2008-04-07 05:43:21 +00002484 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray)
2485 LHSClass = Type::ConstantArray;
2486 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray)
2487 RHSClass = Type::ConstantArray;
Steve Naroffec0550f2007-10-15 20:41:53 +00002488
Nate Begeman213541a2008-04-18 23:10:10 +00002489 // Canonicalize ExtVector -> Vector.
2490 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector;
2491 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector;
Chris Lattnera36a61f2008-04-07 05:43:21 +00002492
Chris Lattnerb0489812008-04-07 06:38:24 +00002493 // Consider qualified interfaces and interfaces the same.
2494 if (LHSClass == Type::ObjCQualifiedInterface) LHSClass = Type::ObjCInterface;
2495 if (RHSClass == Type::ObjCQualifiedInterface) RHSClass = Type::ObjCInterface;
Eli Friedman3d815e72008-08-22 00:56:42 +00002496
Chris Lattnera36a61f2008-04-07 05:43:21 +00002497 // If the canonical type classes don't match.
Chris Lattner1adb8832008-01-14 05:45:46 +00002498 if (LHSClass != RHSClass) {
Steve Naroffbc76dd02008-12-10 22:14:21 +00002499 // ID is compatible with all qualified id types.
2500 if (LHS->isObjCQualifiedIdType()) {
2501 if (const PointerType *PT = RHS->getAsPointerType()) {
2502 QualType pType = PT->getPointeeType();
2503 if (isObjCIdType(pType))
2504 return LHS;
2505 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2506 // Unfortunately, this API is part of Sema (which we don't have access
2507 // to. Need to refactor. The following check is insufficient, since we
2508 // need to make sure the class implements the protocol.
2509 if (pType->isObjCInterfaceType())
2510 return LHS;
2511 }
2512 }
2513 if (RHS->isObjCQualifiedIdType()) {
2514 if (const PointerType *PT = LHS->getAsPointerType()) {
2515 QualType pType = PT->getPointeeType();
2516 if (isObjCIdType(pType))
2517 return RHS;
2518 // FIXME: need to use ObjCQualifiedIdTypesAreCompatible(LHS, RHS, true).
2519 // Unfortunately, this API is part of Sema (which we don't have access
2520 // to. Need to refactor. The following check is insufficient, since we
2521 // need to make sure the class implements the protocol.
2522 if (pType->isObjCInterfaceType())
2523 return RHS;
2524 }
2525 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002526 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
2527 // a signed integer type, or an unsigned integer type.
Eli Friedman3d815e72008-08-22 00:56:42 +00002528 if (const EnumType* ETy = LHS->getAsEnumType()) {
2529 if (ETy->getDecl()->getIntegerType() == RHSCan.getUnqualifiedType())
2530 return RHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00002531 }
Eli Friedman3d815e72008-08-22 00:56:42 +00002532 if (const EnumType* ETy = RHS->getAsEnumType()) {
2533 if (ETy->getDecl()->getIntegerType() == LHSCan.getUnqualifiedType())
2534 return LHS;
Eli Friedmanbab96962008-02-12 08:46:17 +00002535 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002536
Eli Friedman3d815e72008-08-22 00:56:42 +00002537 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00002538 }
Eli Friedman3d815e72008-08-22 00:56:42 +00002539
Steve Naroff4a746782008-01-09 22:43:08 +00002540 // The canonical type classes match.
Chris Lattner1adb8832008-01-14 05:45:46 +00002541 switch (LHSClass) {
Chris Lattner1adb8832008-01-14 05:45:46 +00002542 case Type::Pointer:
Eli Friedman3d815e72008-08-22 00:56:42 +00002543 {
2544 // Merge two pointer types, while trying to preserve typedef info
2545 QualType LHSPointee = LHS->getAsPointerType()->getPointeeType();
2546 QualType RHSPointee = RHS->getAsPointerType()->getPointeeType();
2547 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2548 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002549 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2550 return LHS;
2551 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2552 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00002553 return getPointerType(ResultType);
2554 }
Steve Naroffc0febd52008-12-10 17:49:55 +00002555 case Type::BlockPointer:
2556 {
2557 // Merge two block pointer types, while trying to preserve typedef info
2558 QualType LHSPointee = LHS->getAsBlockPointerType()->getPointeeType();
2559 QualType RHSPointee = RHS->getAsBlockPointerType()->getPointeeType();
2560 QualType ResultType = mergeTypes(LHSPointee, RHSPointee);
2561 if (ResultType.isNull()) return QualType();
2562 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
2563 return LHS;
2564 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
2565 return RHS;
2566 return getBlockPointerType(ResultType);
2567 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002568 case Type::ConstantArray:
Eli Friedman3d815e72008-08-22 00:56:42 +00002569 {
2570 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS);
2571 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS);
2572 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize())
2573 return QualType();
2574
2575 QualType LHSElem = getAsArrayType(LHS)->getElementType();
2576 QualType RHSElem = getAsArrayType(RHS)->getElementType();
2577 QualType ResultType = mergeTypes(LHSElem, RHSElem);
2578 if (ResultType.isNull()) return QualType();
Chris Lattner61710852008-10-05 17:34:18 +00002579 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2580 return LHS;
2581 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2582 return RHS;
Eli Friedman3bc0f452008-08-22 01:48:21 +00002583 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
2584 ArrayType::ArraySizeModifier(), 0);
2585 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
2586 ArrayType::ArraySizeModifier(), 0);
Eli Friedman3d815e72008-08-22 00:56:42 +00002587 const VariableArrayType* LVAT = getAsVariableArrayType(LHS);
2588 const VariableArrayType* RVAT = getAsVariableArrayType(RHS);
Chris Lattner61710852008-10-05 17:34:18 +00002589 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
2590 return LHS;
2591 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
2592 return RHS;
Eli Friedman3d815e72008-08-22 00:56:42 +00002593 if (LVAT) {
2594 // FIXME: This isn't correct! But tricky to implement because
2595 // the array's size has to be the size of LHS, but the type
2596 // has to be different.
2597 return LHS;
2598 }
2599 if (RVAT) {
2600 // FIXME: This isn't correct! But tricky to implement because
2601 // the array's size has to be the size of RHS, but the type
2602 // has to be different.
2603 return RHS;
2604 }
Eli Friedman3bc0f452008-08-22 01:48:21 +00002605 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
2606 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
Chris Lattner61710852008-10-05 17:34:18 +00002607 return getIncompleteArrayType(ResultType, ArrayType::ArraySizeModifier(),0);
Eli Friedman3d815e72008-08-22 00:56:42 +00002608 }
Chris Lattner1adb8832008-01-14 05:45:46 +00002609 case Type::FunctionNoProto:
Eli Friedman3d815e72008-08-22 00:56:42 +00002610 return mergeFunctionTypes(LHS, RHS);
2611 case Type::Tagged:
Eli Friedman3d815e72008-08-22 00:56:42 +00002612 // FIXME: Why are these compatible?
2613 if (isObjCIdType(LHS) && isObjCClassType(RHS)) return LHS;
2614 if (isObjCClassType(LHS) && isObjCIdType(RHS)) return LHS;
2615 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002616 case Type::Builtin:
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00002617 // Only exactly equal builtin types are compatible, which is tested above.
Eli Friedman3d815e72008-08-22 00:56:42 +00002618 return QualType();
Daniel Dunbar64cfdb72009-01-28 21:22:12 +00002619 case Type::Complex:
2620 // Distinct complex types are incompatible.
2621 return QualType();
Chris Lattner3cc4c0c2008-04-07 05:55:38 +00002622 case Type::Vector:
Eli Friedman3d815e72008-08-22 00:56:42 +00002623 if (areCompatVectorTypes(LHS->getAsVectorType(), RHS->getAsVectorType()))
2624 return LHS;
Chris Lattner61710852008-10-05 17:34:18 +00002625 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002626 case Type::ObjCInterface:
Eli Friedman3d815e72008-08-22 00:56:42 +00002627 // Distinct ObjC interfaces are not compatible; see canAssignObjCInterfaces
2628 // for checking assignment/comparison safety
2629 return QualType();
Steve Naroffbc76dd02008-12-10 22:14:21 +00002630 case Type::ObjCQualifiedId:
2631 // Distinct qualified id's are not compatible.
2632 return QualType();
Chris Lattner1adb8832008-01-14 05:45:46 +00002633 default:
2634 assert(0 && "unexpected type");
Eli Friedman3d815e72008-08-22 00:56:42 +00002635 return QualType();
Steve Naroffec0550f2007-10-15 20:41:53 +00002636 }
Steve Naroffec0550f2007-10-15 20:41:53 +00002637}
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002638
Chris Lattner5426bf62008-04-07 07:01:58 +00002639//===----------------------------------------------------------------------===//
Eli Friedmanad74a752008-06-28 06:23:08 +00002640// Integer Predicates
2641//===----------------------------------------------------------------------===//
Chris Lattner88054de2009-01-16 07:15:35 +00002642
Eli Friedmanad74a752008-06-28 06:23:08 +00002643unsigned ASTContext::getIntWidth(QualType T) {
2644 if (T == BoolTy)
2645 return 1;
2646 // At the moment, only bool has padding bits
2647 return (unsigned)getTypeSize(T);
2648}
2649
2650QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
2651 assert(T->isSignedIntegerType() && "Unexpected type");
2652 if (const EnumType* ETy = T->getAsEnumType())
2653 T = ETy->getDecl()->getIntegerType();
2654 const BuiltinType* BTy = T->getAsBuiltinType();
2655 assert (BTy && "Unexpected signed integer type");
2656 switch (BTy->getKind()) {
2657 case BuiltinType::Char_S:
2658 case BuiltinType::SChar:
2659 return UnsignedCharTy;
2660 case BuiltinType::Short:
2661 return UnsignedShortTy;
2662 case BuiltinType::Int:
2663 return UnsignedIntTy;
2664 case BuiltinType::Long:
2665 return UnsignedLongTy;
2666 case BuiltinType::LongLong:
2667 return UnsignedLongLongTy;
2668 default:
2669 assert(0 && "Unexpected signed integer type");
2670 return QualType();
2671 }
2672}
2673
2674
2675//===----------------------------------------------------------------------===//
Chris Lattner5426bf62008-04-07 07:01:58 +00002676// Serialization Support
2677//===----------------------------------------------------------------------===//
2678
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002679/// Emit - Serialize an ASTContext object to Bitcode.
2680void ASTContext::Emit(llvm::Serializer& S) const {
Ted Kremeneke7d07d12008-06-04 15:55:15 +00002681 S.Emit(LangOpts);
Ted Kremenek54513502007-10-31 20:00:03 +00002682 S.EmitRef(SourceMgr);
2683 S.EmitRef(Target);
2684 S.EmitRef(Idents);
2685 S.EmitRef(Selectors);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002686
Ted Kremenekfee04522007-10-31 22:44:07 +00002687 // Emit the size of the type vector so that we can reserve that size
2688 // when we reconstitute the ASTContext object.
Ted Kremeneka4559c32007-11-06 22:26:16 +00002689 S.EmitInt(Types.size());
2690
Ted Kremenek03ed4402007-11-13 22:02:55 +00002691 for (std::vector<Type*>::const_iterator I=Types.begin(), E=Types.end();
2692 I!=E;++I)
2693 (*I)->Emit(S);
Ted Kremeneka4559c32007-11-06 22:26:16 +00002694
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00002695 S.EmitOwnedPtr(TUDecl);
2696
Ted Kremeneka9a4a242007-11-01 18:11:32 +00002697 // FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
Ted Kremenek7192f8e2007-10-31 17:10:13 +00002698}
2699
Ted Kremenek0f84c002007-11-13 00:25:37 +00002700ASTContext* ASTContext::Create(llvm::Deserializer& D) {
Ted Kremeneke7d07d12008-06-04 15:55:15 +00002701
2702 // Read the language options.
2703 LangOptions LOpts;
2704 LOpts.Read(D);
2705
Ted Kremenekfee04522007-10-31 22:44:07 +00002706 SourceManager &SM = D.ReadRef<SourceManager>();
2707 TargetInfo &t = D.ReadRef<TargetInfo>();
2708 IdentifierTable &idents = D.ReadRef<IdentifierTable>();
2709 SelectorTable &sels = D.ReadRef<SelectorTable>();
Chris Lattner0ed844b2008-04-04 06:12:32 +00002710
Ted Kremenekfee04522007-10-31 22:44:07 +00002711 unsigned size_reserve = D.ReadInt();
2712
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002713 ASTContext* A = new ASTContext(LOpts, SM, t, idents, sels,
2714 size_reserve);
Ted Kremenekfee04522007-10-31 22:44:07 +00002715
Ted Kremenek03ed4402007-11-13 22:02:55 +00002716 for (unsigned i = 0; i < size_reserve; ++i)
2717 Type::Create(*A,i,D);
Chris Lattner0ed844b2008-04-04 06:12:32 +00002718
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00002719 A->TUDecl = cast<TranslationUnitDecl>(D.ReadOwnedPtr<Decl>(*A));
2720
Ted Kremeneka9a4a242007-11-01 18:11:32 +00002721 // FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
Ted Kremenekfee04522007-10-31 22:44:07 +00002722
2723 return A;
2724}