blob: b3675203d7fa49b045e4bcbac3b6fc4fef62fd2c [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Type.cpp - Type representation and manipulation ------------------===//
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 type-related functionality.
11//
12//===----------------------------------------------------------------------===//
13
Nuno Lopesb381aac2008-09-01 11:33:04 +000014#include "clang/AST/ASTContext.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "clang/AST/Type.h"
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +000016#include "clang/AST/DeclCXX.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000018#include "clang/AST/DeclTemplate.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/AST/Expr.h"
Douglas Gregord249e1d1f2009-05-29 20:38:28 +000020#include "clang/AST/PrettyPrinter.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "llvm/ADT/StringExtras.h"
Douglas Gregorbad35182009-03-19 03:51:16 +000022#include "llvm/Support/raw_ostream.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
Douglas Gregorf5403052010-03-30 18:56:13 +000025#ifndef NDEBUG
26llvm::Statistic clang::objc_type_checks =
27 { "clang", "Number of checks for Objective-C type nodes", 0, 0 };
28llvm::Statistic clang::cxx_type_checks =
29 { "clang", "Number of checks for C++ type nodes", 0, 0 };
30#endif
31
John McCallbf1cc052009-09-29 23:03:30 +000032bool QualType::isConstant(QualType T, ASTContext &Ctx) {
33 if (T.isConstQualified())
Nuno Lopesb381aac2008-09-01 11:33:04 +000034 return true;
35
John McCallbf1cc052009-09-29 23:03:30 +000036 if (const ArrayType *AT = Ctx.getAsArrayType(T))
37 return AT->getElementType().isConstant(Ctx);
Nuno Lopesb381aac2008-09-01 11:33:04 +000038
39 return false;
40}
41
Ted Kremenek566c2ba2009-01-19 21:31:22 +000042void Type::Destroy(ASTContext& C) {
43 this->~Type();
Steve Naroff3e970492009-01-27 21:25:57 +000044 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000045}
46
47void VariableArrayType::Destroy(ASTContext& C) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +000048 if (SizeExpr)
49 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000050 this->~VariableArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000051 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000052}
Reid Spencer5f016e22007-07-11 17:01:13 +000053
Douglas Gregor898574e2008-12-05 23:32:09 +000054void DependentSizedArrayType::Destroy(ASTContext& C) {
Argyrios Kyrtzidise7f38402009-07-18 21:18:10 +000055 // FIXME: Resource contention like in ConstantArrayWithExprType ?
56 // May crash, depending on platform or a particular build.
57 // SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000058 this->~DependentSizedArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000059 C.Deallocate(this);
Douglas Gregor898574e2008-12-05 23:32:09 +000060}
Chris Lattnerc63a1f22008-08-04 07:31:14 +000061
Mike Stump1eb44332009-09-09 15:08:12 +000062void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregor04d4bee2009-07-31 00:23:35 +000063 ASTContext &Context,
64 QualType ET,
65 ArraySizeModifier SizeMod,
66 unsigned TypeQuals,
67 Expr *E) {
68 ID.AddPointer(ET.getAsOpaquePtr());
69 ID.AddInteger(SizeMod);
70 ID.AddInteger(TypeQuals);
71 E->Profile(ID, Context, true);
72}
73
Mike Stump1eb44332009-09-09 15:08:12 +000074void
75DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregor2ec09f12009-07-31 03:54:25 +000076 ASTContext &Context,
77 QualType ElementType, Expr *SizeExpr) {
78 ID.AddPointer(ElementType.getAsOpaquePtr());
79 SizeExpr->Profile(ID, Context, true);
80}
81
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000082void DependentSizedExtVectorType::Destroy(ASTContext& C) {
Douglas Gregorbd1099e2009-07-23 16:36:45 +000083 // FIXME: Deallocate size expression, once we're cloning properly.
84// if (SizeExpr)
85// SizeExpr->Destroy(C);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000086 this->~DependentSizedExtVectorType();
87 C.Deallocate(this);
88}
89
Chris Lattnerc63a1f22008-08-04 07:31:14 +000090/// getArrayElementTypeNoTypeQual - If this is an array type, return the
91/// element type of the array, potentially with type qualifiers missing.
92/// This method should never be used when type qualifiers are meaningful.
93const Type *Type::getArrayElementTypeNoTypeQual() const {
94 // If this is directly an array type, return it.
95 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
96 return ATy->getElementType().getTypePtr();
Mike Stump1eb44332009-09-09 15:08:12 +000097
Chris Lattnerc63a1f22008-08-04 07:31:14 +000098 // If the canonical form of this type isn't the right kind, reject it.
John McCall0953e762009-09-24 19:53:00 +000099 if (!isa<ArrayType>(CanonicalType))
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000100 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000101
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000102 // If this is a typedef for an array type, strip the typedef off without
103 // losing all typedef information.
John McCallbf1cc052009-09-29 23:03:30 +0000104 return cast<ArrayType>(getUnqualifiedDesugaredType())
105 ->getElementType().getTypePtr();
Chris Lattner2fa8c252009-03-17 22:51:02 +0000106}
107
Douglas Gregorfa1a06e2009-11-17 00:55:50 +0000108/// \brief Retrieve the unqualified variant of the given type, removing as
109/// little sugar as possible.
110///
111/// This routine looks through various kinds of sugar to find the
112/// least-desuraged type that is unqualified. For example, given:
113///
114/// \code
115/// typedef int Integer;
116/// typedef const Integer CInteger;
117/// typedef CInteger DifferenceType;
118/// \endcode
119///
120/// Executing \c getUnqualifiedTypeSlow() on the type \c DifferenceType will
121/// desugar until we hit the type \c Integer, which has no qualifiers on it.
122QualType QualType::getUnqualifiedTypeSlow() const {
123 QualType Cur = *this;
124 while (true) {
125 if (!Cur.hasQualifiers())
126 return Cur;
127
128 const Type *CurTy = Cur.getTypePtr();
129 switch (CurTy->getTypeClass()) {
130#define ABSTRACT_TYPE(Class, Parent)
131#define TYPE(Class, Parent) \
132 case Type::Class: { \
133 const Class##Type *Ty = cast<Class##Type>(CurTy); \
134 if (!Ty->isSugared()) \
135 return Cur.getLocalUnqualifiedType(); \
136 Cur = Ty->desugar(); \
137 break; \
138 }
139#include "clang/AST/TypeNodes.def"
140 }
141 }
142
143 return Cur.getUnqualifiedType();
144}
145
Chris Lattner2fa8c252009-03-17 22:51:02 +0000146/// getDesugaredType - Return the specified type with any "sugar" removed from
147/// the type. This takes off typedefs, typeof's etc. If the outer level of
148/// the type is already concrete, it returns it unmodified. This is similar
149/// to getting the canonical type, but it doesn't remove *all* typedefs. For
150/// example, it returns "T*" as "T*", (not as "int*"), because the pointer is
151/// concrete.
John McCallbf1cc052009-09-29 23:03:30 +0000152QualType QualType::getDesugaredType(QualType T) {
John McCall0953e762009-09-24 19:53:00 +0000153 QualifierCollector Qs;
John McCallbf1cc052009-09-29 23:03:30 +0000154
155 QualType Cur = T;
156 while (true) {
157 const Type *CurTy = Qs.strip(Cur);
158 switch (CurTy->getTypeClass()) {
159#define ABSTRACT_TYPE(Class, Parent)
160#define TYPE(Class, Parent) \
161 case Type::Class: { \
162 const Class##Type *Ty = cast<Class##Type>(CurTy); \
163 if (!Ty->isSugared()) \
164 return Qs.apply(Cur); \
165 Cur = Ty->desugar(); \
166 break; \
167 }
168#include "clang/AST/TypeNodes.def"
169 }
170 }
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000171}
172
John McCallbf1cc052009-09-29 23:03:30 +0000173/// getUnqualifiedDesugaredType - Pull any qualifiers and syntactic
174/// sugar off the given type. This should produce an object of the
175/// same dynamic type as the canonical type.
176const Type *Type::getUnqualifiedDesugaredType() const {
177 const Type *Cur = this;
Douglas Gregor969c6892009-04-01 15:47:24 +0000178
John McCallbf1cc052009-09-29 23:03:30 +0000179 while (true) {
180 switch (Cur->getTypeClass()) {
181#define ABSTRACT_TYPE(Class, Parent)
182#define TYPE(Class, Parent) \
183 case Class: { \
184 const Class##Type *Ty = cast<Class##Type>(Cur); \
185 if (!Ty->isSugared()) return Cur; \
186 Cur = Ty->desugar().getTypePtr(); \
187 break; \
188 }
189#include "clang/AST/TypeNodes.def"
190 }
Douglas Gregorc45c2322009-03-31 00:43:58 +0000191 }
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000192}
193
Reid Spencer5f016e22007-07-11 17:01:13 +0000194/// isVoidType - Helper method to determine if this is the 'void' type.
195bool Type::isVoidType() const {
196 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
197 return BT->getKind() == BuiltinType::Void;
198 return false;
199}
200
201bool Type::isObjectType() const {
Douglas Gregorbad0e652009-03-24 20:32:41 +0000202 if (isa<FunctionType>(CanonicalType) || isa<ReferenceType>(CanonicalType) ||
203 isa<IncompleteArrayType>(CanonicalType) || isVoidType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 return false;
Douglas Gregorbad0e652009-03-24 20:32:41 +0000205 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000206}
207
208bool Type::isDerivedType() const {
209 switch (CanonicalType->getTypeClass()) {
210 case Pointer:
Steve Narofffb22d962007-08-30 01:06:46 +0000211 case VariableArray:
212 case ConstantArray:
Eli Friedmanc5773c42008-02-15 18:16:39 +0000213 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000214 case FunctionProto:
215 case FunctionNoProto:
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000216 case LValueReference:
217 case RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +0000218 case Record:
Reid Spencer5f016e22007-07-11 17:01:13 +0000219 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000220 default:
221 return false;
222 }
223}
224
Chris Lattner99dc9142008-04-13 18:59:07 +0000225bool Type::isClassType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000226 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000227 return RT->getDecl()->isClass();
Chris Lattner99dc9142008-04-13 18:59:07 +0000228 return false;
229}
Chris Lattnerc8629632007-07-31 19:29:30 +0000230bool Type::isStructureType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000231 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000232 return RT->getDecl()->isStruct();
Chris Lattnerc8629632007-07-31 19:29:30 +0000233 return false;
234}
Steve Naroff7154a772009-07-01 14:36:47 +0000235bool Type::isVoidPointerType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000236 if (const PointerType *PT = getAs<PointerType>())
Steve Naroff7154a772009-07-01 14:36:47 +0000237 return PT->getPointeeType()->isVoidType();
238 return false;
239}
240
Chris Lattnerc8629632007-07-31 19:29:30 +0000241bool Type::isUnionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000242 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000243 return RT->getDecl()->isUnion();
Chris Lattnerc8629632007-07-31 19:29:30 +0000244 return false;
245}
Chris Lattnerc8629632007-07-31 19:29:30 +0000246
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000247bool Type::isComplexType() const {
Steve Naroff02f62a92008-01-15 19:36:10 +0000248 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
249 return CT->getElementType()->isFloatingType();
250 return false;
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000251}
252
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000253bool Type::isComplexIntegerType() const {
254 // Check for GCC complex integer extension.
John McCall0953e762009-09-24 19:53:00 +0000255 return getAsComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000256}
257
258const ComplexType *Type::getAsComplexIntegerType() const {
John McCall0953e762009-09-24 19:53:00 +0000259 if (const ComplexType *Complex = getAs<ComplexType>())
260 if (Complex->getElementType()->isIntegerType())
261 return Complex;
262 return 0;
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000263}
264
Steve Naroff14108da2009-07-10 23:34:53 +0000265QualType Type::getPointeeType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000266 if (const PointerType *PT = getAs<PointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000267 return PT->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +0000268 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000269 return OPT->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000270 if (const BlockPointerType *BPT = getAs<BlockPointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000271 return BPT->getPointeeType();
Mike Stump9c212892009-11-03 19:03:17 +0000272 if (const ReferenceType *RT = getAs<ReferenceType>())
273 return RT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +0000274 return QualType();
275}
Chris Lattnerb77792e2008-07-26 22:17:49 +0000276
Eli Friedmand3f2f792008-02-17 00:59:11 +0000277/// isVariablyModifiedType (C99 6.7.5p3) - Return true for variable length
278/// array types and types that contain variable array types in their
279/// declarator
Steve Naroffd7444aa2007-08-31 17:20:07 +0000280bool Type::isVariablyModifiedType() const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000281 // A VLA is a variably modified type.
282 if (isVariableArrayType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000283 return true;
284
285 // An array can contain a variably modified type
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000286 if (const Type *T = getArrayElementTypeNoTypeQual())
287 return T->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000288
Sebastian Redlf30208a2009-01-24 21:16:55 +0000289 // A pointer can point to a variably modified type.
290 // Also, C++ references and member pointers can point to a variably modified
291 // type, where VLAs appear as an extension to C++, and should be treated
292 // correctly.
Ted Kremenek6217b802009-07-29 21:53:49 +0000293 if (const PointerType *PT = getAs<PointerType>())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000294 return PT->getPointeeType()->isVariablyModifiedType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000295 if (const ReferenceType *RT = getAs<ReferenceType>())
Daniel Dunbar68694ad2009-02-26 19:54:52 +0000296 return RT->getPointeeType()->isVariablyModifiedType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000297 if (const MemberPointerType *PT = getAs<MemberPointerType>())
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000298 return PT->getPointeeType()->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000299
300 // A function can return a variably modified type
301 // This one isn't completely obvious, but it follows from the
302 // definition in C99 6.7.5p3. Because of this rule, it's
303 // illegal to declare a function returning a variably modified type.
John McCall183700f2009-09-21 23:43:11 +0000304 if (const FunctionType *FT = getAs<FunctionType>())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000305 return FT->getResultType()->isVariablyModifiedType();
306
Steve Naroffd7444aa2007-08-31 17:20:07 +0000307 return false;
308}
309
Chris Lattnerc8629632007-07-31 19:29:30 +0000310const RecordType *Type::getAsStructureType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000311 // If this is directly a structure type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000312 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000313 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000314 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000315 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000316
317 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000318 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000319 if (!RT->getDecl()->isStruct())
Chris Lattnerdea61462007-10-29 03:41:11 +0000320 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Chris Lattnerdea61462007-10-29 03:41:11 +0000322 // If this is a typedef for a structure type, strip the typedef off without
323 // losing all typedef information.
John McCallbf1cc052009-09-29 23:03:30 +0000324 return cast<RecordType>(getUnqualifiedDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000325 }
Steve Naroff7064f5c2007-07-26 18:32:01 +0000326 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000327}
328
Mike Stump1eb44332009-09-09 15:08:12 +0000329const RecordType *Type::getAsUnionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000330 // If this is directly a union type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000331 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000332 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000333 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000334 }
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Chris Lattnerdea61462007-10-29 03:41:11 +0000336 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000337 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000338 if (!RT->getDecl()->isUnion())
Chris Lattnerdea61462007-10-29 03:41:11 +0000339 return 0;
340
341 // If this is a typedef for a union type, strip the typedef off without
342 // losing all typedef information.
John McCallbf1cc052009-09-29 23:03:30 +0000343 return cast<RecordType>(getUnqualifiedDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000344 }
Mike Stump1eb44332009-09-09 15:08:12 +0000345
Steve Naroff7064f5c2007-07-26 18:32:01 +0000346 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000347}
348
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000349ObjCInterfaceType::ObjCInterfaceType(QualType Canonical,
Ted Kremenek71842cc2010-01-21 19:22:34 +0000350 ObjCInterfaceDecl *D,
351 ObjCProtocolDecl **Protos, unsigned NumP) :
352 Type(ObjCInterface, Canonical, /*Dependent=*/false),
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000353 Decl(D), NumProtocols(NumP)
Ted Kremenek71842cc2010-01-21 19:22:34 +0000354{
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000355 if (NumProtocols)
356 memcpy(reinterpret_cast<ObjCProtocolDecl**>(this + 1), Protos,
357 NumProtocols * sizeof(*Protos));
Ted Kremenek71842cc2010-01-21 19:22:34 +0000358}
359
360void ObjCInterfaceType::Destroy(ASTContext& C) {
Ted Kremenek71842cc2010-01-21 19:22:34 +0000361 this->~ObjCInterfaceType();
362 C.Deallocate(this);
363}
364
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000365const ObjCInterfaceType *Type::getAsObjCQualifiedInterfaceType() const {
366 // There is no sugar for ObjCInterfaceType's, just return the canonical
367 // type pointer if it is the right class. There is no typedef information to
368 // return and these cannot be Address-space qualified.
John McCall183700f2009-09-21 23:43:11 +0000369 if (const ObjCInterfaceType *OIT = getAs<ObjCInterfaceType>())
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000370 if (OIT->getNumProtocols())
371 return OIT;
372 return 0;
373}
374
375bool Type::isObjCQualifiedInterfaceType() const {
Steve Naroffe61ad0b2009-07-18 15:38:31 +0000376 return getAsObjCQualifiedInterfaceType() != 0;
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000377}
378
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000379ObjCObjectPointerType::ObjCObjectPointerType(QualType Canonical, QualType T,
Ted Kremenek71842cc2010-01-21 19:22:34 +0000380 ObjCProtocolDecl **Protos,
381 unsigned NumP) :
382 Type(ObjCObjectPointer, Canonical, /*Dependent=*/false),
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000383 PointeeType(T), NumProtocols(NumP)
Ted Kremenek71842cc2010-01-21 19:22:34 +0000384{
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000385 if (NumProtocols)
386 memcpy(reinterpret_cast<ObjCProtocolDecl **>(this + 1), Protos,
387 NumProtocols * sizeof(*Protos));
Ted Kremenek71842cc2010-01-21 19:22:34 +0000388}
389
390void ObjCObjectPointerType::Destroy(ASTContext& C) {
Ted Kremenek71842cc2010-01-21 19:22:34 +0000391 this->~ObjCObjectPointerType();
392 C.Deallocate(this);
393}
394
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000395const ObjCObjectPointerType *Type::getAsObjCQualifiedIdType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000396 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
397 // type pointer if it is the right class.
John McCall183700f2009-09-21 23:43:11 +0000398 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000399 if (OPT->isObjCQualifiedIdType())
400 return OPT;
401 }
402 return 0;
Chris Lattner368eefa2008-04-07 00:27:04 +0000403}
404
Steve Naroff14108da2009-07-10 23:34:53 +0000405const ObjCObjectPointerType *Type::getAsObjCInterfacePointerType() const {
John McCall183700f2009-09-21 23:43:11 +0000406 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +0000407 if (OPT->getInterfaceType())
408 return OPT;
409 }
410 return 0;
411}
412
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +0000413const CXXRecordDecl *Type::getCXXRecordDeclForPointerType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000414 if (const PointerType *PT = getAs<PointerType>())
415 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>())
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +0000416 return dyn_cast<CXXRecordDecl>(RT->getDecl());
417 return 0;
418}
419
Reid Spencer5f016e22007-07-11 17:01:13 +0000420bool Type::isIntegerType() const {
421 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
422 return BT->getKind() >= BuiltinType::Bool &&
Chris Lattner2df9ced2009-04-30 02:43:43 +0000423 BT->getKind() <= BuiltinType::Int128;
Reid Spencer5f016e22007-07-11 17:01:13 +0000424 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000425 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000426 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000427 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000428 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000429 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
430 return VT->getElementType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 return false;
432}
433
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000434bool Type::isIntegralType() const {
435 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
436 return BT->getKind() >= BuiltinType::Bool &&
Anders Carlssonf5f7d862009-12-29 07:07:36 +0000437 BT->getKind() <= BuiltinType::Int128;
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000438 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000439 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
440 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000441 // FIXME: In C++, enum types are never integral.
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000442 return false;
443}
444
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000445bool Type::isEnumeralType() const {
446 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000447 return TT->getDecl()->isEnum();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000448 return false;
449}
450
451bool Type::isBooleanType() const {
452 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
453 return BT->getKind() == BuiltinType::Bool;
454 return false;
455}
456
457bool Type::isCharType() const {
458 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
459 return BT->getKind() == BuiltinType::Char_U ||
460 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000461 BT->getKind() == BuiltinType::Char_S ||
462 BT->getKind() == BuiltinType::SChar;
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000463 return false;
464}
465
Douglas Gregor77a52232008-09-12 00:47:35 +0000466bool Type::isWideCharType() const {
467 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
468 return BT->getKind() == BuiltinType::WChar;
Douglas Gregor77a52232008-09-12 00:47:35 +0000469 return false;
470}
471
Douglas Gregor20093b42009-12-09 23:02:17 +0000472/// \brief Determine whether this type is any of the built-in character
473/// types.
474bool Type::isAnyCharacterType() const {
475 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
476 return (BT->getKind() >= BuiltinType::Char_U &&
477 BT->getKind() <= BuiltinType::Char32) ||
478 (BT->getKind() >= BuiltinType::Char_S &&
479 BT->getKind() <= BuiltinType::WChar);
480
481 return false;
482}
483
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000484/// isSignedIntegerType - Return true if this is an integer type that is
485/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
486/// an enum decl which has a signed representation, or a vector of signed
487/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000488bool Type::isSignedIntegerType() const {
489 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
490 return BT->getKind() >= BuiltinType::Char_S &&
Anders Carlssonf5f7d862009-12-29 07:07:36 +0000491 BT->getKind() <= BuiltinType::Int128;
Reid Spencer5f016e22007-07-11 17:01:13 +0000492 }
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Chris Lattner37c1b782008-04-06 22:29:16 +0000494 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
495 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Steve Naroffc63b96a2007-07-12 21:46:55 +0000497 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
498 return VT->getElementType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000499 return false;
500}
501
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000502/// isUnsignedIntegerType - Return true if this is an integer type that is
503/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
504/// decl which has an unsigned representation, or a vector of unsigned integer
505/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000506bool Type::isUnsignedIntegerType() const {
507 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
508 return BT->getKind() >= BuiltinType::Bool &&
Anders Carlsson1c03ca32009-11-09 17:34:18 +0000509 BT->getKind() <= BuiltinType::UInt128;
Reid Spencer5f016e22007-07-11 17:01:13 +0000510 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000511
Chris Lattner37c1b782008-04-06 22:29:16 +0000512 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
513 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000514
Steve Naroffc63b96a2007-07-12 21:46:55 +0000515 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
516 return VT->getElementType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000517 return false;
518}
519
520bool Type::isFloatingType() const {
521 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
522 return BT->getKind() >= BuiltinType::Float &&
523 BT->getKind() <= BuiltinType::LongDouble;
524 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000525 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000526 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
527 return VT->getElementType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000528 return false;
529}
530
531bool Type::isRealFloatingType() const {
532 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
John McCall680523a2009-11-07 03:30:10 +0000533 return BT->isFloatingPoint();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000534 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
535 return VT->getElementType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000536 return false;
537}
538
539bool Type::isRealType() const {
540 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
541 return BT->getKind() >= BuiltinType::Bool &&
542 BT->getKind() <= BuiltinType::LongDouble;
543 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000544 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000545 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
546 return VT->getElementType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000547 return false;
548}
549
Reid Spencer5f016e22007-07-11 17:01:13 +0000550bool Type::isArithmeticType() const {
551 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000552 return BT->getKind() >= BuiltinType::Bool &&
553 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000554 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
555 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
556 // If a body isn't seen by the time we get here, return false.
557 return ET->getDecl()->isDefinition();
Reid Spencer5f016e22007-07-11 17:01:13 +0000558 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
559}
560
561bool Type::isScalarType() const {
562 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
563 return BT->getKind() != BuiltinType::Void;
564 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000565 // Enums are scalar types, but only if they are defined. Incomplete enums
566 // are not treated as scalar types.
567 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000568 return true;
569 return false;
570 }
Steve Naroff5618bd42008-08-27 16:04:49 +0000571 return isa<PointerType>(CanonicalType) ||
572 isa<BlockPointerType>(CanonicalType) ||
Sebastian Redlf30208a2009-01-24 21:16:55 +0000573 isa<MemberPointerType>(CanonicalType) ||
Steve Naroff5618bd42008-08-27 16:04:49 +0000574 isa<ComplexType>(CanonicalType) ||
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000575 isa<ObjCObjectPointerType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000576}
577
Douglas Gregord7eb8462009-01-30 17:31:00 +0000578/// \brief Determines whether the type is a C++ aggregate type or C
579/// aggregate or union type.
580///
581/// An aggregate type is an array or a class type (struct, union, or
582/// class) that has no user-declared constructors, no private or
583/// protected non-static data members, no base classes, and no virtual
584/// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type
585/// subsumes the notion of C aggregates (C99 6.2.5p21) because it also
586/// includes union types.
Reid Spencer5f016e22007-07-11 17:01:13 +0000587bool Type::isAggregateType() const {
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000588 if (const RecordType *Record = dyn_cast<RecordType>(CanonicalType)) {
589 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl()))
590 return ClassDecl->isAggregate();
591
Douglas Gregord7eb8462009-01-30 17:31:00 +0000592 return true;
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000593 }
594
Eli Friedmanc5773c42008-02-15 18:16:39 +0000595 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000596}
597
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000598/// isConstantSizeType - Return true if this is not a variable sized type,
599/// according to the rules of C99 6.7.5p3. It is not legal to call this on
Douglas Gregor898574e2008-12-05 23:32:09 +0000600/// incomplete types or dependent types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000601bool Type::isConstantSizeType() const {
Chris Lattnerd52a4572007-12-18 07:03:30 +0000602 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Douglas Gregor898574e2008-12-05 23:32:09 +0000603 assert(!isDependentType() && "This doesn't make sense for dependent types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000604 // The VAT must have a size, as it is known to be complete.
605 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000606}
607
608/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
609/// - a type that can describe objects, but which lacks information needed to
610/// determine its size.
Mike Stump1eb44332009-09-09 15:08:12 +0000611bool Type::isIncompleteType() const {
612 switch (CanonicalType->getTypeClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000613 default: return false;
614 case Builtin:
615 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
616 // be completed.
617 return isVoidType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000618 case Record:
Douglas Gregor72564e72009-02-26 23:50:07 +0000619 case Enum:
Reid Spencer5f016e22007-07-11 17:01:13 +0000620 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
621 // forward declaration, but not a full definition (C99 6.2.5p22).
622 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Sebastian Redl923d56d2009-11-05 15:52:31 +0000623 case ConstantArray:
624 // An array is incomplete if its element type is incomplete
625 // (C++ [dcl.array]p1).
626 // We don't handle variable arrays (they're not allowed in C++) or
627 // dependent-sized arrays (dependent types are never treated as incomplete).
628 return cast<ArrayType>(CanonicalType)->getElementType()->isIncompleteType();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000629 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000630 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000631 return true;
Chris Lattner1efaa952009-04-24 00:30:45 +0000632 case ObjCInterface:
Chris Lattner1efaa952009-04-24 00:30:45 +0000633 // ObjC interfaces are incomplete if they are @class, not @interface.
634 return cast<ObjCInterfaceType>(this)->getDecl()->isForwardDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000635 }
636}
637
Sebastian Redl64b45f72009-01-05 20:52:13 +0000638/// isPODType - Return true if this is a plain-old-data type (C++ 3.9p10)
639bool Type::isPODType() const {
640 // The compiler shouldn't query this for incomplete types, but the user might.
641 // We return false for that case.
642 if (isIncompleteType())
643 return false;
644
645 switch (CanonicalType->getTypeClass()) {
646 // Everything not explicitly mentioned is not POD.
647 default: return false;
Sebastian Redl64b45f72009-01-05 20:52:13 +0000648 case VariableArray:
649 case ConstantArray:
650 // IncompleteArray is caught by isIncompleteType() above.
651 return cast<ArrayType>(CanonicalType)->getElementType()->isPODType();
652
653 case Builtin:
654 case Complex:
655 case Pointer:
Sebastian Redlf30208a2009-01-24 21:16:55 +0000656 case MemberPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000657 case Vector:
658 case ExtVector:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000659 case ObjCObjectPointer:
Fariborz Jahanian2263f822010-03-09 18:34:52 +0000660 case BlockPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000661 return true;
662
Douglas Gregor72564e72009-02-26 23:50:07 +0000663 case Enum:
664 return true;
665
666 case Record:
Mike Stump1eb44332009-09-09 15:08:12 +0000667 if (CXXRecordDecl *ClassDecl
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000668 = dyn_cast<CXXRecordDecl>(cast<RecordType>(CanonicalType)->getDecl()))
669 return ClassDecl->isPOD();
670
Sebastian Redl64b45f72009-01-05 20:52:13 +0000671 // C struct/union is POD.
672 return true;
673 }
674}
675
Sebastian Redlccf43502009-12-03 00:13:20 +0000676bool Type::isLiteralType() const {
677 if (isIncompleteType())
678 return false;
679
680 // C++0x [basic.types]p10:
681 // A type is a literal type if it is:
682 switch (CanonicalType->getTypeClass()) {
683 // We're whitelisting
684 default: return false;
685
686 // -- a scalar type
687 case Builtin:
688 case Complex:
689 case Pointer:
690 case MemberPointer:
691 case Vector:
692 case ExtVector:
693 case ObjCObjectPointer:
694 case Enum:
695 return true;
696
697 // -- a class type with ...
698 case Record:
699 // FIXME: Do the tests
700 return false;
701
702 // -- an array of literal type
703 // Extension: variable arrays cannot be literal types, since they're
704 // runtime-sized.
705 case ConstantArray:
706 return cast<ArrayType>(CanonicalType)->getElementType()->isLiteralType();
707 }
708}
709
Reid Spencer5f016e22007-07-11 17:01:13 +0000710bool Type::isPromotableIntegerType() const {
John McCall183700f2009-09-21 23:43:11 +0000711 if (const BuiltinType *BT = getAs<BuiltinType>())
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000712 switch (BT->getKind()) {
713 case BuiltinType::Bool:
714 case BuiltinType::Char_S:
715 case BuiltinType::Char_U:
716 case BuiltinType::SChar:
717 case BuiltinType::UChar:
718 case BuiltinType::Short:
719 case BuiltinType::UShort:
720 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000721 default:
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000722 return false;
723 }
Douglas Gregoraa74a1e2010-02-02 20:10:50 +0000724
725 // Enumerated types are promotable to their compatible integer types
726 // (C99 6.3.1.1) a.k.a. its underlying type (C++ [conv.prom]p2).
727 if (const EnumType *ET = getAs<EnumType>()){
728 if (this->isDependentType() || ET->getDecl()->getPromotionType().isNull())
729 return false;
730
731 const BuiltinType *BT
732 = ET->getDecl()->getPromotionType()->getAs<BuiltinType>();
733 return BT->getKind() == BuiltinType::Int
734 || BT->getKind() == BuiltinType::UInt;
735 }
736
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000737 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000738}
739
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000740bool Type::isNullPtrType() const {
John McCall183700f2009-09-21 23:43:11 +0000741 if (const BuiltinType *BT = getAs<BuiltinType>())
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000742 return BT->getKind() == BuiltinType::NullPtr;
743 return false;
744}
745
Eli Friedman22b61e92009-05-30 00:10:16 +0000746bool Type::isSpecifierType() const {
747 // Note that this intentionally does not use the canonical type.
748 switch (getTypeClass()) {
749 case Builtin:
750 case Record:
751 case Enum:
752 case Typedef:
Eli Friedmanc8f2c612009-05-30 01:45:29 +0000753 case Complex:
754 case TypeOfExpr:
755 case TypeOf:
756 case TemplateTypeParm:
John McCall49a832b2009-10-18 09:09:24 +0000757 case SubstTemplateTypeParm:
Eli Friedmanc8f2c612009-05-30 01:45:29 +0000758 case TemplateSpecialization:
759 case QualifiedName:
760 case Typename:
761 case ObjCInterface:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000762 case ObjCObjectPointer:
Douglas Gregor7c673952009-12-15 16:28:32 +0000763 case Elaborated:
Eli Friedman22b61e92009-05-30 00:10:16 +0000764 return true;
765 default:
766 return false;
767 }
768}
769
Argyrios Kyrtzidiscd01f172009-09-29 19:41:13 +0000770const char *Type::getTypeClassName() const {
771 switch (TC) {
772 default: assert(0 && "Type class not in TypeNodes.def!");
773#define ABSTRACT_TYPE(Derived, Base)
774#define TYPE(Derived, Base) case Derived: return #Derived;
775#include "clang/AST/TypeNodes.def"
776 }
777}
778
Chris Lattnere4f21422009-06-30 01:26:17 +0000779const char *BuiltinType::getName(const LangOptions &LO) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000780 switch (getKind()) {
781 default: assert(0 && "Unknown builtin type!");
782 case Void: return "void";
Chris Lattnere4f21422009-06-30 01:26:17 +0000783 case Bool: return LO.Bool ? "bool" : "_Bool";
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 case Char_S: return "char";
785 case Char_U: return "char";
786 case SChar: return "signed char";
787 case Short: return "short";
788 case Int: return "int";
789 case Long: return "long";
790 case LongLong: return "long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000791 case Int128: return "__int128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 case UChar: return "unsigned char";
793 case UShort: return "unsigned short";
794 case UInt: return "unsigned int";
795 case ULong: return "unsigned long";
796 case ULongLong: return "unsigned long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000797 case UInt128: return "__uint128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 case Float: return "float";
799 case Double: return "double";
800 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000801 case WChar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000802 case Char16: return "char16_t";
803 case Char32: return "char32_t";
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000804 case NullPtr: return "nullptr_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000805 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +0000806 case Dependent: return "<dependent type>";
Anders Carlsson6a75cd92009-07-11 00:34:39 +0000807 case UndeducedAuto: return "auto";
Steve Naroffde2e22d2009-07-15 18:40:39 +0000808 case ObjCId: return "id";
809 case ObjCClass: return "Class";
Fariborz Jahanian04765ac2009-11-23 18:04:25 +0000810 case ObjCSel: return "SEL";
Reid Spencer5f016e22007-07-11 17:01:13 +0000811 }
812}
813
John McCall04a67a62010-02-05 21:31:56 +0000814llvm::StringRef FunctionType::getNameForCallConv(CallingConv CC) {
815 switch (CC) {
816 case CC_Default: llvm_unreachable("no name for default cc");
817 default: return "";
818
819 case CC_C: return "cdecl";
820 case CC_X86StdCall: return "stdcall";
821 case CC_X86FastCall: return "fastcall";
822 }
823}
824
Douglas Gregor72564e72009-02-26 23:50:07 +0000825void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000826 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000827 unsigned NumArgs, bool isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +0000828 unsigned TypeQuals, bool hasExceptionSpec,
829 bool anyExceptionSpec, unsigned NumExceptions,
Rafael Espindola264ba482010-03-30 20:24:48 +0000830 exception_iterator Exs,
831 const FunctionType::ExtInfo &Info) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000832 ID.AddPointer(Result.getAsOpaquePtr());
833 for (unsigned i = 0; i != NumArgs; ++i)
834 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
835 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000836 ID.AddInteger(TypeQuals);
Sebastian Redl465226e2009-05-27 22:11:52 +0000837 ID.AddInteger(hasExceptionSpec);
838 if (hasExceptionSpec) {
839 ID.AddInteger(anyExceptionSpec);
Mike Stump1eb44332009-09-09 15:08:12 +0000840 for (unsigned i = 0; i != NumExceptions; ++i)
Sebastian Redl465226e2009-05-27 22:11:52 +0000841 ID.AddPointer(Exs[i].getAsOpaquePtr());
842 }
Rafael Espindola264ba482010-03-30 20:24:48 +0000843 ID.AddInteger(Info.getNoReturn());
844 ID.AddInteger(Info.getCC());
Reid Spencer5f016e22007-07-11 17:01:13 +0000845}
846
Douglas Gregor72564e72009-02-26 23:50:07 +0000847void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000848 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
Sebastian Redl465226e2009-05-27 22:11:52 +0000849 getTypeQuals(), hasExceptionSpec(), hasAnyExceptionSpec(),
Rafael Espindola264ba482010-03-30 20:24:48 +0000850 getNumExceptions(), exception_begin(),
851 getExtInfo());
Reid Spencer5f016e22007-07-11 17:01:13 +0000852}
853
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000854void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000855 QualType OIT,
856 ObjCProtocolDecl * const *protocols,
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000857 unsigned NumProtocols) {
Steve Naroff14108da2009-07-10 23:34:53 +0000858 ID.AddPointer(OIT.getAsOpaquePtr());
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000859 for (unsigned i = 0; i != NumProtocols; i++)
860 ID.AddPointer(protocols[i]);
861}
862
863void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID) {
Douglas Gregorfd6a0882010-02-08 22:59:26 +0000864 Profile(ID, getPointeeType(), qual_begin(), getNumProtocols());
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000865}
866
Chris Lattnera2c77672007-07-16 22:05:22 +0000867/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
868/// potentially looking through *all* consequtive typedefs. This returns the
869/// sum of the type qualifiers, so if you have:
870/// typedef const int A;
871/// typedef volatile A B;
872/// looking through the typedefs for B will give you "const volatile A".
873///
874QualType TypedefType::LookThroughTypedefs() const {
875 // Usually, there is only a single level of typedefs, be fast in that case.
876 QualType FirstType = getDecl()->getUnderlyingType();
877 if (!isa<TypedefType>(FirstType))
878 return FirstType;
Mike Stump1eb44332009-09-09 15:08:12 +0000879
Chris Lattnera2c77672007-07-16 22:05:22 +0000880 // Otherwise, do the fully general loop.
John McCall0953e762009-09-24 19:53:00 +0000881 QualifierCollector Qs;
882
883 QualType CurType;
Chris Lattnera2c77672007-07-16 22:05:22 +0000884 const TypedefType *TDT = this;
John McCall0953e762009-09-24 19:53:00 +0000885 do {
886 CurType = TDT->getDecl()->getUnderlyingType();
887 TDT = dyn_cast<TypedefType>(Qs.strip(CurType));
888 } while (TDT);
Mike Stump1eb44332009-09-09 15:08:12 +0000889
John McCall0953e762009-09-24 19:53:00 +0000890 return Qs.apply(CurType);
Chris Lattnera2c77672007-07-16 22:05:22 +0000891}
Reid Spencer5f016e22007-07-11 17:01:13 +0000892
John McCallbf1cc052009-09-29 23:03:30 +0000893QualType TypedefType::desugar() const {
894 return getDecl()->getUnderlyingType();
895}
896
Douglas Gregor72564e72009-02-26 23:50:07 +0000897TypeOfExprType::TypeOfExprType(Expr *E, QualType can)
898 : Type(TypeOfExpr, can, E->isTypeDependent()), TOExpr(E) {
Douglas Gregor898574e2008-12-05 23:32:09 +0000899}
900
John McCallbf1cc052009-09-29 23:03:30 +0000901QualType TypeOfExprType::desugar() const {
902 return getUnderlyingExpr()->getType();
903}
904
Mike Stump1eb44332009-09-09 15:08:12 +0000905void DependentTypeOfExprType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregorb1975722009-07-30 23:18:24 +0000906 ASTContext &Context, Expr *E) {
907 E->Profile(ID, Context, true);
908}
909
Anders Carlsson563a03b2009-07-10 19:20:26 +0000910DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can)
Mike Stump1eb44332009-09-09 15:08:12 +0000911 : Type(Decltype, can, E->isTypeDependent()), E(E),
Anders Carlsson563a03b2009-07-10 19:20:26 +0000912 UnderlyingType(underlyingType) {
Anders Carlsson395b4752009-06-24 19:06:50 +0000913}
914
Douglas Gregor9d702ae2009-07-30 23:36:40 +0000915DependentDecltypeType::DependentDecltypeType(ASTContext &Context, Expr *E)
916 : DecltypeType(E, Context.DependentTy), Context(Context) { }
917
Mike Stump1eb44332009-09-09 15:08:12 +0000918void DependentDecltypeType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregor9d702ae2009-07-30 23:36:40 +0000919 ASTContext &Context, Expr *E) {
920 E->Profile(ID, Context, true);
921}
922
John McCall19c85762010-02-16 03:57:14 +0000923TagType::TagType(TypeClass TC, const TagDecl *D, QualType can)
924 : Type(TC, can, D->isDependentType()),
925 decl(const_cast<TagDecl*>(D), 0) {}
Douglas Gregor7da97d02009-05-10 22:57:19 +0000926
Chris Lattner2daa5df2008-04-06 22:04:54 +0000927bool RecordType::classof(const TagType *TT) {
928 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000929}
930
Chris Lattner2daa5df2008-04-06 22:04:54 +0000931bool EnumType::classof(const TagType *TT) {
932 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +0000933}
934
John McCall833ca992009-10-29 08:12:44 +0000935static bool isDependent(const TemplateArgument &Arg) {
936 switch (Arg.getKind()) {
937 case TemplateArgument::Null:
938 assert(false && "Should not have a NULL template argument");
939 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000940
John McCall833ca992009-10-29 08:12:44 +0000941 case TemplateArgument::Type:
942 return Arg.getAsType()->isDependentType();
Mike Stump1eb44332009-09-09 15:08:12 +0000943
Douglas Gregor788cd062009-11-11 01:00:40 +0000944 case TemplateArgument::Template:
945 return Arg.getAsTemplate().isDependent();
946
John McCall833ca992009-10-29 08:12:44 +0000947 case TemplateArgument::Declaration:
948 case TemplateArgument::Integral:
949 // Never dependent
950 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000951
John McCall833ca992009-10-29 08:12:44 +0000952 case TemplateArgument::Expression:
953 return (Arg.getAsExpr()->isTypeDependent() ||
954 Arg.getAsExpr()->isValueDependent());
Mike Stump1eb44332009-09-09 15:08:12 +0000955
John McCall833ca992009-10-29 08:12:44 +0000956 case TemplateArgument::Pack:
957 assert(0 && "FIXME: Implement!");
958 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000959 }
Douglas Gregor40808ce2009-03-09 23:48:35 +0000960
961 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000962}
963
John McCall833ca992009-10-29 08:12:44 +0000964bool TemplateSpecializationType::
John McCalld5532b62009-11-23 01:53:49 +0000965anyDependentTemplateArguments(const TemplateArgumentListInfo &Args) {
966 return anyDependentTemplateArguments(Args.getArgumentArray(), Args.size());
967}
968
969bool TemplateSpecializationType::
John McCall833ca992009-10-29 08:12:44 +0000970anyDependentTemplateArguments(const TemplateArgumentLoc *Args, unsigned N) {
971 for (unsigned i = 0; i != N; ++i)
972 if (isDependent(Args[i].getArgument()))
973 return true;
974 return false;
975}
976
977bool TemplateSpecializationType::
978anyDependentTemplateArguments(const TemplateArgument *Args, unsigned N) {
979 for (unsigned i = 0; i != N; ++i)
980 if (isDependent(Args[i]))
981 return true;
982 return false;
983}
984
Douglas Gregor7532dc62009-03-30 22:58:21 +0000985TemplateSpecializationType::
Mike Stump1eb44332009-09-09 15:08:12 +0000986TemplateSpecializationType(ASTContext &Context, TemplateName T,
Douglas Gregor828e2262009-07-29 16:09:57 +0000987 const TemplateArgument *Args,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000988 unsigned NumArgs, QualType Canon)
Mike Stump1eb44332009-09-09 15:08:12 +0000989 : Type(TemplateSpecialization,
Douglas Gregor40808ce2009-03-09 23:48:35 +0000990 Canon.isNull()? QualType(this, 0) : Canon,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000991 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)),
Douglas Gregor828e2262009-07-29 16:09:57 +0000992 Context(Context),
Mike Stump1eb44332009-09-09 15:08:12 +0000993 Template(T), NumArgs(NumArgs) {
994 assert((!Canon.isNull() ||
Douglas Gregor7532dc62009-03-30 22:58:21 +0000995 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +0000996 "No canonical type for non-dependent class template specialization");
Douglas Gregor55f6b142009-02-09 18:46:07 +0000997
Mike Stump1eb44332009-09-09 15:08:12 +0000998 TemplateArgument *TemplateArgs
Douglas Gregor40808ce2009-03-09 23:48:35 +0000999 = reinterpret_cast<TemplateArgument *>(this + 1);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001000 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001001 new (&TemplateArgs[Arg]) TemplateArgument(Args[Arg]);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001002}
1003
Douglas Gregor7532dc62009-03-30 22:58:21 +00001004void TemplateSpecializationType::Destroy(ASTContext& C) {
Douglas Gregorba498172009-03-13 21:01:28 +00001005 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1006 // FIXME: Not all expressions get cloned, so we can't yet perform
1007 // this destruction.
1008 // if (Expr *E = getArg(Arg).getAsExpr())
1009 // E->Destroy(C);
1010 }
Douglas Gregor5908e9f2009-02-09 19:34:22 +00001011}
1012
Douglas Gregor7532dc62009-03-30 22:58:21 +00001013TemplateSpecializationType::iterator
1014TemplateSpecializationType::end() const {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001015 return begin() + getNumArgs();
Douglas Gregor55f6b142009-02-09 18:46:07 +00001016}
1017
Douglas Gregor40808ce2009-03-09 23:48:35 +00001018const TemplateArgument &
Douglas Gregor7532dc62009-03-30 22:58:21 +00001019TemplateSpecializationType::getArg(unsigned Idx) const {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001020 assert(Idx < getNumArgs() && "Template argument out of range");
1021 return getArgs()[Idx];
1022}
1023
Mike Stump1eb44332009-09-09 15:08:12 +00001024void
1025TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID,
1026 TemplateName T,
1027 const TemplateArgument *Args,
Douglas Gregor828e2262009-07-29 16:09:57 +00001028 unsigned NumArgs,
1029 ASTContext &Context) {
Douglas Gregor7532dc62009-03-30 22:58:21 +00001030 T.Profile(ID);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001031 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
Douglas Gregor828e2262009-07-29 16:09:57 +00001032 Args[Idx].Profile(ID, Context);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001033}
Anders Carlsson97e01792008-12-21 00:16:32 +00001034
John McCall0953e762009-09-24 19:53:00 +00001035QualType QualifierCollector::apply(QualType QT) const {
1036 if (!hasNonFastQualifiers())
1037 return QT.withFastQualifiers(getFastQualifiers());
Mike Stump1eb44332009-09-09 15:08:12 +00001038
John McCall0953e762009-09-24 19:53:00 +00001039 assert(Context && "extended qualifiers but no context!");
1040 return Context->getQualifiedType(QT, *this);
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001041}
1042
John McCall0953e762009-09-24 19:53:00 +00001043QualType QualifierCollector::apply(const Type *T) const {
1044 if (!hasNonFastQualifiers())
1045 return QualType(T, getFastQualifiers());
1046
1047 assert(Context && "extended qualifiers but no context!");
1048 return Context->getQualifiedType(T, *this);
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001049}
1050
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001051void ObjCInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
1052 const ObjCInterfaceDecl *Decl,
Douglas Gregorfd6a0882010-02-08 22:59:26 +00001053 ObjCProtocolDecl * const *protocols,
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001054 unsigned NumProtocols) {
1055 ID.AddPointer(Decl);
1056 for (unsigned i = 0; i != NumProtocols; i++)
1057 ID.AddPointer(protocols[i]);
1058}
1059
1060void ObjCInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
Douglas Gregorfd6a0882010-02-08 22:59:26 +00001061 Profile(ID, getDecl(), qual_begin(), getNumProtocols());
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001062}
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +00001063
1064Linkage Type::getLinkage() const {
1065 // C++ [basic.link]p8:
1066 // Names not covered by these rules have no linkage.
1067 if (this != CanonicalType.getTypePtr())
1068 return CanonicalType->getLinkage();
1069
1070 return NoLinkage;
1071}
1072
1073Linkage BuiltinType::getLinkage() const {
1074 // C++ [basic.link]p8:
1075 // A type is said to have linkage if and only if:
1076 // - it is a fundamental type (3.9.1); or
1077 return ExternalLinkage;
1078}
1079
1080Linkage TagType::getLinkage() const {
1081 // C++ [basic.link]p8:
1082 // - it is a class or enumeration type that is named (or has a name for
1083 // linkage purposes (7.1.3)) and the name has linkage; or
1084 // - it is a specialization of a class template (14); or
1085 return getDecl()->getLinkage();
1086}
1087
1088// C++ [basic.link]p8:
1089// - it is a compound type (3.9.2) other than a class or enumeration,
1090// compounded exclusively from types that have linkage; or
1091Linkage ComplexType::getLinkage() const {
1092 return ElementType->getLinkage();
1093}
1094
1095Linkage PointerType::getLinkage() const {
1096 return PointeeType->getLinkage();
1097}
1098
1099Linkage BlockPointerType::getLinkage() const {
1100 return PointeeType->getLinkage();
1101}
1102
1103Linkage ReferenceType::getLinkage() const {
1104 return PointeeType->getLinkage();
1105}
1106
1107Linkage MemberPointerType::getLinkage() const {
1108 return minLinkage(Class->getLinkage(), PointeeType->getLinkage());
1109}
1110
1111Linkage ArrayType::getLinkage() const {
1112 return ElementType->getLinkage();
1113}
1114
1115Linkage VectorType::getLinkage() const {
1116 return ElementType->getLinkage();
1117}
1118
1119Linkage FunctionNoProtoType::getLinkage() const {
1120 return getResultType()->getLinkage();
1121}
1122
1123Linkage FunctionProtoType::getLinkage() const {
1124 Linkage L = getResultType()->getLinkage();
1125 for (arg_type_iterator A = arg_type_begin(), AEnd = arg_type_end();
1126 A != AEnd; ++A)
1127 L = minLinkage(L, (*A)->getLinkage());
1128
1129 return L;
1130}
1131
1132Linkage ObjCInterfaceType::getLinkage() const {
1133 return ExternalLinkage;
1134}
1135
1136Linkage ObjCObjectPointerType::getLinkage() const {
1137 return ExternalLinkage;
1138}