30#include "cling/Interpreter/Interpreter.h"
31#include "cling/Interpreter/LookupHelper.h"
32#include "cling/Utils/AST.h"
34#include "clang/AST/ASTContext.h"
35#include "clang/AST/DeclCXX.h"
36#include "clang/AST/Type.h"
37#include "clang/AST/PrettyPrinter.h"
38#include "clang/Frontend/CompilerInstance.h"
40#include <CppInterOp/CppInterOp.h>
60 "TClingTypeInfo::Init(name): looking up clang type: %s",
name);
62 const cling::LookupHelper& lh =
fInterp->getLookupHelper();
63 clang::QualType QT = lh.findType(
name,
64 gDebug > 5 ? cling::LookupHelper::WithDiagnostics
65 : cling::LookupHelper::NoDiagnostics);
69 "TClingTypeInfo::Init(name): clang type not found: %s",
name);
73 gDebug > 5 ? cling::LookupHelper::WithDiagnostics
74 : cling::LookupHelper::NoDiagnostics);
78 "TClingTypeInfo::Init(name): "
79 "clang type not found name: %s\n", buf.c_str());
86 "TClingTypeInfo::Init(name): found clang type name: %s\n",
95 "TClingTypeInfo::Init(name): clang type found: %s\n",
name);
108 TTHREAD_TLS_DECL( std::string, buf);
126 if (llvm::isa<clang::TypedefType>(*
fQualType)) {
129 clang::QualType QT =
fQualType.getCanonicalType();
131 const clang::TagType *tagQT = llvm::dyn_cast<clang::TagType>(QT.getTypePtr());
134 cling::Interpreter::PushTransactionRAII RAII(
fInterp);
136 const clang::TagDecl *TD = llvm::dyn_cast<clang::TagDecl>(tagQT->getDecl());
139 switch (TD->getAccess()) {
140 case clang::AS_public:
143 case clang::AS_protected:
146 case clang::AS_private:
150 if (TD->getDeclContext()->isNamespace())
155 assert(
false &&
"Unexpected value for the access property value in Clang");
166 const clang::CXXRecordDecl *CRD =
167 llvm::dyn_cast<clang::CXXRecordDecl>(TD);
170 if (CRD->isClass()) {
173 else if (CRD->isStruct()) {
176 else if (CRD->isUnion()) {
179 if (CRD->isThisDeclarationADefinition() && CRD->isAbstract()) {
196 clang::QualType QT =
fQualType.getCanonicalType();
198 if (QT->isArrayType()) {
199 QT = llvm::cast<clang::ArrayType>(QT)->getElementType();
202 else if (QT->isReferenceType()) {
204 QT = llvm::cast<clang::ReferenceType>(QT)->getPointeeType();
207 else if (QT->isPointerType()) {
209 QT = llvm::cast<clang::PointerType>(QT)->getPointeeType();
212 else if (QT->isMemberPointerType()) {
213 QT = llvm::cast<clang::MemberPointerType>(QT)->getPointeeType();
253 TTHREAD_TLS_DECL( std::string, buf);
externTVirtualMutex * gInterpreterMutex
#define R__LOCKGUARD(mutex)
long Property(long property, clang::QualType &qt) const
clang::QualType fQualType
std::string NormalizedName(const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const
Return the normalized name of the type (i.e.
const char * Name() const override
TClingTypeInfo(cling::Interpreter *interp)
void * QualTypePtr() const
Return the QualType as a void pointer.
cling::Interpreter * fInterp
bool IsValid() const override
void Init(const char *name)
const char * TrueName(const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const
Return the normalized name of the type (i.e.
std::string InsertStd(const char *tname)