blob: 303fc7e7ca540c0b29b61bbe7f1e7da42fd48135 [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/AST/Expr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "llvm/ADT/StringExtras.h"
Ted Kremenek7360fda2008-09-18 23:09:54 +000020
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22
Nuno Lopesb381aac2008-09-01 11:33:04 +000023bool QualType::isConstant(ASTContext& Ctx) const {
24 if (isConstQualified())
25 return true;
26
27 if (getTypePtr()->isArrayType())
28 return Ctx.getAsArrayType(*this)->getElementType().isConstant(Ctx);
29
30 return false;
31}
32
Ted Kremenek4b05b1d2008-05-21 16:38:54 +000033void Type::Destroy(ASTContext& C) { delete this; }
34
35void FunctionTypeProto::Destroy(ASTContext& C) {
36 // Destroy the object, but don't call delete. These are malloc'd.
37 this->~FunctionTypeProto();
38 free(this);
39}
40
41void VariableArrayType::Destroy(ASTContext& C) {
42 SizeExpr->Destroy(C);
43 delete this;
44}
Reid Spencer5f016e22007-07-11 17:01:13 +000045
Chris Lattnerc63a1f22008-08-04 07:31:14 +000046
47/// getArrayElementTypeNoTypeQual - If this is an array type, return the
48/// element type of the array, potentially with type qualifiers missing.
49/// This method should never be used when type qualifiers are meaningful.
50const Type *Type::getArrayElementTypeNoTypeQual() const {
51 // If this is directly an array type, return it.
52 if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
53 return ATy->getElementType().getTypePtr();
54
55 // If the canonical form of this type isn't the right kind, reject it.
56 if (!isa<ArrayType>(CanonicalType)) {
57 // Look through type qualifiers
58 if (ArrayType *AT = dyn_cast<ArrayType>(CanonicalType.getUnqualifiedType()))
59 return AT->getElementType().getTypePtr();
60 return 0;
61 }
62
63 // If this is a typedef for an array type, strip the typedef off without
64 // losing all typedef information.
65 return getDesugaredType()->getArrayElementTypeNoTypeQual();
66}
67
68/// getDesugaredType - Return the specified type with any "sugar" removed from
69/// type type. This takes off typedefs, typeof's etc. If the outer level of
70/// the type is already concrete, it returns it unmodified. This is similar
71/// to getting the canonical type, but it doesn't remove *all* typedefs. For
72/// example, it return "T*" as "T*", (not as "int*"), because the pointer is
73/// concrete.
74QualType Type::getDesugaredType() const {
75 if (const TypedefType *TDT = dyn_cast<TypedefType>(this))
76 return TDT->LookThroughTypedefs();
77 if (const TypeOfExpr *TOE = dyn_cast<TypeOfExpr>(this))
78 return TOE->getUnderlyingExpr()->getType();
79 if (const TypeOfType *TOT = dyn_cast<TypeOfType>(this))
80 return TOT->getUnderlyingType();
81 // FIXME: remove this cast.
82 return QualType(const_cast<Type*>(this), 0);
83}
84
Reid Spencer5f016e22007-07-11 17:01:13 +000085/// isVoidType - Helper method to determine if this is the 'void' type.
86bool Type::isVoidType() const {
87 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
88 return BT->getKind() == BuiltinType::Void;
89 return false;
90}
91
92bool Type::isObjectType() const {
93 if (isa<FunctionType>(CanonicalType))
94 return false;
95 else if (CanonicalType->isIncompleteType())
96 return false;
97 else
98 return true;
99}
100
101bool Type::isDerivedType() const {
102 switch (CanonicalType->getTypeClass()) {
103 case Pointer:
Steve Narofffb22d962007-08-30 01:06:46 +0000104 case VariableArray:
105 case ConstantArray:
Eli Friedmanc5773c42008-02-15 18:16:39 +0000106 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 case FunctionProto:
108 case FunctionNoProto:
109 case Reference:
110 return true;
111 case Tagged: {
112 const TagType *TT = cast<TagType>(CanonicalType);
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000113 return !TT->getDecl()->isEnum();
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 }
115 default:
116 return false;
117 }
118}
119
Chris Lattner99dc9142008-04-13 18:59:07 +0000120bool Type::isClassType() const {
121 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000122 if (RT->getDecl()->isClass())
Chris Lattner99dc9142008-04-13 18:59:07 +0000123 return true;
124 return false;
125}
Chris Lattnerc8629632007-07-31 19:29:30 +0000126bool Type::isStructureType() const {
Seo Sanghyeon2de3b3a2007-12-02 16:57:27 +0000127 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000128 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000129 return true;
130 return false;
131}
132bool Type::isUnionType() const {
Seo Sanghyeon2de3b3a2007-12-02 16:57:27 +0000133 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000134 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000135 return true;
136 return false;
137}
Chris Lattnerc8629632007-07-31 19:29:30 +0000138
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000139bool Type::isComplexType() const {
Steve Naroff02f62a92008-01-15 19:36:10 +0000140 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
141 return CT->getElementType()->isFloatingType();
142 return false;
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000143}
144
Steve Naroff4cdec1c2008-01-15 01:41:59 +0000145bool Type::isComplexIntegerType() const {
146 // Check for GCC complex integer extension.
147 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
148 return CT->getElementType()->isIntegerType();
149 return false;
150}
151
152const ComplexType *Type::getAsComplexIntegerType() const {
153 // Are we directly a complex type?
154 if (const ComplexType *CTy = dyn_cast<ComplexType>(this)) {
155 if (CTy->getElementType()->isIntegerType())
156 return CTy;
157 }
158 // If the canonical form of this type isn't the right kind, reject it.
159 const ComplexType *CTy = dyn_cast<ComplexType>(CanonicalType);
160 if (!CTy || !CTy->getElementType()->isIntegerType())
161 return 0;
162
163 // If this is a typedef for a complex type, strip the typedef off without
164 // losing all typedef information.
165 return getDesugaredType()->getAsComplexIntegerType();
166}
167
Steve Naroff77878cc2007-08-27 04:08:11 +0000168const BuiltinType *Type::getAsBuiltinType() const {
169 // If this is directly a builtin type, return it.
170 if (const BuiltinType *BTy = dyn_cast<BuiltinType>(this))
171 return BTy;
Chris Lattnerdea61462007-10-29 03:41:11 +0000172
173 // If the canonical form of this type isn't a builtin type, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000174 if (!isa<BuiltinType>(CanonicalType)) {
175 // Look through type qualifiers
176 if (isa<BuiltinType>(CanonicalType.getUnqualifiedType()))
177 return CanonicalType.getUnqualifiedType()->getAsBuiltinType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000178 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000179 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000180
Steve Naroff77878cc2007-08-27 04:08:11 +0000181 // If this is a typedef for a builtin type, strip the typedef off without
182 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000183 return getDesugaredType()->getAsBuiltinType();
Steve Naroff77878cc2007-08-27 04:08:11 +0000184}
185
Chris Lattnerc8629632007-07-31 19:29:30 +0000186const FunctionType *Type::getAsFunctionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000187 // If this is directly a function type, return it.
188 if (const FunctionType *FTy = dyn_cast<FunctionType>(this))
189 return FTy;
Christopher Lambebb97e92008-02-04 02:31:56 +0000190
Chris Lattnerdea61462007-10-29 03:41:11 +0000191 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000192 if (!isa<FunctionType>(CanonicalType)) {
193 // Look through type qualifiers
194 if (isa<FunctionType>(CanonicalType.getUnqualifiedType()))
195 return CanonicalType.getUnqualifiedType()->getAsFunctionType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000196 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000197 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000198
Steve Naroff7064f5c2007-07-26 18:32:01 +0000199 // If this is a typedef for a function type, strip the typedef off without
200 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000201 return getDesugaredType()->getAsFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000202}
203
Chris Lattnerb77792e2008-07-26 22:17:49 +0000204const FunctionTypeProto *Type::getAsFunctionTypeProto() const {
205 return dyn_cast_or_null<FunctionTypeProto>(getAsFunctionType());
206}
207
208
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000209const PointerLikeType *Type::getAsPointerLikeType() const {
210 // If this is directly a pointer-like type, return it.
211 if (const PointerLikeType *PTy = dyn_cast<PointerLikeType>(this))
212 return PTy;
213
214 // If the canonical form of this type isn't the right kind, reject it.
215 if (!isa<PointerLikeType>(CanonicalType)) {
216 // Look through type qualifiers
217 if (isa<PointerLikeType>(CanonicalType.getUnqualifiedType()))
218 return CanonicalType.getUnqualifiedType()->getAsPointerLikeType();
219 return 0;
220 }
221
222 // If this is a typedef for a pointer type, strip the typedef off without
223 // losing all typedef information.
224 return getDesugaredType()->getAsPointerLikeType();
225}
226
Chris Lattnerbefee482007-07-31 16:53:04 +0000227const PointerType *Type::getAsPointerType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000228 // If this is directly a pointer type, return it.
229 if (const PointerType *PTy = dyn_cast<PointerType>(this))
230 return PTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000231
Chris Lattnerdea61462007-10-29 03:41:11 +0000232 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000233 if (!isa<PointerType>(CanonicalType)) {
234 // Look through type qualifiers
235 if (isa<PointerType>(CanonicalType.getUnqualifiedType()))
236 return CanonicalType.getUnqualifiedType()->getAsPointerType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000237 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000238 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000239
Chris Lattnera2c77672007-07-16 22:05:22 +0000240 // If this is a typedef for a pointer type, strip the typedef off without
241 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000242 return getDesugaredType()->getAsPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000243}
244
Steve Naroff5618bd42008-08-27 16:04:49 +0000245const BlockPointerType *Type::getAsBlockPointerType() const {
246 // If this is directly a block pointer type, return it.
247 if (const BlockPointerType *PTy = dyn_cast<BlockPointerType>(this))
248 return PTy;
249
250 // If the canonical form of this type isn't the right kind, reject it.
251 if (!isa<BlockPointerType>(CanonicalType))
252 return 0;
253
254 // If this is a typedef for a block pointer type, strip the typedef off
255 // without losing all typedef information.
256 return getDesugaredType()->getAsBlockPointerType();
257}
258
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000259const ReferenceType *Type::getAsReferenceType() const {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000260 // If this is directly a reference type, return it.
261 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(this))
262 return RTy;
263
Chris Lattnerdea61462007-10-29 03:41:11 +0000264 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000265 if (!isa<ReferenceType>(CanonicalType)) {
266 // Look through type qualifiers
267 if (isa<ReferenceType>(CanonicalType.getUnqualifiedType()))
268 return CanonicalType.getUnqualifiedType()->getAsReferenceType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000269 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000270 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000271
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000272 // If this is a typedef for a reference type, strip the typedef off without
273 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000274 return getDesugaredType()->getAsReferenceType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000275}
276
Eli Friedmand3f2f792008-02-17 00:59:11 +0000277/// isVariablyModifiedType (C99 6.7.5p3) - Return true for variable length
278/// array types and types that contain variable array types in their
279/// declarator
Steve Naroffd7444aa2007-08-31 17:20:07 +0000280bool Type::isVariablyModifiedType() const {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000281 // A VLA is a variably modified type.
282 if (isVariableArrayType())
Eli Friedmand3f2f792008-02-17 00:59:11 +0000283 return true;
284
285 // An array can contain a variably modified type
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000286 if (const Type *T = getArrayElementTypeNoTypeQual())
287 return T->isVariablyModifiedType();
Eli Friedmand3f2f792008-02-17 00:59:11 +0000288
289 // A pointer can point to a variably modified type
290 if (const PointerType* PT = getAsPointerType())
291 return PT->getPointeeType()->isVariablyModifiedType();
292
293 // A function can return a variably modified type
294 // This one isn't completely obvious, but it follows from the
295 // definition in C99 6.7.5p3. Because of this rule, it's
296 // illegal to declare a function returning a variably modified type.
297 if (const FunctionType* FT = getAsFunctionType())
298 return FT->getResultType()->isVariablyModifiedType();
299
Steve Naroffd7444aa2007-08-31 17:20:07 +0000300 return false;
301}
302
Chris Lattnerc8629632007-07-31 19:29:30 +0000303const RecordType *Type::getAsRecordType() const {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000304 // If this is directly a reference type, return it.
305 if (const RecordType *RTy = dyn_cast<RecordType>(this))
306 return RTy;
307
Chris Lattnerdea61462007-10-29 03:41:11 +0000308 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000309 if (!isa<RecordType>(CanonicalType)) {
310 // Look through type qualifiers
311 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
312 return CanonicalType.getUnqualifiedType()->getAsRecordType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000313 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000314 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000315
316 // If this is a typedef for a record type, strip the typedef off without
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000317 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000318 return getDesugaredType()->getAsRecordType();
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000319}
320
Chris Lattnerc8629632007-07-31 19:29:30 +0000321const RecordType *Type::getAsStructureType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000322 // If this is directly a structure type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000323 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000324 if (RT->getDecl()->isStruct())
Chris Lattnerc8629632007-07-31 19:29:30 +0000325 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000326 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000327
328 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000329 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000330 if (!RT->getDecl()->isStruct())
Chris Lattnerdea61462007-10-29 03:41:11 +0000331 return 0;
332
333 // If this is a typedef for a structure type, strip the typedef off without
334 // losing all typedef information.
335 return getDesugaredType()->getAsStructureType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000336 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000337 // Look through type qualifiers
338 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
339 return CanonicalType.getUnqualifiedType()->getAsStructureType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000340 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000341}
342
Chris Lattnerc8629632007-07-31 19:29:30 +0000343const RecordType *Type::getAsUnionType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000344 // If this is directly a union type, return it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000345 if (const RecordType *RT = dyn_cast<RecordType>(this)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000346 if (RT->getDecl()->isUnion())
Chris Lattnerc8629632007-07-31 19:29:30 +0000347 return RT;
Steve Naroff7064f5c2007-07-26 18:32:01 +0000348 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000349
Chris Lattnerdea61462007-10-29 03:41:11 +0000350 // If the canonical form of this type isn't the right kind, reject it.
Chris Lattnerc8629632007-07-31 19:29:30 +0000351 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000352 if (!RT->getDecl()->isUnion())
Chris Lattnerdea61462007-10-29 03:41:11 +0000353 return 0;
354
355 // If this is a typedef for a union type, strip the typedef off without
356 // losing all typedef information.
357 return getDesugaredType()->getAsUnionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000358 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000359
360 // Look through type qualifiers
361 if (isa<RecordType>(CanonicalType.getUnqualifiedType()))
362 return CanonicalType.getUnqualifiedType()->getAsUnionType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000363 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000364}
365
Eli Friedmanad74a752008-06-28 06:23:08 +0000366const EnumType *Type::getAsEnumType() const {
367 // Check the canonicalized unqualified type directly; the more complex
368 // version is unnecessary because there isn't any typedef information
369 // to preserve.
370 return dyn_cast<EnumType>(CanonicalType.getUnqualifiedType());
371}
372
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000373const ComplexType *Type::getAsComplexType() const {
374 // Are we directly a complex type?
375 if (const ComplexType *CTy = dyn_cast<ComplexType>(this))
376 return CTy;
377
Chris Lattnerdea61462007-10-29 03:41:11 +0000378 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000379 if (!isa<ComplexType>(CanonicalType)) {
380 // Look through type qualifiers
381 if (isa<ComplexType>(CanonicalType.getUnqualifiedType()))
382 return CanonicalType.getUnqualifiedType()->getAsComplexType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000383 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000384 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000385
Chris Lattnerc6fb90a2007-08-21 16:54:08 +0000386 // If this is a typedef for a complex type, strip the typedef off without
387 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000388 return getDesugaredType()->getAsComplexType();
Chris Lattner7a2e0472007-07-16 00:23:25 +0000389}
390
Chris Lattnerc8629632007-07-31 19:29:30 +0000391const VectorType *Type::getAsVectorType() const {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000392 // Are we directly a vector type?
393 if (const VectorType *VTy = dyn_cast<VectorType>(this))
394 return VTy;
Chris Lattnera2c77672007-07-16 22:05:22 +0000395
Chris Lattnerdea61462007-10-29 03:41:11 +0000396 // If the canonical form of this type isn't the right kind, reject it.
Christopher Lambebb97e92008-02-04 02:31:56 +0000397 if (!isa<VectorType>(CanonicalType)) {
398 // Look through type qualifiers
399 if (isa<VectorType>(CanonicalType.getUnqualifiedType()))
400 return CanonicalType.getUnqualifiedType()->getAsVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000401 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000402 }
Chris Lattnerdea61462007-10-29 03:41:11 +0000403
Chris Lattnera2c77672007-07-16 22:05:22 +0000404 // If this is a typedef for a vector type, strip the typedef off without
405 // losing all typedef information.
Chris Lattnerdea61462007-10-29 03:41:11 +0000406 return getDesugaredType()->getAsVectorType();
Chris Lattner7a2e0472007-07-16 00:23:25 +0000407}
408
Nate Begeman213541a2008-04-18 23:10:10 +0000409const ExtVectorType *Type::getAsExtVectorType() const {
Steve Naroff7064f5c2007-07-26 18:32:01 +0000410 // Are we directly an OpenCU vector type?
Nate Begeman213541a2008-04-18 23:10:10 +0000411 if (const ExtVectorType *VTy = dyn_cast<ExtVectorType>(this))
Steve Naroff7064f5c2007-07-26 18:32:01 +0000412 return VTy;
413
Chris Lattnerdea61462007-10-29 03:41:11 +0000414 // If the canonical form of this type isn't the right kind, reject it.
Nate Begeman213541a2008-04-18 23:10:10 +0000415 if (!isa<ExtVectorType>(CanonicalType)) {
Christopher Lambebb97e92008-02-04 02:31:56 +0000416 // Look through type qualifiers
Nate Begeman213541a2008-04-18 23:10:10 +0000417 if (isa<ExtVectorType>(CanonicalType.getUnqualifiedType()))
418 return CanonicalType.getUnqualifiedType()->getAsExtVectorType();
Chris Lattnerdea61462007-10-29 03:41:11 +0000419 return 0;
Christopher Lambebb97e92008-02-04 02:31:56 +0000420 }
Steve Naroff7064f5c2007-07-26 18:32:01 +0000421
Nate Begeman213541a2008-04-18 23:10:10 +0000422 // If this is a typedef for an extended vector type, strip the typedef off
423 // without losing all typedef information.
424 return getDesugaredType()->getAsExtVectorType();
Steve Naroff7064f5c2007-07-26 18:32:01 +0000425}
426
Chris Lattner368eefa2008-04-07 00:27:04 +0000427const ObjCInterfaceType *Type::getAsObjCInterfaceType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000428 // There is no sugar for ObjCInterfaceType's, just return the canonical
429 // type pointer if it is the right class.
430 return dyn_cast<ObjCInterfaceType>(CanonicalType);
Chris Lattner368eefa2008-04-07 00:27:04 +0000431}
432
433const ObjCQualifiedInterfaceType *
434Type::getAsObjCQualifiedInterfaceType() const {
Chris Lattnereca7be62008-04-07 05:30:13 +0000435 // There is no sugar for ObjCQualifiedInterfaceType's, just return the canonical
436 // type pointer if it is the right class.
437 return dyn_cast<ObjCQualifiedInterfaceType>(CanonicalType);
438}
439
440const ObjCQualifiedIdType *Type::getAsObjCQualifiedIdType() const {
441 // There is no sugar for ObjCQualifiedIdType's, just return the canonical
442 // type pointer if it is the right class.
443 return dyn_cast<ObjCQualifiedIdType>(CanonicalType);
Chris Lattner368eefa2008-04-07 00:27:04 +0000444}
445
Douglas Gregor72c3f312008-12-05 18:15:24 +0000446const TemplateTypeParmType *Type::getAsTemplateTypeParmType() const {
447 // There is no sugar for template type parameters, so just return
448 // the canonical type pointer if it is the right class.
449 return dyn_cast<TemplateTypeParmType>(CanonicalType);
450}
Chris Lattner368eefa2008-04-07 00:27:04 +0000451
Reid Spencer5f016e22007-07-11 17:01:13 +0000452bool Type::isIntegerType() const {
453 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
454 return BT->getKind() >= BuiltinType::Bool &&
455 BT->getKind() <= BuiltinType::LongLong;
456 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000457 // Incomplete enum types are not treated as integer types.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000458 // FIXME: In C++, enum types are never integer types.
Chris Lattner834a72a2008-07-25 23:18:17 +0000459 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000460 return true;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000461 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
462 return VT->getElementType()->isIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000463 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
464 return ASQT->getBaseType()->isIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000465 return false;
466}
467
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000468bool Type::isIntegralType() const {
469 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
470 return BT->getKind() >= BuiltinType::Bool &&
471 BT->getKind() <= BuiltinType::LongLong;
472 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000473 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
474 return true; // Complete enum types are integral.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000475 // FIXME: In C++, enum types are never integral.
Christopher Lambebb97e92008-02-04 02:31:56 +0000476 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
477 return ASQT->getBaseType()->isIntegralType();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +0000478 return false;
479}
480
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000481bool Type::isEnumeralType() const {
482 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000483 return TT->getDecl()->isEnum();
Christopher Lambebb97e92008-02-04 02:31:56 +0000484 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
485 return ASQT->getBaseType()->isEnumeralType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000486 return false;
487}
488
489bool Type::isBooleanType() const {
490 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
491 return BT->getKind() == BuiltinType::Bool;
Christopher Lambebb97e92008-02-04 02:31:56 +0000492 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
493 return ASQT->getBaseType()->isBooleanType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000494 return false;
495}
496
497bool Type::isCharType() const {
498 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
499 return BT->getKind() == BuiltinType::Char_U ||
500 BT->getKind() == BuiltinType::UChar ||
Anders Carlssonc67ad5f2007-10-29 02:52:18 +0000501 BT->getKind() == BuiltinType::Char_S ||
502 BT->getKind() == BuiltinType::SChar;
Christopher Lambebb97e92008-02-04 02:31:56 +0000503 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
504 return ASQT->getBaseType()->isCharType();
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000505 return false;
506}
507
Douglas Gregor77a52232008-09-12 00:47:35 +0000508bool Type::isWideCharType() const {
509 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
510 return BT->getKind() == BuiltinType::WChar;
511 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
512 return ASQT->getBaseType()->isWideCharType();
513 return false;
514}
515
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000516/// isSignedIntegerType - Return true if this is an integer type that is
517/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
518/// an enum decl which has a signed representation, or a vector of signed
519/// integer element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000520bool Type::isSignedIntegerType() const {
521 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
522 return BT->getKind() >= BuiltinType::Char_S &&
523 BT->getKind() <= BuiltinType::LongLong;
524 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000525
Chris Lattner37c1b782008-04-06 22:29:16 +0000526 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
527 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000528
Steve Naroffc63b96a2007-07-12 21:46:55 +0000529 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
530 return VT->getElementType()->isSignedIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000531 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
532 return ASQT->getBaseType()->isSignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000533 return false;
534}
535
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000536/// isUnsignedIntegerType - Return true if this is an integer type that is
537/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
538/// decl which has an unsigned representation, or a vector of unsigned integer
539/// element type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000540bool Type::isUnsignedIntegerType() const {
541 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
542 return BT->getKind() >= BuiltinType::Bool &&
543 BT->getKind() <= BuiltinType::ULongLong;
544 }
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000545
Chris Lattner37c1b782008-04-06 22:29:16 +0000546 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
547 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
Chris Lattnerd5bbce42007-08-29 17:48:46 +0000548
Steve Naroffc63b96a2007-07-12 21:46:55 +0000549 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
550 return VT->getElementType()->isUnsignedIntegerType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000551 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
552 return ASQT->getBaseType()->isUnsignedIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000553 return false;
554}
555
556bool Type::isFloatingType() const {
557 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
558 return BT->getKind() >= BuiltinType::Float &&
559 BT->getKind() <= BuiltinType::LongDouble;
560 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
Chris Lattner729a2132007-08-30 06:19:11 +0000561 return CT->getElementType()->isFloatingType();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000562 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
563 return VT->getElementType()->isFloatingType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000564 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
565 return ASQT->getBaseType()->isFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 return false;
567}
568
569bool Type::isRealFloatingType() const {
570 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
571 return BT->getKind() >= BuiltinType::Float &&
572 BT->getKind() <= BuiltinType::LongDouble;
Steve Naroffc63b96a2007-07-12 21:46:55 +0000573 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
574 return VT->getElementType()->isRealFloatingType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000575 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
576 return ASQT->getBaseType()->isRealFloatingType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000577 return false;
578}
579
580bool Type::isRealType() const {
581 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
582 return BT->getKind() >= BuiltinType::Bool &&
583 BT->getKind() <= BuiltinType::LongDouble;
584 if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
Chris Lattner834a72a2008-07-25 23:18:17 +0000585 return TT->getDecl()->isEnum() && TT->getDecl()->isDefinition();
Steve Naroffc63b96a2007-07-12 21:46:55 +0000586 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
587 return VT->getElementType()->isRealType();
Christopher Lambebb97e92008-02-04 02:31:56 +0000588 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
589 return ASQT->getBaseType()->isRealType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000590 return false;
591}
592
Reid Spencer5f016e22007-07-11 17:01:13 +0000593bool Type::isArithmeticType() const {
594 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
Douglas Gregora7fbf722008-10-30 13:47:07 +0000595 return BT->getKind() >= BuiltinType::Bool &&
596 BT->getKind() <= BuiltinType::LongDouble;
Chris Lattner37c1b782008-04-06 22:29:16 +0000597 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
598 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2).
599 // If a body isn't seen by the time we get here, return false.
600 return ET->getDecl()->isDefinition();
Christopher Lambebb97e92008-02-04 02:31:56 +0000601 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
602 return ASQT->getBaseType()->isArithmeticType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
604}
605
606bool Type::isScalarType() const {
607 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
608 return BT->getKind() != BuiltinType::Void;
609 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Chris Lattner834a72a2008-07-25 23:18:17 +0000610 // Enums are scalar types, but only if they are defined. Incomplete enums
611 // are not treated as scalar types.
612 if (TT->getDecl()->isEnum() && TT->getDecl()->isDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000613 return true;
614 return false;
615 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000616 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
617 return ASQT->getBaseType()->isScalarType();
Steve Naroff5618bd42008-08-27 16:04:49 +0000618 return isa<PointerType>(CanonicalType) ||
619 isa<BlockPointerType>(CanonicalType) ||
620 isa<ComplexType>(CanonicalType) ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000621 isa<ObjCQualifiedIdType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000622}
623
624bool Type::isAggregateType() const {
625 if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000626 if (TT->getDecl()->isStruct())
Reid Spencer5f016e22007-07-11 17:01:13 +0000627 return true;
628 return false;
629 }
Christopher Lambebb97e92008-02-04 02:31:56 +0000630 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
631 return ASQT->getBaseType()->isAggregateType();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000632 return isa<ArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000633}
634
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000635/// isConstantSizeType - Return true if this is not a variable sized type,
636/// according to the rules of C99 6.7.5p3. It is not legal to call this on
637/// incomplete types.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000638bool Type::isConstantSizeType() const {
Christopher Lambebb97e92008-02-04 02:31:56 +0000639 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
Eli Friedman3c2b3172008-02-15 12:20:59 +0000640 return ASQT->getBaseType()->isConstantSizeType();
Chris Lattnerd52a4572007-12-18 07:03:30 +0000641 assert(!isIncompleteType() && "This doesn't make sense for incomplete types");
Chris Lattner9bfa73c2007-12-18 07:18:16 +0000642 // The VAT must have a size, as it is known to be complete.
643 return !isa<VariableArrayType>(CanonicalType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000644}
645
646/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
647/// - a type that can describe objects, but which lacks information needed to
648/// determine its size.
649bool Type::isIncompleteType() const {
650 switch (CanonicalType->getTypeClass()) {
651 default: return false;
Christopher Lambebb97e92008-02-04 02:31:56 +0000652 case ASQual:
653 return cast<ASQualType>(CanonicalType)->getBaseType()->isIncompleteType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 case Builtin:
655 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
656 // be completed.
657 return isVoidType();
658 case Tagged:
659 // A tagged type (struct/union/enum/class) is incomplete if the decl is a
660 // forward declaration, but not a full definition (C99 6.2.5p22).
661 return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
Eli Friedmanc5773c42008-02-15 18:16:39 +0000662 case IncompleteArray:
Reid Spencer5f016e22007-07-11 17:01:13 +0000663 // An array of unknown size is an incomplete type (C99 6.2.5p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000664 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 }
666}
667
668bool Type::isPromotableIntegerType() const {
Christopher Lambebb97e92008-02-04 02:31:56 +0000669 if (const ASQualType *ASQT = dyn_cast<ASQualType>(CanonicalType))
670 return ASQT->getBaseType()->isPromotableIntegerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType);
672 if (!BT) return false;
673 switch (BT->getKind()) {
674 case BuiltinType::Bool:
675 case BuiltinType::Char_S:
676 case BuiltinType::Char_U:
677 case BuiltinType::SChar:
678 case BuiltinType::UChar:
679 case BuiltinType::Short:
680 case BuiltinType::UShort:
681 return true;
682 default:
683 return false;
684 }
685}
686
687const char *BuiltinType::getName() const {
688 switch (getKind()) {
689 default: assert(0 && "Unknown builtin type!");
690 case Void: return "void";
691 case Bool: return "_Bool";
692 case Char_S: return "char";
693 case Char_U: return "char";
694 case SChar: return "signed char";
695 case Short: return "short";
696 case Int: return "int";
697 case Long: return "long";
698 case LongLong: return "long long";
699 case UChar: return "unsigned char";
700 case UShort: return "unsigned short";
701 case UInt: return "unsigned int";
702 case ULong: return "unsigned long";
703 case ULongLong: return "unsigned long long";
704 case Float: return "float";
705 case Double: return "double";
706 case LongDouble: return "long double";
Argyrios Kyrtzidis46713ef2008-08-09 17:11:33 +0000707 case WChar: return "wchar_t";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000708 case Overload: return "<overloaded function type>";
Reid Spencer5f016e22007-07-11 17:01:13 +0000709 }
710}
711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
Chris Lattner942cfd32007-07-20 18:48:28 +0000713 arg_type_iterator ArgTys,
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000714 unsigned NumArgs, bool isVariadic,
715 unsigned TypeQuals) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 ID.AddPointer(Result.getAsOpaquePtr());
717 for (unsigned i = 0; i != NumArgs; ++i)
718 ID.AddPointer(ArgTys[i].getAsOpaquePtr());
719 ID.AddInteger(isVariadic);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000720 ID.AddInteger(TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +0000721}
722
723void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000724 Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic(),
725 getTypeQuals());
Reid Spencer5f016e22007-07-11 17:01:13 +0000726}
727
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000728void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner1ee07002008-04-07 06:37:47 +0000729 const ObjCInterfaceDecl *Decl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000730 ObjCProtocolDecl **protocols,
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000731 unsigned NumProtocols) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000732 ID.AddPointer(Decl);
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000733 for (unsigned i = 0; i != NumProtocols; i++)
734 ID.AddPointer(protocols[i]);
735}
736
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000737void ObjCQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
Chris Lattner1ee07002008-04-07 06:37:47 +0000738 Profile(ID, getDecl(), &Protocols[0], getNumProtocols());
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000739}
740
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000741void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID,
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000742 ObjCProtocolDecl **protocols,
743 unsigned NumProtocols) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000744 for (unsigned i = 0; i != NumProtocols; i++)
745 ID.AddPointer(protocols[i]);
746}
747
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000748void ObjCQualifiedIdType::Profile(llvm::FoldingSetNodeID &ID) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000749 Profile(ID, &Protocols[0], getNumProtocols());
750}
751
Chris Lattnera2c77672007-07-16 22:05:22 +0000752/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
753/// potentially looking through *all* consequtive typedefs. This returns the
754/// sum of the type qualifiers, so if you have:
755/// typedef const int A;
756/// typedef volatile A B;
757/// looking through the typedefs for B will give you "const volatile A".
758///
759QualType TypedefType::LookThroughTypedefs() const {
760 // Usually, there is only a single level of typedefs, be fast in that case.
761 QualType FirstType = getDecl()->getUnderlyingType();
762 if (!isa<TypedefType>(FirstType))
763 return FirstType;
764
765 // Otherwise, do the fully general loop.
766 unsigned TypeQuals = 0;
767 const TypedefType *TDT = this;
768 while (1) {
769 QualType CurType = TDT->getDecl()->getUnderlyingType();
Chris Lattnerf46699c2008-02-20 20:55:12 +0000770
771
772 /// FIXME:
773 /// FIXME: This is incorrect for ASQuals!
774 /// FIXME:
775 TypeQuals |= CurType.getCVRQualifiers();
Chris Lattnera2c77672007-07-16 22:05:22 +0000776
777 TDT = dyn_cast<TypedefType>(CurType);
778 if (TDT == 0)
779 return QualType(CurType.getTypePtr(), TypeQuals);
780 }
781}
Reid Spencer5f016e22007-07-11 17:01:13 +0000782
Chris Lattner2daa5df2008-04-06 22:04:54 +0000783bool RecordType::classof(const TagType *TT) {
784 return isa<RecordDecl>(TT->getDecl());
Reid Spencer5f016e22007-07-11 17:01:13 +0000785}
786
Argyrios Kyrtzidis49aa7ff2008-08-07 20:55:28 +0000787bool CXXRecordType::classof(const TagType *TT) {
788 return isa<CXXRecordDecl>(TT->getDecl());
789}
790
Chris Lattner2daa5df2008-04-06 22:04:54 +0000791bool EnumType::classof(const TagType *TT) {
792 return isa<EnumDecl>(TT->getDecl());
Chris Lattner5edb8bf2008-04-06 21:58:47 +0000793}
794
Reid Spencer5f016e22007-07-11 17:01:13 +0000795
796//===----------------------------------------------------------------------===//
797// Type Printing
798//===----------------------------------------------------------------------===//
799
800void QualType::dump(const char *msg) const {
Chris Lattner39caea92007-12-06 04:20:07 +0000801 std::string R = "identifier";
Reid Spencer5f016e22007-07-11 17:01:13 +0000802 getAsStringInternal(R);
803 if (msg)
804 fprintf(stderr, "%s: %s\n", msg, R.c_str());
805 else
806 fprintf(stderr, "%s\n", R.c_str());
807}
Chris Lattnerc36d4052008-07-27 00:48:22 +0000808void QualType::dump() const {
809 dump("");
810}
811
812void Type::dump() const {
813 std::string S = "identifier";
814 getAsStringInternal(S);
815 fprintf(stderr, "%s\n", S.c_str());
816}
817
818
Reid Spencer5f016e22007-07-11 17:01:13 +0000819
820static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
821 // Note: funkiness to ensure we get a space only between quals.
822 bool NonePrinted = true;
823 if (TypeQuals & QualType::Const)
824 S += "const", NonePrinted = false;
825 if (TypeQuals & QualType::Volatile)
826 S += (NonePrinted+" volatile"), NonePrinted = false;
827 if (TypeQuals & QualType::Restrict)
828 S += (NonePrinted+" restrict"), NonePrinted = false;
829}
830
831void QualType::getAsStringInternal(std::string &S) const {
832 if (isNull()) {
833 S += "NULL TYPE\n";
834 return;
835 }
836
837 // Print qualifiers as appropriate.
Gabor Greif3513e132008-02-21 17:40:55 +0000838 if (unsigned Tq = getCVRQualifiers()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 std::string TQS;
Gabor Greif3513e132008-02-21 17:40:55 +0000840 AppendTypeQualList(TQS, Tq);
Reid Spencer5f016e22007-07-11 17:01:13 +0000841 if (!S.empty())
842 S = TQS + ' ' + S;
843 else
844 S = TQS;
845 }
846
847 getTypePtr()->getAsStringInternal(S);
848}
849
850void BuiltinType::getAsStringInternal(std::string &S) const {
851 if (S.empty()) {
852 S = getName();
853 } else {
854 // Prefix the basic type, e.g. 'int X'.
855 S = ' ' + S;
856 S = getName() + S;
857 }
858}
859
860void ComplexType::getAsStringInternal(std::string &S) const {
861 ElementType->getAsStringInternal(S);
862 S = "_Complex " + S;
863}
864
Christopher Lambebb97e92008-02-04 02:31:56 +0000865void ASQualType::getAsStringInternal(std::string &S) const {
866 S = "__attribute__((address_space("+llvm::utostr_32(AddressSpace)+")))" + S;
867 BaseType->getAsStringInternal(S);
868}
869
Reid Spencer5f016e22007-07-11 17:01:13 +0000870void PointerType::getAsStringInternal(std::string &S) const {
871 S = '*' + S;
872
873 // Handle things like 'int (*A)[4];' correctly.
874 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000875 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 S = '(' + S + ')';
877
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000878 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000879}
880
Steve Naroff5618bd42008-08-27 16:04:49 +0000881void BlockPointerType::getAsStringInternal(std::string &S) const {
882 S = '^' + S;
883 PointeeType.getAsStringInternal(S);
884}
885
Reid Spencer5f016e22007-07-11 17:01:13 +0000886void ReferenceType::getAsStringInternal(std::string &S) const {
887 S = '&' + S;
888
889 // Handle things like 'int (&A)[4];' correctly.
890 // FIXME: this should include vectors, but vectors use attributes I guess.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000891 if (isa<ArrayType>(getPointeeType()))
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 S = '(' + S + ')';
893
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000894 getPointeeType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000895}
896
Steve Narofffb22d962007-08-30 01:06:46 +0000897void ConstantArrayType::getAsStringInternal(std::string &S) const {
898 S += '[';
Steve Naroff6b91cd92007-08-30 18:45:57 +0000899 S += llvm::utostr(getSize().getZExtValue());
Steve Narofffb22d962007-08-30 01:06:46 +0000900 S += ']';
901
902 getElementType().getAsStringInternal(S);
903}
904
Eli Friedmanc5773c42008-02-15 18:16:39 +0000905void IncompleteArrayType::getAsStringInternal(std::string &S) const {
906 S += "[]";
907
908 getElementType().getAsStringInternal(S);
909}
910
Steve Narofffb22d962007-08-30 01:06:46 +0000911void VariableArrayType::getAsStringInternal(std::string &S) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000912 S += '[';
913
Steve Naroffc9406122007-08-30 18:10:14 +0000914 if (getIndexTypeQualifier()) {
915 AppendTypeQualList(S, getIndexTypeQualifier());
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 S += ' ';
917 }
918
Steve Naroffc9406122007-08-30 18:10:14 +0000919 if (getSizeModifier() == Static)
Reid Spencer5f016e22007-07-11 17:01:13 +0000920 S += "static";
Steve Naroffc9406122007-08-30 18:10:14 +0000921 else if (getSizeModifier() == Star)
Reid Spencer5f016e22007-07-11 17:01:13 +0000922 S += '*';
923
Steve Narofffb22d962007-08-30 01:06:46 +0000924 if (getSizeExpr()) {
Ted Kremeneka95d3752008-09-13 05:16:45 +0000925 std::string SStr;
926 llvm::raw_string_ostream s(SStr);
Steve Narofffb22d962007-08-30 01:06:46 +0000927 getSizeExpr()->printPretty(s);
928 S += s.str();
929 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000930 S += ']';
931
Steve Narofffb22d962007-08-30 01:06:46 +0000932 getElementType().getAsStringInternal(S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000933}
934
935void VectorType::getAsStringInternal(std::string &S) const {
Daniel Dunbar5620b502008-10-05 05:43:11 +0000936 // FIXME: We prefer to print the size directly here, but have no way
937 // to get the size of the type.
Chris Lattner7ee261c2007-11-27 07:28:18 +0000938 S += " __attribute__((__vector_size__(";
Daniel Dunbar5620b502008-10-05 05:43:11 +0000939 S += llvm::utostr_32(NumElements); // convert back to bytes.
940 S += " * sizeof(" + ElementType.getAsString() + "))))";
Reid Spencer5f016e22007-07-11 17:01:13 +0000941}
942
Nate Begeman213541a2008-04-18 23:10:10 +0000943void ExtVectorType::getAsStringInternal(std::string &S) const {
944 S += " __attribute__((ext_vector_type(";
Steve Naroff31a45842007-07-28 23:10:27 +0000945 S += llvm::utostr_32(NumElements);
946 S += ")))";
947 ElementType.getAsStringInternal(S);
948}
949
Steve Naroffd1861fd2007-07-31 12:34:36 +0000950void TypeOfExpr::getAsStringInternal(std::string &InnerString) const {
Steve Naroff363bcff2007-08-01 23:45:51 +0000951 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
952 InnerString = ' ' + InnerString;
Ted Kremeneka95d3752008-09-13 05:16:45 +0000953 std::string Str;
954 llvm::raw_string_ostream s(Str);
Chris Lattner6000dac2007-08-08 22:51:59 +0000955 getUnderlyingExpr()->printPretty(s);
Steve Naroff1bfd5cc2007-08-05 03:24:45 +0000956 InnerString = "typeof(" + s.str() + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000957}
958
Steve Naroff363bcff2007-08-01 23:45:51 +0000959void TypeOfType::getAsStringInternal(std::string &InnerString) const {
960 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
961 InnerString = ' ' + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000962 std::string Tmp;
963 getUnderlyingType().getAsStringInternal(Tmp);
Steve Naroff363bcff2007-08-01 23:45:51 +0000964 InnerString = "typeof(" + Tmp + ")" + InnerString;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000965}
966
Reid Spencer5f016e22007-07-11 17:01:13 +0000967void FunctionTypeNoProto::getAsStringInternal(std::string &S) const {
968 // If needed for precedence reasons, wrap the inner part in grouping parens.
969 if (!S.empty())
970 S = "(" + S + ")";
971
972 S += "()";
973 getResultType().getAsStringInternal(S);
974}
975
976void FunctionTypeProto::getAsStringInternal(std::string &S) const {
977 // If needed for precedence reasons, wrap the inner part in grouping parens.
978 if (!S.empty())
979 S = "(" + S + ")";
980
981 S += "(";
982 std::string Tmp;
983 for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
984 if (i) S += ", ";
985 getArgType(i).getAsStringInternal(Tmp);
986 S += Tmp;
987 Tmp.clear();
988 }
989
990 if (isVariadic()) {
991 if (getNumArgs())
992 S += ", ";
993 S += "...";
994 } else if (getNumArgs() == 0) {
995 // Do not emit int() if we have a proto, emit 'int(void)'.
996 S += "void";
997 }
998
999 S += ")";
1000 getResultType().getAsStringInternal(S);
1001}
1002
1003
1004void TypedefType::getAsStringInternal(std::string &InnerString) const {
1005 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1006 InnerString = ' ' + InnerString;
1007 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1008}
1009
Douglas Gregor72c3f312008-12-05 18:15:24 +00001010void TemplateTypeParmType::getAsStringInternal(std::string &InnerString) const {
1011 if (!InnerString.empty()) // Prefix the basic type, e.g. 'parmname X'.
1012 InnerString = ' ' + InnerString;
1013 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1014}
1015
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001016void ObjCInterfaceType::getAsStringInternal(std::string &InnerString) const {
Steve Naroff3536b442007-09-06 21:24:23 +00001017 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1018 InnerString = ' ' + InnerString;
1019 InnerString = getDecl()->getIdentifier()->getName() + InnerString;
1020}
1021
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001022void ObjCQualifiedInterfaceType::getAsStringInternal(
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001023 std::string &InnerString) const {
Fariborz Jahaniandfbcce22007-10-11 18:08:47 +00001024 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1025 InnerString = ' ' + InnerString;
Chris Lattner39f34e92008-11-24 04:00:27 +00001026 std::string ObjCQIString = getDecl()->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001027 ObjCQIString += '<';
Chris Lattnercdce6d12008-07-21 05:19:23 +00001028 bool isFirst = true;
1029 for (qual_iterator I = qual_begin(), E = qual_end(); I != E; ++I) {
1030 if (isFirst)
1031 isFirst = false;
1032 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001033 ObjCQIString += ',';
Chris Lattner39f34e92008-11-24 04:00:27 +00001034 ObjCQIString += (*I)->getNameAsString();
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001035 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001036 ObjCQIString += '>';
1037 InnerString = ObjCQIString + InnerString;
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +00001038}
1039
Chris Lattnere8e4f922008-07-25 23:07:18 +00001040void ObjCQualifiedIdType::getAsStringInternal(std::string &InnerString) const {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001041 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1042 InnerString = ' ' + InnerString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001043 std::string ObjCQIString = "id";
1044 ObjCQIString += '<';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001045 int num = getNumProtocols();
1046 for (int i = 0; i < num; i++) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001047 ObjCQIString += getProtocols(i)->getNameAsString();
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001048 if (i < num-1)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001049 ObjCQIString += ',';
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001050 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001051 ObjCQIString += '>';
1052 InnerString = ObjCQIString + InnerString;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001053}
1054
Reid Spencer5f016e22007-07-11 17:01:13 +00001055void TagType::getAsStringInternal(std::string &InnerString) const {
1056 if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
1057 InnerString = ' ' + InnerString;
1058
1059 const char *Kind = getDecl()->getKindName();
1060 const char *ID;
1061 if (const IdentifierInfo *II = getDecl()->getIdentifier())
1062 ID = II->getName();
1063 else
1064 ID = "<anonymous>";
1065
1066 InnerString = std::string(Kind) + " " + ID + InnerString;
1067}