Emulation of the CINT ClassInfo class.
The CINT C++ interpreter provides an interface to metadata about a class through the ClassInfo class. This class provides the same functionality, using an interface as close as possible to ClassInfo but the class metadata comes from the Clang C++ compiler, not CINT.
Definition at line 59 of file TClingClassInfo.h.
Public Types | |
enum | EInheritanceMode { kInThisScope = 0 , kWithInheritance = 1 } |
Public Member Functions | |
TClingClassInfo () | |
TClingClassInfo (cling::Interpreter *, Bool_t all=kTRUE) | |
TClingClassInfo (cling::Interpreter *, const char *classname, bool intantiateTemplate=kTRUE) | |
TClingClassInfo (cling::Interpreter *interp, const clang::Decl *D) | |
TClingClassInfo (cling::Interpreter *interp, const clang::Type &tag) | |
TClingClassInfo (const TClingClassInfo &rhs) | |
void | AddBaseOffsetFunction (const clang::Decl *decl, OffsetPtrFunc_t func) |
void | AddBaseOffsetValue (const clang::Decl *decl, ptrdiff_t offset) |
long | ClassProperty () const |
void | Delete (void *arena, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
void | DeleteArray (void *arena, bool dtorOnly, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
void | Destruct (void *arena, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
const char * | FileName () |
void | FullName (std::string &output, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
ptrdiff_t | GetBaseOffset (TClingClassInfo *toBase, void *address, bool isDerivedObject) |
const clang::ValueDecl * | GetDataMember (const char *name) const |
TDictionary::DeclId_t | GetDeclId () const |
const clang::FunctionTemplateDecl * | GetFunctionTemplate (const char *fname) const |
TClingMethodInfo | GetMethod (const char *fname) const |
TClingMethodInfo | GetMethod (const char *fname, const char *proto, bool objectIsConst, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch, EInheritanceMode imode=kWithInheritance) const |
TClingMethodInfo | GetMethod (const char *fname, const char *proto, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch, EInheritanceMode imode=kWithInheritance) const |
TClingMethodInfo | GetMethod (const char *fname, const llvm::SmallVectorImpl< clang::QualType > &proto, bool objectIsConst, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch, EInheritanceMode imode=kWithInheritance) const |
TClingMethodInfo | GetMethod (const char *fname, const llvm::SmallVectorImpl< clang::QualType > &proto, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch, EInheritanceMode imode=kWithInheritance) const |
int | GetMethodNArg (const char *method, const char *proto, Bool_t objectIsConst, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch) const |
TClingMethodInfo | GetMethodWithArgs (const char *fname, const char *arglist, bool objectIsConst, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch, EInheritanceMode imode=kWithInheritance) const |
TClingMethodInfo | GetMethodWithArgs (const char *fname, const char *arglist, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch, EInheritanceMode imode=kWithInheritance) const |
Longptr_t | GetOffset (const clang::CXXMethodDecl *md) const |
const clang::Type * | GetType () const |
EDataType | GetUnderlyingType () const |
std::vector< std::string > | GetUsingNamespaces () |
ROOT::TMetaUtils::EIOCtorCategory | HasDefaultConstructor (bool checkio=false, std::string *type_name=nullptr) const |
bool | HasMethod (const char *name) const |
void | Init (const char *name) |
void | Init (const clang::Decl *decl) |
void | Init (const clang::Type &tag) |
void | Init (int tagnum) |
int | InternalNext () |
bool | IsBase (const char *name) const |
bool | IsLoaded () const |
bool | IsScopedEnum () const |
bool | IsValidMethod (const char *method, const char *proto, Bool_t objectIsConst, Longptr_t *offset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch) const |
void * | New (const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
void * | New (int n, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
void * | New (int n, void *arena, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
void * | New (void *arena, const ROOT::TMetaUtils::TNormalizedCtxt &normCtxt) const |
int | Next () |
TClingClassInfo & | operator= (const TClingClassInfo &rhs) |
long | Property () const |
int | RootFlag () const |
void | SetDecl (const clang::Decl *D) |
int | Size () const |
Longptr_t | Tagnum () const |
const char * | Title () |
const char * | TmpltName () const |
Public Member Functions inherited from TClingDeclInfo | |
TClingDeclInfo ()=default | |
TClingDeclInfo (const clang::Decl *D) | |
virtual | ~TClingDeclInfo () |
clang::Decl * | GetDecl () |
virtual const clang::Decl * | GetDecl () const |
virtual bool | IsValid () const |
virtual const char * | Name () const |
Static Public Member Functions | |
static bool | IsEnum (cling::Interpreter *interp, const char *name) |
Private Attributes | |
std::string | fDeclFileName |
bool | fDescend: 1 |
bool | fFirstTime: 1 |
cling::Interpreter * | fInterp = nullptr |
bool | fIsIter: 1 |
clang::DeclContext::decl_iterator | fIter |
bool | fIterAll: 1 |
std::vector< clang::DeclContext::decl_iterator > | fIterStack |
llvm::DenseMap< const clang::Decl *, std::pair< ptrdiff_t, OffsetPtrFunc_t > > | fOffsetCache |
std::mutex | fOffsetCacheMutex |
std::string | fTitle |
const clang::Type * | fType = nullptr |
Additional Inherited Members | |
Protected Member Functions inherited from TClingDeclInfo | |
long | Property (long property, clang::QualType &qt) const |
Protected Attributes inherited from TClingDeclInfo | |
const clang::Decl * | fDecl = nullptr |
std::string | fNameCache |
Enumerator | |
---|---|
kInThisScope | |
kWithInheritance |
Definition at line 79 of file TClingClassInfo.h.
|
inlineexplicit |
Definition at line 85 of file TClingClassInfo.h.
|
inline |
Definition at line 89 of file TClingClassInfo.h.
Definition at line 71 of file TClingClassInfo.cxx.
|
explicit |
Definition at line 81 of file TClingClassInfo.cxx.
|
explicit |
|
explicit |
|
inline |
Definition at line 118 of file TClingClassInfo.h.
void TClingClassInfo::AddBaseOffsetValue | ( | const clang::Decl * | decl, |
ptrdiff_t | offset | ||
) |
Definition at line 131 of file TClingClassInfo.cxx.
long TClingClassInfo::ClassProperty | ( | ) | const |
Definition at line 141 of file TClingClassInfo.cxx.
void TClingClassInfo::Delete | ( | void * | arena, |
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 200 of file TClingClassInfo.cxx.
void TClingClassInfo::DeleteArray | ( | void * | arena, |
bool | dtorOnly, | ||
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 217 of file TClingClassInfo.cxx.
void TClingClassInfo::Destruct | ( | void * | arena, |
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 237 of file TClingClassInfo.cxx.
const char * TClingClassInfo::FileName | ( | ) |
Definition at line 1362 of file TClingClassInfo.cxx.
void TClingClassInfo::FullName | ( | std::string & | output, |
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 1372 of file TClingClassInfo.cxx.
ptrdiff_t TClingClassInfo::GetBaseOffset | ( | TClingClassInfo * | toBase, |
void * | address, | ||
bool | isDerivedObject | ||
) |
Definition at line 612 of file TClingClassInfo.cxx.
const clang::ValueDecl * TClingClassInfo::GetDataMember | ( | const char * | name | ) | const |
Definition at line 278 of file TClingClassInfo.cxx.
|
inline |
Definition at line 133 of file TClingClassInfo.h.
const FunctionTemplateDecl * TClingClassInfo::GetFunctionTemplate | ( | const char * | fname | ) | const |
Definition at line 248 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethod | ( | const char * | fname | ) | const |
Definition at line 292 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethod | ( | const char * | fname, |
const char * | proto, | ||
bool | objectIsConst, | ||
Longptr_t * | poffset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch , |
||
EInheritanceMode | imode = kWithInheritance |
||
) | const |
Definition at line 339 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethod | ( | const char * | fname, |
const char * | proto, | ||
Longptr_t * | poffset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch , |
||
EInheritanceMode | imode = kWithInheritance |
||
) | const |
Definition at line 332 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethod | ( | const char * | fname, |
const llvm::SmallVectorImpl< clang::QualType > & | proto, | ||
bool | objectIsConst, | ||
Longptr_t * | poffset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch , |
||
EInheritanceMode | imode = kWithInheritance |
||
) | const |
Definition at line 433 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethod | ( | const char * | fname, |
const llvm::SmallVectorImpl< clang::QualType > & | proto, | ||
Longptr_t * | poffset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch , |
||
EInheritanceMode | imode = kWithInheritance |
||
) | const |
Definition at line 425 of file TClingClassInfo.cxx.
int TClingClassInfo::GetMethodNArg | ( | const char * | method, |
const char * | proto, | ||
Bool_t | objectIsConst, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch |
||
) | const |
Definition at line 565 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethodWithArgs | ( | const char * | fname, |
const char * | arglist, | ||
bool | objectIsConst, | ||
Longptr_t * | poffset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch , |
||
EInheritanceMode | imode = kWithInheritance |
||
) | const |
Definition at line 506 of file TClingClassInfo.cxx.
TClingMethodInfo TClingClassInfo::GetMethodWithArgs | ( | const char * | fname, |
const char * | arglist, | ||
Longptr_t * | poffset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch , |
||
EInheritanceMode | imode = kWithInheritance |
||
) | const |
Definition at line 499 of file TClingClassInfo.cxx.
Longptr_t TClingClassInfo::GetOffset | ( | const clang::CXXMethodDecl * | md | ) | const |
Definition at line 585 of file TClingClassInfo.cxx.
|
inline |
Definition at line 161 of file TClingClassInfo.h.
EDataType TClingClassInfo::GetUnderlyingType | ( | ) | const |
Definition at line 833 of file TClingClassInfo.cxx.
std::vector< std::string > TClingClassInfo::GetUsingNamespaces | ( | ) |
Definition at line 643 of file TClingClassInfo.cxx.
ROOT::TMetaUtils::EIOCtorCategory TClingClassInfo::HasDefaultConstructor | ( | bool | checkio = false , |
std::string * | type_name = nullptr |
||
) | const |
Definition at line 672 of file TClingClassInfo.cxx.
bool TClingClassInfo::HasMethod | ( | const char * | name | ) | const |
Definition at line 710 of file TClingClassInfo.cxx.
void TClingClassInfo::Init | ( | const char * | name | ) |
Definition at line 722 of file TClingClassInfo.cxx.
void TClingClassInfo::Init | ( | const clang::Decl * | decl | ) |
void TClingClassInfo::Init | ( | const clang::Type & | tag | ) |
void TClingClassInfo::Init | ( | int | tagnum | ) |
Definition at line 762 of file TClingClassInfo.cxx.
int TClingClassInfo::InternalNext | ( | ) |
Definition at line 929 of file TClingClassInfo.cxx.
bool TClingClassInfo::IsBase | ( | const char * | name | ) | const |
Definition at line 791 of file TClingClassInfo.cxx.
|
static |
Definition at line 815 of file TClingClassInfo.cxx.
bool TClingClassInfo::IsLoaded | ( | ) | const |
Definition at line 883 of file TClingClassInfo.cxx.
bool TClingClassInfo::IsScopedEnum | ( | ) | const |
Definition at line 826 of file TClingClassInfo.cxx.
bool TClingClassInfo::IsValidMethod | ( | const char * | method, |
const char * | proto, | ||
Bool_t | objectIsConst, | ||
Longptr_t * | offset, | ||
ROOT::EFunctionMatchMode | mode = ROOT::kConversionMatch |
||
) | const |
Definition at line 913 of file TClingClassInfo.cxx.
void * TClingClassInfo::New | ( | const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ) | const |
Definition at line 1062 of file TClingClassInfo.cxx.
void * TClingClassInfo::New | ( | int | n, |
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 1110 of file TClingClassInfo.cxx.
void * TClingClassInfo::New | ( | int | n, |
void * | arena, | ||
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 1160 of file TClingClassInfo.cxx.
void * TClingClassInfo::New | ( | void * | arena, |
const ROOT::TMetaUtils::TNormalizedCtxt & | normCtxt | ||
) | const |
Definition at line 1206 of file TClingClassInfo.cxx.
int TClingClassInfo::Next | ( | ) |
Definition at line 1057 of file TClingClassInfo.cxx.
|
inline |
Definition at line 100 of file TClingClassInfo.h.
long TClingClassInfo::Property | ( | ) | const |
Definition at line 1251 of file TClingClassInfo.cxx.
int TClingClassInfo::RootFlag | ( | ) | const |
Definition at line 1307 of file TClingClassInfo.cxx.
|
inline |
Definition at line 128 of file TClingClassInfo.h.
int TClingClassInfo::Size | ( | ) | const |
Definition at line 1316 of file TClingClassInfo.cxx.
Longptr_t TClingClassInfo::Tagnum | ( | ) | const |
Definition at line 1354 of file TClingClassInfo.cxx.
const char * TClingClassInfo::Title | ( | ) |
Definition at line 1394 of file TClingClassInfo.cxx.
const char * TClingClassInfo::TmpltName | ( | ) | const |
Definition at line 1434 of file TClingClassInfo.cxx.
|
private |
Definition at line 72 of file TClingClassInfo.h.
|
private |
Definition at line 65 of file TClingClassInfo.h.
|
private |
Definition at line 64 of file TClingClassInfo.h.
|
private |
Definition at line 63 of file TClingClassInfo.h.
|
private |
Definition at line 67 of file TClingClassInfo.h.
|
private |
Definition at line 68 of file TClingClassInfo.h.
|
private |
Definition at line 66 of file TClingClassInfo.h.
|
private |
Definition at line 70 of file TClingClassInfo.h.
|
private |
Definition at line 75 of file TClingClassInfo.h.
|
private |
Definition at line 74 of file TClingClassInfo.h.
|
private |
Definition at line 71 of file TClingClassInfo.h.
|
private |
Definition at line 69 of file TClingClassInfo.h.