blob: 62875ed5cbd15196985545399787af5b1884ab6b [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:
Anders Carlsson672c91d2009-02-09 21:53:01 +0000749 case ObjCQualifiedId:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000750 return true;
751
752 case Tagged:
753 if (isEnumeralType())
754 return true;
755 if (CXXRecordDecl *RDecl = dyn_cast<CXXRecordDecl>(
756 cast<TagType>(CanonicalType)->getDecl()))
757 return RDecl->isPOD();
758 // C struct/union is POD.
759 return true;
760 }
761}
762
Reid Spencer5f016e22007-07-11 17:01:13 +0000763bool Type::isPromotableIntegerType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000764 if (const BuiltinType *BT = getAsBuiltinType())
765 switch (BT->getKind()) {
766 case BuiltinType::Bool:
767 case BuiltinType::Char_S:
768 case BuiltinType::Char_U:
769 case BuiltinType::SChar:
770 case BuiltinType::UChar:
771 case BuiltinType::Short:
772 case BuiltinType::UShort:
773 return true;
774 default:
775 return false;
776 }
777 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000778}
779
780const char *BuiltinType::getName() const {
781 switch (getKind()) {
782 default: assert(0 && "Unknown builtin type!");
783 case Void: return "void";
784 case Bool: return "_Bool";
785 case Char_S: return "char";
786 case Char_U: return "char";
787 case SChar: return "signed char";
788 case Short: return "short";
789 case Int: return "int";
790 case Long: return "long";
791 case LongLong: return "long long";
792 case UChar: return "unsigned char";
793 case UShort: return "unsigned short";
794 case UInt: return "unsigned int";
795 case ULong: return "unsigned long";
796 case ULongLong: return "unsigned long long";
797 case Float: return "float";
798 case Double: return "double";
799 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000800 case WChar: return "wchar_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000801 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +0000802 case Dependent: return "<dependent type>";
Reid Spencer5f016e22007-07-11 17:01:13 +0000803 }
804}
805
Reid Spencer5f016e22007-07-11 17:01:13 +0000806void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000807 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000808 unsigned NumArgs, bool isVariadic,
809 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000810 ID.AddPointer(Result.getAsOpaquePtr());
811 for (unsigned i = 0; i != NumArgs; ++i)
812 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
813 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000814 ID.AddInteger(TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000815}
816
817void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000818 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
819 getTypeQuals());
Reid Spencer5f016e22007-07-11 17:01:13 +0000820}
821
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000822void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner1ee07002008-04-07 06:37:47 +0000823 const ObjCInterfaceDecl *Decl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000824 ObjCProtocolDecl **protocols,
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000825 unsigned NumProtocols) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000826 ID.AddPointer(Decl);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000827 for (unsigned i = 0; i != NumProtocols; i++)
828 ID.AddPointer(protocols[i]);
829}
830
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000831void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000832 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000833}
834
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000835void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000836 ObjCProtocolDecl **protocols,
837 unsigned NumProtocols) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000838 for (unsigned i = 0; i != NumProtocols; i++)
839 ID.AddPointer(protocols[i]);
840}
841
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000842void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000843 Profile(ID, &Protocols[0], getNumProtocols());
844}
845
Chris Lattnera2c77672007-07-16 22:05:22 +0000846/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
847/// potentially looking through *all* consequtive typedefs. This returns the
848/// sum of the type qualifiers, so if you have:
849/// typedef const int A;
850/// typedef volatile A B;
851/// looking through the typedefs for B will give you "const volatile A".
852///
853QualType TypedefType::LookThroughTypedefs() const {
854 // Usually, there is only a single level of typedefs, be fast in that case.
855 QualType FirstType = getDecl()->getUnderlyingType();
856 if (!isa<TypedefType>(FirstType))
857 return FirstType;
858
859 // Otherwise, do the fully general loop.
860 unsigned TypeQuals = 0;
861 const TypedefType *TDT = this;
862 while (1) {
863 QualType CurType = TDT->getDecl()->getUnderlyingType();
Chris Lattnerf46699c2008-02-20 20:55:12 +0000864
865
866 /// FIXME:
867 /// FIXME: This is incorrect for ASQuals!
868 /// FIXME:
869 TypeQuals |= CurType.getCVRQualifiers();
Chris Lattnera2c77672007-07-16 22:05:22 +0000870
871 TDT = dyn_cast<TypedefType>(CurType);
872 if (TDT == 0)
873 return QualType(CurType.getTypePtr(), TypeQuals);
874 }
875}
Reid Spencer5f016e22007-07-11 17:01:13 +0000876
Douglas Gregor898574e2008-12-05 23:32:09 +0000877TypeOfExpr::TypeOfExpr(Expr *E, QualType can)
878 : Type(TypeOfExp, can, E->isTypeDependent()), TOExpr(E) {
879 assert(!isa<TypedefType>(can) && "Invalid canonical type");
880}
881
Chris Lattner2daa5df2008-04-06 22:04:54 +0000882bool RecordType::classof(const TagType *TT) {
883 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000884}
885
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +0000886bool CXXRecordType::classof(const TagType *TT) {
887 return isa<CXXRecordDecl>(TT->getDecl());
888}
889
Chris Lattner2daa5df2008-04-06 22:04:54 +0000890bool EnumType::classof(const TagType *TT) {
891 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +0000892}
893
Douglas Gregor55f6b142009-02-09 18:46:07 +0000894void
895ClassTemplateSpecializationType::
896packBooleanValues(unsigned NumArgs, bool *Values, uintptr_t *Words) {
897 const unsigned BitsPerWord = sizeof(uintptr_t) * CHAR_BIT;
898
899 for (unsigned PW = 0, NumPackedWords = getNumPackedWords(NumArgs), Arg = 0;
900 PW != NumPackedWords; ++PW) {
901 uintptr_t Word = 0;
902 for (unsigned Bit = 0; Bit < BitsPerWord && Arg < NumArgs; ++Bit, ++Arg) {
903 Word <<= 1;
904 Word |= Values[Arg];
905 }
906 Words[PW] = Word;
907 }
908}
909
910ClassTemplateSpecializationType::
911ClassTemplateSpecializationType(TemplateDecl *T, unsigned NumArgs,
912 uintptr_t *Args, bool *ArgIsType,
913 QualType Canon)
914 : Type(ClassTemplateSpecialization, Canon, /*FIXME:Dependent=*/false),
915 Template(T), NumArgs(NumArgs)
916{
917 uintptr_t *Data = reinterpret_cast<uintptr_t *>(this + 1);
918
919 // Pack the argument-is-type values into the words just after the
920 // class template specialization type.
921 packBooleanValues(NumArgs, ArgIsType, Data);
922
923 // Copy the template arguments after the packed words.
924 Data += getNumPackedWords(NumArgs);
925 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
926 Data[Arg] = Args[Arg];
927}
928
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000929void ClassTemplateSpecializationType::Destroy(ASTContext& C) {
930 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
931 if (!isArgType(Arg))
932 getArgAsExpr(Arg)->Destroy(C);
933}
934
Douglas Gregor55f6b142009-02-09 18:46:07 +0000935uintptr_t
936ClassTemplateSpecializationType::getArgAsOpaqueValue(unsigned Arg) const {
937 const uintptr_t *Data = reinterpret_cast<const uintptr_t *>(this + 1);
938 Data += getNumPackedWords(NumArgs);
939 return Data[Arg];
940}
941
942bool ClassTemplateSpecializationType::isArgType(unsigned Arg) const {
943 const unsigned BitsPerWord = sizeof(uintptr_t) * CHAR_BIT;
944 const uintptr_t *Data = reinterpret_cast<const uintptr_t *>(this + 1);
945 Data += Arg / BitsPerWord;
946 return (*Data >> (Arg % BitsPerWord)) & 0x01;
947}
Anders Carlsson97e01792008-12-21 00:16:32 +0000948
Reid Spencer5f016e22007-07-11 17:01:13 +0000949//===----------------------------------------------------------------------===//
950// Type Printing
951//===----------------------------------------------------------------------===//
952
953void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +0000954 std::string R = "identifier";
Reid Spencer5f016e22007-07-11 17:01:13 +0000955 getAsStringInternal(R);
956 if (msg)
957 fprintf(stderr, "%s: %s\n", msg, R.c_str());
958 else
959 fprintf(stderr, "%s\n", R.c_str());
960}
Chris Lattnerc36d4052008-07-27 00:48:22 +0000961void QualType::dump() const {
962 dump("");
963}
964
965void Type::dump() const {
966 std::string S = "identifier";
967 getAsStringInternal(S);
968 fprintf(stderr, "%s\n", S.c_str());
969}
970
971
Reid Spencer5f016e22007-07-11 17:01:13 +0000972
973static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
974 // Note: funkiness to ensure we get a space only between quals.
975 bool NonePrinted = true;
976 if (TypeQuals & QualType::Const)
977 S += "const", NonePrinted = false;
978 if (TypeQuals & QualType::Volatile)
979 S += (NonePrinted+" volatile"), NonePrinted = false;
980 if (TypeQuals & QualType::Restrict)
981 S += (NonePrinted+" restrict"), NonePrinted = false;
982}
983
984void QualType::getAsStringInternal(std::string &S) const {
985 if (isNull()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000986 S += "NULL TYPE";
Reid Spencer5f016e22007-07-11 17:01:13 +0000987 return;
988 }
989
990 // Print qualifiers as appropriate.
Gabor Greif3513e132008-02-21 17:40:55 +0000991 if (unsigned Tq = getCVRQualifiers()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000992 std::string TQS;
Gabor Greif3513e132008-02-21 17:40:55 +0000993 AppendTypeQualList(TQS, Tq);
Reid Spencer5f016e22007-07-11 17:01:13 +0000994 if (!S.empty())
995 S = TQS + ' ' + S;
996 else
997 S = TQS;
998 }
999
1000 getTypePtr()->getAsStringInternal(S);
1001}
1002
1003void BuiltinType::getAsStringInternal(std::string &S) const {
1004 if (S.empty()) {
1005 S = getName();
1006 } else {
1007 // Prefix the basic type, e.g. 'int X'.
1008 S = ' ' + S;
1009 S = getName() + S;
1010 }
1011}
1012
1013void ComplexType::getAsStringInternal(std::string &S) const {
1014 ElementType->getAsStringInternal(S);
1015 S = "_Complex " + S;
1016}
1017
Christopher Lambebb97e92008-02-04 02:31:56 +00001018void ASQualType::getAsStringInternal(std::string &S) const {
1019 S = "__attribute__((address_space("+llvm::utostr_32(AddressSpace)+")))" + S;
1020 BaseType->getAsStringInternal(S);
1021}
1022
Reid Spencer5f016e22007-07-11 17:01:13 +00001023void PointerType::getAsStringInternal(std::string &S) const {
1024 S = '*' + S;
1025
1026 // Handle things like 'int (*A)[4];' correctly.
1027 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001028 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001029 S = '(' + S + ')';
1030
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001031 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001032}
1033
Steve Naroff5618bd42008-08-27 16:04:49 +00001034void BlockPointerType::getAsStringInternal(std::string &S) const {
1035 S = '^' + S;
1036 PointeeType.getAsStringInternal(S);
1037}
1038
Reid Spencer5f016e22007-07-11 17:01:13 +00001039void ReferenceType::getAsStringInternal(std::string &S) const {
1040 S = '&' + S;
1041
1042 // Handle things like 'int (&A)[4];' correctly.
1043 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001044 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001045 S = '(' + S + ')';
1046
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001047 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001048}
1049
Sebastian Redlf30208a2009-01-24 21:16:55 +00001050void MemberPointerType::getAsStringInternal(std::string &S) const {
1051 std::string C;
1052 Class->getAsStringInternal(C);
1053 C += "::*";
1054 S = C + S;
1055
1056 // Handle things like 'int (&A)[4];' correctly.
1057 // FIXME: this should include vectors, but vectors use attributes I guess.
1058 if (isa<ArrayType>(getPointeeType()))
1059 S = '(' + S + ')';
1060
1061 getPointeeType().getAsStringInternal(S);
1062}
1063
Steve Narofffb22d962007-08-30 01:06:46 +00001064void ConstantArrayType::getAsStringInternal(std::string &S) const {
1065 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +00001066 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +00001067 S += ']';
1068
1069 getElementType().getAsStringInternal(S);
1070}
1071
Eli Friedmanc5773c42008-02-15 18:16:39 +00001072void IncompleteArrayType::getAsStringInternal(std::string &S) const {
1073 S += "[]";
1074
1075 getElementType().getAsStringInternal(S);
1076}
1077
Steve Narofffb22d962007-08-30 01:06:46 +00001078void VariableArrayType::getAsStringInternal(std::string &S) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001079 S += '[';
1080
Steve Naroffc9406122007-08-30 18:10:14 +00001081 if (getIndexTypeQualifier()) {
1082 AppendTypeQualList(S, getIndexTypeQualifier());
Reid Spencer5f016e22007-07-11 17:01:13 +00001083 S += ' ';
1084 }
1085
Steve Naroffc9406122007-08-30 18:10:14 +00001086 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +00001087 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +00001088 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +00001089 S += '*';
1090
Steve Narofffb22d962007-08-30 01:06:46 +00001091 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001092 std::string SStr;
1093 llvm::raw_string_ostream s(SStr);
Steve Narofffb22d962007-08-30 01:06:46 +00001094 getSizeExpr()->printPretty(s);
1095 S += s.str();
1096 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001097 S += ']';
1098
Steve Narofffb22d962007-08-30 01:06:46 +00001099 getElementType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001100}
1101
Douglas Gregor898574e2008-12-05 23:32:09 +00001102void DependentSizedArrayType::getAsStringInternal(std::string &S) const {
1103 S += '[';
1104
1105 if (getIndexTypeQualifier()) {
1106 AppendTypeQualList(S, getIndexTypeQualifier());
1107 S += ' ';
1108 }
1109
1110 if (getSizeModifier() == Static)
1111 S += "static";
1112 else if (getSizeModifier() == Star)
1113 S += '*';
1114
1115 if (getSizeExpr()) {
1116 std::string SStr;
1117 llvm::raw_string_ostream s(SStr);
1118 getSizeExpr()->printPretty(s);
1119 S += s.str();
1120 }
1121 S += ']';
1122
1123 getElementType().getAsStringInternal(S);
1124}
1125
Reid Spencer5f016e22007-07-11 17:01:13 +00001126void VectorType::getAsStringInternal(std::string &S) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +00001127 // FIXME: We prefer to print the size directly here, but have no way
1128 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +00001129 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +00001130 S += llvm::utostr_32(NumElements); // convert back to bytes.
1131 S += " * sizeof(" + ElementType.getAsString() + "))))";
Reid Spencer5f016e22007-07-11 17:01:13 +00001132}
1133
Nate Begeman213541a2008-04-18 23:10:10 +00001134void ExtVectorType::getAsStringInternal(std::string &S) const {
1135 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +00001136 S += llvm::utostr_32(NumElements);
1137 S += ")))";
1138 ElementType.getAsStringInternal(S);
1139}
1140
Steve Naroffd1861fd2007-07-31 12:34:36 +00001141void TypeOfExpr::getAsStringInternal(std::string &InnerString) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001142 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
1143 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +00001144 std::string Str;
1145 llvm::raw_string_ostream s(Str);
Chris Lattner6000dac2007-08-08 22:51:59 +00001146 getUnderlyingExpr()->printPretty(s);
Steve Naroff1bfd5cc2007-08-05 03:24:45 +00001147 InnerString = "typeof(" + s.str() + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001148}
1149
Steve Naroff363bcff2007-08-01 23:45:51 +00001150void TypeOfType::getAsStringInternal(std::string &InnerString) const {
1151 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
1152 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001153 std::string Tmp;
1154 getUnderlyingType().getAsStringInternal(Tmp);
Steve Naroff363bcff2007-08-01 23:45:51 +00001155 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001156}
1157
Reid Spencer5f016e22007-07-11 17:01:13 +00001158void FunctionTypeNoProto::getAsStringInternal(std::string &S) const {
1159 // If needed for precedence reasons, wrap the inner part in grouping parens.
1160 if (!S.empty())
1161 S = "(" + S + ")";
1162
1163 S += "()";
1164 getResultType().getAsStringInternal(S);
1165}
1166
1167void FunctionTypeProto::getAsStringInternal(std::string &S) const {
1168 // If needed for precedence reasons, wrap the inner part in grouping parens.
1169 if (!S.empty())
1170 S = "(" + S + ")";
1171
1172 S += "(";
1173 std::string Tmp;
1174 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
1175 if (i) S += ", ";
1176 getArgType(i).getAsStringInternal(Tmp);
1177 S += Tmp;
1178 Tmp.clear();
1179 }
1180
1181 if (isVariadic()) {
1182 if (getNumArgs())
1183 S += ", ";
1184 S += "...";
1185 } else if (getNumArgs() == 0) {
1186 // Do not emit int() if we have a proto, emit 'int(void)'.
1187 S += "void";
1188 }
1189
1190 S += ")";
1191 getResultType().getAsStringInternal(S);
1192}
1193
1194
1195void TypedefType::getAsStringInternal(std::string &InnerString) const {
1196 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1197 InnerString = ' ' + InnerString;
1198 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1199}
1200
Douglas Gregor72c3f312008-12-05 18:15:24 +00001201void TemplateTypeParmType::getAsStringInternal(std::string &InnerString) const {
1202 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1203 InnerString = ' ' + InnerString;
Douglas Gregorfab9d672009-02-05 23:33:38 +00001204
1205 if (!Name)
1206 InnerString = "type-parameter-" + llvm::utostr_32(Depth) + '-' +
1207 llvm::utostr_32(Index) + InnerString;
1208 else
1209 InnerString = Name->getName() + InnerString;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001210}
1211
Douglas Gregor55f6b142009-02-09 18:46:07 +00001212void
1213ClassTemplateSpecializationType::
1214getAsStringInternal(std::string &InnerString) const {
1215 std::string SpecString = Template->getNameAsString();
1216 SpecString += '<';
1217 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1218 if (Arg)
1219 SpecString += ", ";
1220
1221 // Print the argument into a string.
1222 std::string ArgString;
1223 if (isArgType(Arg))
1224 getArgAsType(Arg).getAsStringInternal(ArgString);
1225 else {
1226 llvm::raw_string_ostream s(ArgString);
1227 getArgAsExpr(Arg)->printPretty(s);
1228 }
1229
1230 // If this is the first argument and its string representation
1231 // begins with the global scope specifier ('::foo'), add a space
1232 // to avoid printing the diagraph '<:'.
1233 if (!Arg && !ArgString.empty() && ArgString[0] == ':')
1234 SpecString += ' ';
1235
1236 SpecString += ArgString;
1237 }
1238
1239 // If the last character of our string is '>', add another space to
1240 // keep the two '>''s separate tokens. We don't *have* to do this in
1241 // C++0x, but it's still good hygiene.
1242 if (SpecString[SpecString.size() - 1] == '>')
1243 SpecString += ' ';
1244
1245 SpecString += '>';
1246
1247 if (InnerString.empty())
1248 InnerString.swap(SpecString);
1249 else
1250 InnerString = SpecString + ' ' + InnerString;
1251}
1252
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001253void ObjCInterfaceType::getAsStringInternal(std::string &InnerString) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001254 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1255 InnerString = ' ' + InnerString;
1256 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1257}
1258
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001259void ObjCQualifiedInterfaceType::getAsStringInternal(
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001260 std::string &InnerString) const {
Fariborz Jahaniandfbcce22007-10-11 18:08:47 +00001261 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1262 InnerString = ' ' + InnerString;
Chris Lattner39f34e92008-11-24 04:00:27 +00001263 std::string ObjCQIString = getDecl()->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001264 ObjCQIString += '<';
Chris Lattnercdce6d12008-07-21 05:19:23 +00001265 bool isFirst = true;
1266 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1267 if (isFirst)
1268 isFirst = false;
1269 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001270 ObjCQIString += ',';
Chris Lattner39f34e92008-11-24 04:00:27 +00001271 ObjCQIString += (*I)->getNameAsString();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001272 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001273 ObjCQIString += '>';
1274 InnerString = ObjCQIString + InnerString;
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001275}
1276
Chris Lattnere8e4f922008-07-25 23:07:18 +00001277void ObjCQualifiedIdType::getAsStringInternal(std::string &InnerString) const {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001278 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1279 InnerString = ' ' + InnerString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001280 std::string ObjCQIString = "id";
1281 ObjCQIString += '<';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001282 int num = getNumProtocols();
1283 for (int i = 0; i < num; i++) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001284 ObjCQIString += getProtocols(i)->getNameAsString();
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001285 if (i < num-1)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001286 ObjCQIString += ',';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001287 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001288 ObjCQIString += '>';
1289 InnerString = ObjCQIString + InnerString;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001290}
1291
Reid Spencer5f016e22007-07-11 17:01:13 +00001292void TagType::getAsStringInternal(std::string &InnerString) const {
1293 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1294 InnerString = ' ' + InnerString;
1295
1296 const char *Kind = getDecl()->getKindName();
1297 const char *ID;
1298 if (const IdentifierInfo *II = getDecl()->getIdentifier())
1299 ID = II->getName();
1300 else
1301 ID = "<anonymous>";
1302
1303 InnerString = std::string(Kind) + " " + ID + InnerString;
1304}