35#include "cling/Interpreter/Value.h" 
   37#include <llvm/ADT/SmallVector.h> 
   66   std::unique_ptr<TClingMethodInfo> 
fMethod;
 
   68   const clang::FunctionDecl *
fDecl = 
nullptr;
 
   72   std::atomic<tcling_callfunc_Wrapper_t> 
fWrapper;
 
   74   mutable llvm::SmallVector<cling::Value, 8> 
fArgVals;
 
   86                         const std::string& wrapper,
 
   87                         bool withAccessControl = 
true);
 
   90                          std::ostringstream& callbuf, std::string& type_name,
 
   94   void make_narg_call(
const std::string &return_type, 
const unsigned N, std::ostringstream &typedefbuf,
 
   95                       std::ostringstream &callbuf, 
const std::string &class_name, 
int indent_level);
 
   98                       std::ostringstream& callbuf,
 
   99                       const std::string& class_name, 
int indent_level);
 
  102                                   const std::string& class_name,
 
  103                                   std::ostringstream& buf, 
int indent_level);
 
  106                                   const std::string& class_name,
 
  107                                   std::ostringstream& buf, 
int indent_level);
 
  118   template <
typename T>
 
  119   void execWithLL(
void* address, cling::Value* val);
 
  120   template <
typename T>
 
  121   void execWithULL(
void* address, cling::Value* val);
 
  129   void exec(
void* address, 
void* ret);
 
  144   template <
typename T>
 
  145   T 
ExecT(
void* address);
 
  175                                const std::string &type_name,
 
  176                                void* address = 
nullptr, 
unsigned long nary = 0UL);
 
  178                       unsigned long nary = 0UL, 
bool withFree = 
true);
 
  181                              const void* args[] = 0,
 
  192   void Init(std::unique_ptr<TClingMethodInfo>);
 
  209      return fMethod->GetTargetFunctionDecl();
 
  216   void SetArg(
unsigned long arg);
 
  219   void SetArg(
long long arg);
 
  220   void SetArg(
unsigned long long arg);
 
  222   void SetArgs(
const char* args);
 
  224                const char* arglist, 
Longptr_t* poffset);
 
  226                const char* arglist, 
bool objectIsConst, 
Longptr_t* poffset);
 
  235                     const llvm::SmallVectorImpl<clang::QualType>& 
proto,
 
  239                     const llvm::SmallVectorImpl<clang::QualType>& 
proto,
 
void(* tcling_callfunc_ctor_Wrapper_t)(void **, void *, unsigned long)
 
void(* tcling_callfunc_Wrapper_t)(void *, int, void **, void *)
 
void(* tcling_callfunc_dtor_Wrapper_t)(void *, unsigned long, int)
 
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
 
Option_t Option_t TPoint TPoint const char mode
 
Emulation of the CINT CallFunc class.
 
void * ExecDefaultConstructor(const TClingClassInfo *info, ROOT::TMetaUtils::EIOCtorCategory kind, const std::string &type_name, void *address=nullptr, unsigned long nary=0UL)
 
void ExecWithReturn(void *address, void *ret=nullptr)
 
std::unique_ptr< TClingMethodInfo > fMethod
Current method, we own.
 
ExecWithRetFunc_t InitRetAndExec(const clang::FunctionDecl *FD, cling::Value &ret)
 
void collect_type_info(clang::QualType &QT, std::ostringstream &typedefbuf, std::ostringstream &callbuf, std::string &type_name, EReferenceType &refType, bool &isPointer, int indent_level, bool forArgument)
 
const clang::FunctionDecl * GetDecl() const
 
void SetArgs(const char *args)
 
size_t fMinRequiredArguments
Number of required arguments.
 
size_t CalculateMinRequiredArguments()
 
double ExecDouble(void *address)
 
void SetArgArray(Longptr_t *argArr, int narg)
 
tcling_callfunc_Wrapper_t make_wrapper()
 
ExecWithRetFunc_t InitRetAndExecNoCtor(clang::QualType QT, cling::Value &ret)
 
tcling_callfunc_dtor_Wrapper_t make_dtor_wrapper(const TClingClassInfo *info)
 
TClingCallFunc(const TClingMethodInfo &minfo)
 
~TClingCallFunc()=default
 
std::function< void(void *address, cling::Value &ret)> ExecWithRetFunc_t
 
void ExecDestructor(const TClingClassInfo *info, void *address=nullptr, unsigned long nary=0UL, bool withFree=true)
 
Longptr_t ExecInt(void *address)
 
void execWithLL(void *address, cling::Value *val)
 
const clang::DeclContext * GetDeclContext() const
 
void * compile_wrapper(const std::string &wrapper_name, const std::string &wrapper, bool withAccessControl=true)
 
void SetFuncProto(const TClingClassInfo *info, const char *method, const char *proto, Longptr_t *poffset, ROOT::EFunctionMatchMode mode=ROOT::kConversionMatch)
 
TClingCallFunc(cling::Interpreter *interp)
 
TInterpreter::CallFuncIFacePtr_t IFacePtr()
 
void exec(void *address, void *ret)
 
std::atomic< tcling_callfunc_Wrapper_t > fWrapper
Pointer to compiled wrapper, we do not own.
 
void exec_with_valref_return(void *address, cling::Value *ret)
 
void Invoke(cling::Value *result=0) const
 
void make_narg_ctor(const unsigned N, std::ostringstream &typedefbuf, std::ostringstream &callbuf, const std::string &class_name, int indent_level)
 
void SetFunc(const TClingClassInfo *info, const char *method, const char *arglist, Longptr_t *poffset)
 
const clang::FunctionDecl * GetDecl()
 
void execWithULL(void *address, cling::Value *val)
 
void EvaluateArgList(const std::string &ArgList)
 
const clang::Decl * GetFunctionOrShadowDecl() const
 
void ExecWithArgsAndReturn(void *address, const void *args[]=0, int nargs=0, void *ret=0)
 
TClingCallFunc(const TClingCallFunc &rhs)
 
void Exec(void *address, TInterpreterValue *interpVal=0)
 
TClingMethodInfo * FactoryMethod() const
 
ExecWithRetFunc_t InitRetAndExecIntegral(clang::QualType QT, cling::Value &ret)
 
int get_wrapper_code(std::string &wrapper_name, std::string &wrapper)
 
size_t GetMinRequiredArguments()
 
tcling_callfunc_ctor_Wrapper_t make_ctor_wrapper(const TClingClassInfo *, ROOT::TMetaUtils::EIOCtorCategory, const std::string &)
 
void IgnoreExtraArgs(bool ignore)
 
TClingCallFunc & operator=(const TClingCallFunc &rhs)=delete
 
long long ExecInt64(void *address)
 
cling::Interpreter * fInterp
Cling interpreter, we do not own.
 
void make_narg_call(const std::string &return_type, const unsigned N, std::ostringstream &typedefbuf, std::ostringstream &callbuf, const std::string &class_name, int indent_level)
 
const clang::FunctionDecl * fDecl
Decl for the method.
 
void make_narg_call_with_return(const unsigned N, const std::string &class_name, std::ostringstream &buf, int indent_level)
 
llvm::SmallVector< cling::Value, 8 > fArgVals
Stored function arguments, we own.
 
void make_narg_ctor_with_return(const unsigned N, const std::string &class_name, std::ostringstream &buf, int indent_level)
 
ExecWithRetFunc_t InitRetAndExecBuiltin(clang::QualType QT, const clang::BuiltinType *BT, cling::Value &ret)
 
Emulation of the CINT ClassInfo class.
 
Emulation of the CINT MethodInfo class.