2006-11-12 06:59:23 +08:00
|
|
|
//===--- Type.cpp - Type representation and manipulation ------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements type-related functionality.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/Type.h"
|
2006-11-20 12:02:15 +08:00
|
|
|
#include "clang/AST/Decl.h"
|
2007-10-02 03:00:59 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2007-05-09 05:09:37 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2007-10-07 16:58:51 +08:00
|
|
|
#include "clang/Basic/IdentifierTable.h"
|
2007-06-03 15:25:34 +08:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2007-05-27 18:15:43 +08:00
|
|
|
#include "llvm/Support/Streams.h"
|
2007-07-07 07:09:18 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2007-08-02 01:20:42 +08:00
|
|
|
#include <sstream>
|
|
|
|
|
2006-11-12 06:59:23 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
Type::~Type() {}
|
|
|
|
|
2006-12-03 10:43:54 +08:00
|
|
|
/// isVoidType - Helper method to determine if this is the 'void' type.
|
|
|
|
bool Type::isVoidType() const {
|
2007-03-22 05:08:52 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2006-12-03 10:57:32 +08:00
|
|
|
return BT->getKind() == BuiltinType::Void;
|
2006-12-03 10:43:54 +08:00
|
|
|
return false;
|
|
|
|
}
|
2006-11-12 08:37:36 +08:00
|
|
|
|
2007-03-29 05:49:40 +08:00
|
|
|
bool Type::isObjectType() const {
|
|
|
|
if (isa<FunctionType>(CanonicalType))
|
|
|
|
return false;
|
|
|
|
else if (CanonicalType->isIncompleteType())
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Type::isDerivedType() const {
|
2007-05-28 06:46:14 +08:00
|
|
|
switch (CanonicalType->getTypeClass()) {
|
|
|
|
case Pointer:
|
2007-08-30 09:06:46 +08:00
|
|
|
case VariableArray:
|
|
|
|
case ConstantArray:
|
2007-05-28 06:46:14 +08:00
|
|
|
case FunctionProto:
|
|
|
|
case FunctionNoProto:
|
|
|
|
case Reference:
|
|
|
|
return true;
|
2007-05-28 07:36:18 +08:00
|
|
|
case Tagged: {
|
|
|
|
const TagType *TT = cast<TagType>(CanonicalType);
|
|
|
|
const Decl::Kind Kind = TT->getDecl()->getKind();
|
|
|
|
return Kind == Decl::Struct || Kind == Decl::Union;
|
|
|
|
}
|
2007-05-28 07:31:02 +08:00
|
|
|
default:
|
|
|
|
return false;
|
2007-05-28 06:46:14 +08:00
|
|
|
}
|
2007-03-29 05:49:40 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
bool Type::isStructureType() const {
|
|
|
|
if (const RecordType *RT = dyn_cast<RecordType>(this))
|
|
|
|
if (RT->getDecl()->getKind() == Decl::Struct)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool Type::isUnionType() const {
|
|
|
|
if (const RecordType *RT = dyn_cast<RecordType>(this))
|
|
|
|
if (RT->getDecl()->getKind() == Decl::Union)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-08-22 00:54:08 +08:00
|
|
|
bool Type::isComplexType() const {
|
|
|
|
return isa<ComplexType>(CanonicalType);
|
|
|
|
}
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
/// getDesugaredType - Return the specified type with any "sugar" removed from
|
|
|
|
/// type type. This takes off typedefs, typeof's etc. If the outer level of
|
|
|
|
/// the type is already concrete, it returns it unmodified. This is similar
|
|
|
|
/// to getting the canonical type, but it doesn't remove *all* typedefs. For
|
|
|
|
/// example, it return "T*" as "T*", (not as "int*"), because the pointer is
|
|
|
|
/// concrete.
|
|
|
|
const Type *Type::getDesugaredType() const {
|
|
|
|
if (const TypedefType *TDT = dyn_cast<TypedefType>(this))
|
|
|
|
return TDT->LookThroughTypedefs().getTypePtr();
|
|
|
|
if (const TypeOfExpr *TOE = dyn_cast<TypeOfExpr>(this))
|
|
|
|
return TOE->getUnderlyingExpr()->getType().getTypePtr();
|
|
|
|
if (const TypeOfType *TOT = dyn_cast<TypeOfType>(this))
|
|
|
|
return TOT->getUnderlyingType().getTypePtr();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-27 12:08:11 +08:00
|
|
|
const BuiltinType *Type::getAsBuiltinType() const {
|
|
|
|
// If this is directly a builtin type, return it.
|
|
|
|
if (const BuiltinType *BTy = dyn_cast<BuiltinType>(this))
|
|
|
|
return BTy;
|
2007-10-29 11:41:11 +08:00
|
|
|
|
|
|
|
// If the canonical form of this type isn't a builtin type, reject it.
|
|
|
|
if (!isa<BuiltinType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-08-27 12:08:11 +08:00
|
|
|
// If this is a typedef for a builtin type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsBuiltinType();
|
2007-08-27 12:08:11 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const FunctionType *Type::getAsFunctionType() const {
|
2007-07-27 02:32:01 +08:00
|
|
|
// If this is directly a function type, return it.
|
|
|
|
if (const FunctionType *FTy = dyn_cast<FunctionType>(this))
|
|
|
|
return FTy;
|
2007-08-01 03:29:30 +08:00
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<FunctionType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-07-27 02:32:01 +08:00
|
|
|
// If this is a typedef for a function type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsFunctionType();
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 00:53:04 +08:00
|
|
|
const PointerType *Type::getAsPointerType() const {
|
2007-07-16 08:23:25 +08:00
|
|
|
// If this is directly a pointer type, return it.
|
|
|
|
if (const PointerType *PTy = dyn_cast<PointerType>(this))
|
|
|
|
return PTy;
|
2007-07-17 06:05:22 +08:00
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<PointerType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-07-17 06:05:22 +08:00
|
|
|
// If this is a typedef for a pointer type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsPointerType();
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 00:56:34 +08:00
|
|
|
const ReferenceType *Type::getAsReferenceType() const {
|
2007-07-17 12:16:47 +08:00
|
|
|
// If this is directly a reference type, return it.
|
|
|
|
if (const ReferenceType *RTy = dyn_cast<ReferenceType>(this))
|
|
|
|
return RTy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<ReferenceType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-07-17 12:16:47 +08:00
|
|
|
// If this is a typedef for a reference type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsReferenceType();
|
2007-05-27 18:15:43 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const ArrayType *Type::getAsArrayType() const {
|
2007-09-01 01:20:07 +08:00
|
|
|
// If this is directly an array type, return it.
|
2007-07-25 05:46:40 +08:00
|
|
|
if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
|
|
|
|
return ATy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<ArrayType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-07-25 05:46:40 +08:00
|
|
|
// If this is a typedef for an array type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsArrayType();
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-09-01 01:20:07 +08:00
|
|
|
const ConstantArrayType *Type::getAsConstantArrayType() const {
|
|
|
|
// If this is directly a constant array type, return it.
|
|
|
|
if (const ConstantArrayType *ATy = dyn_cast<ConstantArrayType>(this))
|
|
|
|
return ATy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<ConstantArrayType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If this is a typedef for a constant array type, strip the typedef off
|
|
|
|
// without losing all typedef information.
|
|
|
|
return getDesugaredType()->getAsConstantArrayType();
|
2007-09-01 01:20:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const VariableArrayType *Type::getAsVariableArrayType() const {
|
|
|
|
// If this is directly a variable array type, return it.
|
|
|
|
if (const VariableArrayType *ATy = dyn_cast<VariableArrayType>(this))
|
|
|
|
return ATy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<VariableArrayType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If this is a typedef for a variable array type, strip the typedef off
|
|
|
|
// without losing all typedef information.
|
|
|
|
return getDesugaredType()->getAsVariableArrayType();
|
2007-09-01 01:20:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isVariablyModifiedType (C99 6.7.5.2p2) - Return true for variable array
|
|
|
|
/// types that have a non-constant expression. This does not include "[]".
|
|
|
|
bool Type::isVariablyModifiedType() const {
|
|
|
|
if (const VariableArrayType *VAT = getAsVariableArrayType()) {
|
|
|
|
if (VAT->getSizeExpr())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const VariableArrayType *Type::getAsVariablyModifiedType() const {
|
|
|
|
if (const VariableArrayType *VAT = getAsVariableArrayType()) {
|
|
|
|
if (VAT->getSizeExpr())
|
|
|
|
return VAT;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const RecordType *Type::getAsRecordType() const {
|
2007-07-26 11:11:44 +08:00
|
|
|
// If this is directly a reference type, return it.
|
|
|
|
if (const RecordType *RTy = dyn_cast<RecordType>(this))
|
|
|
|
return RTy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<RecordType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If this is a typedef for a record type, strip the typedef off without
|
2007-07-26 11:11:44 +08:00
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsRecordType();
|
2007-07-26 11:11:44 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const RecordType *Type::getAsStructureType() const {
|
2007-07-27 02:32:01 +08:00
|
|
|
// If this is directly a structure type, return it.
|
2007-08-01 03:29:30 +08:00
|
|
|
if (const RecordType *RT = dyn_cast<RecordType>(this)) {
|
|
|
|
if (RT->getDecl()->getKind() == Decl::Struct)
|
|
|
|
return RT;
|
2007-07-27 02:32:01 +08:00
|
|
|
}
|
2007-10-29 11:41:11 +08:00
|
|
|
|
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
2007-08-01 03:29:30 +08:00
|
|
|
if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
|
2007-10-29 11:41:11 +08:00
|
|
|
if (RT->getDecl()->getKind() != Decl::Struct)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If this is a typedef for a structure type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
|
|
|
return getDesugaredType()->getAsStructureType();
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
2007-07-27 02:32:01 +08:00
|
|
|
return 0;
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const RecordType *Type::getAsUnionType() const {
|
2007-07-27 02:32:01 +08:00
|
|
|
// If this is directly a union type, return it.
|
2007-08-01 03:29:30 +08:00
|
|
|
if (const RecordType *RT = dyn_cast<RecordType>(this)) {
|
|
|
|
if (RT->getDecl()->getKind() == Decl::Union)
|
|
|
|
return RT;
|
2007-07-27 02:32:01 +08:00
|
|
|
}
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
2007-08-01 03:29:30 +08:00
|
|
|
if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) {
|
2007-10-29 11:41:11 +08:00
|
|
|
if (RT->getDecl()->getKind() != Decl::Union)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If this is a typedef for a union type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
|
|
|
return getDesugaredType()->getAsUnionType();
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
2007-07-27 02:32:01 +08:00
|
|
|
return 0;
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-08-22 00:54:08 +08:00
|
|
|
const ComplexType *Type::getAsComplexType() const {
|
|
|
|
// Are we directly a complex type?
|
|
|
|
if (const ComplexType *CTy = dyn_cast<ComplexType>(this))
|
|
|
|
return CTy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<ComplexType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-08-22 00:54:08 +08:00
|
|
|
// If this is a typedef for a complex type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsComplexType();
|
2007-07-16 08:23:25 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const VectorType *Type::getAsVectorType() const {
|
2007-07-16 08:23:25 +08:00
|
|
|
// Are we directly a vector type?
|
|
|
|
if (const VectorType *VTy = dyn_cast<VectorType>(this))
|
|
|
|
return VTy;
|
2007-07-17 06:05:22 +08:00
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<VectorType>(CanonicalType))
|
|
|
|
return 0;
|
|
|
|
|
2007-07-17 06:05:22 +08:00
|
|
|
// If this is a typedef for a vector type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
2007-10-29 11:41:11 +08:00
|
|
|
return getDesugaredType()->getAsVectorType();
|
2007-07-16 08:23:25 +08:00
|
|
|
}
|
|
|
|
|
2007-08-01 03:29:30 +08:00
|
|
|
const OCUVectorType *Type::getAsOCUVectorType() const {
|
2007-07-27 02:32:01 +08:00
|
|
|
// Are we directly an OpenCU vector type?
|
|
|
|
if (const OCUVectorType *VTy = dyn_cast<OCUVectorType>(this))
|
|
|
|
return VTy;
|
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If the canonical form of this type isn't the right kind, reject it.
|
|
|
|
if (!isa<OCUVectorType>(CanonicalType))
|
|
|
|
return 0;
|
2007-07-27 02:32:01 +08:00
|
|
|
|
2007-10-29 11:41:11 +08:00
|
|
|
// If this is a typedef for an ocuvector type, strip the typedef off without
|
|
|
|
// losing all typedef information.
|
|
|
|
return getDesugaredType()->getAsOCUVectorType();
|
2007-07-27 02:32:01 +08:00
|
|
|
}
|
|
|
|
|
2007-04-24 08:23:05 +08:00
|
|
|
bool Type::isIntegerType() const {
|
2007-04-26 05:10:52 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2007-03-22 05:08:52 +08:00
|
|
|
return BT->getKind() >= BuiltinType::Bool &&
|
2007-06-03 15:27:29 +08:00
|
|
|
BT->getKind() <= BuiltinType::LongLong;
|
2007-04-26 05:10:52 +08:00
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
|
2007-03-22 05:08:52 +08:00
|
|
|
if (TT->getDecl()->getKind() == Decl::Enum)
|
|
|
|
return true;
|
2007-07-13 05:46:55 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
|
|
|
|
return VT->getElementType()->isIntegerType();
|
2007-04-26 05:10:52 +08:00
|
|
|
return false;
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-08-09 06:15:55 +08:00
|
|
|
bool Type::isEnumeralType() const {
|
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
|
|
|
|
return TT->getDecl()->getKind() == Decl::Enum;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Type::isBooleanType() const {
|
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
|
|
|
return BT->getKind() == BuiltinType::Bool;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Type::isCharType() const {
|
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
|
|
|
return BT->getKind() == BuiltinType::Char_U ||
|
|
|
|
BT->getKind() == BuiltinType::UChar ||
|
2007-10-29 10:52:18 +08:00
|
|
|
BT->getKind() == BuiltinType::Char_S ||
|
|
|
|
BT->getKind() == BuiltinType::SChar;
|
2007-08-09 06:15:55 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-08-30 01:48:46 +08:00
|
|
|
/// isSignedIntegerType - Return true if this is an integer type that is
|
|
|
|
/// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..],
|
|
|
|
/// an enum decl which has a signed representation, or a vector of signed
|
|
|
|
/// integer element type.
|
2007-04-24 08:23:05 +08:00
|
|
|
bool Type::isSignedIntegerType() const {
|
2007-06-03 15:25:34 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
|
|
|
|
return BT->getKind() >= BuiltinType::Char_S &&
|
2007-04-24 08:23:05 +08:00
|
|
|
BT->getKind() <= BuiltinType::LongLong;
|
2007-06-03 15:25:34 +08:00
|
|
|
}
|
2007-08-30 01:48:46 +08:00
|
|
|
|
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
|
|
|
|
if (const EnumDecl *ED = dyn_cast<EnumDecl>(TT->getDecl()))
|
|
|
|
return ED->getIntegerType()->isSignedIntegerType();
|
|
|
|
|
2007-07-13 05:46:55 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
|
|
|
|
return VT->getElementType()->isSignedIntegerType();
|
2007-04-25 04:56:26 +08:00
|
|
|
return false;
|
2007-04-24 08:23:05 +08:00
|
|
|
}
|
|
|
|
|
2007-08-30 01:48:46 +08:00
|
|
|
/// isUnsignedIntegerType - Return true if this is an integer type that is
|
|
|
|
/// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum
|
|
|
|
/// decl which has an unsigned representation, or a vector of unsigned integer
|
|
|
|
/// element type.
|
2007-04-24 08:23:05 +08:00
|
|
|
bool Type::isUnsignedIntegerType() const {
|
2007-06-03 15:25:34 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
|
|
|
|
return BT->getKind() >= BuiltinType::Bool &&
|
2007-04-24 08:23:05 +08:00
|
|
|
BT->getKind() <= BuiltinType::ULongLong;
|
2007-06-03 15:25:34 +08:00
|
|
|
}
|
2007-08-30 01:48:46 +08:00
|
|
|
|
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
|
|
|
|
if (const EnumDecl *ED = dyn_cast<EnumDecl>(TT->getDecl()))
|
|
|
|
return ED->getIntegerType()->isUnsignedIntegerType();
|
|
|
|
|
2007-07-13 05:46:55 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
|
|
|
|
return VT->getElementType()->isUnsignedIntegerType();
|
2007-04-25 04:56:26 +08:00
|
|
|
return false;
|
2007-04-24 08:23:05 +08:00
|
|
|
}
|
|
|
|
|
2007-03-22 05:08:52 +08:00
|
|
|
bool Type::isFloatingType() const {
|
2007-04-25 04:56:26 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2007-03-22 05:08:52 +08:00
|
|
|
return BT->getKind() >= BuiltinType::Float &&
|
2007-06-23 04:56:16 +08:00
|
|
|
BT->getKind() <= BuiltinType::LongDouble;
|
|
|
|
if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
|
2007-08-30 14:19:11 +08:00
|
|
|
return CT->getElementType()->isFloatingType();
|
2007-07-13 05:46:55 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
|
|
|
|
return VT->getElementType()->isFloatingType();
|
2007-04-25 04:56:26 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-03-31 04:09:34 +08:00
|
|
|
bool Type::isRealFloatingType() const {
|
2007-04-25 04:56:26 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2007-03-31 04:09:34 +08:00
|
|
|
return BT->getKind() >= BuiltinType::Float &&
|
|
|
|
BT->getKind() <= BuiltinType::LongDouble;
|
2007-07-13 05:46:55 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
|
|
|
|
return VT->getElementType()->isRealFloatingType();
|
2007-04-25 04:56:26 +08:00
|
|
|
return false;
|
2007-03-31 04:09:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Type::isRealType() const {
|
2007-04-26 05:10:52 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2007-03-31 04:09:34 +08:00
|
|
|
return BT->getKind() >= BuiltinType::Bool &&
|
|
|
|
BT->getKind() <= BuiltinType::LongDouble;
|
2007-04-26 05:10:52 +08:00
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
|
2007-06-03 06:47:37 +08:00
|
|
|
return TT->getDecl()->getKind() == Decl::Enum;
|
2007-07-13 05:46:55 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType))
|
|
|
|
return VT->getElementType()->isRealType();
|
2007-04-26 05:10:52 +08:00
|
|
|
return false;
|
2007-03-31 04:09:34 +08:00
|
|
|
}
|
|
|
|
|
2007-03-22 05:08:52 +08:00
|
|
|
bool Type::isArithmeticType() const {
|
2007-04-25 04:56:26 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2007-06-23 04:56:16 +08:00
|
|
|
return BT->getKind() != BuiltinType::Void;
|
2007-04-27 05:44:56 +08:00
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType))
|
|
|
|
if (TT->getDecl()->getKind() == Decl::Enum)
|
|
|
|
return true;
|
2007-07-10 05:31:10 +08:00
|
|
|
return isa<ComplexType>(CanonicalType) || isa<VectorType>(CanonicalType);
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Type::isScalarType() const {
|
2007-04-26 05:10:52 +08:00
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
|
2007-06-23 04:56:16 +08:00
|
|
|
return BT->getKind() != BuiltinType::Void;
|
2007-05-17 03:47:19 +08:00
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
|
2007-04-27 05:44:56 +08:00
|
|
|
if (TT->getDecl()->getKind() == Decl::Enum)
|
|
|
|
return true;
|
2007-05-17 03:47:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
2007-07-13 05:46:55 +08:00
|
|
|
return isa<PointerType>(CanonicalType) || isa<ComplexType>(CanonicalType) ||
|
|
|
|
isa<VectorType>(CanonicalType);
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Type::isAggregateType() const {
|
2007-05-17 03:47:19 +08:00
|
|
|
if (const TagType *TT = dyn_cast<TagType>(CanonicalType)) {
|
2007-03-22 05:08:52 +08:00
|
|
|
if (TT->getDecl()->getKind() == Decl::Struct)
|
|
|
|
return true;
|
2007-05-17 03:47:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
2007-08-30 09:06:46 +08:00
|
|
|
return CanonicalType->getTypeClass() == ConstantArray ||
|
|
|
|
CanonicalType->getTypeClass() == VariableArray;
|
2007-03-22 05:08:52 +08:00
|
|
|
}
|
|
|
|
|
2007-05-09 05:09:37 +08:00
|
|
|
// The only variable size types are auto arrays within a function. Structures
|
|
|
|
// cannot contain a VLA member. They can have a flexible array member, however
|
|
|
|
// the structure is still constant size (C99 6.7.2.1p16).
|
2007-07-16 07:26:56 +08:00
|
|
|
bool Type::isConstantSizeType(ASTContext &Ctx, SourceLocation *loc) const {
|
2007-08-30 09:06:46 +08:00
|
|
|
if (isa<VariableArrayType>(CanonicalType))
|
|
|
|
return false;
|
2007-05-09 05:09:37 +08:00
|
|
|
return true;
|
|
|
|
}
|
2007-03-22 05:08:52 +08:00
|
|
|
|
2007-01-24 05:58:16 +08:00
|
|
|
/// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1)
|
|
|
|
/// - a type that can describe objects, but which lacks information needed to
|
|
|
|
/// determine its size.
|
2007-03-22 05:08:52 +08:00
|
|
|
bool Type::isIncompleteType() const {
|
|
|
|
switch (CanonicalType->getTypeClass()) {
|
2007-01-24 05:58:16 +08:00
|
|
|
default: return false;
|
|
|
|
case Builtin:
|
|
|
|
// Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never
|
|
|
|
// be completed.
|
|
|
|
return isVoidType();
|
|
|
|
case Tagged:
|
|
|
|
// A tagged type (struct/union/enum/class) is incomplete if the decl is a
|
|
|
|
// forward declaration, but not a full definition (C99 6.2.5p22).
|
2007-03-24 06:27:02 +08:00
|
|
|
return !cast<TagType>(CanonicalType)->getDecl()->isDefinition();
|
2007-08-30 09:06:46 +08:00
|
|
|
case VariableArray:
|
2007-01-24 05:58:16 +08:00
|
|
|
// An array of unknown size is an incomplete type (C99 6.2.5p22).
|
2007-08-30 09:06:46 +08:00
|
|
|
return cast<VariableArrayType>(CanonicalType)->getSizeExpr() == 0;
|
2007-01-24 05:58:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-21 06:26:17 +08:00
|
|
|
bool Type::isPromotableIntegerType() const {
|
2007-06-03 15:25:34 +08:00
|
|
|
const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType);
|
|
|
|
if (!BT) return false;
|
|
|
|
switch (BT->getKind()) {
|
|
|
|
case BuiltinType::Bool:
|
|
|
|
case BuiltinType::Char_S:
|
|
|
|
case BuiltinType::Char_U:
|
|
|
|
case BuiltinType::SChar:
|
|
|
|
case BuiltinType::UChar:
|
|
|
|
case BuiltinType::Short:
|
|
|
|
case BuiltinType::UShort:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
2007-04-21 06:26:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-03 10:57:32 +08:00
|
|
|
const char *BuiltinType::getName() const {
|
|
|
|
switch (getKind()) {
|
|
|
|
default: assert(0 && "Unknown builtin type!");
|
|
|
|
case Void: return "void";
|
|
|
|
case Bool: return "_Bool";
|
2007-06-03 15:25:34 +08:00
|
|
|
case Char_S: return "char";
|
|
|
|
case Char_U: return "char";
|
2006-12-03 10:57:32 +08:00
|
|
|
case SChar: return "signed char";
|
|
|
|
case Short: return "short";
|
|
|
|
case Int: return "int";
|
|
|
|
case Long: return "long";
|
|
|
|
case LongLong: return "long long";
|
|
|
|
case UChar: return "unsigned char";
|
|
|
|
case UShort: return "unsigned short";
|
|
|
|
case UInt: return "unsigned int";
|
|
|
|
case ULong: return "unsigned long";
|
|
|
|
case ULongLong: return "unsigned long long";
|
|
|
|
case Float: return "float";
|
|
|
|
case Double: return "double";
|
|
|
|
case LongDouble: return "long double";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID, QualType Result,
|
2007-07-21 02:48:28 +08:00
|
|
|
arg_type_iterator ArgTys,
|
2007-01-27 09:15:32 +08:00
|
|
|
unsigned NumArgs, bool isVariadic) {
|
|
|
|
ID.AddPointer(Result.getAsOpaquePtr());
|
|
|
|
for (unsigned i = 0; i != NumArgs; ++i)
|
|
|
|
ID.AddPointer(ArgTys[i].getAsOpaquePtr());
|
|
|
|
ID.AddInteger(isVariadic);
|
|
|
|
}
|
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
void FunctionTypeProto::Profile(llvm::FoldingSetNodeID &ID) {
|
2007-07-21 02:48:28 +08:00
|
|
|
Profile(ID, getResultType(), arg_type_begin(), NumArgs, isVariadic());
|
2007-01-31 13:05:57 +08:00
|
|
|
}
|
|
|
|
|
2007-10-11 08:55:41 +08:00
|
|
|
void ObjcQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID,
|
|
|
|
ObjcInterfaceType *interfaceType,
|
|
|
|
ObjcProtocolDecl **protocols,
|
|
|
|
unsigned NumProtocols) {
|
|
|
|
ID.AddPointer(interfaceType);
|
|
|
|
for (unsigned i = 0; i != NumProtocols; i++)
|
|
|
|
ID.AddPointer(protocols[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObjcQualifiedInterfaceType::Profile(llvm::FoldingSetNodeID &ID) {
|
|
|
|
Profile(ID, getInterfaceType(), &Protocols[0], getNumProtocols());
|
|
|
|
}
|
|
|
|
|
2007-07-17 06:05:22 +08:00
|
|
|
/// LookThroughTypedefs - Return the ultimate type this typedef corresponds to
|
|
|
|
/// potentially looking through *all* consequtive typedefs. This returns the
|
|
|
|
/// sum of the type qualifiers, so if you have:
|
|
|
|
/// typedef const int A;
|
|
|
|
/// typedef volatile A B;
|
|
|
|
/// looking through the typedefs for B will give you "const volatile A".
|
|
|
|
///
|
|
|
|
QualType TypedefType::LookThroughTypedefs() const {
|
|
|
|
// Usually, there is only a single level of typedefs, be fast in that case.
|
|
|
|
QualType FirstType = getDecl()->getUnderlyingType();
|
|
|
|
if (!isa<TypedefType>(FirstType))
|
|
|
|
return FirstType;
|
|
|
|
|
|
|
|
// Otherwise, do the fully general loop.
|
|
|
|
unsigned TypeQuals = 0;
|
|
|
|
const TypedefType *TDT = this;
|
|
|
|
while (1) {
|
|
|
|
QualType CurType = TDT->getDecl()->getUnderlyingType();
|
|
|
|
TypeQuals |= CurType.getQualifiers();
|
|
|
|
|
|
|
|
TDT = dyn_cast<TypedefType>(CurType);
|
|
|
|
if (TDT == 0)
|
|
|
|
return QualType(CurType.getTypePtr(), TypeQuals);
|
|
|
|
}
|
|
|
|
}
|
2007-01-31 13:05:57 +08:00
|
|
|
|
2007-01-25 08:44:24 +08:00
|
|
|
bool RecordType::classof(const Type *T) {
|
2007-03-24 06:27:02 +08:00
|
|
|
if (const TagType *TT = dyn_cast<TagType>(T))
|
2007-01-25 08:44:24 +08:00
|
|
|
return isa<RecordDecl>(TT->getDecl());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-12 08:37:36 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Type Printing
|
|
|
|
//===----------------------------------------------------------------------===//
|
2006-11-12 06:59:23 +08:00
|
|
|
|
2007-05-11 12:00:31 +08:00
|
|
|
void QualType::dump(const char *msg) const {
|
2006-11-13 15:38:09 +08:00
|
|
|
std::string R = "foo";
|
2007-05-17 02:07:12 +08:00
|
|
|
getAsStringInternal(R);
|
2007-05-11 12:00:31 +08:00
|
|
|
if (msg)
|
2007-06-16 07:05:46 +08:00
|
|
|
fprintf(stderr, "%s: %s\n", msg, R.c_str());
|
2007-05-11 12:00:31 +08:00
|
|
|
else
|
2007-06-16 07:05:46 +08:00
|
|
|
fprintf(stderr, "%s\n", R.c_str());
|
2006-11-12 08:37:36 +08:00
|
|
|
}
|
|
|
|
|
2006-11-13 14:22:30 +08:00
|
|
|
static void AppendTypeQualList(std::string &S, unsigned TypeQuals) {
|
2006-11-12 16:50:50 +08:00
|
|
|
// Note: funkiness to ensure we get a space only between quals.
|
|
|
|
bool NonePrinted = true;
|
2007-04-06 06:36:20 +08:00
|
|
|
if (TypeQuals & QualType::Const)
|
2006-11-13 14:22:30 +08:00
|
|
|
S += "const", NonePrinted = false;
|
2007-04-06 06:36:20 +08:00
|
|
|
if (TypeQuals & QualType::Volatile)
|
2006-11-13 14:22:30 +08:00
|
|
|
S += (NonePrinted+" volatile"), NonePrinted = false;
|
2007-04-06 06:36:20 +08:00
|
|
|
if (TypeQuals & QualType::Restrict)
|
2006-11-13 14:22:30 +08:00
|
|
|
S += (NonePrinted+" restrict"), NonePrinted = false;
|
|
|
|
}
|
2006-11-12 16:50:50 +08:00
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void QualType::getAsStringInternal(std::string &S) const {
|
2006-11-12 07:56:48 +08:00
|
|
|
if (isNull()) {
|
2006-11-13 14:22:30 +08:00
|
|
|
S += "NULL TYPE\n";
|
2006-11-12 07:56:48 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print qualifiers as appropriate.
|
2007-07-13 08:48:55 +08:00
|
|
|
unsigned TQ = getQualifiers();
|
|
|
|
if (TQ) {
|
2006-11-13 15:38:09 +08:00
|
|
|
std::string TQS;
|
|
|
|
AppendTypeQualList(TQS, TQ);
|
2007-05-20 12:21:51 +08:00
|
|
|
if (!S.empty())
|
|
|
|
S = TQS + ' ' + S;
|
|
|
|
else
|
|
|
|
S = TQS;
|
2006-11-12 16:50:50 +08:00
|
|
|
}
|
2006-11-13 15:38:09 +08:00
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
getTypePtr()->getAsStringInternal(S);
|
2006-11-12 08:37:36 +08:00
|
|
|
}
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void BuiltinType::getAsStringInternal(std::string &S) const {
|
2006-11-13 15:38:09 +08:00
|
|
|
if (S.empty()) {
|
2006-12-03 10:57:32 +08:00
|
|
|
S = getName();
|
2006-11-13 15:38:09 +08:00
|
|
|
} else {
|
|
|
|
// Prefix the basic type, e.g. 'int X'.
|
|
|
|
S = ' ' + S;
|
2006-12-03 10:57:32 +08:00
|
|
|
S = getName() + S;
|
2006-11-13 15:38:09 +08:00
|
|
|
}
|
2006-11-12 08:37:36 +08:00
|
|
|
}
|
|
|
|
|
2007-06-23 04:56:16 +08:00
|
|
|
void ComplexType::getAsStringInternal(std::string &S) const {
|
|
|
|
ElementType->getAsStringInternal(S);
|
|
|
|
S = "_Complex " + S;
|
|
|
|
}
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void PointerType::getAsStringInternal(std::string &S) const {
|
2006-11-13 15:38:09 +08:00
|
|
|
S = '*' + S;
|
|
|
|
|
|
|
|
// Handle things like 'int (*A)[4];' correctly.
|
2006-11-19 09:31:06 +08:00
|
|
|
// FIXME: this should include vectors, but vectors use attributes I guess.
|
2006-11-13 15:38:09 +08:00
|
|
|
if (isa<ArrayType>(PointeeType.getTypePtr()))
|
|
|
|
S = '(' + S + ')';
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
PointeeType.getAsStringInternal(S);
|
2006-11-12 07:56:48 +08:00
|
|
|
}
|
2006-11-12 16:50:50 +08:00
|
|
|
|
2007-05-27 18:15:43 +08:00
|
|
|
void ReferenceType::getAsStringInternal(std::string &S) const {
|
|
|
|
S = '&' + S;
|
|
|
|
|
|
|
|
// Handle things like 'int (&A)[4];' correctly.
|
|
|
|
// FIXME: this should include vectors, but vectors use attributes I guess.
|
|
|
|
if (isa<ArrayType>(ReferenceeType.getTypePtr()))
|
|
|
|
S = '(' + S + ')';
|
|
|
|
|
|
|
|
ReferenceeType.getAsStringInternal(S);
|
|
|
|
}
|
|
|
|
|
2007-08-30 09:06:46 +08:00
|
|
|
void ConstantArrayType::getAsStringInternal(std::string &S) const {
|
|
|
|
S += '[';
|
2007-08-31 02:45:57 +08:00
|
|
|
S += llvm::utostr(getSize().getZExtValue());
|
2007-08-30 09:06:46 +08:00
|
|
|
S += ']';
|
|
|
|
|
|
|
|
getElementType().getAsStringInternal(S);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VariableArrayType::getAsStringInternal(std::string &S) const {
|
2006-11-13 14:22:30 +08:00
|
|
|
S += '[';
|
2006-11-12 16:50:50 +08:00
|
|
|
|
2007-08-31 02:10:14 +08:00
|
|
|
if (getIndexTypeQualifier()) {
|
|
|
|
AppendTypeQualList(S, getIndexTypeQualifier());
|
2006-11-13 14:22:30 +08:00
|
|
|
S += ' ';
|
2006-11-12 16:50:50 +08:00
|
|
|
}
|
|
|
|
|
2007-08-31 02:10:14 +08:00
|
|
|
if (getSizeModifier() == Static)
|
2006-11-13 14:22:30 +08:00
|
|
|
S += "static";
|
2007-08-31 02:10:14 +08:00
|
|
|
else if (getSizeModifier() == Star)
|
2006-11-13 14:22:30 +08:00
|
|
|
S += '*';
|
2006-11-12 16:50:50 +08:00
|
|
|
|
2007-08-30 09:06:46 +08:00
|
|
|
if (getSizeExpr()) {
|
|
|
|
std::ostringstream s;
|
|
|
|
getSizeExpr()->printPretty(s);
|
|
|
|
S += s.str();
|
|
|
|
}
|
2006-11-13 14:22:30 +08:00
|
|
|
S += ']';
|
2006-11-13 15:38:09 +08:00
|
|
|
|
2007-08-30 09:06:46 +08:00
|
|
|
getElementType().getAsStringInternal(S);
|
2006-11-12 16:50:50 +08:00
|
|
|
}
|
2006-11-20 12:02:15 +08:00
|
|
|
|
2007-07-07 07:09:18 +08:00
|
|
|
void VectorType::getAsStringInternal(std::string &S) const {
|
2007-07-14 05:01:17 +08:00
|
|
|
S += " __attribute__((vector_size(";
|
|
|
|
// FIXME: should multiply by element size somehow.
|
2007-07-07 07:09:18 +08:00
|
|
|
S += llvm::utostr_32(NumElements*4); // convert back to bytes.
|
2007-07-14 05:01:17 +08:00
|
|
|
S += ")))";
|
2007-07-07 07:09:18 +08:00
|
|
|
ElementType.getAsStringInternal(S);
|
|
|
|
}
|
|
|
|
|
2007-07-29 07:10:27 +08:00
|
|
|
void OCUVectorType::getAsStringInternal(std::string &S) const {
|
|
|
|
S += " __attribute__((ocu_vector_type(";
|
|
|
|
S += llvm::utostr_32(NumElements);
|
|
|
|
S += ")))";
|
|
|
|
ElementType.getAsStringInternal(S);
|
|
|
|
}
|
|
|
|
|
2007-07-31 20:34:36 +08:00
|
|
|
void TypeOfExpr::getAsStringInternal(std::string &InnerString) const {
|
2007-08-02 07:45:51 +08:00
|
|
|
if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(e) X'.
|
|
|
|
InnerString = ' ' + InnerString;
|
2007-08-02 01:20:42 +08:00
|
|
|
std::ostringstream s;
|
2007-08-09 06:51:59 +08:00
|
|
|
getUnderlyingExpr()->printPretty(s);
|
2007-08-05 11:24:45 +08:00
|
|
|
InnerString = "typeof(" + s.str() + ")" + InnerString;
|
2007-07-31 20:34:36 +08:00
|
|
|
}
|
|
|
|
|
2007-08-02 07:45:51 +08:00
|
|
|
void TypeOfType::getAsStringInternal(std::string &InnerString) const {
|
|
|
|
if (!InnerString.empty()) // Prefix the basic type, e.g. 'typeof(t) X'.
|
|
|
|
InnerString = ' ' + InnerString;
|
2007-07-31 20:34:36 +08:00
|
|
|
std::string Tmp;
|
|
|
|
getUnderlyingType().getAsStringInternal(Tmp);
|
2007-08-02 07:45:51 +08:00
|
|
|
InnerString = "typeof(" + Tmp + ")" + InnerString;
|
2007-07-31 20:34:36 +08:00
|
|
|
}
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void FunctionTypeNoProto::getAsStringInternal(std::string &S) const {
|
2006-12-02 15:52:18 +08:00
|
|
|
// If needed for precedence reasons, wrap the inner part in grouping parens.
|
|
|
|
if (!S.empty())
|
|
|
|
S = "(" + S + ")";
|
|
|
|
|
|
|
|
S += "()";
|
2007-05-17 02:07:12 +08:00
|
|
|
getResultType().getAsStringInternal(S);
|
2006-12-02 15:52:18 +08:00
|
|
|
}
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void FunctionTypeProto::getAsStringInternal(std::string &S) const {
|
2006-12-02 15:52:18 +08:00
|
|
|
// If needed for precedence reasons, wrap the inner part in grouping parens.
|
|
|
|
if (!S.empty())
|
|
|
|
S = "(" + S + ")";
|
|
|
|
|
|
|
|
S += "(";
|
|
|
|
std::string Tmp;
|
|
|
|
for (unsigned i = 0, e = getNumArgs(); i != e; ++i) {
|
|
|
|
if (i) S += ", ";
|
2007-05-17 02:07:12 +08:00
|
|
|
getArgType(i).getAsStringInternal(Tmp);
|
2006-12-02 15:52:18 +08:00
|
|
|
S += Tmp;
|
|
|
|
Tmp.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isVariadic()) {
|
|
|
|
if (getNumArgs())
|
|
|
|
S += ", ";
|
|
|
|
S += "...";
|
2006-12-03 10:03:33 +08:00
|
|
|
} else if (getNumArgs() == 0) {
|
|
|
|
// Do not emit int() if we have a proto, emit 'int(void)'.
|
|
|
|
S += "void";
|
2006-12-02 15:52:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
S += ")";
|
2007-05-17 02:07:12 +08:00
|
|
|
getResultType().getAsStringInternal(S);
|
2006-12-02 15:52:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void TypedefType::getAsStringInternal(std::string &InnerString) const {
|
2007-01-23 13:45:31 +08:00
|
|
|
if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
|
2006-11-20 12:17:27 +08:00
|
|
|
InnerString = ' ' + InnerString;
|
2007-01-23 13:45:31 +08:00
|
|
|
InnerString = getDecl()->getIdentifier()->getName() + InnerString;
|
|
|
|
}
|
|
|
|
|
2007-09-07 05:24:23 +08:00
|
|
|
void ObjcInterfaceType::getAsStringInternal(std::string &InnerString) const {
|
|
|
|
if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
|
|
|
|
InnerString = ' ' + InnerString;
|
|
|
|
InnerString = getDecl()->getIdentifier()->getName() + InnerString;
|
|
|
|
}
|
|
|
|
|
2007-10-11 08:55:41 +08:00
|
|
|
void ObjcQualifiedInterfaceType::getAsStringInternal(
|
|
|
|
std::string &InnerString) const {
|
2007-10-12 02:08:47 +08:00
|
|
|
if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
|
|
|
|
InnerString = ' ' + InnerString;
|
|
|
|
std::string ObjcQIString = getInterfaceType()->getDecl()->getName();
|
|
|
|
ObjcQIString += '<';
|
2007-10-11 08:55:41 +08:00
|
|
|
int num = getNumProtocols();
|
|
|
|
for (int i = 0; i < num; i++) {
|
2007-10-12 02:08:47 +08:00
|
|
|
ObjcQIString += getProtocols(i)->getName();
|
2007-10-11 08:55:41 +08:00
|
|
|
if (i < num-1)
|
2007-10-12 02:08:47 +08:00
|
|
|
ObjcQIString += ',';
|
2007-10-11 08:55:41 +08:00
|
|
|
}
|
2007-10-12 02:08:47 +08:00
|
|
|
ObjcQIString += '>';
|
|
|
|
InnerString = ObjcQIString + InnerString;
|
2007-10-11 08:55:41 +08:00
|
|
|
}
|
|
|
|
|
2007-05-17 02:07:12 +08:00
|
|
|
void TagType::getAsStringInternal(std::string &InnerString) const {
|
2007-01-23 13:45:31 +08:00
|
|
|
if (!InnerString.empty()) // Prefix the basic type, e.g. 'typedefname X'.
|
|
|
|
InnerString = ' ' + InnerString;
|
|
|
|
|
|
|
|
const char *Kind = getDecl()->getKindName();
|
|
|
|
const char *ID;
|
|
|
|
if (const IdentifierInfo *II = getDecl()->getIdentifier())
|
|
|
|
ID = II->getName();
|
|
|
|
else
|
|
|
|
ID = "<anonymous>";
|
|
|
|
|
|
|
|
InnerString = std::string(Kind) + " " + ID + InnerString;
|
2006-11-20 12:02:15 +08:00
|
|
|
}
|