blob: 3608d34c691d38f492eb9ffa3a025045a67c4fe7 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Type.cpp - Type representation and manipulation ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related functionality.
11//
12//===----------------------------------------------------------------------===//
13
Nuno Lopesb381aac2008-09-01 11:33:04 +000014#include "clang/AST/ASTContext.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "clang/AST/Type.h"
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +000016#include "clang/AST/DeclCXX.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000018#include "clang/AST/DeclTemplate.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/AST/Expr.h"
Douglas Gregord249e1d1f2009-05-29 20:38:28 +000020#include "clang/AST/PrettyPrinter.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "llvm/ADT/StringExtras.h"
Douglas Gregorbad35182009-03-19 03:51:16 +000022#include "llvm/Support/raw_ostream.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
John McCallbf1cc052009-09-29 23:03:30 +000025bool QualType::isConstant(QualType T, ASTContext &Ctx) {
26 if (T.isConstQualified())
Nuno Lopesb381aac2008-09-01 11:33:04 +000027 return true;
28
John McCallbf1cc052009-09-29 23:03:30 +000029 if (const ArrayType *AT = Ctx.getAsArrayType(T))
30 return AT->getElementType().isConstant(Ctx);
Nuno Lopesb381aac2008-09-01 11:33:04 +000031
32 return false;
33}
34
Ted Kremenek566c2ba2009-01-19 21:31:22 +000035void Type::Destroy(ASTContext& C) {
36 this->~Type();
Steve Naroff3e970492009-01-27 21:25:57 +000037 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000038}
39
40void VariableArrayType::Destroy(ASTContext& C) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +000041 if (SizeExpr)
42 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000043 this->~VariableArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000044 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000045}
Reid Spencer5f016e22007-07-11 17:01:13 +000046
Douglas Gregor898574e2008-12-05 23:32:09 +000047void DependentSizedArrayType::Destroy(ASTContext& C) {
Argyrios Kyrtzidise7f38402009-07-18 21:18:10 +000048 // FIXME: Resource contention like in ConstantArrayWithExprType ?
49 // May crash, depending on platform or a particular build.
50 // SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000051 this->~DependentSizedArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000052 C.Deallocate(this);
Douglas Gregor898574e2008-12-05 23:32:09 +000053}
Chris Lattnerc63a1f22008-08-04 07:31:14 +000054
Mike Stump1eb44332009-09-09 15:08:12 +000055void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregor04d4bee2009-07-31 00:23:35 +000056 ASTContext &Context,
57 QualType ET,
58 ArraySizeModifier SizeMod,
59 unsigned TypeQuals,
60 Expr *E) {
61 ID.AddPointer(ET.getAsOpaquePtr());
62 ID.AddInteger(SizeMod);
63 ID.AddInteger(TypeQuals);
64 E->Profile(ID, Context, true);
65}
66
Mike Stump1eb44332009-09-09 15:08:12 +000067void
68DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregor2ec09f12009-07-31 03:54:25 +000069 ASTContext &Context,
70 QualType ElementType, Expr *SizeExpr) {
71 ID.AddPointer(ElementType.getAsOpaquePtr());
72 SizeExpr->Profile(ID, Context, true);
73}
74
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000075void DependentSizedExtVectorType::Destroy(ASTContext& C) {
Douglas Gregorbd1099e2009-07-23 16:36:45 +000076 // FIXME: Deallocate size expression, once we're cloning properly.
77// if (SizeExpr)
78// SizeExpr->Destroy(C);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000079 this->~DependentSizedExtVectorType();
80 C.Deallocate(this);
81}
82
Chris Lattnerc63a1f22008-08-04 07:31:14 +000083/// getArrayElementTypeNoTypeQual - If this is an array type, return the
84/// element type of the array, potentially with type qualifiers missing.
85/// This method should never be used when type qualifiers are meaningful.
86const Type *Type::getArrayElementTypeNoTypeQual() const {
87 // If this is directly an array type, return it.
88 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
89 return ATy->getElementType().getTypePtr();
Mike Stump1eb44332009-09-09 15:08:12 +000090
Chris Lattnerc63a1f22008-08-04 07:31:14 +000091 // If the canonical form of this type isn't the right kind, reject it.
John McCall0953e762009-09-24 19:53:00 +000092 if (!isa<ArrayType>(CanonicalType))
Chris Lattnerc63a1f22008-08-04 07:31:14 +000093 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +000094
Chris Lattnerc63a1f22008-08-04 07:31:14 +000095 // If this is a typedef for an array type, strip the typedef off without
96 // losing all typedef information.
John McCallbf1cc052009-09-29 23:03:30 +000097 return cast<ArrayType>(getUnqualifiedDesugaredType())
98 ->getElementType().getTypePtr();
Chris Lattner2fa8c252009-03-17 22:51:02 +000099}
100
101/// getDesugaredType - Return the specified type with any "sugar" removed from
102/// the type. This takes off typedefs, typeof's etc. If the outer level of
103/// the type is already concrete, it returns it unmodified. This is similar
104/// to getting the canonical type, but it doesn't remove *all* typedefs. For
105/// example, it returns "T*" as "T*", (not as "int*"), because the pointer is
106/// concrete.
John McCallbf1cc052009-09-29 23:03:30 +0000107QualType QualType::getDesugaredType(QualType T) {
John McCall0953e762009-09-24 19:53:00 +0000108 QualifierCollector Qs;
John McCallbf1cc052009-09-29 23:03:30 +0000109
110 QualType Cur = T;
111 while (true) {
112 const Type *CurTy = Qs.strip(Cur);
113 switch (CurTy->getTypeClass()) {
114#define ABSTRACT_TYPE(Class, Parent)
115#define TYPE(Class, Parent) \
116 case Type::Class: { \
117 const Class##Type *Ty = cast<Class##Type>(CurTy); \
118 if (!Ty->isSugared()) \
119 return Qs.apply(Cur); \
120 Cur = Ty->desugar(); \
121 break; \
122 }
123#include "clang/AST/TypeNodes.def"
124 }
125 }
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000126}
127
John McCallbf1cc052009-09-29 23:03:30 +0000128/// getUnqualifiedDesugaredType - Pull any qualifiers and syntactic
129/// sugar off the given type. This should produce an object of the
130/// same dynamic type as the canonical type.
131const Type *Type::getUnqualifiedDesugaredType() const {
132 const Type *Cur = this;
Douglas Gregor969c6892009-04-01 15:47:24 +0000133
John McCallbf1cc052009-09-29 23:03:30 +0000134 while (true) {
135 switch (Cur->getTypeClass()) {
136#define ABSTRACT_TYPE(Class, Parent)
137#define TYPE(Class, Parent) \
138 case Class: { \
139 const Class##Type *Ty = cast<Class##Type>(Cur); \
140 if (!Ty->isSugared()) return Cur; \
141 Cur = Ty->desugar().getTypePtr(); \
142 break; \
143 }
144#include "clang/AST/TypeNodes.def"
145 }
Douglas Gregorc45c2322009-03-31 00:43:58 +0000146 }
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000147}
148
Reid Spencer5f016e22007-07-11 17:01:13 +0000149/// isVoidType - Helper method to determine if this is the 'void' type.
150bool Type::isVoidType() const {
151 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
152 return BT->getKind() == BuiltinType::Void;
153 return false;
154}
155
156bool Type::isObjectType() const {
Douglas Gregorbad0e652009-03-24 20:32:41 +0000157 if (isa<FunctionType>(CanonicalType) || isa<ReferenceType>(CanonicalType) ||
158 isa<IncompleteArrayType>(CanonicalType) || isVoidType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000159 return false;
Douglas Gregorbad0e652009-03-24 20:32:41 +0000160 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000161}
162
163bool Type::isDerivedType() const {
164 switch (CanonicalType->getTypeClass()) {
165 case Pointer:
Steve Narofffb22d962007-08-30 01:06:46 +0000166 case VariableArray:
167 case ConstantArray:
Eli Friedmanc5773c42008-02-15 18:16:39 +0000168 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000169 case FunctionProto:
170 case FunctionNoProto:
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000171 case LValueReference:
172 case RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +0000173 case Record:
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 default:
176 return false;
177 }
178}
179
Chris Lattner99dc9142008-04-13 18:59:07 +0000180bool Type::isClassType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000181 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000182 return RT->getDecl()->isClass();
Chris Lattner99dc9142008-04-13 18:59:07 +0000183 return false;
184}
Chris Lattnerc8629632007-07-31 19:29:30 +0000185bool Type::isStructureType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000186 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000187 return RT->getDecl()->isStruct();
Chris Lattnerc8629632007-07-31 19:29:30 +0000188 return false;
189}
Steve Naroff7154a772009-07-01 14:36:47 +0000190bool Type::isVoidPointerType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000191 if (const PointerType *PT = getAs<PointerType>())
Steve Naroff7154a772009-07-01 14:36:47 +0000192 return PT->getPointeeType()->isVoidType();
193 return false;
194}
195
Chris Lattnerc8629632007-07-31 19:29:30 +0000196bool Type::isUnionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000197 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000198 return RT->getDecl()->isUnion();
Chris Lattnerc8629632007-07-31 19:29:30 +0000199 return false;
200}
Chris Lattnerc8629632007-07-31 19:29:30 +0000201
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000202bool Type::isComplexType() const {
Steve Naroff02f62a92008-01-15 19:36:10 +0000203 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
204 return CT->getElementType()->isFloatingType();
205 return false;
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000206}
207
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000208bool Type::isComplexIntegerType() const {
209 // Check for GCC complex integer extension.
John McCall0953e762009-09-24 19:53:00 +0000210 return getAsComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000211}
212
213const ComplexType *Type::getAsComplexIntegerType() const {
John McCall0953e762009-09-24 19:53:00 +0000214 if (const ComplexType *Complex = getAs<ComplexType>())
215 if (Complex->getElementType()->isIntegerType())
216 return Complex;
217 return 0;
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000218}
219
Steve Naroff14108da2009-07-10 23:34:53 +0000220QualType Type::getPointeeType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000221 if (const PointerType *PT = getAs<PointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000222 return PT->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +0000223 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000224 return OPT->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000225 if (const BlockPointerType *BPT = getAs<BlockPointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000226 return BPT->getPointeeType();
Mike Stump9c212892009-11-03 19:03:17 +0000227 if (const ReferenceType *RT = getAs<ReferenceType>())
228 return RT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +0000229 return QualType();
230}
Chris Lattnerb77792e2008-07-26 22:17:49 +0000231
Eli Friedmand3f2f792008-02-17 00:59:11 +0000232/// isVariablyModifiedType (C99 6.7.5p3) - Return true for variable length
233/// array types and types that contain variable array types in their
234/// declarator
Steve Naroffd7444aa2007-08-31 17:20:07 +0000235bool Type::isVariablyModifiedType() const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000236 // A VLA is a variably modified type.
237 if (isVariableArrayType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000238 return true;
239
240 // An array can contain a variably modified type
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000241 if (const Type *T = getArrayElementTypeNoTypeQual())
242 return T->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000243
Sebastian Redlf30208a2009-01-24 21:16:55 +0000244 // A pointer can point to a variably modified type.
245 // Also, C++ references and member pointers can point to a variably modified
246 // type, where VLAs appear as an extension to C++, and should be treated
247 // correctly.
Ted Kremenek6217b802009-07-29 21:53:49 +0000248 if (const PointerType *PT = getAs<PointerType>())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000249 return PT->getPointeeType()->isVariablyModifiedType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000250 if (const ReferenceType *RT = getAs<ReferenceType>())
Daniel Dunbar68694ad2009-02-26 19:54:52 +0000251 return RT->getPointeeType()->isVariablyModifiedType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000252 if (const MemberPointerType *PT = getAs<MemberPointerType>())
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000253 return PT->getPointeeType()->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000254
255 // A function can return a variably modified type
256 // This one isn't completely obvious, but it follows from the
257 // definition in C99 6.7.5p3. Because of this rule, it's
258 // illegal to declare a function returning a variably modified type.
John McCall183700f2009-09-21 23:43:11 +0000259 if (const FunctionType *FT = getAs<FunctionType>())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000260 return FT->getResultType()->isVariablyModifiedType();
261
Steve Naroffd7444aa2007-08-31 17:20:07 +0000262 return false;
263}
264
Chris Lattnerc8629632007-07-31 19:29:30 +0000265const RecordType *Type::getAsStructureType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000266 // If this is directly a structure type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000267 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000268 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000269 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000270 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000271
272 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000273 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000274 if (!RT->getDecl()->isStruct())
Chris Lattnerdea61462007-10-29 03:41:11 +0000275 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Chris Lattnerdea61462007-10-29 03:41:11 +0000277 // If this is a typedef for a structure type, strip the typedef off without
278 // losing all typedef information.
John McCallbf1cc052009-09-29 23:03:30 +0000279 return cast<RecordType>(getUnqualifiedDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000280 }
Steve Naroff7064f5c2007-07-26 18:32:01 +0000281 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000282}
283
Mike Stump1eb44332009-09-09 15:08:12 +0000284const RecordType *Type::getAsUnionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000285 // If this is directly a union type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000286 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000287 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000288 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000289 }
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Chris Lattnerdea61462007-10-29 03:41:11 +0000291 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000292 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000293 if (!RT->getDecl()->isUnion())
Chris Lattnerdea61462007-10-29 03:41:11 +0000294 return 0;
295
296 // If this is a typedef for a union type, strip the typedef off without
297 // losing all typedef information.
John McCallbf1cc052009-09-29 23:03:30 +0000298 return cast<RecordType>(getUnqualifiedDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000299 }
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Steve Naroff7064f5c2007-07-26 18:32:01 +0000301 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000302}
303
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000304const ObjCInterfaceType *Type::getAsObjCQualifiedInterfaceType() const {
305 // There is no sugar for ObjCInterfaceType's, just return the canonical
306 // type pointer if it is the right class. There is no typedef information to
307 // return and these cannot be Address-space qualified.
John McCall183700f2009-09-21 23:43:11 +0000308 if (const ObjCInterfaceType *OIT = getAs<ObjCInterfaceType>())
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000309 if (OIT->getNumProtocols())
310 return OIT;
311 return 0;
312}
313
314bool Type::isObjCQualifiedInterfaceType() const {
Steve Naroffe61ad0b2009-07-18 15:38:31 +0000315 return getAsObjCQualifiedInterfaceType() != 0;
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000316}
317
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000318const ObjCObjectPointerType *Type::getAsObjCQualifiedIdType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000319 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
320 // type pointer if it is the right class.
John McCall183700f2009-09-21 23:43:11 +0000321 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000322 if (OPT->isObjCQualifiedIdType())
323 return OPT;
324 }
325 return 0;
Chris Lattner368eefa2008-04-07 00:27:04 +0000326}
327
Steve Naroff14108da2009-07-10 23:34:53 +0000328const ObjCObjectPointerType *Type::getAsObjCInterfacePointerType() const {
John McCall183700f2009-09-21 23:43:11 +0000329 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +0000330 if (OPT->getInterfaceType())
331 return OPT;
332 }
333 return 0;
334}
335
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +0000336const CXXRecordDecl *Type::getCXXRecordDeclForPointerType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000337 if (const PointerType *PT = getAs<PointerType>())
338 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>())
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +0000339 return dyn_cast<CXXRecordDecl>(RT->getDecl());
340 return 0;
341}
342
Reid Spencer5f016e22007-07-11 17:01:13 +0000343bool Type::isIntegerType() const {
344 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
345 return BT->getKind() >= BuiltinType::Bool &&
Chris Lattner2df9ced2009-04-30 02:43:43 +0000346 BT->getKind() <= BuiltinType::Int128;
Reid Spencer5f016e22007-07-11 17:01:13 +0000347 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000348 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000349 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000350 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 return true;
Eli Friedmanf98aba32009-02-13 02:31:07 +0000352 if (isa<FixedWidthIntType>(CanonicalType))
353 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000354 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
355 return VT->getElementType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 return false;
357}
358
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000359bool Type::isIntegralType() const {
360 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
361 return BT->getKind() >= BuiltinType::Bool &&
362 BT->getKind() <= BuiltinType::LongLong;
363 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000364 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
365 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000366 // FIXME: In C++, enum types are never integral.
Eli Friedmanf98aba32009-02-13 02:31:07 +0000367 if (isa<FixedWidthIntType>(CanonicalType))
368 return true;
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000369 return false;
370}
371
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000372bool Type::isEnumeralType() const {
373 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000374 return TT->getDecl()->isEnum();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000375 return false;
376}
377
378bool Type::isBooleanType() const {
379 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
380 return BT->getKind() == BuiltinType::Bool;
381 return false;
382}
383
384bool Type::isCharType() const {
385 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
386 return BT->getKind() == BuiltinType::Char_U ||
387 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000388 BT->getKind() == BuiltinType::Char_S ||
389 BT->getKind() == BuiltinType::SChar;
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000390 return false;
391}
392
Douglas Gregor77a52232008-09-12 00:47:35 +0000393bool Type::isWideCharType() const {
394 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
395 return BT->getKind() == BuiltinType::WChar;
Douglas Gregor77a52232008-09-12 00:47:35 +0000396 return false;
397}
398
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000399/// isSignedIntegerType - Return true if this is an integer type that is
400/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
401/// an enum decl which has a signed representation, or a vector of signed
402/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000403bool Type::isSignedIntegerType() const {
404 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
405 return BT->getKind() >= BuiltinType::Char_S &&
406 BT->getKind() <= BuiltinType::LongLong;
407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Chris Lattner37c1b782008-04-06 22:29:16 +0000409 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
410 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +0000411
Eli Friedmanf98aba32009-02-13 02:31:07 +0000412 if (const FixedWidthIntType *FWIT =
413 dyn_cast<FixedWidthIntType>(CanonicalType))
414 return FWIT->isSigned();
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Steve Naroffc63b96a2007-07-12 21:46:55 +0000416 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
417 return VT->getElementType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 return false;
419}
420
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000421/// isUnsignedIntegerType - Return true if this is an integer type that is
422/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
423/// decl which has an unsigned representation, or a vector of unsigned integer
424/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000425bool Type::isUnsignedIntegerType() const {
426 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
427 return BT->getKind() >= BuiltinType::Bool &&
428 BT->getKind() <= BuiltinType::ULongLong;
429 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000430
Chris Lattner37c1b782008-04-06 22:29:16 +0000431 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
432 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000433
Eli Friedmanf98aba32009-02-13 02:31:07 +0000434 if (const FixedWidthIntType *FWIT =
435 dyn_cast<FixedWidthIntType>(CanonicalType))
436 return !FWIT->isSigned();
437
Steve Naroffc63b96a2007-07-12 21:46:55 +0000438 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
439 return VT->getElementType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000440 return false;
441}
442
443bool Type::isFloatingType() const {
444 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
445 return BT->getKind() >= BuiltinType::Float &&
446 BT->getKind() <= BuiltinType::LongDouble;
447 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000448 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000449 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
450 return VT->getElementType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000451 return false;
452}
453
454bool Type::isRealFloatingType() const {
455 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
456 return BT->getKind() >= BuiltinType::Float &&
457 BT->getKind() <= BuiltinType::LongDouble;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000458 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
459 return VT->getElementType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000460 return false;
461}
462
463bool Type::isRealType() const {
464 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
465 return BT->getKind() >= BuiltinType::Bool &&
466 BT->getKind() <= BuiltinType::LongDouble;
467 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000468 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000469 if (isa<FixedWidthIntType>(CanonicalType))
470 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000471 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
472 return VT->getElementType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000473 return false;
474}
475
Reid Spencer5f016e22007-07-11 17:01:13 +0000476bool Type::isArithmeticType() const {
477 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000478 return BT->getKind() >= BuiltinType::Bool &&
479 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000480 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
481 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
482 // If a body isn't seen by the time we get here, return false.
483 return ET->getDecl()->isDefinition();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000484 if (isa<FixedWidthIntType>(CanonicalType))
485 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000486 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
487}
488
489bool Type::isScalarType() const {
490 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
491 return BT->getKind() != BuiltinType::Void;
492 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000493 // Enums are scalar types, but only if they are defined. Incomplete enums
494 // are not treated as scalar types.
495 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000496 return true;
497 return false;
498 }
Eli Friedmanf98aba32009-02-13 02:31:07 +0000499 if (isa<FixedWidthIntType>(CanonicalType))
500 return true;
Steve Naroff5618bd42008-08-27 16:04:49 +0000501 return isa<PointerType>(CanonicalType) ||
502 isa<BlockPointerType>(CanonicalType) ||
Sebastian Redlf30208a2009-01-24 21:16:55 +0000503 isa<MemberPointerType>(CanonicalType) ||
Steve Naroff5618bd42008-08-27 16:04:49 +0000504 isa<ComplexType>(CanonicalType) ||
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000505 isa<ObjCObjectPointerType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000506}
507
Douglas Gregord7eb8462009-01-30 17:31:00 +0000508/// \brief Determines whether the type is a C++ aggregate type or C
509/// aggregate or union type.
510///
511/// An aggregate type is an array or a class type (struct, union, or
512/// class) that has no user-declared constructors, no private or
513/// protected non-static data members, no base classes, and no virtual
514/// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type
515/// subsumes the notion of C aggregates (C99 6.2.5p21) because it also
516/// includes union types.
Reid Spencer5f016e22007-07-11 17:01:13 +0000517bool Type::isAggregateType() const {
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000518 if (const RecordType *Record = dyn_cast<RecordType>(CanonicalType)) {
519 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl()))
520 return ClassDecl->isAggregate();
521
Douglas Gregord7eb8462009-01-30 17:31:00 +0000522 return true;
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000523 }
524
Eli Friedmanc5773c42008-02-15 18:16:39 +0000525 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000526}
527
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000528/// isConstantSizeType - Return true if this is not a variable sized type,
529/// according to the rules of C99 6.7.5p3. It is not legal to call this on
Douglas Gregor898574e2008-12-05 23:32:09 +0000530/// incomplete types or dependent types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000531bool Type::isConstantSizeType() const {
Chris Lattnerd52a4572007-12-18 07:03:30 +0000532 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Douglas Gregor898574e2008-12-05 23:32:09 +0000533 assert(!isDependentType() && "This doesn't make sense for dependent types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000534 // The VAT must have a size, as it is known to be complete.
535 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000536}
537
538/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
539/// - a type that can describe objects, but which lacks information needed to
540/// determine its size.
Mike Stump1eb44332009-09-09 15:08:12 +0000541bool Type::isIncompleteType() const {
542 switch (CanonicalType->getTypeClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000543 default: return false;
544 case Builtin:
545 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
546 // be completed.
547 return isVoidType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000548 case Record:
Douglas Gregor72564e72009-02-26 23:50:07 +0000549 case Enum:
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
551 // forward declaration, but not a full definition (C99 6.2.5p22).
552 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000553 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000555 return true;
Chris Lattner1efaa952009-04-24 00:30:45 +0000556 case ObjCInterface:
Chris Lattner1efaa952009-04-24 00:30:45 +0000557 // ObjC interfaces are incomplete if they are @class, not @interface.
558 return cast<ObjCInterfaceType>(this)->getDecl()->isForwardDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000559 }
560}
561
Sebastian Redl64b45f72009-01-05 20:52:13 +0000562/// isPODType - Return true if this is a plain-old-data type (C++ 3.9p10)
563bool Type::isPODType() const {
564 // The compiler shouldn't query this for incomplete types, but the user might.
565 // We return false for that case.
566 if (isIncompleteType())
567 return false;
568
569 switch (CanonicalType->getTypeClass()) {
570 // Everything not explicitly mentioned is not POD.
571 default: return false;
Sebastian Redl64b45f72009-01-05 20:52:13 +0000572 case VariableArray:
573 case ConstantArray:
574 // IncompleteArray is caught by isIncompleteType() above.
575 return cast<ArrayType>(CanonicalType)->getElementType()->isPODType();
576
577 case Builtin:
578 case Complex:
579 case Pointer:
Sebastian Redlf30208a2009-01-24 21:16:55 +0000580 case MemberPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000581 case Vector:
582 case ExtVector:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000583 case ObjCObjectPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000584 return true;
585
Douglas Gregor72564e72009-02-26 23:50:07 +0000586 case Enum:
587 return true;
588
589 case Record:
Mike Stump1eb44332009-09-09 15:08:12 +0000590 if (CXXRecordDecl *ClassDecl
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000591 = dyn_cast<CXXRecordDecl>(cast<RecordType>(CanonicalType)->getDecl()))
592 return ClassDecl->isPOD();
593
Sebastian Redl64b45f72009-01-05 20:52:13 +0000594 // C struct/union is POD.
595 return true;
596 }
597}
598
Reid Spencer5f016e22007-07-11 17:01:13 +0000599bool Type::isPromotableIntegerType() const {
John McCall183700f2009-09-21 23:43:11 +0000600 if (const BuiltinType *BT = getAs<BuiltinType>())
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000601 switch (BT->getKind()) {
602 case BuiltinType::Bool:
603 case BuiltinType::Char_S:
604 case BuiltinType::Char_U:
605 case BuiltinType::SChar:
606 case BuiltinType::UChar:
607 case BuiltinType::Short:
608 case BuiltinType::UShort:
609 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000610 default:
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000611 return false;
612 }
613 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000614}
615
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000616bool Type::isNullPtrType() const {
John McCall183700f2009-09-21 23:43:11 +0000617 if (const BuiltinType *BT = getAs<BuiltinType>())
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000618 return BT->getKind() == BuiltinType::NullPtr;
619 return false;
620}
621
Eli Friedman22b61e92009-05-30 00:10:16 +0000622bool Type::isSpecifierType() const {
623 // Note that this intentionally does not use the canonical type.
624 switch (getTypeClass()) {
625 case Builtin:
626 case Record:
627 case Enum:
628 case Typedef:
Eli Friedmanc8f2c612009-05-30 01:45:29 +0000629 case Complex:
630 case TypeOfExpr:
631 case TypeOf:
632 case TemplateTypeParm:
John McCall49a832b2009-10-18 09:09:24 +0000633 case SubstTemplateTypeParm:
Eli Friedmanc8f2c612009-05-30 01:45:29 +0000634 case TemplateSpecialization:
635 case QualifiedName:
636 case Typename:
637 case ObjCInterface:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000638 case ObjCObjectPointer:
Eli Friedman22b61e92009-05-30 00:10:16 +0000639 return true;
640 default:
641 return false;
642 }
643}
644
Argyrios Kyrtzidiscd01f172009-09-29 19:41:13 +0000645const char *Type::getTypeClassName() const {
646 switch (TC) {
647 default: assert(0 && "Type class not in TypeNodes.def!");
648#define ABSTRACT_TYPE(Derived, Base)
649#define TYPE(Derived, Base) case Derived: return #Derived;
650#include "clang/AST/TypeNodes.def"
651 }
652}
653
Chris Lattnere4f21422009-06-30 01:26:17 +0000654const char *BuiltinType::getName(const LangOptions &LO) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000655 switch (getKind()) {
656 default: assert(0 && "Unknown builtin type!");
657 case Void: return "void";
Chris Lattnere4f21422009-06-30 01:26:17 +0000658 case Bool: return LO.Bool ? "bool" : "_Bool";
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 case Char_S: return "char";
660 case Char_U: return "char";
661 case SChar: return "signed char";
662 case Short: return "short";
663 case Int: return "int";
664 case Long: return "long";
665 case LongLong: return "long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000666 case Int128: return "__int128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 case UChar: return "unsigned char";
668 case UShort: return "unsigned short";
669 case UInt: return "unsigned int";
670 case ULong: return "unsigned long";
671 case ULongLong: return "unsigned long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000672 case UInt128: return "__uint128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000673 case Float: return "float";
674 case Double: return "double";
675 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000676 case WChar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000677 case Char16: return "char16_t";
678 case Char32: return "char32_t";
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000679 case NullPtr: return "nullptr_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000680 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +0000681 case Dependent: return "<dependent type>";
Anders Carlsson6a75cd92009-07-11 00:34:39 +0000682 case UndeducedAuto: return "auto";
Steve Naroffde2e22d2009-07-15 18:40:39 +0000683 case ObjCId: return "id";
684 case ObjCClass: return "Class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000685 }
686}
687
Douglas Gregor72564e72009-02-26 23:50:07 +0000688void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000689 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000690 unsigned NumArgs, bool isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +0000691 unsigned TypeQuals, bool hasExceptionSpec,
692 bool anyExceptionSpec, unsigned NumExceptions,
Mike Stump24556362009-07-25 21:26:53 +0000693 exception_iterator Exs, bool NoReturn) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000694 ID.AddPointer(Result.getAsOpaquePtr());
695 for (unsigned i = 0; i != NumArgs; ++i)
696 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
697 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000698 ID.AddInteger(TypeQuals);
Sebastian Redl465226e2009-05-27 22:11:52 +0000699 ID.AddInteger(hasExceptionSpec);
700 if (hasExceptionSpec) {
701 ID.AddInteger(anyExceptionSpec);
Mike Stump1eb44332009-09-09 15:08:12 +0000702 for (unsigned i = 0; i != NumExceptions; ++i)
Sebastian Redl465226e2009-05-27 22:11:52 +0000703 ID.AddPointer(Exs[i].getAsOpaquePtr());
704 }
Mike Stump24556362009-07-25 21:26:53 +0000705 ID.AddInteger(NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +0000706}
707
Douglas Gregor72564e72009-02-26 23:50:07 +0000708void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000709 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
Sebastian Redl465226e2009-05-27 22:11:52 +0000710 getTypeQuals(), hasExceptionSpec(), hasAnyExceptionSpec(),
Mike Stump24556362009-07-25 21:26:53 +0000711 getNumExceptions(), exception_begin(), getNoReturnAttr());
Reid Spencer5f016e22007-07-11 17:01:13 +0000712}
713
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000714void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID,
Steve Naroff14108da2009-07-10 23:34:53 +0000715 QualType OIT, ObjCProtocolDecl **protocols,
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000716 unsigned NumProtocols) {
Steve Naroff14108da2009-07-10 23:34:53 +0000717 ID.AddPointer(OIT.getAsOpaquePtr());
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000718 for (unsigned i = 0; i != NumProtocols; i++)
719 ID.AddPointer(protocols[i]);
720}
721
722void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID) {
Steve Naroff14108da2009-07-10 23:34:53 +0000723 if (getNumProtocols())
724 Profile(ID, getPointeeType(), &Protocols[0], getNumProtocols());
725 else
726 Profile(ID, getPointeeType(), 0, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000727}
728
Chris Lattnera2c77672007-07-16 22:05:22 +0000729/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
730/// potentially looking through *all* consequtive typedefs. This returns the
731/// sum of the type qualifiers, so if you have:
732/// typedef const int A;
733/// typedef volatile A B;
734/// looking through the typedefs for B will give you "const volatile A".
735///
736QualType TypedefType::LookThroughTypedefs() const {
737 // Usually, there is only a single level of typedefs, be fast in that case.
738 QualType FirstType = getDecl()->getUnderlyingType();
739 if (!isa<TypedefType>(FirstType))
740 return FirstType;
Mike Stump1eb44332009-09-09 15:08:12 +0000741
Chris Lattnera2c77672007-07-16 22:05:22 +0000742 // Otherwise, do the fully general loop.
John McCall0953e762009-09-24 19:53:00 +0000743 QualifierCollector Qs;
744
745 QualType CurType;
Chris Lattnera2c77672007-07-16 22:05:22 +0000746 const TypedefType *TDT = this;
John McCall0953e762009-09-24 19:53:00 +0000747 do {
748 CurType = TDT->getDecl()->getUnderlyingType();
749 TDT = dyn_cast<TypedefType>(Qs.strip(CurType));
750 } while (TDT);
Mike Stump1eb44332009-09-09 15:08:12 +0000751
John McCall0953e762009-09-24 19:53:00 +0000752 return Qs.apply(CurType);
Chris Lattnera2c77672007-07-16 22:05:22 +0000753}
Reid Spencer5f016e22007-07-11 17:01:13 +0000754
John McCallbf1cc052009-09-29 23:03:30 +0000755QualType TypedefType::desugar() const {
756 return getDecl()->getUnderlyingType();
757}
758
Douglas Gregor72564e72009-02-26 23:50:07 +0000759TypeOfExprType::TypeOfExprType(Expr *E, QualType can)
760 : Type(TypeOfExpr, can, E->isTypeDependent()), TOExpr(E) {
Douglas Gregor898574e2008-12-05 23:32:09 +0000761}
762
John McCallbf1cc052009-09-29 23:03:30 +0000763QualType TypeOfExprType::desugar() const {
764 return getUnderlyingExpr()->getType();
765}
766
Mike Stump1eb44332009-09-09 15:08:12 +0000767void DependentTypeOfExprType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregorb1975722009-07-30 23:18:24 +0000768 ASTContext &Context, Expr *E) {
769 E->Profile(ID, Context, true);
770}
771
Anders Carlsson563a03b2009-07-10 19:20:26 +0000772DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can)
Mike Stump1eb44332009-09-09 15:08:12 +0000773 : Type(Decltype, can, E->isTypeDependent()), E(E),
Anders Carlsson563a03b2009-07-10 19:20:26 +0000774 UnderlyingType(underlyingType) {
Anders Carlsson395b4752009-06-24 19:06:50 +0000775}
776
Douglas Gregor9d702ae2009-07-30 23:36:40 +0000777DependentDecltypeType::DependentDecltypeType(ASTContext &Context, Expr *E)
778 : DecltypeType(E, Context.DependentTy), Context(Context) { }
779
Mike Stump1eb44332009-09-09 15:08:12 +0000780void DependentDecltypeType::Profile(llvm::FoldingSetNodeID &ID,
Douglas Gregor9d702ae2009-07-30 23:36:40 +0000781 ASTContext &Context, Expr *E) {
782 E->Profile(ID, Context, true);
783}
784
Mike Stump1eb44332009-09-09 15:08:12 +0000785TagType::TagType(TypeClass TC, TagDecl *D, QualType can)
Douglas Gregor7da97d02009-05-10 22:57:19 +0000786 : Type(TC, can, D->isDependentType()), decl(D, 0) {}
787
Chris Lattner2daa5df2008-04-06 22:04:54 +0000788bool RecordType::classof(const TagType *TT) {
789 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000790}
791
Chris Lattner2daa5df2008-04-06 22:04:54 +0000792bool EnumType::classof(const TagType *TT) {
793 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +0000794}
795
John McCall833ca992009-10-29 08:12:44 +0000796static bool isDependent(const TemplateArgument &Arg) {
797 switch (Arg.getKind()) {
798 case TemplateArgument::Null:
799 assert(false && "Should not have a NULL template argument");
800 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000801
John McCall833ca992009-10-29 08:12:44 +0000802 case TemplateArgument::Type:
803 return Arg.getAsType()->isDependentType();
Mike Stump1eb44332009-09-09 15:08:12 +0000804
John McCall833ca992009-10-29 08:12:44 +0000805 case TemplateArgument::Declaration:
806 case TemplateArgument::Integral:
807 // Never dependent
808 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000809
John McCall833ca992009-10-29 08:12:44 +0000810 case TemplateArgument::Expression:
811 return (Arg.getAsExpr()->isTypeDependent() ||
812 Arg.getAsExpr()->isValueDependent());
Mike Stump1eb44332009-09-09 15:08:12 +0000813
John McCall833ca992009-10-29 08:12:44 +0000814 case TemplateArgument::Pack:
815 assert(0 && "FIXME: Implement!");
816 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000817 }
Douglas Gregor40808ce2009-03-09 23:48:35 +0000818
819 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000820}
821
John McCall833ca992009-10-29 08:12:44 +0000822bool TemplateSpecializationType::
823anyDependentTemplateArguments(const TemplateArgumentLoc *Args, unsigned N) {
824 for (unsigned i = 0; i != N; ++i)
825 if (isDependent(Args[i].getArgument()))
826 return true;
827 return false;
828}
829
830bool TemplateSpecializationType::
831anyDependentTemplateArguments(const TemplateArgument *Args, unsigned N) {
832 for (unsigned i = 0; i != N; ++i)
833 if (isDependent(Args[i]))
834 return true;
835 return false;
836}
837
Douglas Gregor7532dc62009-03-30 22:58:21 +0000838TemplateSpecializationType::
Mike Stump1eb44332009-09-09 15:08:12 +0000839TemplateSpecializationType(ASTContext &Context, TemplateName T,
Douglas Gregor828e2262009-07-29 16:09:57 +0000840 const TemplateArgument *Args,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000841 unsigned NumArgs, QualType Canon)
Mike Stump1eb44332009-09-09 15:08:12 +0000842 : Type(TemplateSpecialization,
Douglas Gregor40808ce2009-03-09 23:48:35 +0000843 Canon.isNull()? QualType(this, 0) : Canon,
Douglas Gregor7532dc62009-03-30 22:58:21 +0000844 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)),
Douglas Gregor828e2262009-07-29 16:09:57 +0000845 Context(Context),
Mike Stump1eb44332009-09-09 15:08:12 +0000846 Template(T), NumArgs(NumArgs) {
847 assert((!Canon.isNull() ||
Douglas Gregor7532dc62009-03-30 22:58:21 +0000848 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +0000849 "No canonical type for non-dependent class template specialization");
Douglas Gregor55f6b142009-02-09 18:46:07 +0000850
Mike Stump1eb44332009-09-09 15:08:12 +0000851 TemplateArgument *TemplateArgs
Douglas Gregor40808ce2009-03-09 23:48:35 +0000852 = reinterpret_cast<TemplateArgument *>(this + 1);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000853 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
Douglas Gregor40808ce2009-03-09 23:48:35 +0000854 new (&TemplateArgs[Arg]) TemplateArgument(Args[Arg]);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000855}
856
Douglas Gregor7532dc62009-03-30 22:58:21 +0000857void TemplateSpecializationType::Destroy(ASTContext& C) {
Douglas Gregorba498172009-03-13 21:01:28 +0000858 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
859 // FIXME: Not all expressions get cloned, so we can't yet perform
860 // this destruction.
861 // if (Expr *E = getArg(Arg).getAsExpr())
862 // E->Destroy(C);
863 }
Douglas Gregor5908e9f2009-02-09 19:34:22 +0000864}
865
Douglas Gregor7532dc62009-03-30 22:58:21 +0000866TemplateSpecializationType::iterator
867TemplateSpecializationType::end() const {
Douglas Gregor40808ce2009-03-09 23:48:35 +0000868 return begin() + getNumArgs();
Douglas Gregor55f6b142009-02-09 18:46:07 +0000869}
870
Douglas Gregor40808ce2009-03-09 23:48:35 +0000871const TemplateArgument &
Douglas Gregor7532dc62009-03-30 22:58:21 +0000872TemplateSpecializationType::getArg(unsigned Idx) const {
Douglas Gregor40808ce2009-03-09 23:48:35 +0000873 assert(Idx < getNumArgs() && "Template argument out of range");
874 return getArgs()[Idx];
875}
876
Mike Stump1eb44332009-09-09 15:08:12 +0000877void
878TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID,
879 TemplateName T,
880 const TemplateArgument *Args,
Douglas Gregor828e2262009-07-29 16:09:57 +0000881 unsigned NumArgs,
882 ASTContext &Context) {
Douglas Gregor7532dc62009-03-30 22:58:21 +0000883 T.Profile(ID);
Douglas Gregor40808ce2009-03-09 23:48:35 +0000884 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
Douglas Gregor828e2262009-07-29 16:09:57 +0000885 Args[Idx].Profile(ID, Context);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000886}
Anders Carlsson97e01792008-12-21 00:16:32 +0000887
John McCall0953e762009-09-24 19:53:00 +0000888QualType QualifierCollector::apply(QualType QT) const {
889 if (!hasNonFastQualifiers())
890 return QT.withFastQualifiers(getFastQualifiers());
Mike Stump1eb44332009-09-09 15:08:12 +0000891
John McCall0953e762009-09-24 19:53:00 +0000892 assert(Context && "extended qualifiers but no context!");
893 return Context->getQualifiedType(QT, *this);
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000894}
895
John McCall0953e762009-09-24 19:53:00 +0000896QualType QualifierCollector::apply(const Type *T) const {
897 if (!hasNonFastQualifiers())
898 return QualType(T, getFastQualifiers());
899
900 assert(Context && "extended qualifiers but no context!");
901 return Context->getQualifiedType(T, *this);
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000902}
903
904
Reid Spencer5f016e22007-07-11 17:01:13 +0000905//===----------------------------------------------------------------------===//
906// Type Printing
907//===----------------------------------------------------------------------===//
908
909void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +0000910 std::string R = "identifier";
Chris Lattnere4f21422009-06-30 01:26:17 +0000911 LangOptions LO;
912 getAsStringInternal(R, PrintingPolicy(LO));
Reid Spencer5f016e22007-07-11 17:01:13 +0000913 if (msg)
914 fprintf(stderr, "%s: %s\n", msg, R.c_str());
915 else
916 fprintf(stderr, "%s\n", R.c_str());
917}
Chris Lattnerc36d4052008-07-27 00:48:22 +0000918void QualType::dump() const {
919 dump("");
920}
921
922void Type::dump() const {
923 std::string S = "identifier";
Chris Lattnere4f21422009-06-30 01:26:17 +0000924 LangOptions LO;
925 getAsStringInternal(S, PrintingPolicy(LO));
Chris Lattnerc36d4052008-07-27 00:48:22 +0000926 fprintf(stderr, "%s\n", S.c_str());
927}
928
929
Reid Spencer5f016e22007-07-11 17:01:13 +0000930
931static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
John McCall0953e762009-09-24 19:53:00 +0000932 if (TypeQuals & Qualifiers::Const) {
933 if (!S.empty()) S += ' ';
934 S += "const";
935 }
936 if (TypeQuals & Qualifiers::Volatile) {
937 if (!S.empty()) S += ' ';
938 S += "volatile";
939 }
940 if (TypeQuals & Qualifiers::Restrict) {
941 if (!S.empty()) S += ' ';
942 S += "restrict";
943 }
944}
945
946std::string Qualifiers::getAsString() const {
947 LangOptions LO;
948 return getAsString(PrintingPolicy(LO));
949}
950
951// Appends qualifiers to the given string, separated by spaces. Will
952// prefix a space if the string is non-empty. Will not append a final
953// space.
954void Qualifiers::getAsStringInternal(std::string &S,
955 const PrintingPolicy&) const {
956 AppendTypeQualList(S, getCVRQualifiers());
957 if (unsigned AddressSpace = getAddressSpace()) {
958 if (!S.empty()) S += ' ';
959 S += "__attribute__((address_space(";
960 S += llvm::utostr_32(AddressSpace);
961 S += ")))";
962 }
963 if (Qualifiers::GC GCAttrType = getObjCGCAttr()) {
964 if (!S.empty()) S += ' ';
965 S += "__attribute__((objc_gc(";
966 if (GCAttrType == Qualifiers::Weak)
967 S += "weak";
968 else
969 S += "strong";
970 S += ")))";
971 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000972}
973
Douglas Gregord249e1d1f2009-05-29 20:38:28 +0000974std::string QualType::getAsString() const {
975 std::string S;
Chris Lattnere4f21422009-06-30 01:26:17 +0000976 LangOptions LO;
977 getAsStringInternal(S, PrintingPolicy(LO));
Douglas Gregord249e1d1f2009-05-29 20:38:28 +0000978 return S;
979}
980
Mike Stump1eb44332009-09-09 15:08:12 +0000981void
982QualType::getAsStringInternal(std::string &S,
Douglas Gregord249e1d1f2009-05-29 20:38:28 +0000983 const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 if (isNull()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000985 S += "NULL TYPE";
Reid Spencer5f016e22007-07-11 17:01:13 +0000986 return;
987 }
Eli Friedman22b61e92009-05-30 00:10:16 +0000988
Eli Friedman42f42c02009-05-30 04:20:30 +0000989 if (Policy.SuppressSpecifiers && getTypePtr()->isSpecifierType())
Eli Friedman22b61e92009-05-30 00:10:16 +0000990 return;
991
Reid Spencer5f016e22007-07-11 17:01:13 +0000992 // Print qualifiers as appropriate.
John McCall0953e762009-09-24 19:53:00 +0000993 Qualifiers Quals = getQualifiers();
994 if (!Quals.empty()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 std::string TQS;
John McCall0953e762009-09-24 19:53:00 +0000996 Quals.getAsStringInternal(TQS, Policy);
997
998 if (!S.empty()) {
999 TQS += ' ';
1000 TQS += S;
1001 }
1002 std::swap(S, TQS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001003 }
1004
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001005 getTypePtr()->getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001006}
1007
Mike Stump1eb44332009-09-09 15:08:12 +00001008void BuiltinType::getAsStringInternal(std::string &S,
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001009 const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001010 if (S.empty()) {
Chris Lattnere4f21422009-06-30 01:26:17 +00001011 S = getName(Policy.LangOpts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 } else {
1013 // Prefix the basic type, e.g. 'int X'.
1014 S = ' ' + S;
Chris Lattnere4f21422009-06-30 01:26:17 +00001015 S = getName(Policy.LangOpts) + S;
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 }
1017}
1018
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001019void FixedWidthIntType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Eli Friedmanf98aba32009-02-13 02:31:07 +00001020 // FIXME: Once we get bitwidth attribute, write as
1021 // "int __attribute__((bitwidth(x)))".
1022 std::string prefix = "__clang_fixedwidth";
1023 prefix += llvm::utostr_32(Width);
1024 prefix += (char)(Signed ? 'S' : 'U');
1025 if (S.empty()) {
1026 S = prefix;
1027 } else {
1028 // Prefix the basic type, e.g. 'int X'.
1029 S = prefix + S;
1030 }
1031}
1032
1033
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001034void ComplexType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1035 ElementType->getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001036 S = "_Complex " + S;
1037}
1038
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001039void PointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001040 S = '*' + S;
Mike Stump1eb44332009-09-09 15:08:12 +00001041
Reid Spencer5f016e22007-07-11 17:01:13 +00001042 // 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 + ')';
Mike Stump1eb44332009-09-09 15:08:12 +00001046
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001047 getPointeeType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001048}
1049
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001050void BlockPointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Steve Naroff5618bd42008-08-27 16:04:49 +00001051 S = '^' + S;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001052 PointeeType.getAsStringInternal(S, Policy);
Steve Naroff5618bd42008-08-27 16:04:49 +00001053}
1054
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001055void LValueReferenceType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001056 S = '&' + S;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001057
Reid Spencer5f016e22007-07-11 17:01:13 +00001058 // Handle things like 'int (&A)[4];' correctly.
1059 // FIXME: this should include vectors, but vectors use attributes I guess.
John McCall54e14c42009-10-22 22:37:11 +00001060 if (isa<ArrayType>(getPointeeTypeAsWritten()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001061 S = '(' + S + ')';
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001062
John McCall54e14c42009-10-22 22:37:11 +00001063 getPointeeTypeAsWritten().getAsStringInternal(S, Policy);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001064}
1065
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001066void RValueReferenceType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001067 S = "&&" + S;
1068
1069 // Handle things like 'int (&&A)[4];' correctly.
1070 // FIXME: this should include vectors, but vectors use attributes I guess.
John McCall54e14c42009-10-22 22:37:11 +00001071 if (isa<ArrayType>(getPointeeTypeAsWritten()))
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001072 S = '(' + S + ')';
1073
John McCall54e14c42009-10-22 22:37:11 +00001074 getPointeeTypeAsWritten().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001075}
1076
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001077void MemberPointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001078 std::string C;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001079 Class->getAsStringInternal(C, Policy);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001080 C += "::*";
1081 S = C + S;
1082
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001083 // Handle things like 'int (Cls::*A)[4];' correctly.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001084 // FIXME: this should include vectors, but vectors use attributes I guess.
1085 if (isa<ArrayType>(getPointeeType()))
1086 S = '(' + S + ')';
1087
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001088 getPointeeType().getAsStringInternal(S, Policy);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001089}
1090
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001091void ConstantArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Steve Narofffb22d962007-08-30 01:06:46 +00001092 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +00001093 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +00001094 S += ']';
Mike Stump1eb44332009-09-09 15:08:12 +00001095
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001096 getElementType().getAsStringInternal(S, Policy);
Steve Narofffb22d962007-08-30 01:06:46 +00001097}
1098
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001099void IncompleteArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001100 S += "[]";
1101
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001102 getElementType().getAsStringInternal(S, Policy);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001103}
1104
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001105void VariableArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001106 S += '[';
Mike Stump1eb44332009-09-09 15:08:12 +00001107
John McCall0953e762009-09-24 19:53:00 +00001108 if (getIndexTypeQualifiers().hasQualifiers()) {
1109 AppendTypeQualList(S, getIndexTypeCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +00001110 S += ' ';
1111 }
Mike Stump1eb44332009-09-09 15:08:12 +00001112
Steve Naroffc9406122007-08-30 18:10:14 +00001113 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +00001114 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +00001115 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +00001116 S += '*';
Mike Stump1eb44332009-09-09 15:08:12 +00001117
Steve Narofffb22d962007-08-30 01:06:46 +00001118 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001119 std::string SStr;
1120 llvm::raw_string_ostream s(SStr);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001121 getSizeExpr()->printPretty(s, 0, Policy);
Steve Narofffb22d962007-08-30 01:06:46 +00001122 S += s.str();
1123 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001124 S += ']';
Mike Stump1eb44332009-09-09 15:08:12 +00001125
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001126 getElementType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001127}
1128
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001129void DependentSizedArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Douglas Gregor898574e2008-12-05 23:32:09 +00001130 S += '[';
Mike Stump1eb44332009-09-09 15:08:12 +00001131
John McCall0953e762009-09-24 19:53:00 +00001132 if (getIndexTypeQualifiers().hasQualifiers()) {
1133 AppendTypeQualList(S, getIndexTypeCVRQualifiers());
Douglas Gregor898574e2008-12-05 23:32:09 +00001134 S += ' ';
1135 }
Mike Stump1eb44332009-09-09 15:08:12 +00001136
Douglas Gregor898574e2008-12-05 23:32:09 +00001137 if (getSizeModifier() == Static)
1138 S += "static";
1139 else if (getSizeModifier() == Star)
1140 S += '*';
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Douglas Gregor898574e2008-12-05 23:32:09 +00001142 if (getSizeExpr()) {
1143 std::string SStr;
1144 llvm::raw_string_ostream s(SStr);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001145 getSizeExpr()->printPretty(s, 0, Policy);
Douglas Gregor898574e2008-12-05 23:32:09 +00001146 S += s.str();
1147 }
1148 S += ']';
Mike Stump1eb44332009-09-09 15:08:12 +00001149
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001150 getElementType().getAsStringInternal(S, Policy);
Douglas Gregor898574e2008-12-05 23:32:09 +00001151}
1152
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001153void DependentSizedExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1154 getElementType().getAsStringInternal(S, Policy);
1155
Douglas Gregorf6ddb732009-06-18 18:45:36 +00001156 S += " __attribute__((ext_vector_type(";
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001157 if (getSizeExpr()) {
1158 std::string SStr;
1159 llvm::raw_string_ostream s(SStr);
1160 getSizeExpr()->printPretty(s, 0, Policy);
1161 S += s.str();
1162 }
1163 S += ")))";
1164}
1165
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001166void VectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +00001167 // FIXME: We prefer to print the size directly here, but have no way
1168 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +00001169 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +00001170 S += llvm::utostr_32(NumElements); // convert back to bytes.
1171 S += " * sizeof(" + ElementType.getAsString() + "))))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001172 ElementType.getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001173}
1174
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001175void ExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Nate Begeman213541a2008-04-18 23:10:10 +00001176 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +00001177 S += llvm::utostr_32(NumElements);
1178 S += ")))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001179 ElementType.getAsStringInternal(S, Policy);
Steve Naroff31a45842007-07-28 23:10:27 +00001180}
1181
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001182void TypeOfExprType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001183 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
1184 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +00001185 std::string Str;
1186 llvm::raw_string_ostream s(Str);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001187 getUnderlyingExpr()->printPretty(s, 0, Policy);
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00001188 InnerString = "typeof " + s.str() + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001189}
1190
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001191void TypeOfType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001192 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
1193 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001194 std::string Tmp;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001195 getUnderlyingType().getAsStringInternal(Tmp, Policy);
Steve Naroff363bcff2007-08-01 23:45:51 +00001196 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001197}
1198
Mike Stump1eb44332009-09-09 15:08:12 +00001199void DecltypeType::getAsStringInternal(std::string &InnerString,
Anders Carlsson395b4752009-06-24 19:06:50 +00001200 const PrintingPolicy &Policy) const {
1201 if (!InnerString.empty()) // Prefix the basic type, e.g. 'decltype(t) X'.
1202 InnerString = ' ' + InnerString;
1203 std::string Str;
1204 llvm::raw_string_ostream s(Str);
1205 getUnderlyingExpr()->printPretty(s, 0, Policy);
1206 InnerString = "decltype(" + s.str() + ")" + InnerString;
1207}
1208
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001209void FunctionNoProtoType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001210 // If needed for precedence reasons, wrap the inner part in grouping parens.
1211 if (!S.empty())
1212 S = "(" + S + ")";
Mike Stump1eb44332009-09-09 15:08:12 +00001213
Reid Spencer5f016e22007-07-11 17:01:13 +00001214 S += "()";
Mike Stump24556362009-07-25 21:26:53 +00001215 if (getNoReturnAttr())
1216 S += " __attribute__((noreturn))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001217 getResultType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001218}
1219
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001220void FunctionProtoType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001221 // If needed for precedence reasons, wrap the inner part in grouping parens.
1222 if (!S.empty())
1223 S = "(" + S + ")";
Mike Stump1eb44332009-09-09 15:08:12 +00001224
Reid Spencer5f016e22007-07-11 17:01:13 +00001225 S += "(";
1226 std::string Tmp;
Eli Friedman22b61e92009-05-30 00:10:16 +00001227 PrintingPolicy ParamPolicy(Policy);
Eli Friedman42f42c02009-05-30 04:20:30 +00001228 ParamPolicy.SuppressSpecifiers = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001229 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
1230 if (i) S += ", ";
Eli Friedman22b61e92009-05-30 00:10:16 +00001231 getArgType(i).getAsStringInternal(Tmp, ParamPolicy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001232 S += Tmp;
1233 Tmp.clear();
1234 }
Mike Stump1eb44332009-09-09 15:08:12 +00001235
Reid Spencer5f016e22007-07-11 17:01:13 +00001236 if (isVariadic()) {
1237 if (getNumArgs())
1238 S += ", ";
1239 S += "...";
Chris Lattnere4f21422009-06-30 01:26:17 +00001240 } else if (getNumArgs() == 0 && !Policy.LangOpts.CPlusPlus) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 // Do not emit int() if we have a proto, emit 'int(void)'.
1242 S += "void";
1243 }
Mike Stump1eb44332009-09-09 15:08:12 +00001244
Reid Spencer5f016e22007-07-11 17:01:13 +00001245 S += ")";
Mike Stump24556362009-07-25 21:26:53 +00001246 if (getNoReturnAttr())
1247 S += " __attribute__((noreturn))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001248 getResultType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001249}
1250
1251
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001252void TypedefType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001253 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1254 InnerString = ' ' + InnerString;
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001255 InnerString = getDecl()->getIdentifier()->getName().str() + InnerString;
Reid Spencer5f016e22007-07-11 17:01:13 +00001256}
1257
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001258void TemplateTypeParmType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001259 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1260 InnerString = ' ' + InnerString;
Douglas Gregorfab9d672009-02-05 23:33:38 +00001261
1262 if (!Name)
Mike Stump1eb44332009-09-09 15:08:12 +00001263 InnerString = "type-parameter-" + llvm::utostr_32(Depth) + '-' +
Douglas Gregorfab9d672009-02-05 23:33:38 +00001264 llvm::utostr_32(Index) + InnerString;
1265 else
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001266 InnerString = Name->getName().str() + InnerString;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001267}
1268
John McCall49a832b2009-10-18 09:09:24 +00001269void SubstTemplateTypeParmType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
1270 getReplacementType().getAsStringInternal(InnerString, Policy);
1271}
1272
John McCall833ca992009-10-29 08:12:44 +00001273static void PrintTemplateArgument(std::string &Buffer,
1274 const TemplateArgument &Arg,
1275 const PrintingPolicy &Policy) {
1276 switch (Arg.getKind()) {
1277 case TemplateArgument::Null:
1278 assert(false && "Null template argument");
1279 break;
1280
1281 case TemplateArgument::Type:
1282 Arg.getAsType().getAsStringInternal(Buffer, Policy);
1283 break;
1284
1285 case TemplateArgument::Declaration:
1286 Buffer = cast<NamedDecl>(Arg.getAsDecl())->getNameAsString();
1287 break;
1288
1289 case TemplateArgument::Integral:
1290 Buffer = Arg.getAsIntegral()->toString(10, true);
1291 break;
1292
1293 case TemplateArgument::Expression: {
1294 llvm::raw_string_ostream s(Buffer);
1295 Arg.getAsExpr()->printPretty(s, 0, Policy);
1296 break;
1297 }
1298
1299 case TemplateArgument::Pack:
1300 assert(0 && "FIXME: Implement!");
1301 break;
1302 }
1303}
1304
Mike Stump1eb44332009-09-09 15:08:12 +00001305std::string
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001306TemplateSpecializationType::PrintTemplateArgumentList(
1307 const TemplateArgument *Args,
1308 unsigned NumArgs,
1309 const PrintingPolicy &Policy) {
Douglas Gregor98137532009-03-10 18:33:27 +00001310 std::string SpecString;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001311 SpecString += '<';
1312 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1313 if (Arg)
1314 SpecString += ", ";
Mike Stump1eb44332009-09-09 15:08:12 +00001315
Douglas Gregor55f6b142009-02-09 18:46:07 +00001316 // Print the argument into a string.
1317 std::string ArgString;
John McCall833ca992009-10-29 08:12:44 +00001318 PrintTemplateArgument(ArgString, Args[Arg], Policy);
Douglas Gregor38999462009-06-04 05:28:55 +00001319
John McCall833ca992009-10-29 08:12:44 +00001320 // If this is the first argument and its string representation
1321 // begins with the global scope specifier ('::foo'), add a space
1322 // to avoid printing the diagraph '<:'.
1323 if (!Arg && !ArgString.empty() && ArgString[0] == ':')
1324 SpecString += ' ';
Douglas Gregor40808ce2009-03-09 23:48:35 +00001325
John McCall833ca992009-10-29 08:12:44 +00001326 SpecString += ArgString;
1327 }
Douglas Gregor40808ce2009-03-09 23:48:35 +00001328
John McCall833ca992009-10-29 08:12:44 +00001329 // If the last character of our string is '>', add another space to
1330 // keep the two '>''s separate tokens. We don't *have* to do this in
1331 // C++0x, but it's still good hygiene.
1332 if (SpecString[SpecString.size() - 1] == '>')
1333 SpecString += ' ';
Douglas Gregor40808ce2009-03-09 23:48:35 +00001334
John McCall833ca992009-10-29 08:12:44 +00001335 SpecString += '>';
1336
1337 return SpecString;
1338}
1339
1340// Sadly, repeat all that with TemplateArgLoc.
1341std::string TemplateSpecializationType::
1342PrintTemplateArgumentList(const TemplateArgumentLoc *Args, unsigned NumArgs,
1343 const PrintingPolicy &Policy) {
1344 std::string SpecString;
1345 SpecString += '<';
1346 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1347 if (Arg)
1348 SpecString += ", ";
1349
1350 // Print the argument into a string.
1351 std::string ArgString;
1352 PrintTemplateArgument(ArgString, Args[Arg].getArgument(), Policy);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001353
1354 // If this is the first argument and its string representation
1355 // begins with the global scope specifier ('::foo'), add a space
1356 // to avoid printing the diagraph '<:'.
1357 if (!Arg && !ArgString.empty() && ArgString[0] == ':')
1358 SpecString += ' ';
1359
1360 SpecString += ArgString;
1361 }
1362
1363 // If the last character of our string is '>', add another space to
1364 // keep the two '>''s separate tokens. We don't *have* to do this in
1365 // C++0x, but it's still good hygiene.
1366 if (SpecString[SpecString.size() - 1] == '>')
1367 SpecString += ' ';
1368
1369 SpecString += '>';
1370
Douglas Gregor98137532009-03-10 18:33:27 +00001371 return SpecString;
1372}
1373
Mike Stump1eb44332009-09-09 15:08:12 +00001374void
Douglas Gregor7532dc62009-03-30 22:58:21 +00001375TemplateSpecializationType::
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001376getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregor7532dc62009-03-30 22:58:21 +00001377 std::string SpecString;
1378
1379 {
1380 llvm::raw_string_ostream OS(SpecString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001381 Template.print(OS, Policy);
Douglas Gregor7532dc62009-03-30 22:58:21 +00001382 }
1383
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001384 SpecString += PrintTemplateArgumentList(getArgs(), getNumArgs(), Policy);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001385 if (InnerString.empty())
1386 InnerString.swap(SpecString);
1387 else
1388 InnerString = SpecString + ' ' + InnerString;
1389}
1390
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001391void QualifiedNameType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001392 std::string MyString;
1393
Douglas Gregorbad35182009-03-19 03:51:16 +00001394 {
1395 llvm::raw_string_ostream OS(MyString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001396 NNS->print(OS, Policy);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001397 }
Mike Stump1eb44332009-09-09 15:08:12 +00001398
Douglas Gregore4e5b052009-03-19 00:18:19 +00001399 std::string TypeStr;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001400 PrintingPolicy InnerPolicy(Policy);
1401 InnerPolicy.SuppressTagKind = true;
John McCall2191b202009-09-05 06:31:47 +00001402 InnerPolicy.SuppressScope = true;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001403 NamedType.getAsStringInternal(TypeStr, InnerPolicy);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001404
1405 MyString += TypeStr;
1406 if (InnerString.empty())
1407 InnerString.swap(MyString);
1408 else
1409 InnerString = MyString + ' ' + InnerString;
1410}
1411
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001412void TypenameType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregord57959a2009-03-27 23:10:48 +00001413 std::string MyString;
1414
1415 {
1416 llvm::raw_string_ostream OS(MyString);
1417 OS << "typename ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001418 NNS->print(OS, Policy);
Douglas Gregor17343172009-04-01 00:28:59 +00001419
1420 if (const IdentifierInfo *Ident = getIdentifier())
1421 OS << Ident->getName();
1422 else if (const TemplateSpecializationType *Spec = getTemplateId()) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001423 Spec->getTemplateName().print(OS, Policy, true);
Douglas Gregor17343172009-04-01 00:28:59 +00001424 OS << TemplateSpecializationType::PrintTemplateArgumentList(
Mike Stump1eb44332009-09-09 15:08:12 +00001425 Spec->getArgs(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001426 Spec->getNumArgs(),
1427 Policy);
Douglas Gregor17343172009-04-01 00:28:59 +00001428 }
Douglas Gregord57959a2009-03-27 23:10:48 +00001429 }
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Douglas Gregord57959a2009-03-27 23:10:48 +00001431 if (InnerString.empty())
1432 InnerString.swap(MyString);
1433 else
1434 InnerString = MyString + ' ' + InnerString;
1435}
1436
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001437void ObjCInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
1438 const ObjCInterfaceDecl *Decl,
Mike Stump1eb44332009-09-09 15:08:12 +00001439 ObjCProtocolDecl **protocols,
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001440 unsigned NumProtocols) {
1441 ID.AddPointer(Decl);
1442 for (unsigned i = 0; i != NumProtocols; i++)
1443 ID.AddPointer(protocols[i]);
1444}
1445
1446void ObjCInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
1447 if (getNumProtocols())
1448 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
1449 else
1450 Profile(ID, getDecl(), 0, 0);
1451}
1452
1453void ObjCInterfaceType::getAsStringInternal(std::string &InnerString,
1454 const PrintingPolicy &Policy) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001455 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1456 InnerString = ' ' + InnerString;
Mike Stump1eb44332009-09-09 15:08:12 +00001457
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001458 std::string ObjCQIString = getDecl()->getNameAsString();
1459 if (getNumProtocols()) {
1460 ObjCQIString += '<';
1461 bool isFirst = true;
1462 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1463 if (isFirst)
1464 isFirst = false;
1465 else
1466 ObjCQIString += ',';
1467 ObjCQIString += (*I)->getNameAsString();
1468 }
1469 ObjCQIString += '>';
1470 }
1471 InnerString = ObjCQIString + InnerString;
Steve Naroff3536b442007-09-06 21:24:23 +00001472}
1473
Mike Stump1eb44332009-09-09 15:08:12 +00001474void ObjCObjectPointerType::getAsStringInternal(std::string &InnerString,
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001475 const PrintingPolicy &Policy) const {
Steve Naroffde2e22d2009-07-15 18:40:39 +00001476 std::string ObjCQIString;
Mike Stump1eb44332009-09-09 15:08:12 +00001477
Steve Naroffde2e22d2009-07-15 18:40:39 +00001478 if (isObjCIdType() || isObjCQualifiedIdType())
1479 ObjCQIString = "id";
Steve Naroff470301b2009-07-22 16:07:01 +00001480 else if (isObjCClassType() || isObjCQualifiedClassType())
Steve Naroffde2e22d2009-07-15 18:40:39 +00001481 ObjCQIString = "Class";
1482 else
1483 ObjCQIString = getInterfaceDecl()->getNameAsString();
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001484
1485 if (!qual_empty()) {
1486 ObjCQIString += '<';
1487 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1488 ObjCQIString += (*I)->getNameAsString();
1489 if (I+1 != E)
1490 ObjCQIString += ',';
1491 }
1492 ObjCQIString += '>';
1493 }
John McCall0953e762009-09-24 19:53:00 +00001494
1495 PointeeType.getQualifiers().getAsStringInternal(ObjCQIString, Policy);
1496
Steve Naroff14108da2009-07-10 23:34:53 +00001497 if (!isObjCIdType() && !isObjCQualifiedIdType())
1498 ObjCQIString += " *"; // Don't forget the implicit pointer.
1499 else if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1500 InnerString = ' ' + InnerString;
1501
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001502 InnerString = ObjCQIString + InnerString;
1503}
1504
Mike Stump1eb44332009-09-09 15:08:12 +00001505void ElaboratedType::getAsStringInternal(std::string &InnerString,
John McCall7da24312009-09-05 00:15:47 +00001506 const PrintingPolicy &Policy) const {
1507 std::string TypeStr;
1508 PrintingPolicy InnerPolicy(Policy);
1509 InnerPolicy.SuppressTagKind = true;
1510 UnderlyingType.getAsStringInternal(InnerString, InnerPolicy);
1511
1512 InnerString = std::string(getNameForTagKind(getTagKind())) + ' ' + InnerString;
1513}
1514
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001515void TagType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Eli Friedman42f42c02009-05-30 04:20:30 +00001516 if (Policy.SuppressTag)
1517 return;
1518
Reid Spencer5f016e22007-07-11 17:01:13 +00001519 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1520 InnerString = ' ' + InnerString;
Mike Stump1eb44332009-09-09 15:08:12 +00001521
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001522 const char *Kind = Policy.SuppressTagKind? 0 : getDecl()->getKindName();
Reid Spencer5f016e22007-07-11 17:01:13 +00001523 const char *ID;
1524 if (const IdentifierInfo *II = getDecl()->getIdentifier())
Daniel Dunbare013d682009-10-18 20:26:12 +00001525 ID = II->getNameStart();
Douglas Gregor4e16d042009-03-10 18:11:21 +00001526 else if (TypedefDecl *Typedef = getDecl()->getTypedefForAnonDecl()) {
1527 Kind = 0;
1528 assert(Typedef->getIdentifier() && "Typedef without identifier?");
Daniel Dunbare013d682009-10-18 20:26:12 +00001529 ID = Typedef->getIdentifier()->getNameStart();
Douglas Gregor4e16d042009-03-10 18:11:21 +00001530 } else
Reid Spencer5f016e22007-07-11 17:01:13 +00001531 ID = "<anonymous>";
1532
Douglas Gregor98137532009-03-10 18:33:27 +00001533 // If this is a class template specialization, print the template
1534 // arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001535 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor98137532009-03-10 18:33:27 +00001536 = dyn_cast<ClassTemplateSpecializationDecl>(getDecl())) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001537 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
Mike Stump1eb44332009-09-09 15:08:12 +00001538 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +00001539 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor7e063902009-05-11 23:53:27 +00001540 TemplateArgs.getFlatArgumentList(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001541 TemplateArgs.flat_size(),
1542 Policy);
Douglas Gregor7e063902009-05-11 23:53:27 +00001543 InnerString = TemplateArgsStr + InnerString;
Douglas Gregor98137532009-03-10 18:33:27 +00001544 }
1545
John McCall2191b202009-09-05 06:31:47 +00001546 if (!Policy.SuppressScope) {
Douglas Gregor24c46b32009-03-19 04:25:59 +00001547 // Compute the full nested-name-specifier for this type. In C,
1548 // this will always be empty.
1549 std::string ContextStr;
Mike Stump1eb44332009-09-09 15:08:12 +00001550 for (DeclContext *DC = getDecl()->getDeclContext();
Douglas Gregor24c46b32009-03-19 04:25:59 +00001551 !DC->isTranslationUnit(); DC = DC->getParent()) {
1552 std::string MyPart;
1553 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(DC)) {
1554 if (NS->getIdentifier())
1555 MyPart = NS->getNameAsString();
Mike Stump1eb44332009-09-09 15:08:12 +00001556 } else if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor24c46b32009-03-19 04:25:59 +00001557 = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001558 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
1559 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +00001560 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor7e063902009-05-11 23:53:27 +00001561 TemplateArgs.getFlatArgumentList(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001562 TemplateArgs.flat_size(),
1563 Policy);
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001564 MyPart = Spec->getIdentifier()->getName().str() + TemplateArgsStr;
Douglas Gregor24c46b32009-03-19 04:25:59 +00001565 } else if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
1566 if (TypedefDecl *Typedef = Tag->getTypedefForAnonDecl())
1567 MyPart = Typedef->getIdentifier()->getName();
1568 else if (Tag->getIdentifier())
1569 MyPart = Tag->getIdentifier()->getName();
1570 }
1571
1572 if (!MyPart.empty())
1573 ContextStr = MyPart + "::" + ContextStr;
1574 }
1575
John McCall2191b202009-09-05 06:31:47 +00001576 if (Kind)
1577 InnerString = std::string(Kind) + ' ' + ContextStr + ID + InnerString;
1578 else
1579 InnerString = ContextStr + ID + InnerString;
Douglas Gregor24c46b32009-03-19 04:25:59 +00001580 } else
Douglas Gregor4e16d042009-03-10 18:11:21 +00001581 InnerString = ID + InnerString;
Reid Spencer5f016e22007-07-11 17:01:13 +00001582}