blob: bf10b9ad70c695feee7a9bd60bf831ae2b108489 [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/StringExtras.h"
Ted Kremenek7360fda2008-09-18 23:09:54 +000021
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
Chris Lattner4bbce992009-01-12 00:10:42 +000024bool QualType::isConstant(ASTContext &Ctx) const {
Nuno Lopesb381aac2008-09-01 11:33:04 +000025 if (isConstQualified())
26 return true;
27
28 if (getTypePtr()->isArrayType())
29 return Ctx.getAsArrayType(*this)->getElementType().isConstant(Ctx);
30
31 return false;
32}
33
Ted Kremenek566c2ba2009-01-19 21:31:22 +000034void Type::Destroy(ASTContext& C) {
35 this->~Type();
Steve Naroff3e970492009-01-27 21:25:57 +000036 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000037}
38
39void VariableArrayType::Destroy(ASTContext& C) {
40 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000041 this->~VariableArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000042 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000043}
Reid Spencer5f016e22007-07-11 17:01:13 +000044
Douglas Gregor898574e2008-12-05 23:32:09 +000045void DependentSizedArrayType::Destroy(ASTContext& C) {
46 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000047 this->~DependentSizedArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000048 C.Deallocate(this);
Douglas Gregor898574e2008-12-05 23:32:09 +000049}
Chris Lattnerc63a1f22008-08-04 07:31:14 +000050
51/// getArrayElementTypeNoTypeQual - If this is an array type, return the
52/// element type of the array, potentially with type qualifiers missing.
53/// This method should never be used when type qualifiers are meaningful.
54const Type *Type::getArrayElementTypeNoTypeQual() const {
55 // If this is directly an array type, return it.
56 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
57 return ATy->getElementType().getTypePtr();
58
59 // If the canonical form of this type isn't the right kind, reject it.
60 if (!isa<ArrayType>(CanonicalType)) {
61 // Look through type qualifiers
62 if (ArrayType *AT = dyn_cast<ArrayType>(CanonicalType.getUnqualifiedType()))
63 return AT->getElementType().getTypePtr();
64 return 0;
65 }
66
67 // If this is a typedef for an array type, strip the typedef off without
68 // losing all typedef information.
69 return getDesugaredType()->getArrayElementTypeNoTypeQual();
70}
71
72/// getDesugaredType - Return the specified type with any "sugar" removed from
73/// type type. This takes off typedefs, typeof's etc. If the outer level of
74/// the type is already concrete, it returns it unmodified. This is similar
75/// to getting the canonical type, but it doesn't remove *all* typedefs. For
76/// example, it return "T*" as "T*", (not as "int*"), because the pointer is
77/// concrete.
78QualType Type::getDesugaredType() const {
79 if (const TypedefType *TDT = dyn_cast<TypedefType>(this))
80 return TDT->LookThroughTypedefs();
81 if (const TypeOfExpr *TOE = dyn_cast<TypeOfExpr>(this))
82 return TOE->getUnderlyingExpr()->getType();
83 if (const TypeOfType *TOT = dyn_cast<TypeOfType>(this))
84 return TOT->getUnderlyingType();
85 // FIXME: remove this cast.
86 return QualType(const_cast<Type*>(this), 0);
87}
88
Reid Spencer5f016e22007-07-11 17:01:13 +000089/// isVoidType - Helper method to determine if this is the 'void' type.
90bool Type::isVoidType() const {
91 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
92 return BT->getKind() == BuiltinType::Void;
Chris Lattner4bbce992009-01-12 00:10:42 +000093 if (const ASQualType *AS = dyn_cast<ASQualType>(CanonicalType))
94 return AS->getBaseType()->isVoidType();
Reid Spencer5f016e22007-07-11 17:01:13 +000095 return false;
96}
97
98bool Type::isObjectType() const {
Sebastian Redl00e68e22009-02-09 18:24:27 +000099 if (isa<FunctionType>(CanonicalType) || isa<ReferenceType>(CanonicalType))
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 return false;
Chris Lattner4bbce992009-01-12 00:10:42 +0000101 if (const ASQualType *AS = dyn_cast<ASQualType>(CanonicalType))
102 return AS->getBaseType()->isObjectType();
103 return !CanonicalType->isIncompleteType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000104}
105
106bool Type::isDerivedType() const {
107 switch (CanonicalType->getTypeClass()) {
Chris Lattner4bbce992009-01-12 00:10:42 +0000108 case ASQual:
109 return cast<ASQualType>(CanonicalType)->getBaseType()->isDerivedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 case Pointer:
Steve Narofffb22d962007-08-30 01:06:46 +0000111 case VariableArray:
112 case ConstantArray:
Eli Friedmanc5773c42008-02-15 18:16:39 +0000113 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 case FunctionProto:
115 case FunctionNoProto:
116 case Reference:
117 return true;
Chris Lattner4bbce992009-01-12 00:10:42 +0000118 case Tagged:
119 return !cast<TagType>(CanonicalType)->getDecl()->isEnum();
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 default:
121 return false;
122 }
123}
124
Chris Lattner99dc9142008-04-13 18:59:07 +0000125bool Type::isClassType() const {
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000126 if (const RecordType *RT = getAsRecordType())
127 return RT->getDecl()->isClass();
Chris Lattner99dc9142008-04-13 18:59:07 +0000128 return false;
129}
Chris Lattnerc8629632007-07-31 19:29:30 +0000130bool Type::isStructureType() const {
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000131 if (const RecordType *RT = getAsRecordType())
132 return RT->getDecl()->isStruct();
Chris Lattnerc8629632007-07-31 19:29:30 +0000133 return false;
134}
135bool Type::isUnionType() const {
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000136 if (const RecordType *RT = getAsRecordType())
137 return RT->getDecl()->isUnion();
Chris Lattnerc8629632007-07-31 19:29:30 +0000138 return false;
139}
Chris Lattnerc8629632007-07-31 19:29:30 +0000140
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000141bool Type::isComplexType() const {
Steve Naroff02f62a92008-01-15 19:36:10 +0000142 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
143 return CT->getElementType()->isFloatingType();
Chris Lattner4bbce992009-01-12 00:10:42 +0000144 if (const ASQualType *AS = dyn_cast<ASQualType>(CanonicalType))
145 return AS->getBaseType()->isComplexType();
Steve Naroff02f62a92008-01-15 19:36:10 +0000146 return false;
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000147}
148
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000149bool Type::isComplexIntegerType() const {
150 // Check for GCC complex integer extension.
151 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
152 return CT->getElementType()->isIntegerType();
Chris Lattner4bbce992009-01-12 00:10:42 +0000153 if (const ASQualType *AS = dyn_cast<ASQualType>(CanonicalType))
154 return AS->getBaseType()->isComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000155 return false;
156}
157
158const ComplexType *Type::getAsComplexIntegerType() const {
159 // Are we directly a complex type?
160 if (const ComplexType *CTy = dyn_cast<ComplexType>(this)) {
161 if (CTy->getElementType()->isIntegerType())
162 return CTy;
Chris Lattner4bbce992009-01-12 00:10:42 +0000163 return 0;
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000164 }
Chris Lattner4bbce992009-01-12 00:10:42 +0000165
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000166 // If the canonical form of this type isn't what we want, reject it.
167 if (!isa<ComplexType>(CanonicalType)) {
168 // Look through type qualifiers (e.g. ASQualType's).
169 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
170 return CanonicalType.getUnqualifiedType()->getAsComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000171 return 0;
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000172 }
173
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000174 // If this is a typedef for a complex type, strip the typedef off without
175 // losing all typedef information.
176 return getDesugaredType()->getAsComplexIntegerType();
177}
178
Steve Naroff77878cc2007-08-27 04:08:11 +0000179const BuiltinType *Type::getAsBuiltinType() const {
180 // If this is directly a builtin type, return it.
181 if (const BuiltinType *BTy = dyn_cast<BuiltinType>(this))
182 return BTy;
Chris Lattnerdea61462007-10-29 03:41:11 +0000183
184 // If the canonical form of this type isn't a builtin type, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000185 if (!isa<BuiltinType>(CanonicalType)) {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000186 // Look through type qualifiers (e.g. ASQualType's).
Christopher Lambebb97e92008-02-04 02:31:56 +0000187 if (isa<BuiltinType>(CanonicalType.getUnqualifiedType()))
188 return CanonicalType.getUnqualifiedType()->getAsBuiltinType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000189 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000190 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000191
Steve Naroff77878cc2007-08-27 04:08:11 +0000192 // If this is a typedef for a builtin type, strip the typedef off without
193 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000194 return getDesugaredType()->getAsBuiltinType();
Steve Naroff77878cc2007-08-27 04:08:11 +0000195}
196
Chris Lattnerc8629632007-07-31 19:29:30 +0000197const FunctionType *Type::getAsFunctionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000198 // If this is directly a function type, return it.
199 if (const FunctionType *FTy = dyn_cast<FunctionType>(this))
200 return FTy;
Christopher Lambebb97e92008-02-04 02:31:56 +0000201
Chris Lattnerdea61462007-10-29 03:41:11 +0000202 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000203 if (!isa<FunctionType>(CanonicalType)) {
204 // Look through type qualifiers
205 if (isa<FunctionType>(CanonicalType.getUnqualifiedType()))
206 return CanonicalType.getUnqualifiedType()->getAsFunctionType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000207 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000208 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000209
Steve Naroff7064f5c2007-07-26 18:32:01 +0000210 // If this is a typedef for a function type, strip the typedef off without
211 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000212 return getDesugaredType()->getAsFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000213}
214
Chris Lattnerb77792e2008-07-26 22:17:49 +0000215const FunctionTypeProto *Type::getAsFunctionTypeProto() const {
216 return dyn_cast_or_null<FunctionTypeProto>(getAsFunctionType());
217}
218
219
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000220const PointerLikeType *Type::getAsPointerLikeType() const {
221 // If this is directly a pointer-like type, return it.
222 if (const PointerLikeType *PTy = dyn_cast<PointerLikeType>(this))
223 return PTy;
224
225 // If the canonical form of this type isn't the right kind, reject it.
226 if (!isa<PointerLikeType>(CanonicalType)) {
227 // Look through type qualifiers
228 if (isa<PointerLikeType>(CanonicalType.getUnqualifiedType()))
229 return CanonicalType.getUnqualifiedType()->getAsPointerLikeType();
230 return 0;
231 }
232
233 // If this is a typedef for a pointer type, strip the typedef off without
234 // losing all typedef information.
235 return getDesugaredType()->getAsPointerLikeType();
236}
237
Chris Lattnerbefee482007-07-31 16:53:04 +0000238const PointerType *Type::getAsPointerType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000239 // If this is directly a pointer type, return it.
240 if (const PointerType *PTy = dyn_cast<PointerType>(this))
241 return PTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000242
Chris Lattnerdea61462007-10-29 03:41:11 +0000243 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000244 if (!isa<PointerType>(CanonicalType)) {
245 // Look through type qualifiers
246 if (isa<PointerType>(CanonicalType.getUnqualifiedType()))
247 return CanonicalType.getUnqualifiedType()->getAsPointerType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000248 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000249 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000250
Chris Lattnera2c77672007-07-16 22:05:22 +0000251 // If this is a typedef for a pointer type, strip the typedef off without
252 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000253 return getDesugaredType()->getAsPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000254}
255
Steve Naroff5618bd42008-08-27 16:04:49 +0000256const BlockPointerType *Type::getAsBlockPointerType() const {
257 // If this is directly a block pointer type, return it.
258 if (const BlockPointerType *PTy = dyn_cast<BlockPointerType>(this))
259 return PTy;
260
261 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000262 if (!isa<BlockPointerType>(CanonicalType)) {
263 // Look through type qualifiers
264 if (isa<BlockPointerType>(CanonicalType.getUnqualifiedType()))
265 return CanonicalType.getUnqualifiedType()->getAsBlockPointerType();
Steve Naroff5618bd42008-08-27 16:04:49 +0000266 return 0;
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000267 }
Steve Naroff5618bd42008-08-27 16:04:49 +0000268
269 // If this is a typedef for a block pointer type, strip the typedef off
270 // without losing all typedef information.
271 return getDesugaredType()->getAsBlockPointerType();
272}
273
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000274const ReferenceType *Type::getAsReferenceType() const {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000275 // If this is directly a reference type, return it.
276 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(this))
277 return RTy;
278
Chris Lattnerdea61462007-10-29 03:41:11 +0000279 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000280 if (!isa<ReferenceType>(CanonicalType)) {
281 // Look through type qualifiers
282 if (isa<ReferenceType>(CanonicalType.getUnqualifiedType()))
283 return CanonicalType.getUnqualifiedType()->getAsReferenceType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000284 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000285 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000286
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000287 // If this is a typedef for a reference type, strip the typedef off without
288 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000289 return getDesugaredType()->getAsReferenceType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000290}
291
Sebastian Redlf30208a2009-01-24 21:16:55 +0000292const MemberPointerType *Type::getAsMemberPointerType() const {
293 // If this is directly a member pointer type, return it.
294 if (const MemberPointerType *MTy = dyn_cast<MemberPointerType>(this))
295 return MTy;
296
297 // If the canonical form of this type isn't the right kind, reject it.
298 if (!isa<MemberPointerType>(CanonicalType)) {
299 // Look through type qualifiers
300 if (isa<MemberPointerType>(CanonicalType.getUnqualifiedType()))
301 return CanonicalType.getUnqualifiedType()->getAsMemberPointerType();
302 return 0;
303 }
304
305 // If this is a typedef for a member pointer type, strip the typedef off
306 // without losing all typedef information.
307 return getDesugaredType()->getAsMemberPointerType();
308}
309
Eli Friedmand3f2f792008-02-17 00:59:11 +0000310/// isVariablyModifiedType (C99 6.7.5p3) - Return true for variable length
311/// array types and types that contain variable array types in their
312/// declarator
Steve Naroffd7444aa2007-08-31 17:20:07 +0000313bool Type::isVariablyModifiedType() const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000314 // A VLA is a variably modified type.
315 if (isVariableArrayType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000316 return true;
317
318 // An array can contain a variably modified type
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000319 if (const Type *T = getArrayElementTypeNoTypeQual())
320 return T->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000321
Sebastian Redlf30208a2009-01-24 21:16:55 +0000322 // A pointer can point to a variably modified type.
323 // Also, C++ references and member pointers can point to a variably modified
324 // type, where VLAs appear as an extension to C++, and should be treated
325 // correctly.
326 if (const PointerLikeType *PT = getAsPointerLikeType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000327 return PT->getPointeeType()->isVariablyModifiedType();
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000328 if (const MemberPointerType *PT = getAsMemberPointerType())
329 return PT->getPointeeType()->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000330
331 // A function can return a variably modified type
332 // This one isn't completely obvious, but it follows from the
333 // definition in C99 6.7.5p3. Because of this rule, it's
334 // illegal to declare a function returning a variably modified type.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000335 if (const FunctionType *FT = getAsFunctionType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000336 return FT->getResultType()->isVariablyModifiedType();
337
Steve Naroffd7444aa2007-08-31 17:20:07 +0000338 return false;
339}
340
Chris Lattnerc8629632007-07-31 19:29:30 +0000341const RecordType *Type::getAsRecordType() const {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000342 // If this is directly a reference type, return it.
343 if (const RecordType *RTy = dyn_cast<RecordType>(this))
344 return RTy;
345
Chris Lattnerdea61462007-10-29 03:41:11 +0000346 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000347 if (!isa<RecordType>(CanonicalType)) {
348 // Look through type qualifiers
349 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
350 return CanonicalType.getUnqualifiedType()->getAsRecordType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000351 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000352 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000353
354 // If this is a typedef for a record type, strip the typedef off without
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000355 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000356 return getDesugaredType()->getAsRecordType();
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000357}
358
Chris Lattnerc8629632007-07-31 19:29:30 +0000359const RecordType *Type::getAsStructureType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000360 // If this is directly a structure type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000361 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000362 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000363 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000364 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000365
366 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000367 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000368 if (!RT->getDecl()->isStruct())
Chris Lattnerdea61462007-10-29 03:41:11 +0000369 return 0;
370
371 // If this is a typedef for a structure type, strip the typedef off without
372 // losing all typedef information.
373 return getDesugaredType()->getAsStructureType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000375 // Look through type qualifiers
376 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
377 return CanonicalType.getUnqualifiedType()->getAsStructureType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000378 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000379}
380
Chris Lattnerc8629632007-07-31 19:29:30 +0000381const RecordType *Type::getAsUnionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000382 // If this is directly a union type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000383 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000384 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000385 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000386 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000387
Chris Lattnerdea61462007-10-29 03:41:11 +0000388 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000389 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000390 if (!RT->getDecl()->isUnion())
Chris Lattnerdea61462007-10-29 03:41:11 +0000391 return 0;
392
393 // If this is a typedef for a union type, strip the typedef off without
394 // losing all typedef information.
395 return getDesugaredType()->getAsUnionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000397
398 // Look through type qualifiers
399 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
400 return CanonicalType.getUnqualifiedType()->getAsUnionType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000401 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000402}
403
Eli Friedmanad74a752008-06-28 06:23:08 +0000404const EnumType *Type::getAsEnumType() const {
405 // Check the canonicalized unqualified type directly; the more complex
406 // version is unnecessary because there isn't any typedef information
407 // to preserve.
408 return dyn_cast<EnumType>(CanonicalType.getUnqualifiedType());
409}
410
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000411const ComplexType *Type::getAsComplexType() const {
412 // Are we directly a complex type?
413 if (const ComplexType *CTy = dyn_cast<ComplexType>(this))
414 return CTy;
415
Chris Lattnerdea61462007-10-29 03:41:11 +0000416 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000417 if (!isa<ComplexType>(CanonicalType)) {
418 // Look through type qualifiers
419 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
420 return CanonicalType.getUnqualifiedType()->getAsComplexType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000421 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000422 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000423
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000424 // If this is a typedef for a complex type, strip the typedef off without
425 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000426 return getDesugaredType()->getAsComplexType();
Chris Lattner7a2e0472007-07-16 00:23:25 +0000427}
428
Chris Lattnerc8629632007-07-31 19:29:30 +0000429const VectorType *Type::getAsVectorType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000430 // Are we directly a vector type?
431 if (const VectorType *VTy = dyn_cast<VectorType>(this))
432 return VTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000433
Chris Lattnerdea61462007-10-29 03:41:11 +0000434 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000435 if (!isa<VectorType>(CanonicalType)) {
436 // Look through type qualifiers
437 if (isa<VectorType>(CanonicalType.getUnqualifiedType()))
438 return CanonicalType.getUnqualifiedType()->getAsVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000439 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000440 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000441
Chris Lattnera2c77672007-07-16 22:05:22 +0000442 // If this is a typedef for a vector type, strip the typedef off without
443 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000444 return getDesugaredType()->getAsVectorType();
Chris Lattner7a2e0472007-07-16 00:23:25 +0000445}
446
Nate Begeman213541a2008-04-18 23:10:10 +0000447const ExtVectorType *Type::getAsExtVectorType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000448 // Are we directly an OpenCU vector type?
Nate Begeman213541a2008-04-18 23:10:10 +0000449 if (const ExtVectorType *VTy = dyn_cast<ExtVectorType>(this))
Steve Naroff7064f5c2007-07-26 18:32:01 +0000450 return VTy;
451
Chris Lattnerdea61462007-10-29 03:41:11 +0000452 // If the canonical form of this type isn't the right kind, reject it.
Nate Begeman213541a2008-04-18 23:10:10 +0000453 if (!isa<ExtVectorType>(CanonicalType)) {
Christopher Lambebb97e92008-02-04 02:31:56 +0000454 // Look through type qualifiers
Nate Begeman213541a2008-04-18 23:10:10 +0000455 if (isa<ExtVectorType>(CanonicalType.getUnqualifiedType()))
456 return CanonicalType.getUnqualifiedType()->getAsExtVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000457 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000458 }
Steve Naroff7064f5c2007-07-26 18:32:01 +0000459
Nate Begeman213541a2008-04-18 23:10:10 +0000460 // If this is a typedef for an extended vector type, strip the typedef off
461 // without losing all typedef information.
462 return getDesugaredType()->getAsExtVectorType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000463}
464
Chris Lattner368eefa2008-04-07 00:27:04 +0000465const ObjCInterfaceType *Type::getAsObjCInterfaceType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000466 // There is no sugar for ObjCInterfaceType's, just return the canonical
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000467 // type pointer if it is the right class. There is no typedef information to
468 // return and these cannot be Address-space qualified.
Chris Lattnereca7be62008-04-07 05:30:13 +0000469 return dyn_cast<ObjCInterfaceType>(CanonicalType);
Chris Lattner368eefa2008-04-07 00:27:04 +0000470}
471
472const ObjCQualifiedInterfaceType *
473Type::getAsObjCQualifiedInterfaceType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000474 // There is no sugar for ObjCQualifiedInterfaceType's, just return the
475 // canonical type pointer if it is the right class.
Chris Lattnereca7be62008-04-07 05:30:13 +0000476 return dyn_cast<ObjCQualifiedInterfaceType>(CanonicalType);
477}
478
479const ObjCQualifiedIdType *Type::getAsObjCQualifiedIdType() const {
480 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
481 // type pointer if it is the right class.
482 return dyn_cast<ObjCQualifiedIdType>(CanonicalType);
Chris Lattner368eefa2008-04-07 00:27:04 +0000483}
484
Douglas Gregor72c3f312008-12-05 18:15:24 +0000485const TemplateTypeParmType *Type::getAsTemplateTypeParmType() const {
486 // There is no sugar for template type parameters, so just return
487 // the canonical type pointer if it is the right class.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000488 // FIXME: can these be address-space qualified?
Douglas Gregor72c3f312008-12-05 18:15:24 +0000489 return dyn_cast<TemplateTypeParmType>(CanonicalType);
490}
Chris Lattner368eefa2008-04-07 00:27:04 +0000491
Douglas Gregor55f6b142009-02-09 18:46:07 +0000492const ClassTemplateSpecializationType *
493Type::getClassTemplateSpecializationType() const {
494 // There is no sugar for class template specialization types, so
495 // just return the canonical type pointer if it is the right class.
496 return dyn_cast<ClassTemplateSpecializationType>(CanonicalType);
497}
498
499
Reid Spencer5f016e22007-07-11 17:01:13 +0000500bool Type::isIntegerType() const {
501 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
502 return BT->getKind() >= BuiltinType::Bool &&
503 BT->getKind() <= BuiltinType::LongLong;
504 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000505 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000506 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000507 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000508 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000509 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
510 return VT->getElementType()->isIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000511 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
512 return ASQT->getBaseType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000513 return false;
514}
515
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000516bool Type::isIntegralType() const {
517 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
518 return BT->getKind() >= BuiltinType::Bool &&
519 BT->getKind() <= BuiltinType::LongLong;
520 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000521 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
522 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000523 // FIXME: In C++, enum types are never integral.
Christopher Lambebb97e92008-02-04 02:31:56 +0000524 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
525 return ASQT->getBaseType()->isIntegralType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000526 return false;
527}
528
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000529bool Type::isEnumeralType() const {
530 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000531 return TT->getDecl()->isEnum();
Christopher Lambebb97e92008-02-04 02:31:56 +0000532 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
533 return ASQT->getBaseType()->isEnumeralType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000534 return false;
535}
536
537bool Type::isBooleanType() const {
538 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
539 return BT->getKind() == BuiltinType::Bool;
Christopher Lambebb97e92008-02-04 02:31:56 +0000540 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
541 return ASQT->getBaseType()->isBooleanType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000542 return false;
543}
544
545bool Type::isCharType() const {
546 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
547 return BT->getKind() == BuiltinType::Char_U ||
548 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000549 BT->getKind() == BuiltinType::Char_S ||
550 BT->getKind() == BuiltinType::SChar;
Christopher Lambebb97e92008-02-04 02:31:56 +0000551 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
552 return ASQT->getBaseType()->isCharType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000553 return false;
554}
555
Douglas Gregor77a52232008-09-12 00:47:35 +0000556bool Type::isWideCharType() const {
557 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
558 return BT->getKind() == BuiltinType::WChar;
559 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
560 return ASQT->getBaseType()->isWideCharType();
561 return false;
562}
563
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000564/// isSignedIntegerType - Return true if this is an integer type that is
565/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
566/// an enum decl which has a signed representation, or a vector of signed
567/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000568bool Type::isSignedIntegerType() const {
569 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
570 return BT->getKind() >= BuiltinType::Char_S &&
571 BT->getKind() <= BuiltinType::LongLong;
572 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000573
Chris Lattner37c1b782008-04-06 22:29:16 +0000574 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
575 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000576
Steve Naroffc63b96a2007-07-12 21:46:55 +0000577 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
578 return VT->getElementType()->isSignedIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000579 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
580 return ASQT->getBaseType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000581 return false;
582}
583
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000584/// isUnsignedIntegerType - Return true if this is an integer type that is
585/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
586/// decl which has an unsigned representation, or a vector of unsigned integer
587/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000588bool Type::isUnsignedIntegerType() const {
589 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
590 return BT->getKind() >= BuiltinType::Bool &&
591 BT->getKind() <= BuiltinType::ULongLong;
592 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000593
Chris Lattner37c1b782008-04-06 22:29:16 +0000594 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
595 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000596
Steve Naroffc63b96a2007-07-12 21:46:55 +0000597 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
598 return VT->getElementType()->isUnsignedIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000599 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
600 return ASQT->getBaseType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000601 return false;
602}
603
604bool Type::isFloatingType() const {
605 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
606 return BT->getKind() >= BuiltinType::Float &&
607 BT->getKind() <= BuiltinType::LongDouble;
608 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000609 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000610 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
611 return VT->getElementType()->isFloatingType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000612 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
613 return ASQT->getBaseType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000614 return false;
615}
616
617bool Type::isRealFloatingType() const {
618 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
619 return BT->getKind() >= BuiltinType::Float &&
620 BT->getKind() <= BuiltinType::LongDouble;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000621 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
622 return VT->getElementType()->isRealFloatingType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000623 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
624 return ASQT->getBaseType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 return false;
626}
627
628bool Type::isRealType() const {
629 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
630 return BT->getKind() >= BuiltinType::Bool &&
631 BT->getKind() <= BuiltinType::LongDouble;
632 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000633 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000634 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
635 return VT->getElementType()->isRealType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000636 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
637 return ASQT->getBaseType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000638 return false;
639}
640
Reid Spencer5f016e22007-07-11 17:01:13 +0000641bool Type::isArithmeticType() const {
642 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000643 return BT->getKind() >= BuiltinType::Bool &&
644 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000645 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
646 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
647 // If a body isn't seen by the time we get here, return false.
648 return ET->getDecl()->isDefinition();
Christopher Lambebb97e92008-02-04 02:31:56 +0000649 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
650 return ASQT->getBaseType()->isArithmeticType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000651 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
652}
653
654bool Type::isScalarType() const {
655 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
656 return BT->getKind() != BuiltinType::Void;
657 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000658 // Enums are scalar types, but only if they are defined. Incomplete enums
659 // are not treated as scalar types.
660 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 return true;
662 return false;
663 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000664 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
665 return ASQT->getBaseType()->isScalarType();
Steve Naroff5618bd42008-08-27 16:04:49 +0000666 return isa<PointerType>(CanonicalType) ||
667 isa<BlockPointerType>(CanonicalType) ||
Sebastian Redlf30208a2009-01-24 21:16:55 +0000668 isa<MemberPointerType>(CanonicalType) ||
Steve Naroff5618bd42008-08-27 16:04:49 +0000669 isa<ComplexType>(CanonicalType) ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000670 isa<ObjCQualifiedIdType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000671}
672
Douglas Gregord7eb8462009-01-30 17:31:00 +0000673/// \brief Determines whether the type is a C++ aggregate type or C
674/// aggregate or union type.
675///
676/// An aggregate type is an array or a class type (struct, union, or
677/// class) that has no user-declared constructors, no private or
678/// protected non-static data members, no base classes, and no virtual
679/// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type
680/// subsumes the notion of C aggregates (C99 6.2.5p21) because it also
681/// includes union types.
Reid Spencer5f016e22007-07-11 17:01:13 +0000682bool Type::isAggregateType() const {
Douglas Gregord7eb8462009-01-30 17:31:00 +0000683 if (const CXXRecordType *CXXClassType = dyn_cast<CXXRecordType>(CanonicalType))
684 return CXXClassType->getDecl()->isAggregate();
685 if (isa<RecordType>(CanonicalType))
686 return true;
Christopher Lambebb97e92008-02-04 02:31:56 +0000687 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
688 return ASQT->getBaseType()->isAggregateType();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000689 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000690}
691
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000692/// isConstantSizeType - Return true if this is not a variable sized type,
693/// according to the rules of C99 6.7.5p3. It is not legal to call this on
Douglas Gregor898574e2008-12-05 23:32:09 +0000694/// incomplete types or dependent types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000695bool Type::isConstantSizeType() const {
Christopher Lambebb97e92008-02-04 02:31:56 +0000696 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
Eli Friedman3c2b3172008-02-15 12:20:59 +0000697 return ASQT->getBaseType()->isConstantSizeType();
Chris Lattnerd52a4572007-12-18 07:03:30 +0000698 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Douglas Gregor898574e2008-12-05 23:32:09 +0000699 assert(!isDependentType() && "This doesn't make sense for dependent types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000700 // The VAT must have a size, as it is known to be complete.
701 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000702}
703
704/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
705/// - a type that can describe objects, but which lacks information needed to
706/// determine its size.
707bool Type::isIncompleteType() const {
708 switch (CanonicalType->getTypeClass()) {
709 default: return false;
Christopher Lambebb97e92008-02-04 02:31:56 +0000710 case ASQual:
711 return cast<ASQualType>(CanonicalType)->getBaseType()->isIncompleteType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 case Builtin:
713 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
714 // be completed.
715 return isVoidType();
716 case Tagged:
717 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
718 // forward declaration, but not a full definition (C99 6.2.5p22).
719 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000720 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000722 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000723 }
724}
725
Sebastian Redl64b45f72009-01-05 20:52:13 +0000726/// isPODType - Return true if this is a plain-old-data type (C++ 3.9p10)
727bool Type::isPODType() const {
728 // The compiler shouldn't query this for incomplete types, but the user might.
729 // We return false for that case.
730 if (isIncompleteType())
731 return false;
732
733 switch (CanonicalType->getTypeClass()) {
734 // Everything not explicitly mentioned is not POD.
735 default: return false;
736 case ASQual:
737 return cast<ASQualType>(CanonicalType)->getBaseType()->isPODType();
738 case VariableArray:
739 case ConstantArray:
740 // IncompleteArray is caught by isIncompleteType() above.
741 return cast<ArrayType>(CanonicalType)->getElementType()->isPODType();
742
743 case Builtin:
744 case Complex:
745 case Pointer:
Sebastian Redlf30208a2009-01-24 21:16:55 +0000746 case MemberPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000747 case Vector:
748 case ExtVector:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000749 return true;
750
751 case Tagged:
752 if (isEnumeralType())
753 return true;
754 if (CXXRecordDecl *RDecl = dyn_cast<CXXRecordDecl>(
755 cast<TagType>(CanonicalType)->getDecl()))
756 return RDecl->isPOD();
757 // C struct/union is POD.
758 return true;
759 }
760}
761
Reid Spencer5f016e22007-07-11 17:01:13 +0000762bool Type::isPromotableIntegerType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000763 if (const BuiltinType *BT = getAsBuiltinType())
764 switch (BT->getKind()) {
765 case BuiltinType::Bool:
766 case BuiltinType::Char_S:
767 case BuiltinType::Char_U:
768 case BuiltinType::SChar:
769 case BuiltinType::UChar:
770 case BuiltinType::Short:
771 case BuiltinType::UShort:
772 return true;
773 default:
774 return false;
775 }
776 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000777}
778
779const char *BuiltinType::getName() const {
780 switch (getKind()) {
781 default: assert(0 && "Unknown builtin type!");
782 case Void: return "void";
783 case Bool: return "_Bool";
784 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";
791 case UChar: return "unsigned char";
792 case UShort: return "unsigned short";
793 case UInt: return "unsigned int";
794 case ULong: return "unsigned long";
795 case ULongLong: return "unsigned long long";
796 case Float: return "float";
797 case Double: return "double";
798 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000799 case WChar: return "wchar_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000800 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +0000801 case Dependent: return "<dependent type>";
Reid Spencer5f016e22007-07-11 17:01:13 +0000802 }
803}
804
Reid Spencer5f016e22007-07-11 17:01:13 +0000805void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000806 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000807 unsigned NumArgs, bool isVariadic,
808 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 ID.AddPointer(Result.getAsOpaquePtr());
810 for (unsigned i = 0; i != NumArgs; ++i)
811 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
812 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000813 ID.AddInteger(TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000814}
815
816void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000817 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
818 getTypeQuals());
Reid Spencer5f016e22007-07-11 17:01:13 +0000819}
820
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000821void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner1ee07002008-04-07 06:37:47 +0000822 const ObjCInterfaceDecl *Decl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000823 ObjCProtocolDecl **protocols,
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000824 unsigned NumProtocols) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000825 ID.AddPointer(Decl);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000826 for (unsigned i = 0; i != NumProtocols; i++)
827 ID.AddPointer(protocols[i]);
828}
829
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000830void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000831 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000832}
833
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000834void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000835 ObjCProtocolDecl **protocols,
836 unsigned NumProtocols) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000837 for (unsigned i = 0; i != NumProtocols; i++)
838 ID.AddPointer(protocols[i]);
839}
840
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000841void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000842 Profile(ID, &Protocols[0], getNumProtocols());
843}
844
Chris Lattnera2c77672007-07-16 22:05:22 +0000845/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
846/// potentially looking through *all* consequtive typedefs. This returns the
847/// sum of the type qualifiers, so if you have:
848/// typedef const int A;
849/// typedef volatile A B;
850/// looking through the typedefs for B will give you "const volatile A".
851///
852QualType TypedefType::LookThroughTypedefs() const {
853 // Usually, there is only a single level of typedefs, be fast in that case.
854 QualType FirstType = getDecl()->getUnderlyingType();
855 if (!isa<TypedefType>(FirstType))
856 return FirstType;
857
858 // Otherwise, do the fully general loop.
859 unsigned TypeQuals = 0;
860 const TypedefType *TDT = this;
861 while (1) {
862 QualType CurType = TDT->getDecl()->getUnderlyingType();
Chris Lattnerf46699c2008-02-20 20:55:12 +0000863
864
865 /// FIXME:
866 /// FIXME: This is incorrect for ASQuals!
867 /// FIXME:
868 TypeQuals |= CurType.getCVRQualifiers();
Chris Lattnera2c77672007-07-16 22:05:22 +0000869
870 TDT = dyn_cast<TypedefType>(CurType);
871 if (TDT == 0)
872 return QualType(CurType.getTypePtr(), TypeQuals);
873 }
874}
Reid Spencer5f016e22007-07-11 17:01:13 +0000875
Douglas Gregor898574e2008-12-05 23:32:09 +0000876TypeOfExpr::TypeOfExpr(Expr *E, QualType can)
877 : Type(TypeOfExp, can, E->isTypeDependent()), TOExpr(E) {
878 assert(!isa<TypedefType>(can) && "Invalid canonical type");
879}
880
Chris Lattner2daa5df2008-04-06 22:04:54 +0000881bool RecordType::classof(const TagType *TT) {
882 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000883}
884
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +0000885bool CXXRecordType::classof(const TagType *TT) {
886 return isa<CXXRecordDecl>(TT->getDecl());
887}
888
Chris Lattner2daa5df2008-04-06 22:04:54 +0000889bool EnumType::classof(const TagType *TT) {
890 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +0000891}
892
Douglas Gregor55f6b142009-02-09 18:46:07 +0000893void
894ClassTemplateSpecializationType::
895packBooleanValues(unsigned NumArgs, bool *Values, uintptr_t *Words) {
896 const unsigned BitsPerWord = sizeof(uintptr_t) * CHAR_BIT;
897
898 for (unsigned PW = 0, NumPackedWords = getNumPackedWords(NumArgs), Arg = 0;
899 PW != NumPackedWords; ++PW) {
900 uintptr_t Word = 0;
901 for (unsigned Bit = 0; Bit < BitsPerWord && Arg < NumArgs; ++Bit, ++Arg) {
902 Word <<= 1;
903 Word |= Values[Arg];
904 }
905 Words[PW] = Word;
906 }
907}
908
909ClassTemplateSpecializationType::
910ClassTemplateSpecializationType(TemplateDecl *T, unsigned NumArgs,
911 uintptr_t *Args, bool *ArgIsType,
912 QualType Canon)
913 : Type(ClassTemplateSpecialization, Canon, /*FIXME:Dependent=*/false),
914 Template(T), NumArgs(NumArgs)
915{
916 uintptr_t *Data = reinterpret_cast<uintptr_t *>(this + 1);
917
918 // Pack the argument-is-type values into the words just after the
919 // class template specialization type.
920 packBooleanValues(NumArgs, ArgIsType, Data);
921
922 // Copy the template arguments after the packed words.
923 Data += getNumPackedWords(NumArgs);
924 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
925 Data[Arg] = Args[Arg];
926}
927
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000928void ClassTemplateSpecializationType::Destroy(ASTContext& C) {
929 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
930 if (!isArgType(Arg))
931 getArgAsExpr(Arg)->Destroy(C);
932}
933
Douglas Gregor55f6b142009-02-09 18:46:07 +0000934uintptr_t
935ClassTemplateSpecializationType::getArgAsOpaqueValue(unsigned Arg) const {
936 const uintptr_t *Data = reinterpret_cast<const uintptr_t *>(this + 1);
937 Data += getNumPackedWords(NumArgs);
938 return Data[Arg];
939}
940
941bool ClassTemplateSpecializationType::isArgType(unsigned Arg) const {
942 const unsigned BitsPerWord = sizeof(uintptr_t) * CHAR_BIT;
943 const uintptr_t *Data = reinterpret_cast<const uintptr_t *>(this + 1);
944 Data += Arg / BitsPerWord;
945 return (*Data >> (Arg % BitsPerWord)) & 0x01;
946}
Anders Carlsson97e01792008-12-21 00:16:32 +0000947
Reid Spencer5f016e22007-07-11 17:01:13 +0000948//===----------------------------------------------------------------------===//
949// Type Printing
950//===----------------------------------------------------------------------===//
951
952void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +0000953 std::string R = "identifier";
Reid Spencer5f016e22007-07-11 17:01:13 +0000954 getAsStringInternal(R);
955 if (msg)
956 fprintf(stderr, "%s: %s\n", msg, R.c_str());
957 else
958 fprintf(stderr, "%s\n", R.c_str());
959}
Chris Lattnerc36d4052008-07-27 00:48:22 +0000960void QualType::dump() const {
961 dump("");
962}
963
964void Type::dump() const {
965 std::string S = "identifier";
966 getAsStringInternal(S);
967 fprintf(stderr, "%s\n", S.c_str());
968}
969
970
Reid Spencer5f016e22007-07-11 17:01:13 +0000971
972static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
973 // Note: funkiness to ensure we get a space only between quals.
974 bool NonePrinted = true;
975 if (TypeQuals & QualType::Const)
976 S += "const", NonePrinted = false;
977 if (TypeQuals & QualType::Volatile)
978 S += (NonePrinted+" volatile"), NonePrinted = false;
979 if (TypeQuals & QualType::Restrict)
980 S += (NonePrinted+" restrict"), NonePrinted = false;
981}
982
983void QualType::getAsStringInternal(std::string &S) const {
984 if (isNull()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000985 S += "NULL TYPE";
Reid Spencer5f016e22007-07-11 17:01:13 +0000986 return;
987 }
988
989 // Print qualifiers as appropriate.
Gabor Greif3513e132008-02-21 17:40:55 +0000990 if (unsigned Tq = getCVRQualifiers()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000991 std::string TQS;
Gabor Greif3513e132008-02-21 17:40:55 +0000992 AppendTypeQualList(TQS, Tq);
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 if (!S.empty())
994 S = TQS + ' ' + S;
995 else
996 S = TQS;
997 }
998
999 getTypePtr()->getAsStringInternal(S);
1000}
1001
1002void BuiltinType::getAsStringInternal(std::string &S) const {
1003 if (S.empty()) {
1004 S = getName();
1005 } else {
1006 // Prefix the basic type, e.g. 'int X'.
1007 S = ' ' + S;
1008 S = getName() + S;
1009 }
1010}
1011
1012void ComplexType::getAsStringInternal(std::string &S) const {
1013 ElementType->getAsStringInternal(S);
1014 S = "_Complex " + S;
1015}
1016
Christopher Lambebb97e92008-02-04 02:31:56 +00001017void ASQualType::getAsStringInternal(std::string &S) const {
1018 S = "__attribute__((address_space("+llvm::utostr_32(AddressSpace)+")))" + S;
1019 BaseType->getAsStringInternal(S);
1020}
1021
Reid Spencer5f016e22007-07-11 17:01:13 +00001022void PointerType::getAsStringInternal(std::string &S) const {
1023 S = '*' + S;
1024
1025 // Handle things like 'int (*A)[4];' correctly.
1026 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001027 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001028 S = '(' + S + ')';
1029
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001030 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001031}
1032
Steve Naroff5618bd42008-08-27 16:04:49 +00001033void BlockPointerType::getAsStringInternal(std::string &S) const {
1034 S = '^' + S;
1035 PointeeType.getAsStringInternal(S);
1036}
1037
Reid Spencer5f016e22007-07-11 17:01:13 +00001038void ReferenceType::getAsStringInternal(std::string &S) const {
1039 S = '&' + S;
1040
1041 // Handle things like 'int (&A)[4];' correctly.
1042 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001043 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001044 S = '(' + S + ')';
1045
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001046 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001047}
1048
Sebastian Redlf30208a2009-01-24 21:16:55 +00001049void MemberPointerType::getAsStringInternal(std::string &S) const {
1050 std::string C;
1051 Class->getAsStringInternal(C);
1052 C += "::*";
1053 S = C + S;
1054
1055 // Handle things like 'int (&A)[4];' correctly.
1056 // FIXME: this should include vectors, but vectors use attributes I guess.
1057 if (isa<ArrayType>(getPointeeType()))
1058 S = '(' + S + ')';
1059
1060 getPointeeType().getAsStringInternal(S);
1061}
1062
Steve Narofffb22d962007-08-30 01:06:46 +00001063void ConstantArrayType::getAsStringInternal(std::string &S) const {
1064 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +00001065 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +00001066 S += ']';
1067
1068 getElementType().getAsStringInternal(S);
1069}
1070
Eli Friedmanc5773c42008-02-15 18:16:39 +00001071void IncompleteArrayType::getAsStringInternal(std::string &S) const {
1072 S += "[]";
1073
1074 getElementType().getAsStringInternal(S);
1075}
1076
Steve Narofffb22d962007-08-30 01:06:46 +00001077void VariableArrayType::getAsStringInternal(std::string &S) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001078 S += '[';
1079
Steve Naroffc9406122007-08-30 18:10:14 +00001080 if (getIndexTypeQualifier()) {
1081 AppendTypeQualList(S, getIndexTypeQualifier());
Reid Spencer5f016e22007-07-11 17:01:13 +00001082 S += ' ';
1083 }
1084
Steve Naroffc9406122007-08-30 18:10:14 +00001085 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +00001086 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +00001087 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +00001088 S += '*';
1089
Steve Narofffb22d962007-08-30 01:06:46 +00001090 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001091 std::string SStr;
1092 llvm::raw_string_ostream s(SStr);
Steve Narofffb22d962007-08-30 01:06:46 +00001093 getSizeExpr()->printPretty(s);
1094 S += s.str();
1095 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001096 S += ']';
1097
Steve Narofffb22d962007-08-30 01:06:46 +00001098 getElementType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001099}
1100
Douglas Gregor898574e2008-12-05 23:32:09 +00001101void DependentSizedArrayType::getAsStringInternal(std::string &S) const {
1102 S += '[';
1103
1104 if (getIndexTypeQualifier()) {
1105 AppendTypeQualList(S, getIndexTypeQualifier());
1106 S += ' ';
1107 }
1108
1109 if (getSizeModifier() == Static)
1110 S += "static";
1111 else if (getSizeModifier() == Star)
1112 S += '*';
1113
1114 if (getSizeExpr()) {
1115 std::string SStr;
1116 llvm::raw_string_ostream s(SStr);
1117 getSizeExpr()->printPretty(s);
1118 S += s.str();
1119 }
1120 S += ']';
1121
1122 getElementType().getAsStringInternal(S);
1123}
1124
Reid Spencer5f016e22007-07-11 17:01:13 +00001125void VectorType::getAsStringInternal(std::string &S) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +00001126 // FIXME: We prefer to print the size directly here, but have no way
1127 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +00001128 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +00001129 S += llvm::utostr_32(NumElements); // convert back to bytes.
1130 S += " * sizeof(" + ElementType.getAsString() + "))))";
Reid Spencer5f016e22007-07-11 17:01:13 +00001131}
1132
Nate Begeman213541a2008-04-18 23:10:10 +00001133void ExtVectorType::getAsStringInternal(std::string &S) const {
1134 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +00001135 S += llvm::utostr_32(NumElements);
1136 S += ")))";
1137 ElementType.getAsStringInternal(S);
1138}
1139
Steve Naroffd1861fd2007-07-31 12:34:36 +00001140void TypeOfExpr::getAsStringInternal(std::string &InnerString) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001141 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
1142 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +00001143 std::string Str;
1144 llvm::raw_string_ostream s(Str);
Chris Lattner6000dac2007-08-08 22:51:59 +00001145 getUnderlyingExpr()->printPretty(s);
Steve Naroff1bfd5cc2007-08-05 03:24:45 +00001146 InnerString = "typeof(" + s.str() + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001147}
1148
Steve Naroff363bcff2007-08-01 23:45:51 +00001149void TypeOfType::getAsStringInternal(std::string &InnerString) const {
1150 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
1151 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001152 std::string Tmp;
1153 getUnderlyingType().getAsStringInternal(Tmp);
Steve Naroff363bcff2007-08-01 23:45:51 +00001154 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001155}
1156
Reid Spencer5f016e22007-07-11 17:01:13 +00001157void FunctionTypeNoProto::getAsStringInternal(std::string &S) const {
1158 // If needed for precedence reasons, wrap the inner part in grouping parens.
1159 if (!S.empty())
1160 S = "(" + S + ")";
1161
1162 S += "()";
1163 getResultType().getAsStringInternal(S);
1164}
1165
1166void FunctionTypeProto::getAsStringInternal(std::string &S) const {
1167 // If needed for precedence reasons, wrap the inner part in grouping parens.
1168 if (!S.empty())
1169 S = "(" + S + ")";
1170
1171 S += "(";
1172 std::string Tmp;
1173 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
1174 if (i) S += ", ";
1175 getArgType(i).getAsStringInternal(Tmp);
1176 S += Tmp;
1177 Tmp.clear();
1178 }
1179
1180 if (isVariadic()) {
1181 if (getNumArgs())
1182 S += ", ";
1183 S += "...";
1184 } else if (getNumArgs() == 0) {
1185 // Do not emit int() if we have a proto, emit 'int(void)'.
1186 S += "void";
1187 }
1188
1189 S += ")";
1190 getResultType().getAsStringInternal(S);
1191}
1192
1193
1194void TypedefType::getAsStringInternal(std::string &InnerString) const {
1195 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1196 InnerString = ' ' + InnerString;
1197 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1198}
1199
Douglas Gregor72c3f312008-12-05 18:15:24 +00001200void TemplateTypeParmType::getAsStringInternal(std::string &InnerString) const {
1201 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1202 InnerString = ' ' + InnerString;
Douglas Gregorfab9d672009-02-05 23:33:38 +00001203
1204 if (!Name)
1205 InnerString = "type-parameter-" + llvm::utostr_32(Depth) + '-' +
1206 llvm::utostr_32(Index) + InnerString;
1207 else
1208 InnerString = Name->getName() + InnerString;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001209}
1210
Douglas Gregor55f6b142009-02-09 18:46:07 +00001211void
1212ClassTemplateSpecializationType::
1213getAsStringInternal(std::string &InnerString) const {
1214 std::string SpecString = Template->getNameAsString();
1215 SpecString += '<';
1216 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1217 if (Arg)
1218 SpecString += ", ";
1219
1220 // Print the argument into a string.
1221 std::string ArgString;
1222 if (isArgType(Arg))
1223 getArgAsType(Arg).getAsStringInternal(ArgString);
1224 else {
1225 llvm::raw_string_ostream s(ArgString);
1226 getArgAsExpr(Arg)->printPretty(s);
1227 }
1228
1229 // If this is the first argument and its string representation
1230 // begins with the global scope specifier ('::foo'), add a space
1231 // to avoid printing the diagraph '<:'.
1232 if (!Arg && !ArgString.empty() && ArgString[0] == ':')
1233 SpecString += ' ';
1234
1235 SpecString += ArgString;
1236 }
1237
1238 // If the last character of our string is '>', add another space to
1239 // keep the two '>''s separate tokens. We don't *have* to do this in
1240 // C++0x, but it's still good hygiene.
1241 if (SpecString[SpecString.size() - 1] == '>')
1242 SpecString += ' ';
1243
1244 SpecString += '>';
1245
1246 if (InnerString.empty())
1247 InnerString.swap(SpecString);
1248 else
1249 InnerString = SpecString + ' ' + InnerString;
1250}
1251
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001252void ObjCInterfaceType::getAsStringInternal(std::string &InnerString) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001253 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1254 InnerString = ' ' + InnerString;
1255 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1256}
1257
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001258void ObjCQualifiedInterfaceType::getAsStringInternal(
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001259 std::string &InnerString) const {
Fariborz Jahaniandfbcce22007-10-11 18:08:47 +00001260 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1261 InnerString = ' ' + InnerString;
Chris Lattner39f34e92008-11-24 04:00:27 +00001262 std::string ObjCQIString = getDecl()->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001263 ObjCQIString += '<';
Chris Lattnercdce6d12008-07-21 05:19:23 +00001264 bool isFirst = true;
1265 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1266 if (isFirst)
1267 isFirst = false;
1268 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001269 ObjCQIString += ',';
Chris Lattner39f34e92008-11-24 04:00:27 +00001270 ObjCQIString += (*I)->getNameAsString();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001271 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001272 ObjCQIString += '>';
1273 InnerString = ObjCQIString + InnerString;
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001274}
1275
Chris Lattnere8e4f922008-07-25 23:07:18 +00001276void ObjCQualifiedIdType::getAsStringInternal(std::string &InnerString) const {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001277 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1278 InnerString = ' ' + InnerString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001279 std::string ObjCQIString = "id";
1280 ObjCQIString += '<';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001281 int num = getNumProtocols();
1282 for (int i = 0; i < num; i++) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001283 ObjCQIString += getProtocols(i)->getNameAsString();
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001284 if (i < num-1)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001285 ObjCQIString += ',';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001286 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001287 ObjCQIString += '>';
1288 InnerString = ObjCQIString + InnerString;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001289}
1290
Reid Spencer5f016e22007-07-11 17:01:13 +00001291void TagType::getAsStringInternal(std::string &InnerString) const {
1292 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1293 InnerString = ' ' + InnerString;
1294
1295 const char *Kind = getDecl()->getKindName();
1296 const char *ID;
1297 if (const IdentifierInfo *II = getDecl()->getIdentifier())
1298 ID = II->getName();
1299 else
1300 ID = "<anonymous>";
1301
1302 InnerString = std::string(Kind) + " " + ID + InnerString;
1303}