//===--- ASTContext.h - Context to hold long-lived AST nodes ----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the ASTContext interface. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_ASTCONTEXT_H #define LLVM_CLANG_AST_ASTCONTEXT_H #include "clang/AST/Builtins.h" #include "clang/AST/Expr.h" #include "clang/AST/RecordLayout.h" #include "clang/AST/Type.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/FoldingSet.h" #include "llvm/Bitcode/SerializationFwd.h" #include "llvm/Support/Allocator.h" #include namespace clang { class TargetInfo; class IdentifierTable; /// ASTContext - This class holds long-lived AST nodes (such as types and /// decls) that can be referred to throughout the semantic analysis of a file. class ASTContext { std::vector Types; llvm::FoldingSet ASQualTypes; llvm::FoldingSet ComplexTypes; llvm::FoldingSet PointerTypes; llvm::FoldingSet ReferenceTypes; llvm::FoldingSet ConstantArrayTypes; llvm::FoldingSet IncompleteArrayTypes; std::vector VariableArrayTypes; llvm::FoldingSet VectorTypes; llvm::FoldingSet FunctionTypeNoProtos; llvm::FoldingSet FunctionTypeProtos; llvm::FoldingSet ObjCQualifiedInterfaceTypes; llvm::FoldingSet ObjCQualifiedIdTypes; /// ASTRecordLayouts - A cache mapping from RecordDecls to ASTRecordLayouts. /// This is lazily created. This is intentionally not serialized. llvm::DenseMap ASTRecordLayouts; llvm::SmallVector EncodingRecordTypes; /// BuiltinVaListType - built-in va list type. /// This is initially null and set by Sema::LazilyCreateBuiltin when /// a builtin that takes a valist is encountered. QualType BuiltinVaListType; /// ObjCIdType - a pseudo built-in typedef type (set by Sema). QualType ObjCIdType; const RecordType *IdStructType; /// ObjCSelType - another pseudo built-in typedef type (set by Sema). QualType ObjCSelType; const RecordType *SelStructType; /// ObjCProtoType - another pseudo built-in typedef type (set by Sema). QualType ObjCProtoType; const RecordType *ProtoStructType; /// ObjCClassType - another pseudo built-in typedef type (set by Sema). QualType ObjCClassType; const RecordType *ClassStructType; QualType ObjCConstantStringType; RecordDecl *CFConstantStringTypeDecl; TranslationUnitDecl *TUDecl; SourceManager &SourceMgr; llvm::MallocAllocator Allocator; public: TargetInfo &Target; IdentifierTable &Idents; SelectorTable &Selectors; SourceManager& getSourceManager() { return SourceMgr; } llvm::MallocAllocator &getAllocator() { return Allocator; } FullSourceLoc getFullLoc(SourceLocation Loc) const { return FullSourceLoc(Loc,SourceMgr); } TranslationUnitDecl *getTranslationUnitDecl() const { return TUDecl; } /// This is intentionally not serialized. It is populated by the /// ASTContext ctor, and there are no external pointers/references to /// internal variables of BuiltinInfo. Builtin::Context BuiltinInfo; // Builtin Types. QualType VoidTy; QualType BoolTy; QualType CharTy; QualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy; QualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; QualType UnsignedLongLongTy; QualType FloatTy, DoubleTy, LongDoubleTy; QualType FloatComplexTy, DoubleComplexTy, LongDoubleComplexTy; QualType VoidPtrTy; ASTContext(SourceManager &SM, TargetInfo &t, IdentifierTable &idents, SelectorTable &sels, unsigned size_reserve=0 ) : CFConstantStringTypeDecl(0), SourceMgr(SM), Target(t), Idents(idents), Selectors(sels) { if (size_reserve > 0) Types.reserve(size_reserve); InitBuiltinTypes(); BuiltinInfo.InitializeBuiltins(idents, Target); TUDecl = TranslationUnitDecl::Create(*this); } ~ASTContext(); void PrintStats() const; const std::vector& getTypes() const { return Types; } //===--------------------------------------------------------------------===// // Type Constructors //===--------------------------------------------------------------------===// /// getASQualType - Return the uniqued reference to the type for an address /// space qualified type with the specified type and address space. The /// resulting type has a union of the qualifiers from T and the address space. // If T already has an address space specifier, it is silently replaced. QualType getASQualType(QualType T, unsigned AddressSpace); /// getComplexType - Return the uniqued reference to the type for a complex /// number with the specified element type. QualType getComplexType(QualType T); /// getPointerType - Return the uniqued reference to the type for a pointer to /// the specified type. QualType getPointerType(QualType T); /// getReferenceType - Return the uniqued reference to the type for a /// reference to the specified type. QualType getReferenceType(QualType T); /// getVariableArrayType - Returns a non-unique reference to the type for a /// variable array of the specified element type. QualType getVariableArrayType(QualType EltTy, Expr *NumElts, ArrayType::ArraySizeModifier ASM, unsigned EltTypeQuals); /// getIncompleteArrayType - Returns a unique reference to the type for a /// incomplete array of the specified element type. QualType getIncompleteArrayType(QualType EltTy, ArrayType::ArraySizeModifier ASM, unsigned EltTypeQuals); /// getConstantArrayType - Return the unique reference to the type for a /// constant array of the specified element type. QualType getConstantArrayType(QualType EltTy, const llvm::APInt &ArySize, ArrayType::ArraySizeModifier ASM, unsigned EltTypeQuals); /// getVectorType - Return the unique reference to a vector type of /// the specified element type and size. VectorType must be a built-in type. QualType getVectorType(QualType VectorType, unsigned NumElts); /// getExtVectorType - Return the unique reference to an extended vector type /// of the specified element type and size. VectorType must be a built-in /// type. QualType getExtVectorType(QualType VectorType, unsigned NumElts); /// getFunctionTypeNoProto - Return a K&R style C function type like 'int()'. /// QualType getFunctionTypeNoProto(QualType ResultTy); /// getFunctionType - Return a normal function type with a typed argument /// list. isVariadic indicates whether the argument list includes '...'. QualType getFunctionType(QualType ResultTy, QualType *ArgArray, unsigned NumArgs, bool isVariadic); /// getTypeDeclType - Return the unique reference to the type for /// the specified type declaration. QualType getTypeDeclType(TypeDecl *Decl); /// getTypedefType - Return the unique reference to the type for the /// specified typename decl. QualType getTypedefType(TypedefDecl *Decl); QualType getObjCInterfaceType(ObjCInterfaceDecl *Decl); /// getObjCQualifiedInterfaceType - Return a /// ObjCQualifiedInterfaceType type for the given interface decl and /// the conforming protocol list. QualType getObjCQualifiedInterfaceType(ObjCInterfaceDecl *Decl, ObjCProtocolDecl **ProtocolList, unsigned NumProtocols); /// getObjCQualifiedIdType - Return an ObjCQualifiedIdType for a /// given 'id' and conforming protocol list. QualType getObjCQualifiedIdType(QualType idType, ObjCProtocolDecl **ProtocolList, unsigned NumProtocols); /// getTypeOfType - GCC extension. QualType getTypeOfExpr(Expr *e); QualType getTypeOfType(QualType t); /// getTagDeclType - Return the unique reference to the type for the /// specified TagDecl (struct/union/class/enum) decl. QualType getTagDeclType(TagDecl *Decl); /// getSizeType - Return the unique type for "size_t" (C99 7.17), defined /// in . The sizeof operator requires this (C99 6.5.3.4p4). QualType getSizeType() const; /// getWcharType - Return the unique type for "wchar_t" (C99 7.17), defined /// in . Wide strings require this (C99 6.4.5p5). QualType getWcharType() const; /// getPointerDiffType - Return the unique type for "ptrdiff_t" (ref?) /// defined in . Pointer - pointer requires this (C99 6.5.6p9). QualType getPointerDiffType() const; // getCFConstantStringType - Return the C structure type used to represent // constant CFStrings. QualType getCFConstantStringType(); // This setter/getter represents the ObjC type for an NSConstantString. void setObjCConstantStringInterface(ObjCInterfaceDecl *Decl); QualType getObjCConstantStringInterface() const { return ObjCConstantStringType; } // Return the ObjC type encoding for a given type. void getObjCEncodingForType(QualType t, std::string &S, llvm::SmallVector &RT) const; // Put the string version of type qualifiers into S. void getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT, std::string &S) const; /// getObjCEncodingForMethodDecl - Return the encoded type for this method /// declaration. void getObjCEncodingForMethodDecl(ObjCMethodDecl *Decl, std::string &S); /// getObjCEncodingTypeSize returns size of type for objective-c encoding /// purpose. int getObjCEncodingTypeSize(QualType t); // This setter/getter repreents the ObjC 'id' type. It is setup lazily, by // Sema. void setObjCIdType(TypedefDecl *Decl); QualType getObjCIdType() const { return ObjCIdType; } void setObjCSelType(TypedefDecl *Decl); QualType getObjCSelType() const { return ObjCSelType; } void setObjCProtoType(QualType QT); QualType getObjCProtoType() const { return ObjCProtoType; } void setObjCClassType(TypedefDecl *Decl); QualType getObjCClassType() const { return ObjCClassType; } void setBuiltinVaListType(QualType T); QualType getBuiltinVaListType() const { return BuiltinVaListType; } //===--------------------------------------------------------------------===// // Type Sizing and Analysis //===--------------------------------------------------------------------===// /// getTypeInfo - Get the size and alignment of the specified complete type in /// bits. std::pair getTypeInfo(QualType T); /// getTypeSize - Return the size of the specified type, in bits. This method /// does not work on incomplete types. uint64_t getTypeSize(QualType T) { return getTypeInfo(T).first; } /// getTypeAlign - Return the alignment of the specified type, in bits. This /// method does not work on incomplete types. unsigned getTypeAlign(QualType T) { return getTypeInfo(T).second; } /// getASTRecordLayout - Get or compute information about the layout of the /// specified record (struct/union/class), which indicates its size and field /// position information. const ASTRecordLayout &getASTRecordLayout(const RecordDecl *D); //===--------------------------------------------------------------------===// // Type Operators //===--------------------------------------------------------------------===// /// getCanonicalType - Return the canonical (structural) type corresponding to /// the specified potentially non-canonical type. The non-canonical version /// of a type may have many "decorated" versions of types. Decorators can /// include typedefs, 'typeof' operators, etc. The returned type is guaranteed /// to be free of any of these, allowing two canonical types to be compared /// for exact equality with a simple pointer comparison. QualType getCanonicalType(QualType T); /// getArrayDecayedType - Return the properly qualified result of decaying the /// specified array type to a pointer. This operation is non-trivial when /// handling typedefs etc. The canonical type of "T" must be an array type, /// this returns a pointer to a properly qualified element of the array. /// /// See C99 6.7.5.3p7 and C99 6.3.2.1p3. QualType getArrayDecayedType(QualType T); /// getIntegerTypeOrder - Returns the highest ranked integer type: /// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If /// LHS < RHS, return -1. int getIntegerTypeOrder(QualType LHS, QualType RHS); /// getFloatingTypeOrder - Compare the rank of the two specified floating /// point types, ignoring the domain of the type (i.e. 'double' == /// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If /// LHS < RHS, return -1. int getFloatingTypeOrder(QualType LHS, QualType RHS); /// getFloatingTypeOfSizeWithinDomain - Returns a real floating /// point or a complex type (based on typeDomain/typeSize). /// 'typeDomain' is a real floating point or complex type. /// 'typeSize' is a real floating point or complex type. QualType getFloatingTypeOfSizeWithinDomain(QualType typeSize, QualType typeDomain) const; //===--------------------------------------------------------------------===// // Type Compatibility Predicates //===--------------------------------------------------------------------===// /// Compatibility predicates used to check assignment expressions. bool typesAreCompatible(QualType, QualType); // C99 6.2.7p1 bool pointerTypesAreCompatible(QualType, QualType); // C99 6.7.5.1p2 bool referenceTypesAreCompatible(QualType, QualType); // C++ 5.17p6 bool functionTypesAreCompatible(QualType, QualType); // C99 6.7.5.3p15 bool isObjCIdType(QualType T) const { if (!IdStructType) // ObjC isn't enabled return false; return T->getAsStructureType() == IdStructType; } bool isObjCClassType(QualType T) const { if (!ClassStructType) // ObjC isn't enabled return false; return T->getAsStructureType() == ClassStructType; } bool isObjCSelType(QualType T) const { assert(SelStructType && "isObjCSelType used before 'SEL' type is built"); return T->getAsStructureType() == SelStructType; } //===--------------------------------------------------------------------===// // Serialization //===--------------------------------------------------------------------===// void Emit(llvm::Serializer& S) const; static ASTContext* Create(llvm::Deserializer& D); private: ASTContext(const ASTContext&); // DO NOT IMPLEMENT void operator=(const ASTContext&); // DO NOT IMPLEMENT void InitBuiltinTypes(); void InitBuiltinType(QualType &R, BuiltinType::Kind K); }; } // end namespace clang #endif