blob: 199ad29ec60057d8ffaad25ffebf837e7e343665 [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 {
99 if (isa<FunctionType>(CanonicalType))
100 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
Reid Spencer5f016e22007-07-11 17:01:13 +0000492bool Type::isIntegerType() const {
493 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
494 return BT->getKind() >= BuiltinType::Bool &&
495 BT->getKind() <= BuiltinType::LongLong;
496 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000497 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000498 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000499 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000500 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000501 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
502 return VT->getElementType()->isIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000503 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
504 return ASQT->getBaseType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000505 return false;
506}
507
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000508bool Type::isIntegralType() const {
509 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
510 return BT->getKind() >= BuiltinType::Bool &&
511 BT->getKind() <= BuiltinType::LongLong;
512 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000513 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
514 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000515 // FIXME: In C++, enum types are never integral.
Christopher Lambebb97e92008-02-04 02:31:56 +0000516 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
517 return ASQT->getBaseType()->isIntegralType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000518 return false;
519}
520
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000521bool Type::isEnumeralType() const {
522 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000523 return TT->getDecl()->isEnum();
Christopher Lambebb97e92008-02-04 02:31:56 +0000524 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
525 return ASQT->getBaseType()->isEnumeralType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000526 return false;
527}
528
529bool Type::isBooleanType() const {
530 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
531 return BT->getKind() == BuiltinType::Bool;
Christopher Lambebb97e92008-02-04 02:31:56 +0000532 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
533 return ASQT->getBaseType()->isBooleanType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000534 return false;
535}
536
537bool Type::isCharType() const {
538 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
539 return BT->getKind() == BuiltinType::Char_U ||
540 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000541 BT->getKind() == BuiltinType::Char_S ||
542 BT->getKind() == BuiltinType::SChar;
Christopher Lambebb97e92008-02-04 02:31:56 +0000543 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
544 return ASQT->getBaseType()->isCharType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000545 return false;
546}
547
Douglas Gregor77a52232008-09-12 00:47:35 +0000548bool Type::isWideCharType() const {
549 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
550 return BT->getKind() == BuiltinType::WChar;
551 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
552 return ASQT->getBaseType()->isWideCharType();
553 return false;
554}
555
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000556/// isSignedIntegerType - Return true if this is an integer type that is
557/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
558/// an enum decl which has a signed representation, or a vector of signed
559/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000560bool Type::isSignedIntegerType() const {
561 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
562 return BT->getKind() >= BuiltinType::Char_S &&
563 BT->getKind() <= BuiltinType::LongLong;
564 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000565
Chris Lattner37c1b782008-04-06 22:29:16 +0000566 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
567 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000568
Steve Naroffc63b96a2007-07-12 21:46:55 +0000569 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
570 return VT->getElementType()->isSignedIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000571 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
572 return ASQT->getBaseType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000573 return false;
574}
575
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000576/// isUnsignedIntegerType - Return true if this is an integer type that is
577/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
578/// decl which has an unsigned representation, or a vector of unsigned integer
579/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000580bool Type::isUnsignedIntegerType() const {
581 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
582 return BT->getKind() >= BuiltinType::Bool &&
583 BT->getKind() <= BuiltinType::ULongLong;
584 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000585
Chris Lattner37c1b782008-04-06 22:29:16 +0000586 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
587 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000588
Steve Naroffc63b96a2007-07-12 21:46:55 +0000589 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
590 return VT->getElementType()->isUnsignedIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000591 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
592 return ASQT->getBaseType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000593 return false;
594}
595
596bool Type::isFloatingType() const {
597 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
598 return BT->getKind() >= BuiltinType::Float &&
599 BT->getKind() <= BuiltinType::LongDouble;
600 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000601 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000602 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
603 return VT->getElementType()->isFloatingType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000604 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
605 return ASQT->getBaseType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000606 return false;
607}
608
609bool Type::isRealFloatingType() const {
610 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
611 return BT->getKind() >= BuiltinType::Float &&
612 BT->getKind() <= BuiltinType::LongDouble;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000613 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
614 return VT->getElementType()->isRealFloatingType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000615 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
616 return ASQT->getBaseType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000617 return false;
618}
619
620bool Type::isRealType() const {
621 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
622 return BT->getKind() >= BuiltinType::Bool &&
623 BT->getKind() <= BuiltinType::LongDouble;
624 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000625 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000626 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
627 return VT->getElementType()->isRealType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000628 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
629 return ASQT->getBaseType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000630 return false;
631}
632
Reid Spencer5f016e22007-07-11 17:01:13 +0000633bool Type::isArithmeticType() const {
634 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000635 return BT->getKind() >= BuiltinType::Bool &&
636 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000637 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
638 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
639 // If a body isn't seen by the time we get here, return false.
640 return ET->getDecl()->isDefinition();
Christopher Lambebb97e92008-02-04 02:31:56 +0000641 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
642 return ASQT->getBaseType()->isArithmeticType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000643 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
644}
645
646bool Type::isScalarType() const {
647 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
648 return BT->getKind() != BuiltinType::Void;
649 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000650 // Enums are scalar types, but only if they are defined. Incomplete enums
651 // are not treated as scalar types.
652 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000653 return true;
654 return false;
655 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000656 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
657 return ASQT->getBaseType()->isScalarType();
Steve Naroff5618bd42008-08-27 16:04:49 +0000658 return isa<PointerType>(CanonicalType) ||
659 isa<BlockPointerType>(CanonicalType) ||
Sebastian Redlf30208a2009-01-24 21:16:55 +0000660 isa<MemberPointerType>(CanonicalType) ||
Steve Naroff5618bd42008-08-27 16:04:49 +0000661 isa<ComplexType>(CanonicalType) ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000662 isa<ObjCQualifiedIdType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000663}
664
Douglas Gregord7eb8462009-01-30 17:31:00 +0000665/// \brief Determines whether the type is a C++ aggregate type or C
666/// aggregate or union type.
667///
668/// An aggregate type is an array or a class type (struct, union, or
669/// class) that has no user-declared constructors, no private or
670/// protected non-static data members, no base classes, and no virtual
671/// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type
672/// subsumes the notion of C aggregates (C99 6.2.5p21) because it also
673/// includes union types.
Reid Spencer5f016e22007-07-11 17:01:13 +0000674bool Type::isAggregateType() const {
Douglas Gregord7eb8462009-01-30 17:31:00 +0000675 if (const CXXRecordType *CXXClassType = dyn_cast<CXXRecordType>(CanonicalType))
676 return CXXClassType->getDecl()->isAggregate();
677 if (isa<RecordType>(CanonicalType))
678 return true;
Christopher Lambebb97e92008-02-04 02:31:56 +0000679 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
680 return ASQT->getBaseType()->isAggregateType();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000681 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000682}
683
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000684/// isConstantSizeType - Return true if this is not a variable sized type,
685/// according to the rules of C99 6.7.5p3. It is not legal to call this on
Douglas Gregor898574e2008-12-05 23:32:09 +0000686/// incomplete types or dependent types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000687bool Type::isConstantSizeType() const {
Christopher Lambebb97e92008-02-04 02:31:56 +0000688 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
Eli Friedman3c2b3172008-02-15 12:20:59 +0000689 return ASQT->getBaseType()->isConstantSizeType();
Chris Lattnerd52a4572007-12-18 07:03:30 +0000690 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Douglas Gregor898574e2008-12-05 23:32:09 +0000691 assert(!isDependentType() && "This doesn't make sense for dependent types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000692 // The VAT must have a size, as it is known to be complete.
693 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000694}
695
696/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
697/// - a type that can describe objects, but which lacks information needed to
698/// determine its size.
699bool Type::isIncompleteType() const {
700 switch (CanonicalType->getTypeClass()) {
701 default: return false;
Christopher Lambebb97e92008-02-04 02:31:56 +0000702 case ASQual:
703 return cast<ASQualType>(CanonicalType)->getBaseType()->isIncompleteType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000704 case Builtin:
705 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
706 // be completed.
707 return isVoidType();
708 case Tagged:
709 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
710 // forward declaration, but not a full definition (C99 6.2.5p22).
711 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000712 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000713 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000714 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000715 }
716}
717
Sebastian Redl64b45f72009-01-05 20:52:13 +0000718/// isPODType - Return true if this is a plain-old-data type (C++ 3.9p10)
719bool Type::isPODType() const {
720 // The compiler shouldn't query this for incomplete types, but the user might.
721 // We return false for that case.
722 if (isIncompleteType())
723 return false;
724
725 switch (CanonicalType->getTypeClass()) {
726 // Everything not explicitly mentioned is not POD.
727 default: return false;
728 case ASQual:
729 return cast<ASQualType>(CanonicalType)->getBaseType()->isPODType();
730 case VariableArray:
731 case ConstantArray:
732 // IncompleteArray is caught by isIncompleteType() above.
733 return cast<ArrayType>(CanonicalType)->getElementType()->isPODType();
734
735 case Builtin:
736 case Complex:
737 case Pointer:
Sebastian Redlf30208a2009-01-24 21:16:55 +0000738 case MemberPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000739 case Vector:
740 case ExtVector:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000741 return true;
742
743 case Tagged:
744 if (isEnumeralType())
745 return true;
746 if (CXXRecordDecl *RDecl = dyn_cast<CXXRecordDecl>(
747 cast<TagType>(CanonicalType)->getDecl()))
748 return RDecl->isPOD();
749 // C struct/union is POD.
750 return true;
751 }
752}
753
Reid Spencer5f016e22007-07-11 17:01:13 +0000754bool Type::isPromotableIntegerType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000755 if (const BuiltinType *BT = getAsBuiltinType())
756 switch (BT->getKind()) {
757 case BuiltinType::Bool:
758 case BuiltinType::Char_S:
759 case BuiltinType::Char_U:
760 case BuiltinType::SChar:
761 case BuiltinType::UChar:
762 case BuiltinType::Short:
763 case BuiltinType::UShort:
764 return true;
765 default:
766 return false;
767 }
768 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000769}
770
771const char *BuiltinType::getName() const {
772 switch (getKind()) {
773 default: assert(0 && "Unknown builtin type!");
774 case Void: return "void";
775 case Bool: return "_Bool";
776 case Char_S: return "char";
777 case Char_U: return "char";
778 case SChar: return "signed char";
779 case Short: return "short";
780 case Int: return "int";
781 case Long: return "long";
782 case LongLong: return "long long";
783 case UChar: return "unsigned char";
784 case UShort: return "unsigned short";
785 case UInt: return "unsigned int";
786 case ULong: return "unsigned long";
787 case ULongLong: return "unsigned long long";
788 case Float: return "float";
789 case Double: return "double";
790 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000791 case WChar: return "wchar_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000792 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +0000793 case Dependent: return "<dependent type>";
Reid Spencer5f016e22007-07-11 17:01:13 +0000794 }
795}
796
Reid Spencer5f016e22007-07-11 17:01:13 +0000797void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000798 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000799 unsigned NumArgs, bool isVariadic,
800 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000801 ID.AddPointer(Result.getAsOpaquePtr());
802 for (unsigned i = 0; i != NumArgs; ++i)
803 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
804 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000805 ID.AddInteger(TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000806}
807
808void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000809 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
810 getTypeQuals());
Reid Spencer5f016e22007-07-11 17:01:13 +0000811}
812
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000813void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner1ee07002008-04-07 06:37:47 +0000814 const ObjCInterfaceDecl *Decl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000815 ObjCProtocolDecl **protocols,
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000816 unsigned NumProtocols) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000817 ID.AddPointer(Decl);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000818 for (unsigned i = 0; i != NumProtocols; i++)
819 ID.AddPointer(protocols[i]);
820}
821
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000822void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000823 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000824}
825
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000826void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000827 ObjCProtocolDecl **protocols,
828 unsigned NumProtocols) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000829 for (unsigned i = 0; i != NumProtocols; i++)
830 ID.AddPointer(protocols[i]);
831}
832
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000833void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000834 Profile(ID, &Protocols[0], getNumProtocols());
835}
836
Chris Lattnera2c77672007-07-16 22:05:22 +0000837/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
838/// potentially looking through *all* consequtive typedefs. This returns the
839/// sum of the type qualifiers, so if you have:
840/// typedef const int A;
841/// typedef volatile A B;
842/// looking through the typedefs for B will give you "const volatile A".
843///
844QualType TypedefType::LookThroughTypedefs() const {
845 // Usually, there is only a single level of typedefs, be fast in that case.
846 QualType FirstType = getDecl()->getUnderlyingType();
847 if (!isa<TypedefType>(FirstType))
848 return FirstType;
849
850 // Otherwise, do the fully general loop.
851 unsigned TypeQuals = 0;
852 const TypedefType *TDT = this;
853 while (1) {
854 QualType CurType = TDT->getDecl()->getUnderlyingType();
Chris Lattnerf46699c2008-02-20 20:55:12 +0000855
856
857 /// FIXME:
858 /// FIXME: This is incorrect for ASQuals!
859 /// FIXME:
860 TypeQuals |= CurType.getCVRQualifiers();
Chris Lattnera2c77672007-07-16 22:05:22 +0000861
862 TDT = dyn_cast<TypedefType>(CurType);
863 if (TDT == 0)
864 return QualType(CurType.getTypePtr(), TypeQuals);
865 }
866}
Reid Spencer5f016e22007-07-11 17:01:13 +0000867
Douglas Gregor898574e2008-12-05 23:32:09 +0000868TypeOfExpr::TypeOfExpr(Expr *E, QualType can)
869 : Type(TypeOfExp, can, E->isTypeDependent()), TOExpr(E) {
870 assert(!isa<TypedefType>(can) && "Invalid canonical type");
871}
872
Chris Lattner2daa5df2008-04-06 22:04:54 +0000873bool RecordType::classof(const TagType *TT) {
874 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000875}
876
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +0000877bool CXXRecordType::classof(const TagType *TT) {
878 return isa<CXXRecordDecl>(TT->getDecl());
879}
880
Chris Lattner2daa5df2008-04-06 22:04:54 +0000881bool EnumType::classof(const TagType *TT) {
882 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +0000883}
884
Anders Carlsson97e01792008-12-21 00:16:32 +0000885
Reid Spencer5f016e22007-07-11 17:01:13 +0000886//===----------------------------------------------------------------------===//
887// Type Printing
888//===----------------------------------------------------------------------===//
889
890void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +0000891 std::string R = "identifier";
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 getAsStringInternal(R);
893 if (msg)
894 fprintf(stderr, "%s: %s\n", msg, R.c_str());
895 else
896 fprintf(stderr, "%s\n", R.c_str());
897}
Chris Lattnerc36d4052008-07-27 00:48:22 +0000898void QualType::dump() const {
899 dump("");
900}
901
902void Type::dump() const {
903 std::string S = "identifier";
904 getAsStringInternal(S);
905 fprintf(stderr, "%s\n", S.c_str());
906}
907
908
Reid Spencer5f016e22007-07-11 17:01:13 +0000909
910static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
911 // Note: funkiness to ensure we get a space only between quals.
912 bool NonePrinted = true;
913 if (TypeQuals & QualType::Const)
914 S += "const", NonePrinted = false;
915 if (TypeQuals & QualType::Volatile)
916 S += (NonePrinted+" volatile"), NonePrinted = false;
917 if (TypeQuals & QualType::Restrict)
918 S += (NonePrinted+" restrict"), NonePrinted = false;
919}
920
921void QualType::getAsStringInternal(std::string &S) const {
922 if (isNull()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000923 S += "NULL TYPE";
Reid Spencer5f016e22007-07-11 17:01:13 +0000924 return;
925 }
926
927 // Print qualifiers as appropriate.
Gabor Greif3513e132008-02-21 17:40:55 +0000928 if (unsigned Tq = getCVRQualifiers()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000929 std::string TQS;
Gabor Greif3513e132008-02-21 17:40:55 +0000930 AppendTypeQualList(TQS, Tq);
Reid Spencer5f016e22007-07-11 17:01:13 +0000931 if (!S.empty())
932 S = TQS + ' ' + S;
933 else
934 S = TQS;
935 }
936
937 getTypePtr()->getAsStringInternal(S);
938}
939
940void BuiltinType::getAsStringInternal(std::string &S) const {
941 if (S.empty()) {
942 S = getName();
943 } else {
944 // Prefix the basic type, e.g. 'int X'.
945 S = ' ' + S;
946 S = getName() + S;
947 }
948}
949
950void ComplexType::getAsStringInternal(std::string &S) const {
951 ElementType->getAsStringInternal(S);
952 S = "_Complex " + S;
953}
954
Christopher Lambebb97e92008-02-04 02:31:56 +0000955void ASQualType::getAsStringInternal(std::string &S) const {
956 S = "__attribute__((address_space("+llvm::utostr_32(AddressSpace)+")))" + S;
957 BaseType->getAsStringInternal(S);
958}
959
Reid Spencer5f016e22007-07-11 17:01:13 +0000960void PointerType::getAsStringInternal(std::string &S) const {
961 S = '*' + S;
962
963 // Handle things like 'int (*A)[4];' correctly.
964 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000965 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +0000966 S = '(' + S + ')';
967
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000968 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000969}
970
Steve Naroff5618bd42008-08-27 16:04:49 +0000971void BlockPointerType::getAsStringInternal(std::string &S) const {
972 S = '^' + S;
973 PointeeType.getAsStringInternal(S);
974}
975
Reid Spencer5f016e22007-07-11 17:01:13 +0000976void ReferenceType::getAsStringInternal(std::string &S) const {
977 S = '&' + S;
978
979 // Handle things like 'int (&A)[4];' correctly.
980 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000981 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +0000982 S = '(' + S + ')';
983
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000984 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000985}
986
Sebastian Redlf30208a2009-01-24 21:16:55 +0000987void MemberPointerType::getAsStringInternal(std::string &S) const {
988 std::string C;
989 Class->getAsStringInternal(C);
990 C += "::*";
991 S = C + S;
992
993 // Handle things like 'int (&A)[4];' correctly.
994 // FIXME: this should include vectors, but vectors use attributes I guess.
995 if (isa<ArrayType>(getPointeeType()))
996 S = '(' + S + ')';
997
998 getPointeeType().getAsStringInternal(S);
999}
1000
Steve Narofffb22d962007-08-30 01:06:46 +00001001void ConstantArrayType::getAsStringInternal(std::string &S) const {
1002 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +00001003 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +00001004 S += ']';
1005
1006 getElementType().getAsStringInternal(S);
1007}
1008
Eli Friedmanc5773c42008-02-15 18:16:39 +00001009void IncompleteArrayType::getAsStringInternal(std::string &S) const {
1010 S += "[]";
1011
1012 getElementType().getAsStringInternal(S);
1013}
1014
Steve Narofffb22d962007-08-30 01:06:46 +00001015void VariableArrayType::getAsStringInternal(std::string &S) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 S += '[';
1017
Steve Naroffc9406122007-08-30 18:10:14 +00001018 if (getIndexTypeQualifier()) {
1019 AppendTypeQualList(S, getIndexTypeQualifier());
Reid Spencer5f016e22007-07-11 17:01:13 +00001020 S += ' ';
1021 }
1022
Steve Naroffc9406122007-08-30 18:10:14 +00001023 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +00001024 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +00001025 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +00001026 S += '*';
1027
Steve Narofffb22d962007-08-30 01:06:46 +00001028 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001029 std::string SStr;
1030 llvm::raw_string_ostream s(SStr);
Steve Narofffb22d962007-08-30 01:06:46 +00001031 getSizeExpr()->printPretty(s);
1032 S += s.str();
1033 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001034 S += ']';
1035
Steve Narofffb22d962007-08-30 01:06:46 +00001036 getElementType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001037}
1038
Douglas Gregor898574e2008-12-05 23:32:09 +00001039void DependentSizedArrayType::getAsStringInternal(std::string &S) const {
1040 S += '[';
1041
1042 if (getIndexTypeQualifier()) {
1043 AppendTypeQualList(S, getIndexTypeQualifier());
1044 S += ' ';
1045 }
1046
1047 if (getSizeModifier() == Static)
1048 S += "static";
1049 else if (getSizeModifier() == Star)
1050 S += '*';
1051
1052 if (getSizeExpr()) {
1053 std::string SStr;
1054 llvm::raw_string_ostream s(SStr);
1055 getSizeExpr()->printPretty(s);
1056 S += s.str();
1057 }
1058 S += ']';
1059
1060 getElementType().getAsStringInternal(S);
1061}
1062
Reid Spencer5f016e22007-07-11 17:01:13 +00001063void VectorType::getAsStringInternal(std::string &S) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +00001064 // FIXME: We prefer to print the size directly here, but have no way
1065 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +00001066 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +00001067 S += llvm::utostr_32(NumElements); // convert back to bytes.
1068 S += " * sizeof(" + ElementType.getAsString() + "))))";
Reid Spencer5f016e22007-07-11 17:01:13 +00001069}
1070
Nate Begeman213541a2008-04-18 23:10:10 +00001071void ExtVectorType::getAsStringInternal(std::string &S) const {
1072 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +00001073 S += llvm::utostr_32(NumElements);
1074 S += ")))";
1075 ElementType.getAsStringInternal(S);
1076}
1077
Steve Naroffd1861fd2007-07-31 12:34:36 +00001078void TypeOfExpr::getAsStringInternal(std::string &InnerString) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001079 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
1080 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +00001081 std::string Str;
1082 llvm::raw_string_ostream s(Str);
Chris Lattner6000dac2007-08-08 22:51:59 +00001083 getUnderlyingExpr()->printPretty(s);
Steve Naroff1bfd5cc2007-08-05 03:24:45 +00001084 InnerString = "typeof(" + s.str() + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001085}
1086
Steve Naroff363bcff2007-08-01 23:45:51 +00001087void TypeOfType::getAsStringInternal(std::string &InnerString) const {
1088 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
1089 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001090 std::string Tmp;
1091 getUnderlyingType().getAsStringInternal(Tmp);
Steve Naroff363bcff2007-08-01 23:45:51 +00001092 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001093}
1094
Reid Spencer5f016e22007-07-11 17:01:13 +00001095void FunctionTypeNoProto::getAsStringInternal(std::string &S) const {
1096 // If needed for precedence reasons, wrap the inner part in grouping parens.
1097 if (!S.empty())
1098 S = "(" + S + ")";
1099
1100 S += "()";
1101 getResultType().getAsStringInternal(S);
1102}
1103
1104void FunctionTypeProto::getAsStringInternal(std::string &S) const {
1105 // If needed for precedence reasons, wrap the inner part in grouping parens.
1106 if (!S.empty())
1107 S = "(" + S + ")";
1108
1109 S += "(";
1110 std::string Tmp;
1111 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
1112 if (i) S += ", ";
1113 getArgType(i).getAsStringInternal(Tmp);
1114 S += Tmp;
1115 Tmp.clear();
1116 }
1117
1118 if (isVariadic()) {
1119 if (getNumArgs())
1120 S += ", ";
1121 S += "...";
1122 } else if (getNumArgs() == 0) {
1123 // Do not emit int() if we have a proto, emit 'int(void)'.
1124 S += "void";
1125 }
1126
1127 S += ")";
1128 getResultType().getAsStringInternal(S);
1129}
1130
1131
1132void TypedefType::getAsStringInternal(std::string &InnerString) const {
1133 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1134 InnerString = ' ' + InnerString;
1135 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1136}
1137
Douglas Gregor72c3f312008-12-05 18:15:24 +00001138void TemplateTypeParmType::getAsStringInternal(std::string &InnerString) const {
1139 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1140 InnerString = ' ' + InnerString;
Douglas Gregorfab9d672009-02-05 23:33:38 +00001141
1142 if (!Name)
1143 InnerString = "type-parameter-" + llvm::utostr_32(Depth) + '-' +
1144 llvm::utostr_32(Index) + InnerString;
1145 else
1146 InnerString = Name->getName() + InnerString;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001147}
1148
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001149void ObjCInterfaceType::getAsStringInternal(std::string &InnerString) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001150 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1151 InnerString = ' ' + InnerString;
1152 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1153}
1154
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001155void ObjCQualifiedInterfaceType::getAsStringInternal(
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001156 std::string &InnerString) const {
Fariborz Jahaniandfbcce22007-10-11 18:08:47 +00001157 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1158 InnerString = ' ' + InnerString;
Chris Lattner39f34e92008-11-24 04:00:27 +00001159 std::string ObjCQIString = getDecl()->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001160 ObjCQIString += '<';
Chris Lattnercdce6d12008-07-21 05:19:23 +00001161 bool isFirst = true;
1162 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1163 if (isFirst)
1164 isFirst = false;
1165 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001166 ObjCQIString += ',';
Chris Lattner39f34e92008-11-24 04:00:27 +00001167 ObjCQIString += (*I)->getNameAsString();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001168 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001169 ObjCQIString += '>';
1170 InnerString = ObjCQIString + InnerString;
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001171}
1172
Chris Lattnere8e4f922008-07-25 23:07:18 +00001173void ObjCQualifiedIdType::getAsStringInternal(std::string &InnerString) const {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001174 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1175 InnerString = ' ' + InnerString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001176 std::string ObjCQIString = "id";
1177 ObjCQIString += '<';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001178 int num = getNumProtocols();
1179 for (int i = 0; i < num; i++) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001180 ObjCQIString += getProtocols(i)->getNameAsString();
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001181 if (i < num-1)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001182 ObjCQIString += ',';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001183 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001184 ObjCQIString += '>';
1185 InnerString = ObjCQIString + InnerString;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001186}
1187
Reid Spencer5f016e22007-07-11 17:01:13 +00001188void TagType::getAsStringInternal(std::string &InnerString) const {
1189 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1190 InnerString = ' ' + InnerString;
1191
1192 const char *Kind = getDecl()->getKindName();
1193 const char *ID;
1194 if (const IdentifierInfo *II = getDecl()->getIdentifier())
1195 ID = II->getName();
1196 else
1197 ID = "<anonymous>";
1198
1199 InnerString = std::string(Kind) + " " + ID + InnerString;
1200}