blob: bf506415ac645b83c237b3475addec1c8e3296e5 [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
Chris Lattner4bbce992009-01-12 00:10:42 +000025bool QualType::isConstant(ASTContext &Ctx) const {
Nuno Lopesb381aac2008-09-01 11:33:04 +000026 if (isConstQualified())
27 return true;
28
29 if (getTypePtr()->isArrayType())
30 return Ctx.getAsArrayType(*this)->getElementType().isConstant(Ctx);
31
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
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +000040void ConstantArrayWithExprType::Destroy(ASTContext& C) {
41 // FIXME: destruction of SizeExpr commented out due to resource contention.
42 // SizeExpr->Destroy(C);
43 // See FIXME in SemaDecl.cpp:1536: if we were able to either steal
44 // or clone the SizeExpr there, then here we could freely delete it.
45 // Since we do not know how to steal or clone, we keep a pointer to
46 // a shared resource, but we cannot free it.
47 // (There probably is a trivial solution ... for people knowing clang!).
48 this->~ConstantArrayWithExprType();
49 C.Deallocate(this);
50}
51
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000052void VariableArrayType::Destroy(ASTContext& C) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +000053 if (SizeExpr)
54 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000055 this->~VariableArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000056 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000057}
Reid Spencer5f016e22007-07-11 17:01:13 +000058
Douglas Gregor898574e2008-12-05 23:32:09 +000059void DependentSizedArrayType::Destroy(ASTContext& C) {
Argyrios Kyrtzidise7f38402009-07-18 21:18:10 +000060 // FIXME: Resource contention like in ConstantArrayWithExprType ?
61 // May crash, depending on platform or a particular build.
62 // SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000063 this->~DependentSizedArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000064 C.Deallocate(this);
Douglas Gregor898574e2008-12-05 23:32:09 +000065}
Chris Lattnerc63a1f22008-08-04 07:31:14 +000066
Douglas Gregor04d4bee2009-07-31 00:23:35 +000067void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID,
68 ASTContext &Context,
69 QualType ET,
70 ArraySizeModifier SizeMod,
71 unsigned TypeQuals,
72 Expr *E) {
73 ID.AddPointer(ET.getAsOpaquePtr());
74 ID.AddInteger(SizeMod);
75 ID.AddInteger(TypeQuals);
76 E->Profile(ID, Context, true);
77}
78
Douglas Gregor2ec09f12009-07-31 03:54:25 +000079void
80DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID,
81 ASTContext &Context,
82 QualType ElementType, Expr *SizeExpr) {
83 ID.AddPointer(ElementType.getAsOpaquePtr());
84 SizeExpr->Profile(ID, Context, true);
85}
86
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000087void DependentSizedExtVectorType::Destroy(ASTContext& C) {
Douglas Gregorbd1099e2009-07-23 16:36:45 +000088 // FIXME: Deallocate size expression, once we're cloning properly.
89// if (SizeExpr)
90// SizeExpr->Destroy(C);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000091 this->~DependentSizedExtVectorType();
92 C.Deallocate(this);
93}
94
Chris Lattnerc63a1f22008-08-04 07:31:14 +000095/// getArrayElementTypeNoTypeQual - If this is an array type, return the
96/// element type of the array, potentially with type qualifiers missing.
97/// This method should never be used when type qualifiers are meaningful.
98const Type *Type::getArrayElementTypeNoTypeQual() const {
99 // If this is directly an array type, return it.
100 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
101 return ATy->getElementType().getTypePtr();
102
103 // If the canonical form of this type isn't the right kind, reject it.
104 if (!isa<ArrayType>(CanonicalType)) {
105 // Look through type qualifiers
106 if (ArrayType *AT = dyn_cast<ArrayType>(CanonicalType.getUnqualifiedType()))
107 return AT->getElementType().getTypePtr();
108 return 0;
109 }
110
111 // If this is a typedef for an array type, strip the typedef off without
112 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000113 return cast<ArrayType>(getDesugaredType())->getElementType().getTypePtr();
114}
115
116/// getDesugaredType - Return the specified type with any "sugar" removed from
117/// the type. This takes off typedefs, typeof's etc. If the outer level of
118/// the type is already concrete, it returns it unmodified. This is similar
119/// to getting the canonical type, but it doesn't remove *all* typedefs. For
120/// example, it returns "T*" as "T*", (not as "int*"), because the pointer is
121/// concrete.
Douglas Gregor969c6892009-04-01 15:47:24 +0000122///
123/// \param ForDisplay When true, the desugaring is provided for
124/// display purposes only. In this case, we apply more heuristics to
125/// decide whether it is worth providing a desugared form of the type
126/// or not.
127QualType QualType::getDesugaredType(bool ForDisplay) const {
128 return getTypePtr()->getDesugaredType(ForDisplay)
Chris Lattner2fa8c252009-03-17 22:51:02 +0000129 .getWithAdditionalQualifiers(getCVRQualifiers());
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000130}
131
132/// getDesugaredType - Return the specified type with any "sugar" removed from
133/// type type. This takes off typedefs, typeof's etc. If the outer level of
134/// the type is already concrete, it returns it unmodified. This is similar
135/// to getting the canonical type, but it doesn't remove *all* typedefs. For
136/// example, it return "T*" as "T*", (not as "int*"), because the pointer is
137/// concrete.
Douglas Gregor969c6892009-04-01 15:47:24 +0000138///
139/// \param ForDisplay When true, the desugaring is provided for
140/// display purposes only. In this case, we apply more heuristics to
141/// decide whether it is worth providing a desugared form of the type
142/// or not.
143QualType Type::getDesugaredType(bool ForDisplay) const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000144 if (const TypedefType *TDT = dyn_cast<TypedefType>(this))
Chris Lattner2fa8c252009-03-17 22:51:02 +0000145 return TDT->LookThroughTypedefs().getDesugaredType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000146 if (const TypeOfExprType *TOE = dyn_cast<TypeOfExprType>(this))
Chris Lattner2fa8c252009-03-17 22:51:02 +0000147 return TOE->getUnderlyingExpr()->getType().getDesugaredType();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000148 if (const TypeOfType *TOT = dyn_cast<TypeOfType>(this))
Chris Lattner2fa8c252009-03-17 22:51:02 +0000149 return TOT->getUnderlyingType().getDesugaredType();
Anders Carlsson563a03b2009-07-10 19:20:26 +0000150 if (const DecltypeType *DTT = dyn_cast<DecltypeType>(this)) {
151 if (!DTT->getUnderlyingType()->isDependentType())
152 return DTT->getUnderlyingType().getDesugaredType();
153 }
Douglas Gregor7532dc62009-03-30 22:58:21 +0000154 if (const TemplateSpecializationType *Spec
Douglas Gregorc45c2322009-03-31 00:43:58 +0000155 = dyn_cast<TemplateSpecializationType>(this)) {
Douglas Gregor969c6892009-04-01 15:47:24 +0000156 if (ForDisplay)
157 return QualType(this, 0);
158
Douglas Gregorc45c2322009-03-31 00:43:58 +0000159 QualType Canon = Spec->getCanonicalTypeInternal();
160 if (Canon->getAsTemplateSpecializationType())
161 return QualType(this, 0);
162 return Canon->getDesugaredType();
163 }
Douglas Gregor969c6892009-04-01 15:47:24 +0000164 if (const QualifiedNameType *QualName = dyn_cast<QualifiedNameType>(this)) {
165 if (ForDisplay) {
166 // If desugaring the type that the qualified name is referring to
167 // produces something interesting, that's our desugared type.
168 QualType NamedType = QualName->getNamedType().getDesugaredType();
169 if (NamedType != QualName->getNamedType())
170 return NamedType;
171 } else
172 return QualName->getNamedType().getDesugaredType();
173 }
Douglas Gregor5cdf8212009-02-12 00:15:05 +0000174
Douglas Gregor969c6892009-04-01 15:47:24 +0000175 return QualType(this, 0);
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000176}
177
Reid Spencer5f016e22007-07-11 17:01:13 +0000178/// isVoidType - Helper method to determine if this is the 'void' type.
179bool Type::isVoidType() const {
180 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
181 return BT->getKind() == BuiltinType::Void;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000182 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000183 return AS->getBaseType()->isVoidType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 return false;
185}
186
187bool Type::isObjectType() const {
Douglas Gregorbad0e652009-03-24 20:32:41 +0000188 if (isa<FunctionType>(CanonicalType) || isa<ReferenceType>(CanonicalType) ||
189 isa<IncompleteArrayType>(CanonicalType) || isVoidType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 return false;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000191 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000192 return AS->getBaseType()->isObjectType();
Douglas Gregorbad0e652009-03-24 20:32:41 +0000193 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000194}
195
196bool Type::isDerivedType() const {
197 switch (CanonicalType->getTypeClass()) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000198 case ExtQual:
199 return cast<ExtQualType>(CanonicalType)->getBaseType()->isDerivedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000200 case Pointer:
Steve Narofffb22d962007-08-30 01:06:46 +0000201 case VariableArray:
202 case ConstantArray:
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000203 case ConstantArrayWithExpr:
204 case ConstantArrayWithoutExpr:
Eli Friedmanc5773c42008-02-15 18:16:39 +0000205 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 case FunctionProto:
207 case FunctionNoProto:
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000208 case LValueReference:
209 case RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +0000210 case Record:
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000212 default:
213 return false;
214 }
215}
216
Chris Lattner99dc9142008-04-13 18:59:07 +0000217bool Type::isClassType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000218 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000219 return RT->getDecl()->isClass();
Chris Lattner99dc9142008-04-13 18:59:07 +0000220 return false;
221}
Chris Lattnerc8629632007-07-31 19:29:30 +0000222bool Type::isStructureType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000223 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000224 return RT->getDecl()->isStruct();
Chris Lattnerc8629632007-07-31 19:29:30 +0000225 return false;
226}
Steve Naroff7154a772009-07-01 14:36:47 +0000227bool Type::isVoidPointerType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000228 if (const PointerType *PT = getAs<PointerType>())
Steve Naroff7154a772009-07-01 14:36:47 +0000229 return PT->getPointeeType()->isVoidType();
230 return false;
231}
232
Chris Lattnerc8629632007-07-31 19:29:30 +0000233bool Type::isUnionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000234 if (const RecordType *RT = getAs<RecordType>())
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000235 return RT->getDecl()->isUnion();
Chris Lattnerc8629632007-07-31 19:29:30 +0000236 return false;
237}
Chris Lattnerc8629632007-07-31 19:29:30 +0000238
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000239bool Type::isComplexType() const {
Steve Naroff02f62a92008-01-15 19:36:10 +0000240 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
241 return CT->getElementType()->isFloatingType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000242 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000243 return AS->getBaseType()->isComplexType();
Steve Naroff02f62a92008-01-15 19:36:10 +0000244 return false;
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000245}
246
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000247bool Type::isComplexIntegerType() const {
248 // Check for GCC complex integer extension.
249 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
250 return CT->getElementType()->isIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000251 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000252 return AS->getBaseType()->isComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000253 return false;
254}
255
256const ComplexType *Type::getAsComplexIntegerType() const {
257 // Are we directly a complex type?
258 if (const ComplexType *CTy = dyn_cast<ComplexType>(this)) {
259 if (CTy->getElementType()->isIntegerType())
260 return CTy;
Chris Lattner4bbce992009-01-12 00:10:42 +0000261 return 0;
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000262 }
Chris Lattner4bbce992009-01-12 00:10:42 +0000263
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000264 // If the canonical form of this type isn't what we want, reject it.
265 if (!isa<ComplexType>(CanonicalType)) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000266 // Look through type qualifiers (e.g. ExtQualType's).
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000267 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
268 return CanonicalType.getUnqualifiedType()->getAsComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000269 return 0;
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000270 }
271
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000272 // If this is a typedef for a complex type, strip the typedef off without
273 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000274 return cast<ComplexType>(getDesugaredType());
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000275}
276
Steve Naroff77878cc2007-08-27 04:08:11 +0000277const BuiltinType *Type::getAsBuiltinType() const {
278 // If this is directly a builtin type, return it.
279 if (const BuiltinType *BTy = dyn_cast<BuiltinType>(this))
280 return BTy;
Chris Lattnerdea61462007-10-29 03:41:11 +0000281
282 // If the canonical form of this type isn't a builtin type, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000283 if (!isa<BuiltinType>(CanonicalType)) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000284 // Look through type qualifiers (e.g. ExtQualType's).
Christopher Lambebb97e92008-02-04 02:31:56 +0000285 if (isa<BuiltinType>(CanonicalType.getUnqualifiedType()))
286 return CanonicalType.getUnqualifiedType()->getAsBuiltinType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000287 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000288 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000289
Steve Naroff77878cc2007-08-27 04:08:11 +0000290 // If this is a typedef for a builtin type, strip the typedef off without
291 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000292 return cast<BuiltinType>(getDesugaredType());
Steve Naroff77878cc2007-08-27 04:08:11 +0000293}
294
Chris Lattnerc8629632007-07-31 19:29:30 +0000295const FunctionType *Type::getAsFunctionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000296 // If this is directly a function type, return it.
297 if (const FunctionType *FTy = dyn_cast<FunctionType>(this))
298 return FTy;
Christopher Lambebb97e92008-02-04 02:31:56 +0000299
Chris Lattnerdea61462007-10-29 03:41:11 +0000300 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000301 if (!isa<FunctionType>(CanonicalType)) {
302 // Look through type qualifiers
303 if (isa<FunctionType>(CanonicalType.getUnqualifiedType()))
304 return CanonicalType.getUnqualifiedType()->getAsFunctionType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000305 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000306 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000307
Steve Naroff7064f5c2007-07-26 18:32:01 +0000308 // If this is a typedef for a function type, strip the typedef off without
309 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000310 return cast<FunctionType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000311}
312
Douglas Gregor72564e72009-02-26 23:50:07 +0000313const FunctionNoProtoType *Type::getAsFunctionNoProtoType() const {
314 return dyn_cast_or_null<FunctionNoProtoType>(getAsFunctionType());
Daniel Dunbarafa74442009-02-19 07:11:26 +0000315}
316
Douglas Gregor72564e72009-02-26 23:50:07 +0000317const FunctionProtoType *Type::getAsFunctionProtoType() const {
318 return dyn_cast_or_null<FunctionProtoType>(getAsFunctionType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000319}
320
Steve Naroff14108da2009-07-10 23:34:53 +0000321QualType Type::getPointeeType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000322 if (const PointerType *PT = getAs<PointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000323 return PT->getPointeeType();
324 if (const ObjCObjectPointerType *OPT = getAsObjCObjectPointerType())
325 return OPT->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000326 if (const BlockPointerType *BPT = getAs<BlockPointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +0000327 return BPT->getPointeeType();
328 return QualType();
329}
Chris Lattnerb77792e2008-07-26 22:17:49 +0000330
Eli Friedmand3f2f792008-02-17 00:59:11 +0000331/// isVariablyModifiedType (C99 6.7.5p3) - Return true for variable length
332/// array types and types that contain variable array types in their
333/// declarator
Steve Naroffd7444aa2007-08-31 17:20:07 +0000334bool Type::isVariablyModifiedType() const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000335 // A VLA is a variably modified type.
336 if (isVariableArrayType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000337 return true;
338
339 // An array can contain a variably modified type
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000340 if (const Type *T = getArrayElementTypeNoTypeQual())
341 return T->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000342
Sebastian Redlf30208a2009-01-24 21:16:55 +0000343 // A pointer can point to a variably modified type.
344 // Also, C++ references and member pointers can point to a variably modified
345 // type, where VLAs appear as an extension to C++, and should be treated
346 // correctly.
Ted Kremenek6217b802009-07-29 21:53:49 +0000347 if (const PointerType *PT = getAs<PointerType>())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000348 return PT->getPointeeType()->isVariablyModifiedType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000349 if (const ReferenceType *RT = getAs<ReferenceType>())
Daniel Dunbar68694ad2009-02-26 19:54:52 +0000350 return RT->getPointeeType()->isVariablyModifiedType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000351 if (const MemberPointerType *PT = getAs<MemberPointerType>())
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000352 return PT->getPointeeType()->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000353
354 // A function can return a variably modified type
355 // This one isn't completely obvious, but it follows from the
356 // definition in C99 6.7.5p3. Because of this rule, it's
357 // illegal to declare a function returning a variably modified type.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000358 if (const FunctionType *FT = getAsFunctionType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000359 return FT->getResultType()->isVariablyModifiedType();
360
Steve Naroffd7444aa2007-08-31 17:20:07 +0000361 return false;
362}
363
Chris Lattnerc8629632007-07-31 19:29:30 +0000364const RecordType *Type::getAsStructureType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000365 // If this is directly a structure type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000366 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000367 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000368 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000369 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000370
371 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000372 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000373 if (!RT->getDecl()->isStruct())
Chris Lattnerdea61462007-10-29 03:41:11 +0000374 return 0;
375
376 // If this is a typedef for a structure type, strip the typedef off without
377 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000378 return cast<RecordType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000379 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000380 // Look through type qualifiers
381 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
382 return CanonicalType.getUnqualifiedType()->getAsStructureType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000383 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000384}
385
Chris Lattnerc8629632007-07-31 19:29:30 +0000386const RecordType *Type::getAsUnionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000387 // If this is directly a union type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000388 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000389 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000390 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000391 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000392
Chris Lattnerdea61462007-10-29 03:41:11 +0000393 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000394 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000395 if (!RT->getDecl()->isUnion())
Chris Lattnerdea61462007-10-29 03:41:11 +0000396 return 0;
397
398 // If this is a typedef for a union type, strip the typedef off without
399 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000400 return cast<RecordType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000402
403 // Look through type qualifiers
404 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
405 return CanonicalType.getUnqualifiedType()->getAsUnionType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000406 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000407}
408
Eli Friedmanad74a752008-06-28 06:23:08 +0000409const EnumType *Type::getAsEnumType() const {
410 // Check the canonicalized unqualified type directly; the more complex
411 // version is unnecessary because there isn't any typedef information
412 // to preserve.
413 return dyn_cast<EnumType>(CanonicalType.getUnqualifiedType());
414}
415
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000416const ComplexType *Type::getAsComplexType() const {
417 // Are we directly a complex type?
418 if (const ComplexType *CTy = dyn_cast<ComplexType>(this))
419 return CTy;
420
Chris Lattnerdea61462007-10-29 03:41:11 +0000421 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000422 if (!isa<ComplexType>(CanonicalType)) {
423 // Look through type qualifiers
424 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
425 return CanonicalType.getUnqualifiedType()->getAsComplexType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000426 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000427 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000428
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000429 // If this is a typedef for a complex type, strip the typedef off without
430 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000431 return cast<ComplexType>(getDesugaredType());
Chris Lattner7a2e0472007-07-16 00:23:25 +0000432}
433
Chris Lattnerc8629632007-07-31 19:29:30 +0000434const VectorType *Type::getAsVectorType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000435 // Are we directly a vector type?
436 if (const VectorType *VTy = dyn_cast<VectorType>(this))
437 return VTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000438
Chris Lattnerdea61462007-10-29 03:41:11 +0000439 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000440 if (!isa<VectorType>(CanonicalType)) {
441 // Look through type qualifiers
442 if (isa<VectorType>(CanonicalType.getUnqualifiedType()))
443 return CanonicalType.getUnqualifiedType()->getAsVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000444 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000445 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000446
Chris Lattnera2c77672007-07-16 22:05:22 +0000447 // If this is a typedef for a vector type, strip the typedef off without
448 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000449 return cast<VectorType>(getDesugaredType());
Chris Lattner7a2e0472007-07-16 00:23:25 +0000450}
451
Nate Begeman213541a2008-04-18 23:10:10 +0000452const ExtVectorType *Type::getAsExtVectorType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000453 // Are we directly an OpenCU vector type?
Nate Begeman213541a2008-04-18 23:10:10 +0000454 if (const ExtVectorType *VTy = dyn_cast<ExtVectorType>(this))
Steve Naroff7064f5c2007-07-26 18:32:01 +0000455 return VTy;
456
Chris Lattnerdea61462007-10-29 03:41:11 +0000457 // If the canonical form of this type isn't the right kind, reject it.
Nate Begeman213541a2008-04-18 23:10:10 +0000458 if (!isa<ExtVectorType>(CanonicalType)) {
Christopher Lambebb97e92008-02-04 02:31:56 +0000459 // Look through type qualifiers
Nate Begeman213541a2008-04-18 23:10:10 +0000460 if (isa<ExtVectorType>(CanonicalType.getUnqualifiedType()))
461 return CanonicalType.getUnqualifiedType()->getAsExtVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000462 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000463 }
Steve Naroff7064f5c2007-07-26 18:32:01 +0000464
Nate Begeman213541a2008-04-18 23:10:10 +0000465 // If this is a typedef for an extended vector type, strip the typedef off
466 // without losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000467 return cast<ExtVectorType>(getDesugaredType());
Steve Naroff7064f5c2007-07-26 18:32:01 +0000468}
469
Chris Lattner368eefa2008-04-07 00:27:04 +0000470const ObjCInterfaceType *Type::getAsObjCInterfaceType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000471 // There is no sugar for ObjCInterfaceType's, just return the canonical
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000472 // type pointer if it is the right class. There is no typedef information to
473 // return and these cannot be Address-space qualified.
Fariborz Jahanianfb41ca82009-02-26 23:05:51 +0000474 return dyn_cast<ObjCInterfaceType>(CanonicalType.getUnqualifiedType());
Chris Lattner368eefa2008-04-07 00:27:04 +0000475}
476
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000477const ObjCInterfaceType *Type::getAsObjCQualifiedInterfaceType() const {
478 // There is no sugar for ObjCInterfaceType's, just return the canonical
479 // type pointer if it is the right class. There is no typedef information to
480 // return and these cannot be Address-space qualified.
481 if (const ObjCInterfaceType *OIT = getAsObjCInterfaceType())
482 if (OIT->getNumProtocols())
483 return OIT;
484 return 0;
485}
486
487bool Type::isObjCQualifiedInterfaceType() const {
Steve Naroffe61ad0b2009-07-18 15:38:31 +0000488 return getAsObjCQualifiedInterfaceType() != 0;
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000489}
490
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000491const ObjCObjectPointerType *Type::getAsObjCObjectPointerType() const {
492 // There is no sugar for ObjCObjectPointerType's, just return the
493 // canonical type pointer if it is the right class.
494 return dyn_cast<ObjCObjectPointerType>(CanonicalType.getUnqualifiedType());
495}
496
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000497const ObjCObjectPointerType *Type::getAsObjCQualifiedIdType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000498 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
499 // type pointer if it is the right class.
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000500 if (const ObjCObjectPointerType *OPT = getAsObjCObjectPointerType()) {
501 if (OPT->isObjCQualifiedIdType())
502 return OPT;
503 }
504 return 0;
Chris Lattner368eefa2008-04-07 00:27:04 +0000505}
506
Steve Naroff14108da2009-07-10 23:34:53 +0000507const ObjCObjectPointerType *Type::getAsObjCInterfacePointerType() const {
508 if (const ObjCObjectPointerType *OPT = getAsObjCObjectPointerType()) {
509 if (OPT->getInterfaceType())
510 return OPT;
511 }
512 return 0;
513}
514
Douglas Gregor72c3f312008-12-05 18:15:24 +0000515const TemplateTypeParmType *Type::getAsTemplateTypeParmType() const {
516 // There is no sugar for template type parameters, so just return
517 // the canonical type pointer if it is the right class.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000518 // FIXME: can these be address-space qualified?
Douglas Gregor72c3f312008-12-05 18:15:24 +0000519 return dyn_cast<TemplateTypeParmType>(CanonicalType);
520}
Chris Lattner368eefa2008-04-07 00:27:04 +0000521
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +0000522const CXXRecordDecl *Type::getCXXRecordDeclForPointerType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000523 if (const PointerType *PT = getAs<PointerType>())
524 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>())
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +0000525 return dyn_cast<CXXRecordDecl>(RT->getDecl());
526 return 0;
527}
528
Douglas Gregor7532dc62009-03-30 22:58:21 +0000529const TemplateSpecializationType *
530Type::getAsTemplateSpecializationType() const {
Douglas Gregor55f6b142009-02-09 18:46:07 +0000531 // There is no sugar for class template specialization types, so
532 // just return the canonical type pointer if it is the right class.
Douglas Gregor7532dc62009-03-30 22:58:21 +0000533 return dyn_cast<TemplateSpecializationType>(CanonicalType);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000534}
535
Reid Spencer5f016e22007-07-11 17:01:13 +0000536bool Type::isIntegerType() const {
537 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
538 return BT->getKind() >= BuiltinType::Bool &&
Chris Lattner2df9ced2009-04-30 02:43:43 +0000539 BT->getKind() <= BuiltinType::Int128;
Reid Spencer5f016e22007-07-11 17:01:13 +0000540 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000541 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000542 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000543 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 return true;
Eli Friedmanf98aba32009-02-13 02:31:07 +0000545 if (isa<FixedWidthIntType>(CanonicalType))
546 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000547 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
548 return VT->getElementType()->isIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000549 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
550 return EXTQT->getBaseType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000551 return false;
552}
553
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000554bool Type::isIntegralType() const {
555 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
556 return BT->getKind() >= BuiltinType::Bool &&
557 BT->getKind() <= BuiltinType::LongLong;
558 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000559 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
560 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000561 // FIXME: In C++, enum types are never integral.
Eli Friedmanf98aba32009-02-13 02:31:07 +0000562 if (isa<FixedWidthIntType>(CanonicalType))
563 return true;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000564 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
565 return EXTQT->getBaseType()->isIntegralType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000566 return false;
567}
568
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000569bool Type::isEnumeralType() const {
570 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000571 return TT->getDecl()->isEnum();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000572 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
573 return EXTQT->getBaseType()->isEnumeralType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000574 return false;
575}
576
577bool Type::isBooleanType() const {
578 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
579 return BT->getKind() == BuiltinType::Bool;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000580 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
581 return EXTQT->getBaseType()->isBooleanType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000582 return false;
583}
584
585bool Type::isCharType() const {
586 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
587 return BT->getKind() == BuiltinType::Char_U ||
588 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000589 BT->getKind() == BuiltinType::Char_S ||
590 BT->getKind() == BuiltinType::SChar;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000591 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
592 return EXTQT->getBaseType()->isCharType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000593 return false;
594}
595
Douglas Gregor77a52232008-09-12 00:47:35 +0000596bool Type::isWideCharType() const {
597 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
598 return BT->getKind() == BuiltinType::WChar;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000599 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
600 return EXTQT->getBaseType()->isWideCharType();
Douglas Gregor77a52232008-09-12 00:47:35 +0000601 return false;
602}
603
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000604/// isSignedIntegerType - Return true if this is an integer type that is
605/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
606/// an enum decl which has a signed representation, or a vector of signed
607/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000608bool Type::isSignedIntegerType() const {
609 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
610 return BT->getKind() >= BuiltinType::Char_S &&
611 BT->getKind() <= BuiltinType::LongLong;
612 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000613
Chris Lattner37c1b782008-04-06 22:29:16 +0000614 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
615 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000616
Eli Friedmanf98aba32009-02-13 02:31:07 +0000617 if (const FixedWidthIntType *FWIT =
618 dyn_cast<FixedWidthIntType>(CanonicalType))
619 return FWIT->isSigned();
620
Steve Naroffc63b96a2007-07-12 21:46:55 +0000621 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
622 return VT->getElementType()->isSignedIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000623 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
624 return EXTQT->getBaseType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 return false;
626}
627
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000628/// isUnsignedIntegerType - Return true if this is an integer type that is
629/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
630/// decl which has an unsigned representation, or a vector of unsigned integer
631/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000632bool Type::isUnsignedIntegerType() const {
633 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
634 return BT->getKind() >= BuiltinType::Bool &&
635 BT->getKind() <= BuiltinType::ULongLong;
636 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000637
Chris Lattner37c1b782008-04-06 22:29:16 +0000638 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
639 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000640
Eli Friedmanf98aba32009-02-13 02:31:07 +0000641 if (const FixedWidthIntType *FWIT =
642 dyn_cast<FixedWidthIntType>(CanonicalType))
643 return !FWIT->isSigned();
644
Steve Naroffc63b96a2007-07-12 21:46:55 +0000645 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
646 return VT->getElementType()->isUnsignedIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000647 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
648 return EXTQT->getBaseType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000649 return false;
650}
651
652bool Type::isFloatingType() const {
653 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
654 return BT->getKind() >= BuiltinType::Float &&
655 BT->getKind() <= BuiltinType::LongDouble;
656 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000657 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000658 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
659 return VT->getElementType()->isFloatingType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000660 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
661 return EXTQT->getBaseType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000662 return false;
663}
664
665bool Type::isRealFloatingType() const {
666 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
667 return BT->getKind() >= BuiltinType::Float &&
668 BT->getKind() <= BuiltinType::LongDouble;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000669 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
670 return VT->getElementType()->isRealFloatingType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000671 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
672 return EXTQT->getBaseType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000673 return false;
674}
675
676bool Type::isRealType() const {
677 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
678 return BT->getKind() >= BuiltinType::Bool &&
679 BT->getKind() <= BuiltinType::LongDouble;
680 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000681 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000682 if (isa<FixedWidthIntType>(CanonicalType))
683 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000684 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
685 return VT->getElementType()->isRealType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000686 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
687 return EXTQT->getBaseType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000688 return false;
689}
690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691bool Type::isArithmeticType() const {
692 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000693 return BT->getKind() >= BuiltinType::Bool &&
694 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000695 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
696 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
697 // If a body isn't seen by the time we get here, return false.
698 return ET->getDecl()->isDefinition();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000699 if (isa<FixedWidthIntType>(CanonicalType))
700 return true;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000701 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
702 return EXTQT->getBaseType()->isArithmeticType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
704}
705
706bool Type::isScalarType() const {
707 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
708 return BT->getKind() != BuiltinType::Void;
709 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000710 // Enums are scalar types, but only if they are defined. Incomplete enums
711 // are not treated as scalar types.
712 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000713 return true;
714 return false;
715 }
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000716 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
717 return EXTQT->getBaseType()->isScalarType();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000718 if (isa<FixedWidthIntType>(CanonicalType))
719 return true;
Steve Naroff5618bd42008-08-27 16:04:49 +0000720 return isa<PointerType>(CanonicalType) ||
721 isa<BlockPointerType>(CanonicalType) ||
Sebastian Redlf30208a2009-01-24 21:16:55 +0000722 isa<MemberPointerType>(CanonicalType) ||
Steve Naroff5618bd42008-08-27 16:04:49 +0000723 isa<ComplexType>(CanonicalType) ||
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000724 isa<ObjCObjectPointerType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000725}
726
Douglas Gregord7eb8462009-01-30 17:31:00 +0000727/// \brief Determines whether the type is a C++ aggregate type or C
728/// aggregate or union type.
729///
730/// An aggregate type is an array or a class type (struct, union, or
731/// class) that has no user-declared constructors, no private or
732/// protected non-static data members, no base classes, and no virtual
733/// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type
734/// subsumes the notion of C aggregates (C99 6.2.5p21) because it also
735/// includes union types.
Reid Spencer5f016e22007-07-11 17:01:13 +0000736bool Type::isAggregateType() const {
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000737 if (const RecordType *Record = dyn_cast<RecordType>(CanonicalType)) {
738 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl()))
739 return ClassDecl->isAggregate();
740
Douglas Gregord7eb8462009-01-30 17:31:00 +0000741 return true;
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000742 }
743
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000744 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
745 return EXTQT->getBaseType()->isAggregateType();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000746 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000747}
748
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000749/// isConstantSizeType - Return true if this is not a variable sized type,
750/// according to the rules of C99 6.7.5p3. It is not legal to call this on
Douglas Gregor898574e2008-12-05 23:32:09 +0000751/// incomplete types or dependent types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000752bool Type::isConstantSizeType() const {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000753 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
754 return EXTQT->getBaseType()->isConstantSizeType();
Chris Lattnerd52a4572007-12-18 07:03:30 +0000755 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Douglas Gregor898574e2008-12-05 23:32:09 +0000756 assert(!isDependentType() && "This doesn't make sense for dependent types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000757 // The VAT must have a size, as it is known to be complete.
758 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000759}
760
761/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
762/// - a type that can describe objects, but which lacks information needed to
763/// determine its size.
764bool Type::isIncompleteType() const {
765 switch (CanonicalType->getTypeClass()) {
766 default: return false;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000767 case ExtQual:
768 return cast<ExtQualType>(CanonicalType)->getBaseType()->isIncompleteType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 case Builtin:
770 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
771 // be completed.
772 return isVoidType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000773 case Record:
Douglas Gregor72564e72009-02-26 23:50:07 +0000774 case Enum:
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
776 // forward declaration, but not a full definition (C99 6.2.5p22).
777 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000778 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000780 return true;
Chris Lattner1efaa952009-04-24 00:30:45 +0000781 case ObjCInterface:
Chris Lattner1efaa952009-04-24 00:30:45 +0000782 // ObjC interfaces are incomplete if they are @class, not @interface.
783 return cast<ObjCInterfaceType>(this)->getDecl()->isForwardDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 }
785}
786
Sebastian Redl64b45f72009-01-05 20:52:13 +0000787/// isPODType - Return true if this is a plain-old-data type (C++ 3.9p10)
788bool Type::isPODType() const {
789 // The compiler shouldn't query this for incomplete types, but the user might.
790 // We return false for that case.
791 if (isIncompleteType())
792 return false;
793
794 switch (CanonicalType->getTypeClass()) {
795 // Everything not explicitly mentioned is not POD.
796 default: return false;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000797 case ExtQual:
798 return cast<ExtQualType>(CanonicalType)->getBaseType()->isPODType();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000799 case VariableArray:
800 case ConstantArray:
801 // IncompleteArray is caught by isIncompleteType() above.
802 return cast<ArrayType>(CanonicalType)->getElementType()->isPODType();
803
804 case Builtin:
805 case Complex:
806 case Pointer:
Sebastian Redlf30208a2009-01-24 21:16:55 +0000807 case MemberPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000808 case Vector:
809 case ExtVector:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000810 case ObjCObjectPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000811 return true;
812
Douglas Gregor72564e72009-02-26 23:50:07 +0000813 case Enum:
814 return true;
815
816 case Record:
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000817 if (CXXRecordDecl *ClassDecl
818 = dyn_cast<CXXRecordDecl>(cast<RecordType>(CanonicalType)->getDecl()))
819 return ClassDecl->isPOD();
820
Sebastian Redl64b45f72009-01-05 20:52:13 +0000821 // C struct/union is POD.
822 return true;
823 }
824}
825
Reid Spencer5f016e22007-07-11 17:01:13 +0000826bool Type::isPromotableIntegerType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000827 if (const BuiltinType *BT = getAsBuiltinType())
828 switch (BT->getKind()) {
829 case BuiltinType::Bool:
830 case BuiltinType::Char_S:
831 case BuiltinType::Char_U:
832 case BuiltinType::SChar:
833 case BuiltinType::UChar:
834 case BuiltinType::Short:
835 case BuiltinType::UShort:
836 return true;
837 default:
838 return false;
839 }
840 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000841}
842
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000843bool Type::isNullPtrType() const {
844 if (const BuiltinType *BT = getAsBuiltinType())
845 return BT->getKind() == BuiltinType::NullPtr;
846 return false;
847}
848
Eli Friedman22b61e92009-05-30 00:10:16 +0000849bool Type::isSpecifierType() const {
850 // Note that this intentionally does not use the canonical type.
851 switch (getTypeClass()) {
852 case Builtin:
853 case Record:
854 case Enum:
855 case Typedef:
Eli Friedmanc8f2c612009-05-30 01:45:29 +0000856 case Complex:
857 case TypeOfExpr:
858 case TypeOf:
859 case TemplateTypeParm:
860 case TemplateSpecialization:
861 case QualifiedName:
862 case Typename:
863 case ObjCInterface:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000864 case ObjCObjectPointer:
Eli Friedman22b61e92009-05-30 00:10:16 +0000865 return true;
866 default:
867 return false;
868 }
869}
870
Chris Lattnere4f21422009-06-30 01:26:17 +0000871const char *BuiltinType::getName(const LangOptions &LO) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 switch (getKind()) {
873 default: assert(0 && "Unknown builtin type!");
874 case Void: return "void";
Chris Lattnere4f21422009-06-30 01:26:17 +0000875 case Bool: return LO.Bool ? "bool" : "_Bool";
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 case Char_S: return "char";
877 case Char_U: return "char";
878 case SChar: return "signed char";
879 case Short: return "short";
880 case Int: return "int";
881 case Long: return "long";
882 case LongLong: return "long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000883 case Int128: return "__int128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000884 case UChar: return "unsigned char";
885 case UShort: return "unsigned short";
886 case UInt: return "unsigned int";
887 case ULong: return "unsigned long";
888 case ULongLong: return "unsigned long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000889 case UInt128: return "__uint128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000890 case Float: return "float";
891 case Double: return "double";
892 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000893 case WChar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000894 case Char16: return "char16_t";
895 case Char32: return "char32_t";
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000896 case NullPtr: return "nullptr_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000897 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +0000898 case Dependent: return "<dependent type>";
Anders Carlsson6a75cd92009-07-11 00:34:39 +0000899 case UndeducedAuto: return "auto";
Steve Naroffde2e22d2009-07-15 18:40:39 +0000900 case ObjCId: return "id";
901 case ObjCClass: return "Class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000902 }
903}
904
Douglas Gregor72564e72009-02-26 23:50:07 +0000905void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000906 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000907 unsigned NumArgs, bool isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +0000908 unsigned TypeQuals, bool hasExceptionSpec,
909 bool anyExceptionSpec, unsigned NumExceptions,
Mike Stump24556362009-07-25 21:26:53 +0000910 exception_iterator Exs, bool NoReturn) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000911 ID.AddPointer(Result.getAsOpaquePtr());
912 for (unsigned i = 0; i != NumArgs; ++i)
913 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
914 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000915 ID.AddInteger(TypeQuals);
Sebastian Redl465226e2009-05-27 22:11:52 +0000916 ID.AddInteger(hasExceptionSpec);
917 if (hasExceptionSpec) {
918 ID.AddInteger(anyExceptionSpec);
919 for(unsigned i = 0; i != NumExceptions; ++i)
920 ID.AddPointer(Exs[i].getAsOpaquePtr());
921 }
Mike Stump24556362009-07-25 21:26:53 +0000922 ID.AddInteger(NoReturn);
Reid Spencer5f016e22007-07-11 17:01:13 +0000923}
924
Douglas Gregor72564e72009-02-26 23:50:07 +0000925void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000926 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
Sebastian Redl465226e2009-05-27 22:11:52 +0000927 getTypeQuals(), hasExceptionSpec(), hasAnyExceptionSpec(),
Mike Stump24556362009-07-25 21:26:53 +0000928 getNumExceptions(), exception_begin(), getNoReturnAttr());
Reid Spencer5f016e22007-07-11 17:01:13 +0000929}
930
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000931void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID,
Steve Naroff14108da2009-07-10 23:34:53 +0000932 QualType OIT, ObjCProtocolDecl **protocols,
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000933 unsigned NumProtocols) {
Steve Naroff14108da2009-07-10 23:34:53 +0000934 ID.AddPointer(OIT.getAsOpaquePtr());
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000935 for (unsigned i = 0; i != NumProtocols; i++)
936 ID.AddPointer(protocols[i]);
937}
938
939void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID) {
Steve Naroff14108da2009-07-10 23:34:53 +0000940 if (getNumProtocols())
941 Profile(ID, getPointeeType(), &Protocols[0], getNumProtocols());
942 else
943 Profile(ID, getPointeeType(), 0, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000944}
945
Chris Lattnera2c77672007-07-16 22:05:22 +0000946/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
947/// potentially looking through *all* consequtive typedefs. This returns the
948/// sum of the type qualifiers, so if you have:
949/// typedef const int A;
950/// typedef volatile A B;
951/// looking through the typedefs for B will give you "const volatile A".
952///
953QualType TypedefType::LookThroughTypedefs() const {
954 // Usually, there is only a single level of typedefs, be fast in that case.
955 QualType FirstType = getDecl()->getUnderlyingType();
956 if (!isa<TypedefType>(FirstType))
957 return FirstType;
958
959 // Otherwise, do the fully general loop.
960 unsigned TypeQuals = 0;
961 const TypedefType *TDT = this;
962 while (1) {
963 QualType CurType = TDT->getDecl()->getUnderlyingType();
Chris Lattnerf46699c2008-02-20 20:55:12 +0000964
965
966 /// FIXME:
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000967 /// FIXME: This is incorrect for ExtQuals!
Chris Lattnerf46699c2008-02-20 20:55:12 +0000968 /// FIXME:
969 TypeQuals |= CurType.getCVRQualifiers();
Chris Lattnera2c77672007-07-16 22:05:22 +0000970
971 TDT = dyn_cast<TypedefType>(CurType);
972 if (TDT == 0)
973 return QualType(CurType.getTypePtr(), TypeQuals);
974 }
975}
Reid Spencer5f016e22007-07-11 17:01:13 +0000976
Douglas Gregor72564e72009-02-26 23:50:07 +0000977TypeOfExprType::TypeOfExprType(Expr *E, QualType can)
978 : Type(TypeOfExpr, can, E->isTypeDependent()), TOExpr(E) {
Douglas Gregor898574e2008-12-05 23:32:09 +0000979}
980
Douglas Gregorb1975722009-07-30 23:18:24 +0000981void DependentTypeOfExprType::Profile(llvm::FoldingSetNodeID &ID,
982 ASTContext &Context, Expr *E) {
983 E->Profile(ID, Context, true);
984}
985
Anders Carlsson563a03b2009-07-10 19:20:26 +0000986DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can)
987 : Type(Decltype, can, E->isTypeDependent()), E(E),
988 UnderlyingType(underlyingType) {
Anders Carlsson395b4752009-06-24 19:06:50 +0000989}
990
Douglas Gregor9d702ae2009-07-30 23:36:40 +0000991DependentDecltypeType::DependentDecltypeType(ASTContext &Context, Expr *E)
992 : DecltypeType(E, Context.DependentTy), Context(Context) { }
993
994void DependentDecltypeType::Profile(llvm::FoldingSetNodeID &ID,
995 ASTContext &Context, Expr *E) {
996 E->Profile(ID, Context, true);
997}
998
Douglas Gregor7da97d02009-05-10 22:57:19 +0000999TagType::TagType(TypeClass TC, TagDecl *D, QualType can)
1000 : Type(TC, can, D->isDependentType()), decl(D, 0) {}
1001
Chris Lattner2daa5df2008-04-06 22:04:54 +00001002bool RecordType::classof(const TagType *TT) {
1003 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +00001004}
1005
Chris Lattner2daa5df2008-04-06 22:04:54 +00001006bool EnumType::classof(const TagType *TT) {
1007 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +00001008}
1009
Douglas Gregor40808ce2009-03-09 23:48:35 +00001010bool
Douglas Gregor7532dc62009-03-30 22:58:21 +00001011TemplateSpecializationType::
Douglas Gregor40808ce2009-03-09 23:48:35 +00001012anyDependentTemplateArguments(const TemplateArgument *Args, unsigned NumArgs) {
1013 for (unsigned Idx = 0; Idx < NumArgs; ++Idx) {
1014 switch (Args[Idx].getKind()) {
Douglas Gregord560d502009-06-04 00:21:18 +00001015 case TemplateArgument::Null:
1016 assert(false && "Should not have a NULL template argument");
1017 break;
1018
Douglas Gregor40808ce2009-03-09 23:48:35 +00001019 case TemplateArgument::Type:
1020 if (Args[Idx].getAsType()->isDependentType())
1021 return true;
1022 break;
1023
1024 case TemplateArgument::Declaration:
1025 case TemplateArgument::Integral:
1026 // Never dependent
1027 break;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001028
Douglas Gregor40808ce2009-03-09 23:48:35 +00001029 case TemplateArgument::Expression:
1030 if (Args[Idx].getAsExpr()->isTypeDependent() ||
1031 Args[Idx].getAsExpr()->isValueDependent())
1032 return true;
1033 break;
Anders Carlssond01b1da2009-06-15 17:04:53 +00001034
1035 case TemplateArgument::Pack:
1036 assert(0 && "FIXME: Implement!");
1037 break;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001038 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001039 }
Douglas Gregor40808ce2009-03-09 23:48:35 +00001040
1041 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001042}
1043
Douglas Gregor7532dc62009-03-30 22:58:21 +00001044TemplateSpecializationType::
Douglas Gregor828e2262009-07-29 16:09:57 +00001045TemplateSpecializationType(ASTContext &Context, TemplateName T,
1046 const TemplateArgument *Args,
Douglas Gregor7532dc62009-03-30 22:58:21 +00001047 unsigned NumArgs, QualType Canon)
1048 : Type(TemplateSpecialization,
Douglas Gregor40808ce2009-03-09 23:48:35 +00001049 Canon.isNull()? QualType(this, 0) : Canon,
Douglas Gregor7532dc62009-03-30 22:58:21 +00001050 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)),
Douglas Gregor828e2262009-07-29 16:09:57 +00001051 Context(Context),
Douglas Gregor40808ce2009-03-09 23:48:35 +00001052 Template(T), NumArgs(NumArgs)
Douglas Gregor55f6b142009-02-09 18:46:07 +00001053{
Douglas Gregor40808ce2009-03-09 23:48:35 +00001054 assert((!Canon.isNull() ||
Douglas Gregor7532dc62009-03-30 22:58:21 +00001055 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +00001056 "No canonical type for non-dependent class template specialization");
Douglas Gregor55f6b142009-02-09 18:46:07 +00001057
Douglas Gregor40808ce2009-03-09 23:48:35 +00001058 TemplateArgument *TemplateArgs
1059 = reinterpret_cast<TemplateArgument *>(this + 1);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001060 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001061 new (&TemplateArgs[Arg]) TemplateArgument(Args[Arg]);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001062}
1063
Douglas Gregor7532dc62009-03-30 22:58:21 +00001064void TemplateSpecializationType::Destroy(ASTContext& C) {
Douglas Gregorba498172009-03-13 21:01:28 +00001065 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1066 // FIXME: Not all expressions get cloned, so we can't yet perform
1067 // this destruction.
1068 // if (Expr *E = getArg(Arg).getAsExpr())
1069 // E->Destroy(C);
1070 }
Douglas Gregor5908e9f2009-02-09 19:34:22 +00001071}
1072
Douglas Gregor7532dc62009-03-30 22:58:21 +00001073TemplateSpecializationType::iterator
1074TemplateSpecializationType::end() const {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001075 return begin() + getNumArgs();
Douglas Gregor55f6b142009-02-09 18:46:07 +00001076}
1077
Douglas Gregor40808ce2009-03-09 23:48:35 +00001078const TemplateArgument &
Douglas Gregor7532dc62009-03-30 22:58:21 +00001079TemplateSpecializationType::getArg(unsigned Idx) const {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001080 assert(Idx < getNumArgs() && "Template argument out of range");
1081 return getArgs()[Idx];
1082}
1083
1084void
Douglas Gregor7532dc62009-03-30 22:58:21 +00001085TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID,
1086 TemplateName T,
1087 const TemplateArgument *Args,
Douglas Gregor828e2262009-07-29 16:09:57 +00001088 unsigned NumArgs,
1089 ASTContext &Context) {
Douglas Gregor7532dc62009-03-30 22:58:21 +00001090 T.Profile(ID);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001091 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
Douglas Gregor828e2262009-07-29 16:09:57 +00001092 Args[Idx].Profile(ID, Context);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001093}
Anders Carlsson97e01792008-12-21 00:16:32 +00001094
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001095const Type *QualifierSet::strip(const Type* T) {
1096 QualType DT = T->getDesugaredType();
John McCall7a1bcdf2009-07-28 05:41:20 +00001097 addCVR(DT.getCVRQualifiers());
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001098
1099 if (const ExtQualType* EQT = dyn_cast<ExtQualType>(DT)) {
1100 if (EQT->getAddressSpace())
John McCall7a1bcdf2009-07-28 05:41:20 +00001101 addAddressSpace(EQT->getAddressSpace());
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001102 if (EQT->getObjCGCAttr())
John McCall7a1bcdf2009-07-28 05:41:20 +00001103 addObjCGCAttrType(EQT->getObjCGCAttr());
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001104 return EQT->getBaseType();
Mike Stump24556362009-07-25 21:26:53 +00001105 } else {
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001106 // Use the sugared type unless desugaring found extra qualifiers.
1107 return (DT.getCVRQualifiers() ? DT.getTypePtr() : T);
1108 }
1109}
1110
1111QualType QualifierSet::apply(QualType QT, ASTContext& C) {
John McCall7a1bcdf2009-07-28 05:41:20 +00001112 QT = QT.getWithAdditionalQualifiers(getCVRMask());
1113 if (hasObjCGCAttrType()) QT = C.getObjCGCQualType(QT, getObjCGCAttrType());
1114 if (hasAddressSpace()) QT = C.getAddrSpaceQualType(QT, getAddressSpace());
Douglas Gregor5e03f9e2009-07-23 23:49:00 +00001115 return QT;
1116}
1117
1118
Reid Spencer5f016e22007-07-11 17:01:13 +00001119//===----------------------------------------------------------------------===//
1120// Type Printing
1121//===----------------------------------------------------------------------===//
1122
1123void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +00001124 std::string R = "identifier";
Chris Lattnere4f21422009-06-30 01:26:17 +00001125 LangOptions LO;
1126 getAsStringInternal(R, PrintingPolicy(LO));
Reid Spencer5f016e22007-07-11 17:01:13 +00001127 if (msg)
1128 fprintf(stderr, "%s: %s\n", msg, R.c_str());
1129 else
1130 fprintf(stderr, "%s\n", R.c_str());
1131}
Chris Lattnerc36d4052008-07-27 00:48:22 +00001132void QualType::dump() const {
1133 dump("");
1134}
1135
1136void Type::dump() const {
1137 std::string S = "identifier";
Chris Lattnere4f21422009-06-30 01:26:17 +00001138 LangOptions LO;
1139 getAsStringInternal(S, PrintingPolicy(LO));
Chris Lattnerc36d4052008-07-27 00:48:22 +00001140 fprintf(stderr, "%s\n", S.c_str());
1141}
1142
1143
Reid Spencer5f016e22007-07-11 17:01:13 +00001144
1145static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
1146 // Note: funkiness to ensure we get a space only between quals.
1147 bool NonePrinted = true;
1148 if (TypeQuals & QualType::Const)
1149 S += "const", NonePrinted = false;
1150 if (TypeQuals & QualType::Volatile)
1151 S += (NonePrinted+" volatile"), NonePrinted = false;
1152 if (TypeQuals & QualType::Restrict)
1153 S += (NonePrinted+" restrict"), NonePrinted = false;
1154}
1155
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001156std::string QualType::getAsString() const {
1157 std::string S;
Chris Lattnere4f21422009-06-30 01:26:17 +00001158 LangOptions LO;
1159 getAsStringInternal(S, PrintingPolicy(LO));
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001160 return S;
1161}
1162
1163void
1164QualType::getAsStringInternal(std::string &S,
1165 const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 if (isNull()) {
Douglas Gregor61366e92008-12-24 00:01:03 +00001167 S += "NULL TYPE";
Reid Spencer5f016e22007-07-11 17:01:13 +00001168 return;
1169 }
Eli Friedman22b61e92009-05-30 00:10:16 +00001170
Eli Friedman42f42c02009-05-30 04:20:30 +00001171 if (Policy.SuppressSpecifiers && getTypePtr()->isSpecifierType())
Eli Friedman22b61e92009-05-30 00:10:16 +00001172 return;
1173
Reid Spencer5f016e22007-07-11 17:01:13 +00001174 // Print qualifiers as appropriate.
Gabor Greif3513e132008-02-21 17:40:55 +00001175 if (unsigned Tq = getCVRQualifiers()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001176 std::string TQS;
Gabor Greif3513e132008-02-21 17:40:55 +00001177 AppendTypeQualList(TQS, Tq);
Reid Spencer5f016e22007-07-11 17:01:13 +00001178 if (!S.empty())
1179 S = TQS + ' ' + S;
1180 else
1181 S = TQS;
1182 }
1183
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001184 getTypePtr()->getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001185}
1186
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001187void BuiltinType::getAsStringInternal(std::string &S,
1188 const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 if (S.empty()) {
Chris Lattnere4f21422009-06-30 01:26:17 +00001190 S = getName(Policy.LangOpts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001191 } else {
1192 // Prefix the basic type, e.g. 'int X'.
1193 S = ' ' + S;
Chris Lattnere4f21422009-06-30 01:26:17 +00001194 S = getName(Policy.LangOpts) + S;
Reid Spencer5f016e22007-07-11 17:01:13 +00001195 }
1196}
1197
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001198void FixedWidthIntType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Eli Friedmanf98aba32009-02-13 02:31:07 +00001199 // FIXME: Once we get bitwidth attribute, write as
1200 // "int __attribute__((bitwidth(x)))".
1201 std::string prefix = "__clang_fixedwidth";
1202 prefix += llvm::utostr_32(Width);
1203 prefix += (char)(Signed ? 'S' : 'U');
1204 if (S.empty()) {
1205 S = prefix;
1206 } else {
1207 // Prefix the basic type, e.g. 'int X'.
1208 S = prefix + S;
1209 }
1210}
1211
1212
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001213void ComplexType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1214 ElementType->getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001215 S = "_Complex " + S;
1216}
1217
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001218void ExtQualType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001219 bool NeedsSpace = false;
Fariborz Jahanian4886a422009-02-17 21:45:36 +00001220 if (AddressSpace) {
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001221 S = "__attribute__((address_space("+llvm::utostr_32(AddressSpace)+")))" + S;
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001222 NeedsSpace = true;
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001223 }
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001224 if (GCAttrType != QualType::GCNone) {
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001225 if (NeedsSpace)
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001226 S += ' ';
1227 S += "__attribute__((objc_gc(";
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001228 if (GCAttrType == QualType::Weak)
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001229 S += "weak";
1230 else
1231 S += "strong";
1232 S += ")))";
1233 }
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001234 BaseType->getAsStringInternal(S, Policy);
Christopher Lambebb97e92008-02-04 02:31:56 +00001235}
1236
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001237void PointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001238 S = '*' + S;
1239
1240 // Handle things like 'int (*A)[4];' correctly.
1241 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001242 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001243 S = '(' + S + ')';
1244
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001245 getPointeeType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001246}
1247
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001248void BlockPointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Steve Naroff5618bd42008-08-27 16:04:49 +00001249 S = '^' + S;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001250 PointeeType.getAsStringInternal(S, Policy);
Steve Naroff5618bd42008-08-27 16:04:49 +00001251}
1252
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001253void LValueReferenceType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001254 S = '&' + S;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001255
Reid Spencer5f016e22007-07-11 17:01:13 +00001256 // Handle things like 'int (&A)[4];' correctly.
1257 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001258 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001259 S = '(' + S + ')';
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001260
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001261 getPointeeType().getAsStringInternal(S, Policy);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001262}
1263
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001264void RValueReferenceType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001265 S = "&&" + S;
1266
1267 // Handle things like 'int (&&A)[4];' correctly.
1268 // FIXME: this should include vectors, but vectors use attributes I guess.
1269 if (isa<ArrayType>(getPointeeType()))
1270 S = '(' + S + ')';
1271
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001272 getPointeeType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001273}
1274
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001275void MemberPointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001276 std::string C;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001277 Class->getAsStringInternal(C, Policy);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001278 C += "::*";
1279 S = C + S;
1280
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001281 // Handle things like 'int (Cls::*A)[4];' correctly.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001282 // FIXME: this should include vectors, but vectors use attributes I guess.
1283 if (isa<ArrayType>(getPointeeType()))
1284 S = '(' + S + ')';
1285
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001286 getPointeeType().getAsStringInternal(S, Policy);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001287}
1288
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001289void ConstantArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Steve Narofffb22d962007-08-30 01:06:46 +00001290 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +00001291 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +00001292 S += ']';
1293
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001294 getElementType().getAsStringInternal(S, Policy);
Steve Narofffb22d962007-08-30 01:06:46 +00001295}
1296
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001297void ConstantArrayWithExprType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1298 if (Policy.ConstantArraySizeAsWritten) {
1299 std::string SStr;
1300 llvm::raw_string_ostream s(SStr);
1301 getSizeExpr()->printPretty(s, 0, Policy);
1302 S += '[';
1303 S += s.str();
1304 S += ']';
1305 getElementType().getAsStringInternal(S, Policy);
1306 }
1307 else
1308 ConstantArrayType::getAsStringInternal(S, Policy);
1309}
1310
1311void ConstantArrayWithoutExprType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1312 if (Policy.ConstantArraySizeAsWritten) {
1313 S += "[]";
1314 getElementType().getAsStringInternal(S, Policy);
1315 }
1316 else
1317 ConstantArrayType::getAsStringInternal(S, Policy);
1318}
1319
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001320void IncompleteArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001321 S += "[]";
1322
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001323 getElementType().getAsStringInternal(S, Policy);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001324}
1325
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001326void VariableArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001327 S += '[';
1328
Steve Naroffc9406122007-08-30 18:10:14 +00001329 if (getIndexTypeQualifier()) {
1330 AppendTypeQualList(S, getIndexTypeQualifier());
Reid Spencer5f016e22007-07-11 17:01:13 +00001331 S += ' ';
1332 }
1333
Steve Naroffc9406122007-08-30 18:10:14 +00001334 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +00001335 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +00001336 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +00001337 S += '*';
1338
Steve Narofffb22d962007-08-30 01:06:46 +00001339 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001340 std::string SStr;
1341 llvm::raw_string_ostream s(SStr);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001342 getSizeExpr()->printPretty(s, 0, Policy);
Steve Narofffb22d962007-08-30 01:06:46 +00001343 S += s.str();
1344 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001345 S += ']';
1346
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001347 getElementType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001348}
1349
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001350void DependentSizedArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Douglas Gregor898574e2008-12-05 23:32:09 +00001351 S += '[';
1352
1353 if (getIndexTypeQualifier()) {
1354 AppendTypeQualList(S, getIndexTypeQualifier());
1355 S += ' ';
1356 }
1357
1358 if (getSizeModifier() == Static)
1359 S += "static";
1360 else if (getSizeModifier() == Star)
1361 S += '*';
1362
1363 if (getSizeExpr()) {
1364 std::string SStr;
1365 llvm::raw_string_ostream s(SStr);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001366 getSizeExpr()->printPretty(s, 0, Policy);
Douglas Gregor898574e2008-12-05 23:32:09 +00001367 S += s.str();
1368 }
1369 S += ']';
1370
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001371 getElementType().getAsStringInternal(S, Policy);
Douglas Gregor898574e2008-12-05 23:32:09 +00001372}
1373
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001374void DependentSizedExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1375 getElementType().getAsStringInternal(S, Policy);
1376
Douglas Gregorf6ddb732009-06-18 18:45:36 +00001377 S += " __attribute__((ext_vector_type(";
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001378 if (getSizeExpr()) {
1379 std::string SStr;
1380 llvm::raw_string_ostream s(SStr);
1381 getSizeExpr()->printPretty(s, 0, Policy);
1382 S += s.str();
1383 }
1384 S += ")))";
1385}
1386
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001387void VectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +00001388 // FIXME: We prefer to print the size directly here, but have no way
1389 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +00001390 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +00001391 S += llvm::utostr_32(NumElements); // convert back to bytes.
1392 S += " * sizeof(" + ElementType.getAsString() + "))))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001393 ElementType.getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001394}
1395
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001396void ExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Nate Begeman213541a2008-04-18 23:10:10 +00001397 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +00001398 S += llvm::utostr_32(NumElements);
1399 S += ")))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001400 ElementType.getAsStringInternal(S, Policy);
Steve Naroff31a45842007-07-28 23:10:27 +00001401}
1402
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001403void TypeOfExprType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001404 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
1405 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +00001406 std::string Str;
1407 llvm::raw_string_ostream s(Str);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001408 getUnderlyingExpr()->printPretty(s, 0, Policy);
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00001409 InnerString = "typeof " + s.str() + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001410}
1411
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001412void TypeOfType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001413 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
1414 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001415 std::string Tmp;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001416 getUnderlyingType().getAsStringInternal(Tmp, Policy);
Steve Naroff363bcff2007-08-01 23:45:51 +00001417 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001418}
1419
Anders Carlsson395b4752009-06-24 19:06:50 +00001420void DecltypeType::getAsStringInternal(std::string &InnerString,
1421 const PrintingPolicy &Policy) const {
1422 if (!InnerString.empty()) // Prefix the basic type, e.g. 'decltype(t) X'.
1423 InnerString = ' ' + InnerString;
1424 std::string Str;
1425 llvm::raw_string_ostream s(Str);
1426 getUnderlyingExpr()->printPretty(s, 0, Policy);
1427 InnerString = "decltype(" + s.str() + ")" + InnerString;
1428}
1429
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001430void FunctionNoProtoType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001431 // If needed for precedence reasons, wrap the inner part in grouping parens.
1432 if (!S.empty())
1433 S = "(" + S + ")";
1434
1435 S += "()";
Mike Stump24556362009-07-25 21:26:53 +00001436 if (getNoReturnAttr())
1437 S += " __attribute__((noreturn))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001438 getResultType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001439}
1440
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001441void FunctionProtoType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001442 // If needed for precedence reasons, wrap the inner part in grouping parens.
1443 if (!S.empty())
1444 S = "(" + S + ")";
1445
1446 S += "(";
1447 std::string Tmp;
Eli Friedman22b61e92009-05-30 00:10:16 +00001448 PrintingPolicy ParamPolicy(Policy);
Eli Friedman42f42c02009-05-30 04:20:30 +00001449 ParamPolicy.SuppressSpecifiers = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001450 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
1451 if (i) S += ", ";
Eli Friedman22b61e92009-05-30 00:10:16 +00001452 getArgType(i).getAsStringInternal(Tmp, ParamPolicy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001453 S += Tmp;
1454 Tmp.clear();
1455 }
1456
1457 if (isVariadic()) {
1458 if (getNumArgs())
1459 S += ", ";
1460 S += "...";
Chris Lattnere4f21422009-06-30 01:26:17 +00001461 } else if (getNumArgs() == 0 && !Policy.LangOpts.CPlusPlus) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001462 // Do not emit int() if we have a proto, emit 'int(void)'.
1463 S += "void";
1464 }
1465
1466 S += ")";
Mike Stump24556362009-07-25 21:26:53 +00001467 if (getNoReturnAttr())
1468 S += " __attribute__((noreturn))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001469 getResultType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001470}
1471
1472
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001473void TypedefType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001474 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1475 InnerString = ' ' + InnerString;
1476 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1477}
1478
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001479void TemplateTypeParmType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001480 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1481 InnerString = ' ' + InnerString;
Douglas Gregorfab9d672009-02-05 23:33:38 +00001482
1483 if (!Name)
1484 InnerString = "type-parameter-" + llvm::utostr_32(Depth) + '-' +
1485 llvm::utostr_32(Index) + InnerString;
1486 else
1487 InnerString = Name->getName() + InnerString;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001488}
1489
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001490std::string
1491TemplateSpecializationType::PrintTemplateArgumentList(
1492 const TemplateArgument *Args,
1493 unsigned NumArgs,
1494 const PrintingPolicy &Policy) {
Douglas Gregor98137532009-03-10 18:33:27 +00001495 std::string SpecString;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001496 SpecString += '<';
1497 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1498 if (Arg)
1499 SpecString += ", ";
1500
1501 // Print the argument into a string.
1502 std::string ArgString;
Douglas Gregor98137532009-03-10 18:33:27 +00001503 switch (Args[Arg].getKind()) {
Douglas Gregor38999462009-06-04 05:28:55 +00001504 case TemplateArgument::Null:
1505 assert(false && "Null template argument");
1506 break;
1507
Douglas Gregor40808ce2009-03-09 23:48:35 +00001508 case TemplateArgument::Type:
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001509 Args[Arg].getAsType().getAsStringInternal(ArgString, Policy);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001510 break;
1511
1512 case TemplateArgument::Declaration:
Douglas Gregor98137532009-03-10 18:33:27 +00001513 ArgString = cast<NamedDecl>(Args[Arg].getAsDecl())->getNameAsString();
Douglas Gregor40808ce2009-03-09 23:48:35 +00001514 break;
1515
1516 case TemplateArgument::Integral:
Douglas Gregor98137532009-03-10 18:33:27 +00001517 ArgString = Args[Arg].getAsIntegral()->toString(10, true);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001518 break;
1519
1520 case TemplateArgument::Expression: {
Douglas Gregor55f6b142009-02-09 18:46:07 +00001521 llvm::raw_string_ostream s(ArgString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001522 Args[Arg].getAsExpr()->printPretty(s, 0, Policy);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001523 break;
1524 }
Anders Carlssond01b1da2009-06-15 17:04:53 +00001525 case TemplateArgument::Pack:
1526 assert(0 && "FIXME: Implement!");
1527 break;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001528 }
1529
1530 // If this is the first argument and its string representation
1531 // begins with the global scope specifier ('::foo'), add a space
1532 // to avoid printing the diagraph '<:'.
1533 if (!Arg && !ArgString.empty() && ArgString[0] == ':')
1534 SpecString += ' ';
1535
1536 SpecString += ArgString;
1537 }
1538
1539 // If the last character of our string is '>', add another space to
1540 // keep the two '>''s separate tokens. We don't *have* to do this in
1541 // C++0x, but it's still good hygiene.
1542 if (SpecString[SpecString.size() - 1] == '>')
1543 SpecString += ' ';
1544
1545 SpecString += '>';
1546
Douglas Gregor98137532009-03-10 18:33:27 +00001547 return SpecString;
1548}
1549
1550void
Douglas Gregor7532dc62009-03-30 22:58:21 +00001551TemplateSpecializationType::
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001552getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregor7532dc62009-03-30 22:58:21 +00001553 std::string SpecString;
1554
1555 {
1556 llvm::raw_string_ostream OS(SpecString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001557 Template.print(OS, Policy);
Douglas Gregor7532dc62009-03-30 22:58:21 +00001558 }
1559
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001560 SpecString += PrintTemplateArgumentList(getArgs(), getNumArgs(), Policy);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001561 if (InnerString.empty())
1562 InnerString.swap(SpecString);
1563 else
1564 InnerString = SpecString + ' ' + InnerString;
1565}
1566
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001567void QualifiedNameType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001568 std::string MyString;
1569
Douglas Gregorbad35182009-03-19 03:51:16 +00001570 {
1571 llvm::raw_string_ostream OS(MyString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001572 NNS->print(OS, Policy);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001573 }
1574
1575 std::string TypeStr;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001576 PrintingPolicy InnerPolicy(Policy);
1577 InnerPolicy.SuppressTagKind = true;
1578 NamedType.getAsStringInternal(TypeStr, InnerPolicy);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001579
1580 MyString += TypeStr;
1581 if (InnerString.empty())
1582 InnerString.swap(MyString);
1583 else
1584 InnerString = MyString + ' ' + InnerString;
1585}
1586
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001587void TypenameType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregord57959a2009-03-27 23:10:48 +00001588 std::string MyString;
1589
1590 {
1591 llvm::raw_string_ostream OS(MyString);
1592 OS << "typename ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001593 NNS->print(OS, Policy);
Douglas Gregor17343172009-04-01 00:28:59 +00001594
1595 if (const IdentifierInfo *Ident = getIdentifier())
1596 OS << Ident->getName();
1597 else if (const TemplateSpecializationType *Spec = getTemplateId()) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001598 Spec->getTemplateName().print(OS, Policy, true);
Douglas Gregor17343172009-04-01 00:28:59 +00001599 OS << TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001600 Spec->getArgs(),
1601 Spec->getNumArgs(),
1602 Policy);
Douglas Gregor17343172009-04-01 00:28:59 +00001603 }
Douglas Gregord57959a2009-03-27 23:10:48 +00001604 }
1605
1606 if (InnerString.empty())
1607 InnerString.swap(MyString);
1608 else
1609 InnerString = MyString + ' ' + InnerString;
1610}
1611
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001612void ObjCInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
1613 const ObjCInterfaceDecl *Decl,
1614 ObjCProtocolDecl **protocols,
1615 unsigned NumProtocols) {
1616 ID.AddPointer(Decl);
1617 for (unsigned i = 0; i != NumProtocols; i++)
1618 ID.AddPointer(protocols[i]);
1619}
1620
1621void ObjCInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
1622 if (getNumProtocols())
1623 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
1624 else
1625 Profile(ID, getDecl(), 0, 0);
1626}
1627
1628void ObjCInterfaceType::getAsStringInternal(std::string &InnerString,
1629 const PrintingPolicy &Policy) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001630 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1631 InnerString = ' ' + InnerString;
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001632
1633 std::string ObjCQIString = getDecl()->getNameAsString();
1634 if (getNumProtocols()) {
1635 ObjCQIString += '<';
1636 bool isFirst = true;
1637 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1638 if (isFirst)
1639 isFirst = false;
1640 else
1641 ObjCQIString += ',';
1642 ObjCQIString += (*I)->getNameAsString();
1643 }
1644 ObjCQIString += '>';
1645 }
1646 InnerString = ObjCQIString + InnerString;
Steve Naroff3536b442007-09-06 21:24:23 +00001647}
1648
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001649void ObjCObjectPointerType::getAsStringInternal(std::string &InnerString,
1650 const PrintingPolicy &Policy) const {
Steve Naroffde2e22d2009-07-15 18:40:39 +00001651 std::string ObjCQIString;
1652
1653 if (isObjCIdType() || isObjCQualifiedIdType())
1654 ObjCQIString = "id";
Steve Naroff470301b2009-07-22 16:07:01 +00001655 else if (isObjCClassType() || isObjCQualifiedClassType())
Steve Naroffde2e22d2009-07-15 18:40:39 +00001656 ObjCQIString = "Class";
1657 else
1658 ObjCQIString = getInterfaceDecl()->getNameAsString();
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001659
1660 if (!qual_empty()) {
1661 ObjCQIString += '<';
1662 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1663 ObjCQIString += (*I)->getNameAsString();
1664 if (I+1 != E)
1665 ObjCQIString += ',';
1666 }
1667 ObjCQIString += '>';
1668 }
Steve Naroff14108da2009-07-10 23:34:53 +00001669 if (!isObjCIdType() && !isObjCQualifiedIdType())
1670 ObjCQIString += " *"; // Don't forget the implicit pointer.
1671 else if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1672 InnerString = ' ' + InnerString;
1673
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001674 InnerString = ObjCQIString + InnerString;
1675}
1676
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001677void TagType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Eli Friedman42f42c02009-05-30 04:20:30 +00001678 if (Policy.SuppressTag)
1679 return;
1680
Reid Spencer5f016e22007-07-11 17:01:13 +00001681 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1682 InnerString = ' ' + InnerString;
1683
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001684 const char *Kind = Policy.SuppressTagKind? 0 : getDecl()->getKindName();
Reid Spencer5f016e22007-07-11 17:01:13 +00001685 const char *ID;
1686 if (const IdentifierInfo *II = getDecl()->getIdentifier())
1687 ID = II->getName();
Douglas Gregor4e16d042009-03-10 18:11:21 +00001688 else if (TypedefDecl *Typedef = getDecl()->getTypedefForAnonDecl()) {
1689 Kind = 0;
1690 assert(Typedef->getIdentifier() && "Typedef without identifier?");
1691 ID = Typedef->getIdentifier()->getName();
1692 } else
Reid Spencer5f016e22007-07-11 17:01:13 +00001693 ID = "<anonymous>";
1694
Douglas Gregor98137532009-03-10 18:33:27 +00001695 // If this is a class template specialization, print the template
1696 // arguments.
1697 if (ClassTemplateSpecializationDecl *Spec
1698 = dyn_cast<ClassTemplateSpecializationDecl>(getDecl())) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001699 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
1700 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +00001701 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor7e063902009-05-11 23:53:27 +00001702 TemplateArgs.getFlatArgumentList(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001703 TemplateArgs.flat_size(),
1704 Policy);
Douglas Gregor7e063902009-05-11 23:53:27 +00001705 InnerString = TemplateArgsStr + InnerString;
Douglas Gregor98137532009-03-10 18:33:27 +00001706 }
1707
Douglas Gregor24c46b32009-03-19 04:25:59 +00001708 if (Kind) {
1709 // Compute the full nested-name-specifier for this type. In C,
1710 // this will always be empty.
1711 std::string ContextStr;
1712 for (DeclContext *DC = getDecl()->getDeclContext();
1713 !DC->isTranslationUnit(); DC = DC->getParent()) {
1714 std::string MyPart;
1715 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(DC)) {
1716 if (NS->getIdentifier())
1717 MyPart = NS->getNameAsString();
1718 } else if (ClassTemplateSpecializationDecl *Spec
1719 = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001720 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
1721 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +00001722 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor7e063902009-05-11 23:53:27 +00001723 TemplateArgs.getFlatArgumentList(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001724 TemplateArgs.flat_size(),
1725 Policy);
Douglas Gregor7e063902009-05-11 23:53:27 +00001726 MyPart = Spec->getIdentifier()->getName() + TemplateArgsStr;
Douglas Gregor24c46b32009-03-19 04:25:59 +00001727 } else if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
1728 if (TypedefDecl *Typedef = Tag->getTypedefForAnonDecl())
1729 MyPart = Typedef->getIdentifier()->getName();
1730 else if (Tag->getIdentifier())
1731 MyPart = Tag->getIdentifier()->getName();
1732 }
1733
1734 if (!MyPart.empty())
1735 ContextStr = MyPart + "::" + ContextStr;
1736 }
1737
1738 InnerString = std::string(Kind) + " " + ContextStr + ID + InnerString;
1739 } else
Douglas Gregor4e16d042009-03-10 18:11:21 +00001740 InnerString = ID + InnerString;
Reid Spencer5f016e22007-07-11 17:01:13 +00001741}