blob: 7a9faac60f3414dc029b5ac3a45485aa877ba326 [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
Steve Naroff14108da2009-07-10 23:34:53 +000025ObjCInterfaceType *ObjCObjectPointerType::IdInterfaceT;
26ObjCInterfaceType *ObjCObjectPointerType::ClassInterfaceT;
27
Chris Lattner4bbce992009-01-12 00:10:42 +000028bool QualType::isConstant(ASTContext &Ctx) const {
Nuno Lopesb381aac2008-09-01 11:33:04 +000029 if (isConstQualified())
30 return true;
31
32 if (getTypePtr()->isArrayType())
33 return Ctx.getAsArrayType(*this)->getElementType().isConstant(Ctx);
34
35 return false;
36}
37
Ted Kremenek566c2ba2009-01-19 21:31:22 +000038void Type::Destroy(ASTContext& C) {
39 this->~Type();
Steve Naroff3e970492009-01-27 21:25:57 +000040 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000041}
42
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +000043void ConstantArrayWithExprType::Destroy(ASTContext& C) {
44 // FIXME: destruction of SizeExpr commented out due to resource contention.
45 // SizeExpr->Destroy(C);
46 // See FIXME in SemaDecl.cpp:1536: if we were able to either steal
47 // or clone the SizeExpr there, then here we could freely delete it.
48 // Since we do not know how to steal or clone, we keep a pointer to
49 // a shared resource, but we cannot free it.
50 // (There probably is a trivial solution ... for people knowing clang!).
51 this->~ConstantArrayWithExprType();
52 C.Deallocate(this);
53}
54
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000055void VariableArrayType::Destroy(ASTContext& C) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +000056 if (SizeExpr)
57 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000058 this->~VariableArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000059 C.Deallocate(this);
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000060}
Reid Spencer5f016e22007-07-11 17:01:13 +000061
Douglas Gregor898574e2008-12-05 23:32:09 +000062void DependentSizedArrayType::Destroy(ASTContext& C) {
63 SizeExpr->Destroy(C);
Ted Kremenek566c2ba2009-01-19 21:31:22 +000064 this->~DependentSizedArrayType();
Steve Naroff3e970492009-01-27 21:25:57 +000065 C.Deallocate(this);
Douglas Gregor898574e2008-12-05 23:32:09 +000066}
Chris Lattnerc63a1f22008-08-04 07:31:14 +000067
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000068void DependentSizedExtVectorType::Destroy(ASTContext& C) {
69 if (SizeExpr)
70 SizeExpr->Destroy(C);
71 this->~DependentSizedExtVectorType();
72 C.Deallocate(this);
73}
74
Chris Lattnerc63a1f22008-08-04 07:31:14 +000075/// getArrayElementTypeNoTypeQual - If this is an array type, return the
76/// element type of the array, potentially with type qualifiers missing.
77/// This method should never be used when type qualifiers are meaningful.
78const Type *Type::getArrayElementTypeNoTypeQual() const {
79 // If this is directly an array type, return it.
80 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
81 return ATy->getElementType().getTypePtr();
82
83 // If the canonical form of this type isn't the right kind, reject it.
84 if (!isa<ArrayType>(CanonicalType)) {
85 // Look through type qualifiers
86 if (ArrayType *AT = dyn_cast<ArrayType>(CanonicalType.getUnqualifiedType()))
87 return AT->getElementType().getTypePtr();
88 return 0;
89 }
90
91 // If this is a typedef for an array type, strip the typedef off without
92 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +000093 return cast<ArrayType>(getDesugaredType())->getElementType().getTypePtr();
94}
95
96/// getDesugaredType - Return the specified type with any "sugar" removed from
97/// the type. This takes off typedefs, typeof's etc. If the outer level of
98/// the type is already concrete, it returns it unmodified. This is similar
99/// to getting the canonical type, but it doesn't remove *all* typedefs. For
100/// example, it returns "T*" as "T*", (not as "int*"), because the pointer is
101/// concrete.
Douglas Gregor969c6892009-04-01 15:47:24 +0000102///
103/// \param ForDisplay When true, the desugaring is provided for
104/// display purposes only. In this case, we apply more heuristics to
105/// decide whether it is worth providing a desugared form of the type
106/// or not.
107QualType QualType::getDesugaredType(bool ForDisplay) const {
108 return getTypePtr()->getDesugaredType(ForDisplay)
Chris Lattner2fa8c252009-03-17 22:51:02 +0000109 .getWithAdditionalQualifiers(getCVRQualifiers());
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000110}
111
112/// getDesugaredType - Return the specified type with any "sugar" removed from
113/// type type. This takes off typedefs, typeof's etc. If the outer level of
114/// the type is already concrete, it returns it unmodified. This is similar
115/// to getting the canonical type, but it doesn't remove *all* typedefs. For
116/// example, it return "T*" as "T*", (not as "int*"), because the pointer is
117/// concrete.
Douglas Gregor969c6892009-04-01 15:47:24 +0000118///
119/// \param ForDisplay When true, the desugaring is provided for
120/// display purposes only. In this case, we apply more heuristics to
121/// decide whether it is worth providing a desugared form of the type
122/// or not.
123QualType Type::getDesugaredType(bool ForDisplay) const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000124 if (const TypedefType *TDT = dyn_cast<TypedefType>(this))
Chris Lattner2fa8c252009-03-17 22:51:02 +0000125 return TDT->LookThroughTypedefs().getDesugaredType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000126 if (const TypeOfExprType *TOE = dyn_cast<TypeOfExprType>(this))
Chris Lattner2fa8c252009-03-17 22:51:02 +0000127 return TOE->getUnderlyingExpr()->getType().getDesugaredType();
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000128 if (const TypeOfType *TOT = dyn_cast<TypeOfType>(this))
Chris Lattner2fa8c252009-03-17 22:51:02 +0000129 return TOT->getUnderlyingType().getDesugaredType();
Anders Carlsson563a03b2009-07-10 19:20:26 +0000130 if (const DecltypeType *DTT = dyn_cast<DecltypeType>(this)) {
131 if (!DTT->getUnderlyingType()->isDependentType())
132 return DTT->getUnderlyingType().getDesugaredType();
133 }
Douglas Gregor7532dc62009-03-30 22:58:21 +0000134 if (const TemplateSpecializationType *Spec
Douglas Gregorc45c2322009-03-31 00:43:58 +0000135 = dyn_cast<TemplateSpecializationType>(this)) {
Douglas Gregor969c6892009-04-01 15:47:24 +0000136 if (ForDisplay)
137 return QualType(this, 0);
138
Douglas Gregorc45c2322009-03-31 00:43:58 +0000139 QualType Canon = Spec->getCanonicalTypeInternal();
140 if (Canon->getAsTemplateSpecializationType())
141 return QualType(this, 0);
142 return Canon->getDesugaredType();
143 }
Douglas Gregor969c6892009-04-01 15:47:24 +0000144 if (const QualifiedNameType *QualName = dyn_cast<QualifiedNameType>(this)) {
145 if (ForDisplay) {
146 // If desugaring the type that the qualified name is referring to
147 // produces something interesting, that's our desugared type.
148 QualType NamedType = QualName->getNamedType().getDesugaredType();
149 if (NamedType != QualName->getNamedType())
150 return NamedType;
151 } else
152 return QualName->getNamedType().getDesugaredType();
153 }
Douglas Gregor5cdf8212009-02-12 00:15:05 +0000154
Douglas Gregor969c6892009-04-01 15:47:24 +0000155 return QualType(this, 0);
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000156}
157
Reid Spencer5f016e22007-07-11 17:01:13 +0000158/// isVoidType - Helper method to determine if this is the 'void' type.
159bool Type::isVoidType() const {
160 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
161 return BT->getKind() == BuiltinType::Void;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000162 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000163 return AS->getBaseType()->isVoidType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 return false;
165}
166
167bool Type::isObjectType() const {
Douglas Gregorbad0e652009-03-24 20:32:41 +0000168 if (isa<FunctionType>(CanonicalType) || isa<ReferenceType>(CanonicalType) ||
169 isa<IncompleteArrayType>(CanonicalType) || isVoidType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 return false;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000171 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000172 return AS->getBaseType()->isObjectType();
Douglas Gregorbad0e652009-03-24 20:32:41 +0000173 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000174}
175
176bool Type::isDerivedType() const {
177 switch (CanonicalType->getTypeClass()) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000178 case ExtQual:
179 return cast<ExtQualType>(CanonicalType)->getBaseType()->isDerivedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 case Pointer:
Steve Narofffb22d962007-08-30 01:06:46 +0000181 case VariableArray:
182 case ConstantArray:
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000183 case ConstantArrayWithExpr:
184 case ConstantArrayWithoutExpr:
Eli Friedmanc5773c42008-02-15 18:16:39 +0000185 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000186 case FunctionProto:
187 case FunctionNoProto:
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000188 case LValueReference:
189 case RValueReference:
Douglas Gregor72564e72009-02-26 23:50:07 +0000190 case Record:
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000192 default:
193 return false;
194 }
195}
196
Chris Lattner99dc9142008-04-13 18:59:07 +0000197bool Type::isClassType() const {
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000198 if (const RecordType *RT = getAsRecordType())
199 return RT->getDecl()->isClass();
Chris Lattner99dc9142008-04-13 18:59:07 +0000200 return false;
201}
Chris Lattnerc8629632007-07-31 19:29:30 +0000202bool Type::isStructureType() const {
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000203 if (const RecordType *RT = getAsRecordType())
204 return RT->getDecl()->isStruct();
Chris Lattnerc8629632007-07-31 19:29:30 +0000205 return false;
206}
Steve Naroff7154a772009-07-01 14:36:47 +0000207bool Type::isVoidPointerType() const {
208 if (const PointerType *PT = getAsPointerType())
209 return PT->getPointeeType()->isVoidType();
210 return false;
211}
212
Chris Lattnerc8629632007-07-31 19:29:30 +0000213bool Type::isUnionType() const {
Chris Lattnerf728a4a2009-01-11 23:59:49 +0000214 if (const RecordType *RT = getAsRecordType())
215 return RT->getDecl()->isUnion();
Chris Lattnerc8629632007-07-31 19:29:30 +0000216 return false;
217}
Chris Lattnerc8629632007-07-31 19:29:30 +0000218
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000219bool Type::isComplexType() const {
Steve Naroff02f62a92008-01-15 19:36:10 +0000220 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
221 return CT->getElementType()->isFloatingType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000222 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000223 return AS->getBaseType()->isComplexType();
Steve Naroff02f62a92008-01-15 19:36:10 +0000224 return false;
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000225}
226
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000227bool Type::isComplexIntegerType() const {
228 // Check for GCC complex integer extension.
229 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
230 return CT->getElementType()->isIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000231 if (const ExtQualType *AS = dyn_cast<ExtQualType>(CanonicalType))
Chris Lattner4bbce992009-01-12 00:10:42 +0000232 return AS->getBaseType()->isComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000233 return false;
234}
235
236const ComplexType *Type::getAsComplexIntegerType() const {
237 // Are we directly a complex type?
238 if (const ComplexType *CTy = dyn_cast<ComplexType>(this)) {
239 if (CTy->getElementType()->isIntegerType())
240 return CTy;
Chris Lattner4bbce992009-01-12 00:10:42 +0000241 return 0;
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000242 }
Chris Lattner4bbce992009-01-12 00:10:42 +0000243
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000244 // If the canonical form of this type isn't what we want, reject it.
245 if (!isa<ComplexType>(CanonicalType)) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000246 // Look through type qualifiers (e.g. ExtQualType's).
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000247 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
248 return CanonicalType.getUnqualifiedType()->getAsComplexIntegerType();
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000249 return 0;
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000250 }
251
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000252 // If this is a typedef for a complex type, strip the typedef off without
253 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000254 return cast<ComplexType>(getDesugaredType());
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000255}
256
Steve Naroff77878cc2007-08-27 04:08:11 +0000257const BuiltinType *Type::getAsBuiltinType() const {
258 // If this is directly a builtin type, return it.
259 if (const BuiltinType *BTy = dyn_cast<BuiltinType>(this))
260 return BTy;
Chris Lattnerdea61462007-10-29 03:41:11 +0000261
262 // If the canonical form of this type isn't a builtin type, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000263 if (!isa<BuiltinType>(CanonicalType)) {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000264 // Look through type qualifiers (e.g. ExtQualType's).
Christopher Lambebb97e92008-02-04 02:31:56 +0000265 if (isa<BuiltinType>(CanonicalType.getUnqualifiedType()))
266 return CanonicalType.getUnqualifiedType()->getAsBuiltinType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000267 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000268 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000269
Steve Naroff77878cc2007-08-27 04:08:11 +0000270 // If this is a typedef for a builtin type, strip the typedef off without
271 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000272 return cast<BuiltinType>(getDesugaredType());
Steve Naroff77878cc2007-08-27 04:08:11 +0000273}
274
Chris Lattnerc8629632007-07-31 19:29:30 +0000275const FunctionType *Type::getAsFunctionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000276 // If this is directly a function type, return it.
277 if (const FunctionType *FTy = dyn_cast<FunctionType>(this))
278 return FTy;
Christopher Lambebb97e92008-02-04 02:31:56 +0000279
Chris Lattnerdea61462007-10-29 03:41:11 +0000280 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000281 if (!isa<FunctionType>(CanonicalType)) {
282 // Look through type qualifiers
283 if (isa<FunctionType>(CanonicalType.getUnqualifiedType()))
284 return CanonicalType.getUnqualifiedType()->getAsFunctionType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000285 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000286 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000287
Steve Naroff7064f5c2007-07-26 18:32:01 +0000288 // If this is a typedef for a function type, strip the typedef off without
289 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000290 return cast<FunctionType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000291}
292
Douglas Gregor72564e72009-02-26 23:50:07 +0000293const FunctionNoProtoType *Type::getAsFunctionNoProtoType() const {
294 return dyn_cast_or_null<FunctionNoProtoType>(getAsFunctionType());
Daniel Dunbarafa74442009-02-19 07:11:26 +0000295}
296
Douglas Gregor72564e72009-02-26 23:50:07 +0000297const FunctionProtoType *Type::getAsFunctionProtoType() const {
298 return dyn_cast_or_null<FunctionProtoType>(getAsFunctionType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000299}
300
Steve Naroff14108da2009-07-10 23:34:53 +0000301QualType Type::getPointeeType() const {
302 if (const PointerType *PT = getAsPointerType())
303 return PT->getPointeeType();
304 if (const ObjCObjectPointerType *OPT = getAsObjCObjectPointerType())
305 return OPT->getPointeeType();
306 if (const BlockPointerType *BPT = getAsBlockPointerType())
307 return BPT->getPointeeType();
308 return QualType();
309}
Chris Lattnerb77792e2008-07-26 22:17:49 +0000310
Chris Lattnerbefee482007-07-31 16:53:04 +0000311const PointerType *Type::getAsPointerType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000312 // If this is directly a pointer type, return it.
313 if (const PointerType *PTy = dyn_cast<PointerType>(this))
314 return PTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000315
Chris Lattnerdea61462007-10-29 03:41:11 +0000316 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000317 if (!isa<PointerType>(CanonicalType)) {
318 // Look through type qualifiers
319 if (isa<PointerType>(CanonicalType.getUnqualifiedType()))
320 return CanonicalType.getUnqualifiedType()->getAsPointerType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000321 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000322 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000323
Chris Lattnera2c77672007-07-16 22:05:22 +0000324 // If this is a typedef for a pointer type, strip the typedef off without
325 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000326 return cast<PointerType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000327}
328
Steve Naroff5618bd42008-08-27 16:04:49 +0000329const BlockPointerType *Type::getAsBlockPointerType() const {
330 // If this is directly a block pointer type, return it.
331 if (const BlockPointerType *PTy = dyn_cast<BlockPointerType>(this))
332 return PTy;
333
334 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000335 if (!isa<BlockPointerType>(CanonicalType)) {
336 // Look through type qualifiers
337 if (isa<BlockPointerType>(CanonicalType.getUnqualifiedType()))
338 return CanonicalType.getUnqualifiedType()->getAsBlockPointerType();
Steve Naroff5618bd42008-08-27 16:04:49 +0000339 return 0;
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000340 }
Steve Naroff5618bd42008-08-27 16:04:49 +0000341
342 // If this is a typedef for a block pointer type, strip the typedef off
343 // without losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000344 return cast<BlockPointerType>(getDesugaredType());
Steve Naroff5618bd42008-08-27 16:04:49 +0000345}
346
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000347const ReferenceType *Type::getAsReferenceType() const {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000348 // If this is directly a reference type, return it.
349 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(this))
350 return RTy;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000351
Chris Lattnerdea61462007-10-29 03:41:11 +0000352 // If the canonical form of this type isn't the right kind, reject it.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000353 if (!isa<ReferenceType>(CanonicalType)) {
Christopher Lambebb97e92008-02-04 02:31:56 +0000354 // Look through type qualifiers
355 if (isa<ReferenceType>(CanonicalType.getUnqualifiedType()))
356 return CanonicalType.getUnqualifiedType()->getAsReferenceType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000357 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000358 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000359
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000360 // If this is a typedef for a reference type, strip the typedef off without
361 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000362 return cast<ReferenceType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000363}
364
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000365const LValueReferenceType *Type::getAsLValueReferenceType() const {
366 // If this is directly an lvalue reference type, return it.
367 if (const LValueReferenceType *RTy = dyn_cast<LValueReferenceType>(this))
368 return RTy;
369
370 // If the canonical form of this type isn't the right kind, reject it.
371 if (!isa<LValueReferenceType>(CanonicalType)) {
372 // Look through type qualifiers
373 if (isa<LValueReferenceType>(CanonicalType.getUnqualifiedType()))
374 return CanonicalType.getUnqualifiedType()->getAsLValueReferenceType();
375 return 0;
376 }
377
378 // If this is a typedef for an lvalue reference type, strip the typedef off
379 // without losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000380 return cast<LValueReferenceType>(getDesugaredType());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000381}
382
383const RValueReferenceType *Type::getAsRValueReferenceType() const {
384 // If this is directly an rvalue reference type, return it.
385 if (const RValueReferenceType *RTy = dyn_cast<RValueReferenceType>(this))
386 return RTy;
387
388 // If the canonical form of this type isn't the right kind, reject it.
389 if (!isa<RValueReferenceType>(CanonicalType)) {
390 // Look through type qualifiers
391 if (isa<RValueReferenceType>(CanonicalType.getUnqualifiedType()))
392 return CanonicalType.getUnqualifiedType()->getAsRValueReferenceType();
393 return 0;
394 }
395
396 // If this is a typedef for an rvalue reference type, strip the typedef off
397 // without losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000398 return cast<RValueReferenceType>(getDesugaredType());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000399}
400
Sebastian Redlf30208a2009-01-24 21:16:55 +0000401const MemberPointerType *Type::getAsMemberPointerType() const {
402 // If this is directly a member pointer type, return it.
403 if (const MemberPointerType *MTy = dyn_cast<MemberPointerType>(this))
404 return MTy;
405
406 // If the canonical form of this type isn't the right kind, reject it.
407 if (!isa<MemberPointerType>(CanonicalType)) {
408 // Look through type qualifiers
409 if (isa<MemberPointerType>(CanonicalType.getUnqualifiedType()))
410 return CanonicalType.getUnqualifiedType()->getAsMemberPointerType();
411 return 0;
412 }
413
414 // If this is a typedef for a member pointer type, strip the typedef off
415 // without losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000416 return cast<MemberPointerType>(getDesugaredType());
Sebastian Redlf30208a2009-01-24 21:16:55 +0000417}
418
Eli Friedmand3f2f792008-02-17 00:59:11 +0000419/// isVariablyModifiedType (C99 6.7.5p3) - Return true for variable length
420/// array types and types that contain variable array types in their
421/// declarator
Steve Naroffd7444aa2007-08-31 17:20:07 +0000422bool Type::isVariablyModifiedType() const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000423 // A VLA is a variably modified type.
424 if (isVariableArrayType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000425 return true;
426
427 // An array can contain a variably modified type
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000428 if (const Type *T = getArrayElementTypeNoTypeQual())
429 return T->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000430
Sebastian Redlf30208a2009-01-24 21:16:55 +0000431 // A pointer can point to a variably modified type.
432 // Also, C++ references and member pointers can point to a variably modified
433 // type, where VLAs appear as an extension to C++, and should be treated
434 // correctly.
Daniel Dunbar68694ad2009-02-26 19:54:52 +0000435 if (const PointerType *PT = getAsPointerType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000436 return PT->getPointeeType()->isVariablyModifiedType();
Daniel Dunbar68694ad2009-02-26 19:54:52 +0000437 if (const ReferenceType *RT = getAsReferenceType())
438 return RT->getPointeeType()->isVariablyModifiedType();
Sebastian Redl8edef7c2009-01-24 23:29:36 +0000439 if (const MemberPointerType *PT = getAsMemberPointerType())
440 return PT->getPointeeType()->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000441
442 // A function can return a variably modified type
443 // This one isn't completely obvious, but it follows from the
444 // definition in C99 6.7.5p3. Because of this rule, it's
445 // illegal to declare a function returning a variably modified type.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000446 if (const FunctionType *FT = getAsFunctionType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000447 return FT->getResultType()->isVariablyModifiedType();
448
Steve Naroffd7444aa2007-08-31 17:20:07 +0000449 return false;
450}
451
Chris Lattnerc8629632007-07-31 19:29:30 +0000452const RecordType *Type::getAsRecordType() const {
Douglas Gregorfc705b82009-02-26 22:19:44 +0000453 // If this is directly a record type, return it.
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000454 if (const RecordType *RTy = dyn_cast<RecordType>(this))
455 return RTy;
456
Chris Lattnerdea61462007-10-29 03:41:11 +0000457 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000458 if (!isa<RecordType>(CanonicalType)) {
459 // Look through type qualifiers
460 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
461 return CanonicalType.getUnqualifiedType()->getAsRecordType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000462 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000463 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000464
465 // If this is a typedef for a record type, strip the typedef off without
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000466 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000467 return cast<RecordType>(getDesugaredType());
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000468}
469
Douglas Gregorfc705b82009-02-26 22:19:44 +0000470const TagType *Type::getAsTagType() const {
471 // If this is directly a tag type, return it.
472 if (const TagType *TagTy = dyn_cast<TagType>(this))
473 return TagTy;
474
475 // If the canonical form of this type isn't the right kind, reject it.
476 if (!isa<TagType>(CanonicalType)) {
477 // Look through type qualifiers
478 if (isa<TagType>(CanonicalType.getUnqualifiedType()))
479 return CanonicalType.getUnqualifiedType()->getAsTagType();
480 return 0;
481 }
482
483 // If this is a typedef for a tag type, strip the typedef off without
484 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000485 return cast<TagType>(getDesugaredType());
Douglas Gregorfc705b82009-02-26 22:19:44 +0000486}
487
Chris Lattnerc8629632007-07-31 19:29:30 +0000488const RecordType *Type::getAsStructureType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000489 // If this is directly a structure type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000490 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000491 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000492 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000493 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000494
495 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000496 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000497 if (!RT->getDecl()->isStruct())
Chris Lattnerdea61462007-10-29 03:41:11 +0000498 return 0;
499
500 // If this is a typedef for a structure type, strip the typedef off without
501 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000502 return cast<RecordType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000503 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000504 // Look through type qualifiers
505 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
506 return CanonicalType.getUnqualifiedType()->getAsStructureType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000507 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000508}
509
Chris Lattnerc8629632007-07-31 19:29:30 +0000510const RecordType *Type::getAsUnionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000511 // If this is directly a union type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000512 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000513 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000514 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000515 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000516
Chris Lattnerdea61462007-10-29 03:41:11 +0000517 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000518 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000519 if (!RT->getDecl()->isUnion())
Chris Lattnerdea61462007-10-29 03:41:11 +0000520 return 0;
521
522 // If this is a typedef for a union type, strip the typedef off without
523 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000524 return cast<RecordType>(getDesugaredType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000525 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000526
527 // Look through type qualifiers
528 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
529 return CanonicalType.getUnqualifiedType()->getAsUnionType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000530 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000531}
532
Eli Friedmanad74a752008-06-28 06:23:08 +0000533const EnumType *Type::getAsEnumType() const {
534 // Check the canonicalized unqualified type directly; the more complex
535 // version is unnecessary because there isn't any typedef information
536 // to preserve.
537 return dyn_cast<EnumType>(CanonicalType.getUnqualifiedType());
538}
539
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000540const ComplexType *Type::getAsComplexType() const {
541 // Are we directly a complex type?
542 if (const ComplexType *CTy = dyn_cast<ComplexType>(this))
543 return CTy;
544
Chris Lattnerdea61462007-10-29 03:41:11 +0000545 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000546 if (!isa<ComplexType>(CanonicalType)) {
547 // Look through type qualifiers
548 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
549 return CanonicalType.getUnqualifiedType()->getAsComplexType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000550 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000551 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000552
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000553 // If this is a typedef for a complex type, strip the typedef off without
554 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000555 return cast<ComplexType>(getDesugaredType());
Chris Lattner7a2e0472007-07-16 00:23:25 +0000556}
557
Chris Lattnerc8629632007-07-31 19:29:30 +0000558const VectorType *Type::getAsVectorType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000559 // Are we directly a vector type?
560 if (const VectorType *VTy = dyn_cast<VectorType>(this))
561 return VTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000562
Chris Lattnerdea61462007-10-29 03:41:11 +0000563 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000564 if (!isa<VectorType>(CanonicalType)) {
565 // Look through type qualifiers
566 if (isa<VectorType>(CanonicalType.getUnqualifiedType()))
567 return CanonicalType.getUnqualifiedType()->getAsVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000568 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000569 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000570
Chris Lattnera2c77672007-07-16 22:05:22 +0000571 // If this is a typedef for a vector type, strip the typedef off without
572 // losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000573 return cast<VectorType>(getDesugaredType());
Chris Lattner7a2e0472007-07-16 00:23:25 +0000574}
575
Nate Begeman213541a2008-04-18 23:10:10 +0000576const ExtVectorType *Type::getAsExtVectorType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000577 // Are we directly an OpenCU vector type?
Nate Begeman213541a2008-04-18 23:10:10 +0000578 if (const ExtVectorType *VTy = dyn_cast<ExtVectorType>(this))
Steve Naroff7064f5c2007-07-26 18:32:01 +0000579 return VTy;
580
Chris Lattnerdea61462007-10-29 03:41:11 +0000581 // If the canonical form of this type isn't the right kind, reject it.
Nate Begeman213541a2008-04-18 23:10:10 +0000582 if (!isa<ExtVectorType>(CanonicalType)) {
Christopher Lambebb97e92008-02-04 02:31:56 +0000583 // Look through type qualifiers
Nate Begeman213541a2008-04-18 23:10:10 +0000584 if (isa<ExtVectorType>(CanonicalType.getUnqualifiedType()))
585 return CanonicalType.getUnqualifiedType()->getAsExtVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000586 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000587 }
Steve Naroff7064f5c2007-07-26 18:32:01 +0000588
Nate Begeman213541a2008-04-18 23:10:10 +0000589 // If this is a typedef for an extended vector type, strip the typedef off
590 // without losing all typedef information.
Chris Lattner2fa8c252009-03-17 22:51:02 +0000591 return cast<ExtVectorType>(getDesugaredType());
Steve Naroff7064f5c2007-07-26 18:32:01 +0000592}
593
Chris Lattner368eefa2008-04-07 00:27:04 +0000594const ObjCInterfaceType *Type::getAsObjCInterfaceType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000595 // There is no sugar for ObjCInterfaceType's, just return the canonical
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000596 // type pointer if it is the right class. There is no typedef information to
597 // return and these cannot be Address-space qualified.
Fariborz Jahanianfb41ca82009-02-26 23:05:51 +0000598 return dyn_cast<ObjCInterfaceType>(CanonicalType.getUnqualifiedType());
Chris Lattner368eefa2008-04-07 00:27:04 +0000599}
600
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000601const ObjCObjectPointerType *Type::getAsObjCObjectPointerType() const {
602 // There is no sugar for ObjCObjectPointerType's, just return the
603 // canonical type pointer if it is the right class.
604 return dyn_cast<ObjCObjectPointerType>(CanonicalType.getUnqualifiedType());
605}
606
Chris Lattner368eefa2008-04-07 00:27:04 +0000607const ObjCQualifiedInterfaceType *
608Type::getAsObjCQualifiedInterfaceType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000609 // There is no sugar for ObjCQualifiedInterfaceType's, just return the
610 // canonical type pointer if it is the right class.
Fariborz Jahanianfb41ca82009-02-26 23:05:51 +0000611 return dyn_cast<ObjCQualifiedInterfaceType>(CanonicalType.getUnqualifiedType());
Chris Lattnereca7be62008-04-07 05:30:13 +0000612}
613
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000614const ObjCObjectPointerType *Type::getAsObjCQualifiedIdType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000615 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
616 // type pointer if it is the right class.
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000617 if (const ObjCObjectPointerType *OPT = getAsObjCObjectPointerType()) {
618 if (OPT->isObjCQualifiedIdType())
619 return OPT;
620 }
621 return 0;
Chris Lattner368eefa2008-04-07 00:27:04 +0000622}
623
Steve Naroff14108da2009-07-10 23:34:53 +0000624const ObjCObjectPointerType *Type::getAsObjCInterfacePointerType() const {
625 if (const ObjCObjectPointerType *OPT = getAsObjCObjectPointerType()) {
626 if (OPT->getInterfaceType())
627 return OPT;
628 }
629 return 0;
630}
631
Douglas Gregor72c3f312008-12-05 18:15:24 +0000632const TemplateTypeParmType *Type::getAsTemplateTypeParmType() const {
633 // There is no sugar for template type parameters, so just return
634 // the canonical type pointer if it is the right class.
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000635 // FIXME: can these be address-space qualified?
Douglas Gregor72c3f312008-12-05 18:15:24 +0000636 return dyn_cast<TemplateTypeParmType>(CanonicalType);
637}
Chris Lattner368eefa2008-04-07 00:27:04 +0000638
Douglas Gregor7532dc62009-03-30 22:58:21 +0000639const TemplateSpecializationType *
640Type::getAsTemplateSpecializationType() const {
Douglas Gregor55f6b142009-02-09 18:46:07 +0000641 // There is no sugar for class template specialization types, so
642 // just return the canonical type pointer if it is the right class.
Douglas Gregor7532dc62009-03-30 22:58:21 +0000643 return dyn_cast<TemplateSpecializationType>(CanonicalType);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000644}
645
Reid Spencer5f016e22007-07-11 17:01:13 +0000646bool Type::isIntegerType() const {
647 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
648 return BT->getKind() >= BuiltinType::Bool &&
Chris Lattner2df9ced2009-04-30 02:43:43 +0000649 BT->getKind() <= BuiltinType::Int128;
Reid Spencer5f016e22007-07-11 17:01:13 +0000650 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000651 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000652 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000653 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 return true;
Eli Friedmanf98aba32009-02-13 02:31:07 +0000655 if (isa<FixedWidthIntType>(CanonicalType))
656 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000657 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
658 return VT->getElementType()->isIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000659 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
660 return EXTQT->getBaseType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 return false;
662}
663
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000664bool Type::isIntegralType() const {
665 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
666 return BT->getKind() >= BuiltinType::Bool &&
667 BT->getKind() <= BuiltinType::LongLong;
668 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000669 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
670 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000671 // FIXME: In C++, enum types are never integral.
Eli Friedmanf98aba32009-02-13 02:31:07 +0000672 if (isa<FixedWidthIntType>(CanonicalType))
673 return true;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000674 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
675 return EXTQT->getBaseType()->isIntegralType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000676 return false;
677}
678
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000679bool Type::isEnumeralType() const {
680 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000681 return TT->getDecl()->isEnum();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000682 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
683 return EXTQT->getBaseType()->isEnumeralType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000684 return false;
685}
686
687bool Type::isBooleanType() const {
688 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
689 return BT->getKind() == BuiltinType::Bool;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000690 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
691 return EXTQT->getBaseType()->isBooleanType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000692 return false;
693}
694
695bool Type::isCharType() const {
696 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
697 return BT->getKind() == BuiltinType::Char_U ||
698 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000699 BT->getKind() == BuiltinType::Char_S ||
700 BT->getKind() == BuiltinType::SChar;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000701 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
702 return EXTQT->getBaseType()->isCharType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000703 return false;
704}
705
Douglas Gregor77a52232008-09-12 00:47:35 +0000706bool Type::isWideCharType() const {
707 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
708 return BT->getKind() == BuiltinType::WChar;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000709 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
710 return EXTQT->getBaseType()->isWideCharType();
Douglas Gregor77a52232008-09-12 00:47:35 +0000711 return false;
712}
713
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000714/// isSignedIntegerType - Return true if this is an integer type that is
715/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
716/// an enum decl which has a signed representation, or a vector of signed
717/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000718bool Type::isSignedIntegerType() const {
719 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
720 return BT->getKind() >= BuiltinType::Char_S &&
721 BT->getKind() <= BuiltinType::LongLong;
722 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000723
Chris Lattner37c1b782008-04-06 22:29:16 +0000724 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
725 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000726
Eli Friedmanf98aba32009-02-13 02:31:07 +0000727 if (const FixedWidthIntType *FWIT =
728 dyn_cast<FixedWidthIntType>(CanonicalType))
729 return FWIT->isSigned();
730
Steve Naroffc63b96a2007-07-12 21:46:55 +0000731 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
732 return VT->getElementType()->isSignedIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000733 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
734 return EXTQT->getBaseType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 return false;
736}
737
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000738/// isUnsignedIntegerType - Return true if this is an integer type that is
739/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
740/// decl which has an unsigned representation, or a vector of unsigned integer
741/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000742bool Type::isUnsignedIntegerType() const {
743 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
744 return BT->getKind() >= BuiltinType::Bool &&
745 BT->getKind() <= BuiltinType::ULongLong;
746 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000747
Chris Lattner37c1b782008-04-06 22:29:16 +0000748 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
749 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000750
Eli Friedmanf98aba32009-02-13 02:31:07 +0000751 if (const FixedWidthIntType *FWIT =
752 dyn_cast<FixedWidthIntType>(CanonicalType))
753 return !FWIT->isSigned();
754
Steve Naroffc63b96a2007-07-12 21:46:55 +0000755 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
756 return VT->getElementType()->isUnsignedIntegerType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000757 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
758 return EXTQT->getBaseType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000759 return false;
760}
761
762bool Type::isFloatingType() const {
763 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
764 return BT->getKind() >= BuiltinType::Float &&
765 BT->getKind() <= BuiltinType::LongDouble;
766 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000767 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000768 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
769 return VT->getElementType()->isFloatingType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000770 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
771 return EXTQT->getBaseType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000772 return false;
773}
774
775bool Type::isRealFloatingType() const {
776 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
777 return BT->getKind() >= BuiltinType::Float &&
778 BT->getKind() <= BuiltinType::LongDouble;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000779 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
780 return VT->getElementType()->isRealFloatingType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000781 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
782 return EXTQT->getBaseType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000783 return false;
784}
785
786bool Type::isRealType() const {
787 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
788 return BT->getKind() >= BuiltinType::Bool &&
789 BT->getKind() <= BuiltinType::LongDouble;
790 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000791 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000792 if (isa<FixedWidthIntType>(CanonicalType))
793 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000794 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
795 return VT->getElementType()->isRealType();
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000796 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
797 return EXTQT->getBaseType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 return false;
799}
800
Reid Spencer5f016e22007-07-11 17:01:13 +0000801bool Type::isArithmeticType() const {
802 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000803 return BT->getKind() >= BuiltinType::Bool &&
804 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000805 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
806 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
807 // If a body isn't seen by the time we get here, return false.
808 return ET->getDecl()->isDefinition();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000809 if (isa<FixedWidthIntType>(CanonicalType))
810 return true;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000811 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
812 return EXTQT->getBaseType()->isArithmeticType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
814}
815
816bool Type::isScalarType() const {
817 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
818 return BT->getKind() != BuiltinType::Void;
819 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000820 // Enums are scalar types, but only if they are defined. Incomplete enums
821 // are not treated as scalar types.
822 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 return true;
824 return false;
825 }
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000826 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
827 return EXTQT->getBaseType()->isScalarType();
Eli Friedmanf98aba32009-02-13 02:31:07 +0000828 if (isa<FixedWidthIntType>(CanonicalType))
829 return true;
Steve Naroff5618bd42008-08-27 16:04:49 +0000830 return isa<PointerType>(CanonicalType) ||
831 isa<BlockPointerType>(CanonicalType) ||
Sebastian Redlf30208a2009-01-24 21:16:55 +0000832 isa<MemberPointerType>(CanonicalType) ||
Steve Naroff5618bd42008-08-27 16:04:49 +0000833 isa<ComplexType>(CanonicalType) ||
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000834 isa<ObjCObjectPointerType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000835}
836
Douglas Gregord7eb8462009-01-30 17:31:00 +0000837/// \brief Determines whether the type is a C++ aggregate type or C
838/// aggregate or union type.
839///
840/// An aggregate type is an array or a class type (struct, union, or
841/// class) that has no user-declared constructors, no private or
842/// protected non-static data members, no base classes, and no virtual
843/// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type
844/// subsumes the notion of C aggregates (C99 6.2.5p21) because it also
845/// includes union types.
Reid Spencer5f016e22007-07-11 17:01:13 +0000846bool Type::isAggregateType() const {
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000847 if (const RecordType *Record = dyn_cast<RecordType>(CanonicalType)) {
848 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl()))
849 return ClassDecl->isAggregate();
850
Douglas Gregord7eb8462009-01-30 17:31:00 +0000851 return true;
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000852 }
853
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000854 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
855 return EXTQT->getBaseType()->isAggregateType();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000856 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000857}
858
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000859/// isConstantSizeType - Return true if this is not a variable sized type,
860/// according to the rules of C99 6.7.5p3. It is not legal to call this on
Douglas Gregor898574e2008-12-05 23:32:09 +0000861/// incomplete types or dependent types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000862bool Type::isConstantSizeType() const {
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000863 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CanonicalType))
864 return EXTQT->getBaseType()->isConstantSizeType();
Chris Lattnerd52a4572007-12-18 07:03:30 +0000865 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Douglas Gregor898574e2008-12-05 23:32:09 +0000866 assert(!isDependentType() && "This doesn't make sense for dependent types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000867 // The VAT must have a size, as it is known to be complete.
868 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000869}
870
871/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
872/// - a type that can describe objects, but which lacks information needed to
873/// determine its size.
874bool Type::isIncompleteType() const {
875 switch (CanonicalType->getTypeClass()) {
876 default: return false;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000877 case ExtQual:
878 return cast<ExtQualType>(CanonicalType)->getBaseType()->isIncompleteType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000879 case Builtin:
880 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
881 // be completed.
882 return isVoidType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000883 case Record:
Douglas Gregor72564e72009-02-26 23:50:07 +0000884 case Enum:
Reid Spencer5f016e22007-07-11 17:01:13 +0000885 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
886 // forward declaration, but not a full definition (C99 6.2.5p22).
887 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000888 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000889 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000890 return true;
Chris Lattner1efaa952009-04-24 00:30:45 +0000891 case ObjCInterface:
892 case ObjCQualifiedInterface:
893 // ObjC interfaces are incomplete if they are @class, not @interface.
894 return cast<ObjCInterfaceType>(this)->getDecl()->isForwardDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000895 }
896}
897
Sebastian Redl64b45f72009-01-05 20:52:13 +0000898/// isPODType - Return true if this is a plain-old-data type (C++ 3.9p10)
899bool Type::isPODType() const {
900 // The compiler shouldn't query this for incomplete types, but the user might.
901 // We return false for that case.
902 if (isIncompleteType())
903 return false;
904
905 switch (CanonicalType->getTypeClass()) {
906 // Everything not explicitly mentioned is not POD.
907 default: return false;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000908 case ExtQual:
909 return cast<ExtQualType>(CanonicalType)->getBaseType()->isPODType();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000910 case VariableArray:
911 case ConstantArray:
912 // IncompleteArray is caught by isIncompleteType() above.
913 return cast<ArrayType>(CanonicalType)->getElementType()->isPODType();
914
915 case Builtin:
916 case Complex:
917 case Pointer:
Sebastian Redlf30208a2009-01-24 21:16:55 +0000918 case MemberPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000919 case Vector:
920 case ExtVector:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000921 case ObjCObjectPointer:
Sebastian Redl64b45f72009-01-05 20:52:13 +0000922 return true;
923
Douglas Gregor72564e72009-02-26 23:50:07 +0000924 case Enum:
925 return true;
926
927 case Record:
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000928 if (CXXRecordDecl *ClassDecl
929 = dyn_cast<CXXRecordDecl>(cast<RecordType>(CanonicalType)->getDecl()))
930 return ClassDecl->isPOD();
931
Sebastian Redl64b45f72009-01-05 20:52:13 +0000932 // C struct/union is POD.
933 return true;
934 }
935}
936
Reid Spencer5f016e22007-07-11 17:01:13 +0000937bool Type::isPromotableIntegerType() const {
Chris Lattner2a18dfe2009-01-12 00:21:19 +0000938 if (const BuiltinType *BT = getAsBuiltinType())
939 switch (BT->getKind()) {
940 case BuiltinType::Bool:
941 case BuiltinType::Char_S:
942 case BuiltinType::Char_U:
943 case BuiltinType::SChar:
944 case BuiltinType::UChar:
945 case BuiltinType::Short:
946 case BuiltinType::UShort:
947 return true;
948 default:
949 return false;
950 }
951 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000952}
953
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000954bool Type::isNullPtrType() const {
955 if (const BuiltinType *BT = getAsBuiltinType())
956 return BT->getKind() == BuiltinType::NullPtr;
957 return false;
958}
959
Eli Friedman22b61e92009-05-30 00:10:16 +0000960bool Type::isSpecifierType() const {
961 // Note that this intentionally does not use the canonical type.
962 switch (getTypeClass()) {
963 case Builtin:
964 case Record:
965 case Enum:
966 case Typedef:
Eli Friedmanc8f2c612009-05-30 01:45:29 +0000967 case Complex:
968 case TypeOfExpr:
969 case TypeOf:
970 case TemplateTypeParm:
971 case TemplateSpecialization:
972 case QualifiedName:
973 case Typename:
974 case ObjCInterface:
975 case ObjCQualifiedInterface:
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000976 case ObjCObjectPointer:
Eli Friedman22b61e92009-05-30 00:10:16 +0000977 return true;
978 default:
979 return false;
980 }
981}
982
Chris Lattnere4f21422009-06-30 01:26:17 +0000983const char *BuiltinType::getName(const LangOptions &LO) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 switch (getKind()) {
985 default: assert(0 && "Unknown builtin type!");
986 case Void: return "void";
Chris Lattnere4f21422009-06-30 01:26:17 +0000987 case Bool: return LO.Bool ? "bool" : "_Bool";
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 case Char_S: return "char";
989 case Char_U: return "char";
990 case SChar: return "signed char";
991 case Short: return "short";
992 case Int: return "int";
993 case Long: return "long";
994 case LongLong: return "long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +0000995 case Int128: return "__int128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000996 case UChar: return "unsigned char";
997 case UShort: return "unsigned short";
998 case UInt: return "unsigned int";
999 case ULong: return "unsigned long";
1000 case ULongLong: return "unsigned long long";
Chris Lattner2df9ced2009-04-30 02:43:43 +00001001 case UInt128: return "__uint128_t";
Reid Spencer5f016e22007-07-11 17:01:13 +00001002 case Float: return "float";
1003 case Double: return "double";
1004 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +00001005 case WChar: return "wchar_t";
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001006 case NullPtr: return "nullptr_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001007 case Overload: return "<overloaded function type>";
Douglas Gregor898574e2008-12-05 23:32:09 +00001008 case Dependent: return "<dependent type>";
Anders Carlsson6a75cd92009-07-11 00:34:39 +00001009 case UndeducedAuto: return "auto";
Reid Spencer5f016e22007-07-11 17:01:13 +00001010 }
1011}
1012
Douglas Gregor72564e72009-02-26 23:50:07 +00001013void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +00001014 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001015 unsigned NumArgs, bool isVariadic,
Sebastian Redl465226e2009-05-27 22:11:52 +00001016 unsigned TypeQuals, bool hasExceptionSpec,
1017 bool anyExceptionSpec, unsigned NumExceptions,
1018 exception_iterator Exs) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001019 ID.AddPointer(Result.getAsOpaquePtr());
1020 for (unsigned i = 0; i != NumArgs; ++i)
1021 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
1022 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001023 ID.AddInteger(TypeQuals);
Sebastian Redl465226e2009-05-27 22:11:52 +00001024 ID.AddInteger(hasExceptionSpec);
1025 if (hasExceptionSpec) {
1026 ID.AddInteger(anyExceptionSpec);
1027 for(unsigned i = 0; i != NumExceptions; ++i)
1028 ID.AddPointer(Exs[i].getAsOpaquePtr());
1029 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001030}
1031
Douglas Gregor72564e72009-02-26 23:50:07 +00001032void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001033 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001034 getTypeQuals(), hasExceptionSpec(), hasAnyExceptionSpec(),
1035 getNumExceptions(), exception_begin());
Reid Spencer5f016e22007-07-11 17:01:13 +00001036}
1037
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001038void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID,
Steve Naroff14108da2009-07-10 23:34:53 +00001039 QualType OIT, ObjCProtocolDecl **protocols,
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001040 unsigned NumProtocols) {
Steve Naroff14108da2009-07-10 23:34:53 +00001041 ID.AddPointer(OIT.getAsOpaquePtr());
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001042 for (unsigned i = 0; i != NumProtocols; i++)
1043 ID.AddPointer(protocols[i]);
1044}
1045
1046void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID) {
Steve Naroff14108da2009-07-10 23:34:53 +00001047 if (getNumProtocols())
1048 Profile(ID, getPointeeType(), &Protocols[0], getNumProtocols());
1049 else
1050 Profile(ID, getPointeeType(), 0, 0);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001051}
1052
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001053void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner1ee07002008-04-07 06:37:47 +00001054 const ObjCInterfaceDecl *Decl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001055 ObjCProtocolDecl **protocols,
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001056 unsigned NumProtocols) {
Chris Lattner1ee07002008-04-07 06:37:47 +00001057 ID.AddPointer(Decl);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001058 for (unsigned i = 0; i != NumProtocols; i++)
1059 ID.AddPointer(protocols[i]);
1060}
1061
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001062void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
Chris Lattner1ee07002008-04-07 06:37:47 +00001063 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001064}
1065
Chris Lattnera2c77672007-07-16 22:05:22 +00001066/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
1067/// potentially looking through *all* consequtive typedefs. This returns the
1068/// sum of the type qualifiers, so if you have:
1069/// typedef const int A;
1070/// typedef volatile A B;
1071/// looking through the typedefs for B will give you "const volatile A".
1072///
1073QualType TypedefType::LookThroughTypedefs() const {
1074 // Usually, there is only a single level of typedefs, be fast in that case.
1075 QualType FirstType = getDecl()->getUnderlyingType();
1076 if (!isa<TypedefType>(FirstType))
1077 return FirstType;
1078
1079 // Otherwise, do the fully general loop.
1080 unsigned TypeQuals = 0;
1081 const TypedefType *TDT = this;
1082 while (1) {
1083 QualType CurType = TDT->getDecl()->getUnderlyingType();
Chris Lattnerf46699c2008-02-20 20:55:12 +00001084
1085
1086 /// FIXME:
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001087 /// FIXME: This is incorrect for ExtQuals!
Chris Lattnerf46699c2008-02-20 20:55:12 +00001088 /// FIXME:
1089 TypeQuals |= CurType.getCVRQualifiers();
Chris Lattnera2c77672007-07-16 22:05:22 +00001090
1091 TDT = dyn_cast<TypedefType>(CurType);
1092 if (TDT == 0)
1093 return QualType(CurType.getTypePtr(), TypeQuals);
1094 }
1095}
Reid Spencer5f016e22007-07-11 17:01:13 +00001096
Douglas Gregor72564e72009-02-26 23:50:07 +00001097TypeOfExprType::TypeOfExprType(Expr *E, QualType can)
1098 : Type(TypeOfExpr, can, E->isTypeDependent()), TOExpr(E) {
Douglas Gregor898574e2008-12-05 23:32:09 +00001099}
1100
Anders Carlsson563a03b2009-07-10 19:20:26 +00001101DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can)
1102 : Type(Decltype, can, E->isTypeDependent()), E(E),
1103 UnderlyingType(underlyingType) {
Anders Carlsson395b4752009-06-24 19:06:50 +00001104}
1105
Douglas Gregor7da97d02009-05-10 22:57:19 +00001106TagType::TagType(TypeClass TC, TagDecl *D, QualType can)
1107 : Type(TC, can, D->isDependentType()), decl(D, 0) {}
1108
Chris Lattner2daa5df2008-04-06 22:04:54 +00001109bool RecordType::classof(const TagType *TT) {
1110 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +00001111}
1112
Chris Lattner2daa5df2008-04-06 22:04:54 +00001113bool EnumType::classof(const TagType *TT) {
1114 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +00001115}
1116
Douglas Gregor40808ce2009-03-09 23:48:35 +00001117bool
Douglas Gregor7532dc62009-03-30 22:58:21 +00001118TemplateSpecializationType::
Douglas Gregor40808ce2009-03-09 23:48:35 +00001119anyDependentTemplateArguments(const TemplateArgument *Args, unsigned NumArgs) {
1120 for (unsigned Idx = 0; Idx < NumArgs; ++Idx) {
1121 switch (Args[Idx].getKind()) {
Douglas Gregord560d502009-06-04 00:21:18 +00001122 case TemplateArgument::Null:
1123 assert(false && "Should not have a NULL template argument");
1124 break;
1125
Douglas Gregor40808ce2009-03-09 23:48:35 +00001126 case TemplateArgument::Type:
1127 if (Args[Idx].getAsType()->isDependentType())
1128 return true;
1129 break;
1130
1131 case TemplateArgument::Declaration:
1132 case TemplateArgument::Integral:
1133 // Never dependent
1134 break;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001135
Douglas Gregor40808ce2009-03-09 23:48:35 +00001136 case TemplateArgument::Expression:
1137 if (Args[Idx].getAsExpr()->isTypeDependent() ||
1138 Args[Idx].getAsExpr()->isValueDependent())
1139 return true;
1140 break;
Anders Carlssond01b1da2009-06-15 17:04:53 +00001141
1142 case TemplateArgument::Pack:
1143 assert(0 && "FIXME: Implement!");
1144 break;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001145 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001146 }
Douglas Gregor40808ce2009-03-09 23:48:35 +00001147
1148 return false;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001149}
1150
Douglas Gregor7532dc62009-03-30 22:58:21 +00001151TemplateSpecializationType::
1152TemplateSpecializationType(TemplateName T, const TemplateArgument *Args,
1153 unsigned NumArgs, QualType Canon)
1154 : Type(TemplateSpecialization,
Douglas Gregor40808ce2009-03-09 23:48:35 +00001155 Canon.isNull()? QualType(this, 0) : Canon,
Douglas Gregor7532dc62009-03-30 22:58:21 +00001156 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)),
Douglas Gregor40808ce2009-03-09 23:48:35 +00001157 Template(T), NumArgs(NumArgs)
Douglas Gregor55f6b142009-02-09 18:46:07 +00001158{
Douglas Gregor40808ce2009-03-09 23:48:35 +00001159 assert((!Canon.isNull() ||
Douglas Gregor7532dc62009-03-30 22:58:21 +00001160 T.isDependent() || anyDependentTemplateArguments(Args, NumArgs)) &&
Douglas Gregor40808ce2009-03-09 23:48:35 +00001161 "No canonical type for non-dependent class template specialization");
Douglas Gregor55f6b142009-02-09 18:46:07 +00001162
Douglas Gregor40808ce2009-03-09 23:48:35 +00001163 TemplateArgument *TemplateArgs
1164 = reinterpret_cast<TemplateArgument *>(this + 1);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001165 for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
Douglas Gregor40808ce2009-03-09 23:48:35 +00001166 new (&TemplateArgs[Arg]) TemplateArgument(Args[Arg]);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001167}
1168
Douglas Gregor7532dc62009-03-30 22:58:21 +00001169void TemplateSpecializationType::Destroy(ASTContext& C) {
Douglas Gregorba498172009-03-13 21:01:28 +00001170 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1171 // FIXME: Not all expressions get cloned, so we can't yet perform
1172 // this destruction.
1173 // if (Expr *E = getArg(Arg).getAsExpr())
1174 // E->Destroy(C);
1175 }
Douglas Gregor5908e9f2009-02-09 19:34:22 +00001176}
1177
Douglas Gregor7532dc62009-03-30 22:58:21 +00001178TemplateSpecializationType::iterator
1179TemplateSpecializationType::end() const {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001180 return begin() + getNumArgs();
Douglas Gregor55f6b142009-02-09 18:46:07 +00001181}
1182
Douglas Gregor40808ce2009-03-09 23:48:35 +00001183const TemplateArgument &
Douglas Gregor7532dc62009-03-30 22:58:21 +00001184TemplateSpecializationType::getArg(unsigned Idx) const {
Douglas Gregor40808ce2009-03-09 23:48:35 +00001185 assert(Idx < getNumArgs() && "Template argument out of range");
1186 return getArgs()[Idx];
1187}
1188
1189void
Douglas Gregor7532dc62009-03-30 22:58:21 +00001190TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID,
1191 TemplateName T,
1192 const TemplateArgument *Args,
1193 unsigned NumArgs) {
1194 T.Profile(ID);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001195 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
1196 Args[Idx].Profile(ID);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001197}
Anders Carlsson97e01792008-12-21 00:16:32 +00001198
Reid Spencer5f016e22007-07-11 17:01:13 +00001199//===----------------------------------------------------------------------===//
1200// Type Printing
1201//===----------------------------------------------------------------------===//
1202
1203void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +00001204 std::string R = "identifier";
Chris Lattnere4f21422009-06-30 01:26:17 +00001205 LangOptions LO;
1206 getAsStringInternal(R, PrintingPolicy(LO));
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 if (msg)
1208 fprintf(stderr, "%s: %s\n", msg, R.c_str());
1209 else
1210 fprintf(stderr, "%s\n", R.c_str());
1211}
Chris Lattnerc36d4052008-07-27 00:48:22 +00001212void QualType::dump() const {
1213 dump("");
1214}
1215
1216void Type::dump() const {
1217 std::string S = "identifier";
Chris Lattnere4f21422009-06-30 01:26:17 +00001218 LangOptions LO;
1219 getAsStringInternal(S, PrintingPolicy(LO));
Chris Lattnerc36d4052008-07-27 00:48:22 +00001220 fprintf(stderr, "%s\n", S.c_str());
1221}
1222
1223
Reid Spencer5f016e22007-07-11 17:01:13 +00001224
1225static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
1226 // Note: funkiness to ensure we get a space only between quals.
1227 bool NonePrinted = true;
1228 if (TypeQuals & QualType::Const)
1229 S += "const", NonePrinted = false;
1230 if (TypeQuals & QualType::Volatile)
1231 S += (NonePrinted+" volatile"), NonePrinted = false;
1232 if (TypeQuals & QualType::Restrict)
1233 S += (NonePrinted+" restrict"), NonePrinted = false;
1234}
1235
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001236std::string QualType::getAsString() const {
1237 std::string S;
Chris Lattnere4f21422009-06-30 01:26:17 +00001238 LangOptions LO;
1239 getAsStringInternal(S, PrintingPolicy(LO));
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001240 return S;
1241}
1242
1243void
1244QualType::getAsStringInternal(std::string &S,
1245 const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001246 if (isNull()) {
Douglas Gregor61366e92008-12-24 00:01:03 +00001247 S += "NULL TYPE";
Reid Spencer5f016e22007-07-11 17:01:13 +00001248 return;
1249 }
Eli Friedman22b61e92009-05-30 00:10:16 +00001250
Eli Friedman42f42c02009-05-30 04:20:30 +00001251 if (Policy.SuppressSpecifiers && getTypePtr()->isSpecifierType())
Eli Friedman22b61e92009-05-30 00:10:16 +00001252 return;
1253
Reid Spencer5f016e22007-07-11 17:01:13 +00001254 // Print qualifiers as appropriate.
Gabor Greif3513e132008-02-21 17:40:55 +00001255 if (unsigned Tq = getCVRQualifiers()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001256 std::string TQS;
Gabor Greif3513e132008-02-21 17:40:55 +00001257 AppendTypeQualList(TQS, Tq);
Reid Spencer5f016e22007-07-11 17:01:13 +00001258 if (!S.empty())
1259 S = TQS + ' ' + S;
1260 else
1261 S = TQS;
1262 }
1263
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001264 getTypePtr()->getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001265}
1266
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001267void BuiltinType::getAsStringInternal(std::string &S,
1268 const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001269 if (S.empty()) {
Chris Lattnere4f21422009-06-30 01:26:17 +00001270 S = getName(Policy.LangOpts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001271 } else {
1272 // Prefix the basic type, e.g. 'int X'.
1273 S = ' ' + S;
Chris Lattnere4f21422009-06-30 01:26:17 +00001274 S = getName(Policy.LangOpts) + S;
Reid Spencer5f016e22007-07-11 17:01:13 +00001275 }
1276}
1277
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001278void FixedWidthIntType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Eli Friedmanf98aba32009-02-13 02:31:07 +00001279 // FIXME: Once we get bitwidth attribute, write as
1280 // "int __attribute__((bitwidth(x)))".
1281 std::string prefix = "__clang_fixedwidth";
1282 prefix += llvm::utostr_32(Width);
1283 prefix += (char)(Signed ? 'S' : 'U');
1284 if (S.empty()) {
1285 S = prefix;
1286 } else {
1287 // Prefix the basic type, e.g. 'int X'.
1288 S = prefix + S;
1289 }
1290}
1291
1292
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001293void ComplexType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1294 ElementType->getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001295 S = "_Complex " + S;
1296}
1297
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001298void ExtQualType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001299 bool NeedsSpace = false;
Fariborz Jahanian4886a422009-02-17 21:45:36 +00001300 if (AddressSpace) {
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001301 S = "__attribute__((address_space("+llvm::utostr_32(AddressSpace)+")))" + S;
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001302 NeedsSpace = true;
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001303 }
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001304 if (GCAttrType != QualType::GCNone) {
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001305 if (NeedsSpace)
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001306 S += ' ';
1307 S += "__attribute__((objc_gc(";
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001308 if (GCAttrType == QualType::Weak)
Fariborz Jahanian59d16d12009-02-17 20:16:45 +00001309 S += "weak";
1310 else
1311 S += "strong";
1312 S += ")))";
1313 }
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001314 BaseType->getAsStringInternal(S, Policy);
Christopher Lambebb97e92008-02-04 02:31:56 +00001315}
1316
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001317void PointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001318 S = '*' + S;
1319
1320 // Handle things like 'int (*A)[4];' correctly.
1321 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001322 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001323 S = '(' + S + ')';
1324
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001325 getPointeeType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001326}
1327
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001328void BlockPointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Steve Naroff5618bd42008-08-27 16:04:49 +00001329 S = '^' + S;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001330 PointeeType.getAsStringInternal(S, Policy);
Steve Naroff5618bd42008-08-27 16:04:49 +00001331}
1332
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001333void LValueReferenceType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001334 S = '&' + S;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001335
Reid Spencer5f016e22007-07-11 17:01:13 +00001336 // Handle things like 'int (&A)[4];' correctly.
1337 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +00001338 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001339 S = '(' + S + ')';
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001340
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001341 getPointeeType().getAsStringInternal(S, Policy);
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001342}
1343
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001344void RValueReferenceType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001345 S = "&&" + S;
1346
1347 // Handle things like 'int (&&A)[4];' correctly.
1348 // FIXME: this should include vectors, but vectors use attributes I guess.
1349 if (isa<ArrayType>(getPointeeType()))
1350 S = '(' + S + ')';
1351
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001352 getPointeeType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001353}
1354
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001355void MemberPointerType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001356 std::string C;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001357 Class->getAsStringInternal(C, Policy);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001358 C += "::*";
1359 S = C + S;
1360
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001361 // Handle things like 'int (Cls::*A)[4];' correctly.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001362 // FIXME: this should include vectors, but vectors use attributes I guess.
1363 if (isa<ArrayType>(getPointeeType()))
1364 S = '(' + S + ')';
1365
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001366 getPointeeType().getAsStringInternal(S, Policy);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001367}
1368
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001369void ConstantArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Steve Narofffb22d962007-08-30 01:06:46 +00001370 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +00001371 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +00001372 S += ']';
1373
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001374 getElementType().getAsStringInternal(S, Policy);
Steve Narofffb22d962007-08-30 01:06:46 +00001375}
1376
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001377void ConstantArrayWithExprType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1378 if (Policy.ConstantArraySizeAsWritten) {
1379 std::string SStr;
1380 llvm::raw_string_ostream s(SStr);
1381 getSizeExpr()->printPretty(s, 0, Policy);
1382 S += '[';
1383 S += s.str();
1384 S += ']';
1385 getElementType().getAsStringInternal(S, Policy);
1386 }
1387 else
1388 ConstantArrayType::getAsStringInternal(S, Policy);
1389}
1390
1391void ConstantArrayWithoutExprType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1392 if (Policy.ConstantArraySizeAsWritten) {
1393 S += "[]";
1394 getElementType().getAsStringInternal(S, Policy);
1395 }
1396 else
1397 ConstantArrayType::getAsStringInternal(S, Policy);
1398}
1399
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001400void IncompleteArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001401 S += "[]";
1402
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001403 getElementType().getAsStringInternal(S, Policy);
Eli Friedmanc5773c42008-02-15 18:16:39 +00001404}
1405
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001406void VariableArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001407 S += '[';
1408
Steve Naroffc9406122007-08-30 18:10:14 +00001409 if (getIndexTypeQualifier()) {
1410 AppendTypeQualList(S, getIndexTypeQualifier());
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 S += ' ';
1412 }
1413
Steve Naroffc9406122007-08-30 18:10:14 +00001414 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +00001416 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +00001417 S += '*';
1418
Steve Narofffb22d962007-08-30 01:06:46 +00001419 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001420 std::string SStr;
1421 llvm::raw_string_ostream s(SStr);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001422 getSizeExpr()->printPretty(s, 0, Policy);
Steve Narofffb22d962007-08-30 01:06:46 +00001423 S += s.str();
1424 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001425 S += ']';
1426
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001427 getElementType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001428}
1429
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001430void DependentSizedArrayType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Douglas Gregor898574e2008-12-05 23:32:09 +00001431 S += '[';
1432
1433 if (getIndexTypeQualifier()) {
1434 AppendTypeQualList(S, getIndexTypeQualifier());
1435 S += ' ';
1436 }
1437
1438 if (getSizeModifier() == Static)
1439 S += "static";
1440 else if (getSizeModifier() == Star)
1441 S += '*';
1442
1443 if (getSizeExpr()) {
1444 std::string SStr;
1445 llvm::raw_string_ostream s(SStr);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001446 getSizeExpr()->printPretty(s, 0, Policy);
Douglas Gregor898574e2008-12-05 23:32:09 +00001447 S += s.str();
1448 }
1449 S += ']';
1450
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001451 getElementType().getAsStringInternal(S, Policy);
Douglas Gregor898574e2008-12-05 23:32:09 +00001452}
1453
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001454void DependentSizedExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
1455 getElementType().getAsStringInternal(S, Policy);
1456
Douglas Gregorf6ddb732009-06-18 18:45:36 +00001457 S += " __attribute__((ext_vector_type(";
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001458 if (getSizeExpr()) {
1459 std::string SStr;
1460 llvm::raw_string_ostream s(SStr);
1461 getSizeExpr()->printPretty(s, 0, Policy);
1462 S += s.str();
1463 }
1464 S += ")))";
1465}
1466
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001467void VectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +00001468 // FIXME: We prefer to print the size directly here, but have no way
1469 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +00001470 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +00001471 S += llvm::utostr_32(NumElements); // convert back to bytes.
1472 S += " * sizeof(" + ElementType.getAsString() + "))))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001473 ElementType.getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001474}
1475
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001476void ExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Nate Begeman213541a2008-04-18 23:10:10 +00001477 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +00001478 S += llvm::utostr_32(NumElements);
1479 S += ")))";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001480 ElementType.getAsStringInternal(S, Policy);
Steve Naroff31a45842007-07-28 23:10:27 +00001481}
1482
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001483void TypeOfExprType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001484 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
1485 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +00001486 std::string Str;
1487 llvm::raw_string_ostream s(Str);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001488 getUnderlyingExpr()->printPretty(s, 0, Policy);
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +00001489 InnerString = "typeof " + s.str() + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001490}
1491
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001492void TypeOfType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff363bcff2007-08-01 23:45:51 +00001493 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
1494 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001495 std::string Tmp;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001496 getUnderlyingType().getAsStringInternal(Tmp, Policy);
Steve Naroff363bcff2007-08-01 23:45:51 +00001497 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +00001498}
1499
Anders Carlsson395b4752009-06-24 19:06:50 +00001500void DecltypeType::getAsStringInternal(std::string &InnerString,
1501 const PrintingPolicy &Policy) const {
1502 if (!InnerString.empty()) // Prefix the basic type, e.g. 'decltype(t) X'.
1503 InnerString = ' ' + InnerString;
1504 std::string Str;
1505 llvm::raw_string_ostream s(Str);
1506 getUnderlyingExpr()->printPretty(s, 0, Policy);
1507 InnerString = "decltype(" + s.str() + ")" + InnerString;
1508}
1509
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001510void FunctionNoProtoType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001511 // If needed for precedence reasons, wrap the inner part in grouping parens.
1512 if (!S.empty())
1513 S = "(" + S + ")";
1514
1515 S += "()";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001516 getResultType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001517}
1518
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001519void FunctionProtoType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001520 // If needed for precedence reasons, wrap the inner part in grouping parens.
1521 if (!S.empty())
1522 S = "(" + S + ")";
1523
1524 S += "(";
1525 std::string Tmp;
Eli Friedman22b61e92009-05-30 00:10:16 +00001526 PrintingPolicy ParamPolicy(Policy);
Eli Friedman42f42c02009-05-30 04:20:30 +00001527 ParamPolicy.SuppressSpecifiers = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001528 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
1529 if (i) S += ", ";
Eli Friedman22b61e92009-05-30 00:10:16 +00001530 getArgType(i).getAsStringInternal(Tmp, ParamPolicy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001531 S += Tmp;
1532 Tmp.clear();
1533 }
1534
1535 if (isVariadic()) {
1536 if (getNumArgs())
1537 S += ", ";
1538 S += "...";
Chris Lattnere4f21422009-06-30 01:26:17 +00001539 } else if (getNumArgs() == 0 && !Policy.LangOpts.CPlusPlus) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001540 // Do not emit int() if we have a proto, emit 'int(void)'.
1541 S += "void";
1542 }
1543
1544 S += ")";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001545 getResultType().getAsStringInternal(S, Policy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001546}
1547
1548
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001549void TypedefType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001550 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1551 InnerString = ' ' + InnerString;
1552 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1553}
1554
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001555void TemplateTypeParmType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001556 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1557 InnerString = ' ' + InnerString;
Douglas Gregorfab9d672009-02-05 23:33:38 +00001558
1559 if (!Name)
1560 InnerString = "type-parameter-" + llvm::utostr_32(Depth) + '-' +
1561 llvm::utostr_32(Index) + InnerString;
1562 else
1563 InnerString = Name->getName() + InnerString;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001564}
1565
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001566std::string
1567TemplateSpecializationType::PrintTemplateArgumentList(
1568 const TemplateArgument *Args,
1569 unsigned NumArgs,
1570 const PrintingPolicy &Policy) {
Douglas Gregor98137532009-03-10 18:33:27 +00001571 std::string SpecString;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001572 SpecString += '<';
1573 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
1574 if (Arg)
1575 SpecString += ", ";
1576
1577 // Print the argument into a string.
1578 std::string ArgString;
Douglas Gregor98137532009-03-10 18:33:27 +00001579 switch (Args[Arg].getKind()) {
Douglas Gregor38999462009-06-04 05:28:55 +00001580 case TemplateArgument::Null:
1581 assert(false && "Null template argument");
1582 break;
1583
Douglas Gregor40808ce2009-03-09 23:48:35 +00001584 case TemplateArgument::Type:
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001585 Args[Arg].getAsType().getAsStringInternal(ArgString, Policy);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001586 break;
1587
1588 case TemplateArgument::Declaration:
Douglas Gregor98137532009-03-10 18:33:27 +00001589 ArgString = cast<NamedDecl>(Args[Arg].getAsDecl())->getNameAsString();
Douglas Gregor40808ce2009-03-09 23:48:35 +00001590 break;
1591
1592 case TemplateArgument::Integral:
Douglas Gregor98137532009-03-10 18:33:27 +00001593 ArgString = Args[Arg].getAsIntegral()->toString(10, true);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001594 break;
1595
1596 case TemplateArgument::Expression: {
Douglas Gregor55f6b142009-02-09 18:46:07 +00001597 llvm::raw_string_ostream s(ArgString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001598 Args[Arg].getAsExpr()->printPretty(s, 0, Policy);
Douglas Gregor40808ce2009-03-09 23:48:35 +00001599 break;
1600 }
Anders Carlssond01b1da2009-06-15 17:04:53 +00001601 case TemplateArgument::Pack:
1602 assert(0 && "FIXME: Implement!");
1603 break;
Douglas Gregor55f6b142009-02-09 18:46:07 +00001604 }
1605
1606 // If this is the first argument and its string representation
1607 // begins with the global scope specifier ('::foo'), add a space
1608 // to avoid printing the diagraph '<:'.
1609 if (!Arg && !ArgString.empty() && ArgString[0] == ':')
1610 SpecString += ' ';
1611
1612 SpecString += ArgString;
1613 }
1614
1615 // If the last character of our string is '>', add another space to
1616 // keep the two '>''s separate tokens. We don't *have* to do this in
1617 // C++0x, but it's still good hygiene.
1618 if (SpecString[SpecString.size() - 1] == '>')
1619 SpecString += ' ';
1620
1621 SpecString += '>';
1622
Douglas Gregor98137532009-03-10 18:33:27 +00001623 return SpecString;
1624}
1625
1626void
Douglas Gregor7532dc62009-03-30 22:58:21 +00001627TemplateSpecializationType::
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001628getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregor7532dc62009-03-30 22:58:21 +00001629 std::string SpecString;
1630
1631 {
1632 llvm::raw_string_ostream OS(SpecString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001633 Template.print(OS, Policy);
Douglas Gregor7532dc62009-03-30 22:58:21 +00001634 }
1635
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001636 SpecString += PrintTemplateArgumentList(getArgs(), getNumArgs(), Policy);
Douglas Gregor55f6b142009-02-09 18:46:07 +00001637 if (InnerString.empty())
1638 InnerString.swap(SpecString);
1639 else
1640 InnerString = SpecString + ' ' + InnerString;
1641}
1642
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001643void QualifiedNameType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001644 std::string MyString;
1645
Douglas Gregorbad35182009-03-19 03:51:16 +00001646 {
1647 llvm::raw_string_ostream OS(MyString);
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001648 NNS->print(OS, Policy);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001649 }
1650
1651 std::string TypeStr;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001652 PrintingPolicy InnerPolicy(Policy);
1653 InnerPolicy.SuppressTagKind = true;
1654 NamedType.getAsStringInternal(TypeStr, InnerPolicy);
Douglas Gregore4e5b052009-03-19 00:18:19 +00001655
1656 MyString += TypeStr;
1657 if (InnerString.empty())
1658 InnerString.swap(MyString);
1659 else
1660 InnerString = MyString + ' ' + InnerString;
1661}
1662
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001663void TypenameType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Douglas Gregord57959a2009-03-27 23:10:48 +00001664 std::string MyString;
1665
1666 {
1667 llvm::raw_string_ostream OS(MyString);
1668 OS << "typename ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001669 NNS->print(OS, Policy);
Douglas Gregor17343172009-04-01 00:28:59 +00001670
1671 if (const IdentifierInfo *Ident = getIdentifier())
1672 OS << Ident->getName();
1673 else if (const TemplateSpecializationType *Spec = getTemplateId()) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001674 Spec->getTemplateName().print(OS, Policy, true);
Douglas Gregor17343172009-04-01 00:28:59 +00001675 OS << TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001676 Spec->getArgs(),
1677 Spec->getNumArgs(),
1678 Policy);
Douglas Gregor17343172009-04-01 00:28:59 +00001679 }
Douglas Gregord57959a2009-03-27 23:10:48 +00001680 }
1681
1682 if (InnerString.empty())
1683 InnerString.swap(MyString);
1684 else
1685 InnerString = MyString + ' ' + InnerString;
1686}
1687
Steve Naroff14108da2009-07-10 23:34:53 +00001688bool ObjCInterfaceType::isObjCIdInterface() const {
1689 return this == ObjCObjectPointerType::getIdInterface();
1690}
1691
1692bool ObjCInterfaceType::isObjCClassInterface() const {
1693 return this == ObjCObjectPointerType::getClassInterface();
1694}
1695
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001696void ObjCInterfaceType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001697 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1698 InnerString = ' ' + InnerString;
1699 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1700}
1701
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001702void ObjCObjectPointerType::getAsStringInternal(std::string &InnerString,
1703 const PrintingPolicy &Policy) const {
Steve Naroff14108da2009-07-10 23:34:53 +00001704 std::string ObjCQIString = getInterfaceType()->getDecl()->getNameAsString();
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001705
1706 if (!qual_empty()) {
1707 ObjCQIString += '<';
1708 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1709 ObjCQIString += (*I)->getNameAsString();
1710 if (I+1 != E)
1711 ObjCQIString += ',';
1712 }
1713 ObjCQIString += '>';
1714 }
Steve Naroff14108da2009-07-10 23:34:53 +00001715 if (!isObjCIdType() && !isObjCQualifiedIdType())
1716 ObjCQIString += " *"; // Don't forget the implicit pointer.
1717 else if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1718 InnerString = ' ' + InnerString;
1719
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001720 InnerString = ObjCQIString + InnerString;
1721}
1722
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001723void
1724ObjCQualifiedInterfaceType::getAsStringInternal(std::string &InnerString,
1725 const PrintingPolicy &Policy) const {
Fariborz Jahaniandfbcce22007-10-11 18:08:47 +00001726 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1727 InnerString = ' ' + InnerString;
Chris Lattner39f34e92008-11-24 04:00:27 +00001728 std::string ObjCQIString = getDecl()->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001729 ObjCQIString += '<';
Chris Lattnercdce6d12008-07-21 05:19:23 +00001730 bool isFirst = true;
1731 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1732 if (isFirst)
1733 isFirst = false;
1734 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001735 ObjCQIString += ',';
Chris Lattner39f34e92008-11-24 04:00:27 +00001736 ObjCQIString += (*I)->getNameAsString();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001737 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001738 ObjCQIString += '>';
1739 InnerString = ObjCQIString + InnerString;
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001740}
1741
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001742void TagType::getAsStringInternal(std::string &InnerString, const PrintingPolicy &Policy) const {
Eli Friedman42f42c02009-05-30 04:20:30 +00001743 if (Policy.SuppressTag)
1744 return;
1745
Reid Spencer5f016e22007-07-11 17:01:13 +00001746 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1747 InnerString = ' ' + InnerString;
1748
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001749 const char *Kind = Policy.SuppressTagKind? 0 : getDecl()->getKindName();
Reid Spencer5f016e22007-07-11 17:01:13 +00001750 const char *ID;
1751 if (const IdentifierInfo *II = getDecl()->getIdentifier())
1752 ID = II->getName();
Douglas Gregor4e16d042009-03-10 18:11:21 +00001753 else if (TypedefDecl *Typedef = getDecl()->getTypedefForAnonDecl()) {
1754 Kind = 0;
1755 assert(Typedef->getIdentifier() && "Typedef without identifier?");
1756 ID = Typedef->getIdentifier()->getName();
1757 } else
Reid Spencer5f016e22007-07-11 17:01:13 +00001758 ID = "<anonymous>";
1759
Douglas Gregor98137532009-03-10 18:33:27 +00001760 // If this is a class template specialization, print the template
1761 // arguments.
1762 if (ClassTemplateSpecializationDecl *Spec
1763 = dyn_cast<ClassTemplateSpecializationDecl>(getDecl())) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001764 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
1765 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +00001766 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor7e063902009-05-11 23:53:27 +00001767 TemplateArgs.getFlatArgumentList(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001768 TemplateArgs.flat_size(),
1769 Policy);
Douglas Gregor7e063902009-05-11 23:53:27 +00001770 InnerString = TemplateArgsStr + InnerString;
Douglas Gregor98137532009-03-10 18:33:27 +00001771 }
1772
Douglas Gregor24c46b32009-03-19 04:25:59 +00001773 if (Kind) {
1774 // Compute the full nested-name-specifier for this type. In C,
1775 // this will always be empty.
1776 std::string ContextStr;
1777 for (DeclContext *DC = getDecl()->getDeclContext();
1778 !DC->isTranslationUnit(); DC = DC->getParent()) {
1779 std::string MyPart;
1780 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(DC)) {
1781 if (NS->getIdentifier())
1782 MyPart = NS->getNameAsString();
1783 } else if (ClassTemplateSpecializationDecl *Spec
1784 = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001785 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
1786 std::string TemplateArgsStr
Douglas Gregor7532dc62009-03-30 22:58:21 +00001787 = TemplateSpecializationType::PrintTemplateArgumentList(
Douglas Gregor7e063902009-05-11 23:53:27 +00001788 TemplateArgs.getFlatArgumentList(),
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001789 TemplateArgs.flat_size(),
1790 Policy);
Douglas Gregor7e063902009-05-11 23:53:27 +00001791 MyPart = Spec->getIdentifier()->getName() + TemplateArgsStr;
Douglas Gregor24c46b32009-03-19 04:25:59 +00001792 } else if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
1793 if (TypedefDecl *Typedef = Tag->getTypedefForAnonDecl())
1794 MyPart = Typedef->getIdentifier()->getName();
1795 else if (Tag->getIdentifier())
1796 MyPart = Tag->getIdentifier()->getName();
1797 }
1798
1799 if (!MyPart.empty())
1800 ContextStr = MyPart + "::" + ContextStr;
1801 }
1802
1803 InnerString = std::string(Kind) + " " + ContextStr + ID + InnerString;
1804 } else
Douglas Gregor4e16d042009-03-10 18:11:21 +00001805 InnerString = ID + InnerString;
Reid Spencer5f016e22007-07-11 17:01:13 +00001806}