Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TClingUtils.h
Go to the documentation of this file.
1// @(#)root/metautils:$Id$
2// Author: Axel Naumann, Nov 2011
3
4/*************************************************************************
5 * Copyright (C) 1995-2011, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TMetaUtils
13#define ROOT_TMetaUtils
14
16
17#include <functional>
18#include <set>
19#include <string>
20#include <unordered_set>
21#include <vector>
22#include <list>
23#include <map>
24#include <utility>
25
26#include <cstdlib>
27
28#if defined(__GNUC__) && !defined(__clang__)
29#pragma GCC diagnostic push
30#pragma GCC diagnostic ignored "-Wpragmas"
31#pragma GCC diagnostic ignored "-Wclass-memaccess"
32#endif
33
34#include "clang/Basic/Module.h"
35
36#if defined(__GNUC__) && !defined(__clang__)
37#pragma GCC diagnostic pop
38#endif
39
40namespace llvm {
41 class StringRef;
42}
43
44namespace clang {
45 class ASTContext;
46 class Attr;
47 class ClassTemplateDecl;
48 class ClassTemplateSpecializationDecl;
49 class CompilerInstance;
50 class CXXBaseSpecifier;
51 class CXXRecordDecl;
52 class Decl;
53 class DeclContext;
54 class DeclaratorDecl;
55 class FieldDecl;
56 class FunctionDecl;
57 class NamedDecl;
58 class ParmVarDecl;
59 class PresumedLoc;
60 class QualType;
61 class RecordDecl;
62 class SourceLocation;
63 class TagDecl;
64 class TemplateDecl;
65 class TemplateName;
66 class TemplateArgument;
67 class TemplateArgumentList;
68 class TemplateParameterList;
69 class Type;
70 class TypeDecl;
71 class TypedefNameDecl;
72 struct PrintingPolicy;
73}
74
75namespace cling {
76 class Interpreter;
77 class LookupHelper;
78 namespace utils {
79 namespace Transform {
80 struct Config;
81 }
82 }
83}
84
85// For ROOT::ESTLType
86#include "ESTLType.h"
87
88// for TClassEdit::TInterpreterLookupHelper
89#include "TClassEdit.h"
90
91#include "Varargs.h"
92
93namespace ROOT {
94namespace TMetaUtils {
95
96///\returns the resolved normalized absolute path possibly resolving symlinks.
97std::string GetRealPath(const std::string &path);
98
99// Forward Declarations --------------------------------------------------------
100class AnnotatedRecordDecl;
101
102// Constants, typedefs and Enums -----------------------------------------------
103
104// Convention for the ROOT relevant properties
105namespace propNames{
106 static const std::string separator("@@@");
107 static const std::string iotype("iotype");
108 static const std::string name("name");
109 static const std::string pattern("pattern");
110 static const std::string ioname("ioname");
111 static const std::string comment("comment");
112 static const std::string nArgsToKeep("nArgsToKeep");
113 static const std::string persistent("persistent");
114 static const std::string transient("transient");
115}
116
117// Get the array index information for a data member.
119
121 const cling::Interpreter &interp,
122 const TNormalizedCtxt &normCtxt,
123 std::ostream& dictStream,
124 bool isAutoStreamer);
125
126const int kInfo = 0;
127const int kNote = 500;
128const int kWarning = 1000;
129const int kError = 2000;
130const int kSysError = 3000;
131const int kFatal = 4000;
132const int kMaxLen = 1024;
133
134// Classes ---------------------------------------------------------------------
135class TNormalizedCtxtImpl;
136
137//______________________________________________________________________________
139private:
140 TNormalizedCtxtImpl* fImpl;
141public:
142 using Config_t = cling::utils::Transform::Config;
143 using TypesCont_t = std::set<const clang::Type*>;
144 using TemplPtrIntMap_t = std::map<const clang::ClassTemplateDecl*, int>;
145
146 TNormalizedCtxt(const cling::LookupHelper &lh);
147 TNormalizedCtxt(const TNormalizedCtxt& other);
149 const Config_t& GetConfig() const;
150 const TypesCont_t &GetTypeWithAlternative() const;
151
152 void AddTemplAndNargsToKeep(const clang::ClassTemplateDecl* templ, unsigned int i);
153 int GetNargsToKeep(const clang::ClassTemplateDecl* templ) const;
155 void keepTypedef(const cling::LookupHelper &lh, const char* name,
156 bool replace = false);
157};
158
159//______________________________________________________________________________
161public:
162 typedef bool (*ExistingTypeCheck_t)(const std::string &tname, std::string &result);
163 typedef bool (*AutoParse_t)(const char *name);
164
165private:
166 cling::Interpreter *fInterpreter;
171 const int *fPDebug; // debug flag, might change at runtime thus *
172 bool WantDiags() const { return fPDebug && *fPDebug > 5; }
173
174public:
175 TClingLookupHelper(cling::Interpreter &interpreter, TNormalizedCtxt &normCtxt,
176 ExistingTypeCheck_t existingTypeCheck,
177 AutoParse_t autoParse,
178 bool *shuttingDownPtr,
179 const int *pgDebug = 0);
180 virtual ~TClingLookupHelper() { /* we're not owner */ }
181
182 virtual bool ExistingTypeCheck(const std::string &tname, std::string &result);
183 virtual void GetPartiallyDesugaredName(std::string &nameLong);
184 virtual bool IsAlreadyPartiallyDesugaredName(const std::string &nondef, const std::string &nameLong);
185 virtual bool IsDeclaredScope(const std::string &base, bool &isInlined);
186 virtual bool GetPartiallyDesugaredNameWithScopeHandling(const std::string &tname, std::string &result, bool dropstd = true);
187 virtual void ShuttingDownSignal();
188};
189
190//______________________________________________________________________________
192private:
193 static std::string BuildDemangledTypeInfo(const clang::RecordDecl *rDecl,
194 const std::string &normalizedName);
196 const clang::RecordDecl* fDecl;
197 std::string fRequestedName;
198 std::string fNormalizedName;
205
206public:
212 kHasVersion = 0x08
213 };
214
215 AnnotatedRecordDecl(long index,
216 const clang::RecordDecl *decl,
217 bool rStreamerInfo,
218 bool rNoStreamer,
219 bool rRequestNoInputOperator,
220 bool rRequestOnlyTClass,
221 int rRequestedVersionNumber,
222 const cling::Interpreter &interpret,
223 const TNormalizedCtxt &normCtxt);
224
225 AnnotatedRecordDecl(long index,
226 const clang::RecordDecl *decl,
227 const char *requestName,
228 bool rStreamerInfo,
229 bool rNoStreamer,
230 bool rRequestNoInputOperator,
231 bool rRequestOnlyTClass,
232 int rRequestedVersionNumber,
233 const cling::Interpreter &interpret,
234 const TNormalizedCtxt &normCtxt);
235
236 AnnotatedRecordDecl(long index,
237 const clang::Type *requestedType,
238 const clang::RecordDecl *decl,
239 const char *requestedName,
240 bool rStreamerInfo,
241 bool rNoStreamer,
242 bool rRequestNoInputOperator,
243 bool rRequestOnlyTClass,
244 int rRequestedVersionNumber,
245 const cling::Interpreter &interpret,
246 const TNormalizedCtxt &normCtxt);
247
248 AnnotatedRecordDecl(long index,
249 const clang::Type *requestedType,
250 const clang::RecordDecl *decl,
251 const char *requestedName,
252 unsigned int nTemplateArgsToSkip,
253 bool rStreamerInfo,
254 bool rNoStreamer,
255 bool rRequestNoInputOperator,
256 bool rRequestOnlyTClass,
257 int rRequestedVersionNumber,
258 const cling::Interpreter &interpret,
259 const TNormalizedCtxt &normCtxt);
260
262 // Nothing to do we do not own the pointer;
263 }
264
265
266 long GetRuleIndex() const { return fRuleIndex; }
267
268 const char *GetRequestedName() const { return fRequestedName.c_str(); }
269 const char *GetNormalizedName() const { return fNormalizedName.c_str(); }
270 const std::string &GetDemangledTypeInfo() const { return fDemangledTypeInfo; }
271 bool HasClassVersion() const { return fRequestedVersionNumber >=0 ; }
272 bool RequestStreamerInfo() const {
273 // Equivalent to CINT's cl.RootFlag() & G__USEBYTECOUNT
275 }
277 bool RequestNoStreamer() const { return fRequestNoStreamer; }
278 bool RequestOnlyTClass() const { return fRequestOnlyTClass; }
280 int RootFlag() const {
281 // Return the request (streamerInfo, has_version, etc.) combined in a single
282 // int. See RScanner::AnnotatedRecordDecl::ERootFlag.
283 int result = 0;
284 if (fRequestNoStreamer) result = kNoStreamer;
286 if (fRequestStreamerInfo) result |= kStreamerInfo;
287 if (fRequestedVersionNumber > -1) result |= kHasVersion;
288 return result;
289 }
290 const clang::RecordDecl* GetRecordDecl() const { return fDecl; }
291
292 operator clang::RecordDecl const *() const {
293 return fDecl;
294 }
295
296 bool operator<(const AnnotatedRecordDecl& right) const
297 {
298 return fRuleIndex < right.fRuleIndex;
299 }
300
302 bool operator() (const AnnotatedRecordDecl& right, const AnnotatedRecordDecl& left) const
303 {
304 return left.fNormalizedName < right.fNormalizedName;
305 }
306 };
307};
308
309//______________________________________________________________________________
311private:
312 const std::string fArgTypeName;
313 const clang::CXXRecordDecl *fArgType;
314
315public:
316 RConstructorType(const char *type_of_arg, const cling::Interpreter&);
317
318 const char *GetName() const ;
319 const clang::CXXRecordDecl *GetType() const;
320};
321typedef std::list<RConstructorType> RConstructorTypes;
322
323// Functions -------------------------------------------------------------------
324
325//______________________________________________________________________________
326int extractAttrString(clang::Attr* attribute, std::string& attrString);
327
328//______________________________________________________________________________
329int extractPropertyNameValFromString(const std::string attributeStr,std::string& attrName, std::string& attrValue);
330
331//______________________________________________________________________________
332int extractPropertyNameVal(clang::Attr* attribute, std::string& attrName, std::string& attrValue);
333
334//______________________________________________________________________________
335bool ExtractAttrPropertyFromName(const clang::Decl& decl,
336 const std::string& propName,
337 std::string& propValue);
338
339//______________________________________________________________________________
340bool ExtractAttrIntPropertyFromName(const clang::Decl& decl,
341 const std::string& propName,
342 int& propValue);
343
344//______________________________________________________________________________
345bool RequireCompleteType(const cling::Interpreter &interp, const clang::CXXRecordDecl *cl);
346
347//______________________________________________________________________________
348bool RequireCompleteType(const cling::Interpreter &interp, clang::SourceLocation Loc, clang::QualType Type);
349
350//______________________________________________________________________________
351// Add default template parameters.
352clang::QualType AddDefaultParameters(clang::QualType instanceType,
353 const cling::Interpreter &interpret,
354 const TNormalizedCtxt &normCtxt);
355
356//______________________________________________________________________________
357llvm::StringRef DataMemberInfo__ValidArrayIndex(const clang::DeclaratorDecl &m, int *errnum = 0, llvm::StringRef *errstr = 0);
358
360
361//______________________________________________________________________________
362EIOCtorCategory CheckConstructor(const clang::CXXRecordDecl*, const RConstructorType&, const cling::Interpreter& interp);
363
364//______________________________________________________________________________
365bool CheckDefaultConstructor(const clang::CXXRecordDecl*, const cling::Interpreter& interp);
366
367//______________________________________________________________________________
368EIOCtorCategory CheckIOConstructor(const clang::CXXRecordDecl*, const char *, const clang::CXXRecordDecl *, const cling::Interpreter& interp);
369
370//______________________________________________________________________________
371const clang::FunctionDecl* ClassInfo__HasMethod(const clang::DeclContext *cl, char const*, const cling::Interpreter& interp);
372
373//______________________________________________________________________________
374void CreateNameTypeMap(clang::CXXRecordDecl const&, std::map<std::string, ROOT::Internal::TSchemaType>&);
375
376//______________________________________________________________________________
377int ElementStreamer(std::ostream& finalString,
378 const clang::NamedDecl &forcontext,
379 const clang::QualType &qti,
380 const char *t,
381 int rwmode,
382 const cling::Interpreter &interp,
383 const char *tcl=0);
384
385//______________________________________________________________________________
386bool IsBase(const clang::CXXRecordDecl *cl, const clang::CXXRecordDecl *base, const clang::CXXRecordDecl *context,const cling::Interpreter &interp);
387
388//______________________________________________________________________________
389bool IsBase(const clang::FieldDecl &m, const char* basename, const cling::Interpreter &interp);
390
391//______________________________________________________________________________
392bool HasCustomOperatorNewArrayPlacement(clang::RecordDecl const&, const cling::Interpreter &interp);
393
394//______________________________________________________________________________
395bool HasCustomOperatorNewPlacement(char const*, clang::RecordDecl const&, const cling::Interpreter&);
396
397//______________________________________________________________________________
398bool HasCustomOperatorNewPlacement(clang::RecordDecl const&, const cling::Interpreter&);
399
400//______________________________________________________________________________
401bool HasDirectoryAutoAdd(clang::CXXRecordDecl const*, const cling::Interpreter&);
402
403//______________________________________________________________________________
404bool HasIOConstructor(clang::CXXRecordDecl const*, std::string&, const RConstructorTypes&, const cling::Interpreter&);
405
406//______________________________________________________________________________
407bool HasNewMerge(clang::CXXRecordDecl const*, const cling::Interpreter&);
408
409//______________________________________________________________________________
410bool HasOldMerge(clang::CXXRecordDecl const*, const cling::Interpreter&);
411
412//______________________________________________________________________________
413bool hasOpaqueTypedef(clang::QualType instanceType, const TNormalizedCtxt &normCtxt);
414
415//______________________________________________________________________________
416bool hasOpaqueTypedef(const AnnotatedRecordDecl &cl, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt);
417
418//______________________________________________________________________________
419bool HasResetAfterMerge(clang::CXXRecordDecl const*, const cling::Interpreter&);
420
421//______________________________________________________________________________
422bool NeedDestructor(clang::CXXRecordDecl const*, const cling::Interpreter&);
423
424//______________________________________________________________________________
425bool NeedTemplateKeyword(clang::CXXRecordDecl const*);
426
427//______________________________________________________________________________
428bool CheckPublicFuncWithProto(clang::CXXRecordDecl const*, char const*, char const*,
429 const cling::Interpreter&, bool diagnose);
430
431//______________________________________________________________________________
432long GetLineNumber(clang::Decl const*);
433
434//______________________________________________________________________________
435bool GetNameWithinNamespace(std::string&, std::string&, std::string&, clang::CXXRecordDecl const*);
436
437//______________________________________________________________________________
438void GetQualifiedName(std::string &qual_name, const clang::QualType &type, const clang::NamedDecl &forcontext);
439
440//----
441std::string GetQualifiedName(const clang::QualType &type, const clang::NamedDecl &forcontext);
442
443//______________________________________________________________________________
444void GetQualifiedName(std::string &qual_name, const clang::Type &type, const clang::NamedDecl &forcontext);
445
446//----
447std::string GetQualifiedName(const clang::Type &type, const clang::NamedDecl &forcontext);
448
449//______________________________________________________________________________
450void GetQualifiedName(std::string &qual_name, const clang::NamedDecl &nd);
451
452//----
453std::string GetQualifiedName(const clang::NamedDecl &nd);
454
455//______________________________________________________________________________
456void GetQualifiedName(std::string &qual_name, const AnnotatedRecordDecl &annotated);
457
458//----
459std::string GetQualifiedName(const AnnotatedRecordDecl &annotated);
460
461//______________________________________________________________________________
462void GetQualifiedName(std::string &qual_name, const clang::RecordDecl &recordDecl);
463
464//----
465std::string GetQualifiedName(const clang::RecordDecl &recordDecl);
466
467//______________________________________________________________________________
468int WriteNamespaceHeader(std::ostream&, const clang::RecordDecl *);
469
470//______________________________________________________________________________
471int WriteNamespaceHeader(std::ostream&, const clang::DeclContext *);
472
473//______________________________________________________________________________
474void WritePointersSTL(const AnnotatedRecordDecl &cl, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt);
475
476//______________________________________________________________________________
477int GetClassVersion(const clang::RecordDecl *cl, const cling::Interpreter &interp);
478
479//______________________________________________________________________________
480std::pair<bool, int> GetTrivialIntegralReturnValue(const clang::FunctionDecl *funcCV, const cling::Interpreter &interp);
481
482//______________________________________________________________________________
483int IsSTLContainer(const AnnotatedRecordDecl &annotated);
484
485//______________________________________________________________________________
486ROOT::ESTLType IsSTLContainer(const clang::FieldDecl &m);
487
488//______________________________________________________________________________
489int IsSTLContainer(const clang::CXXBaseSpecifier &base);
490
491void foreachHeaderInModule(const clang::Module &module,
492 const std::function<void(const clang::Module::Header &)> &closure,
493 bool includeDirectlyUsedModules = true);
494
495//______________________________________________________________________________
496const char *ShortTypeName(const char *typeDesc);
497
498//______________________________________________________________________________
499std::string ShortTypeName(const clang::FieldDecl &m);
500
501//______________________________________________________________________________
502bool IsStreamableObject(const clang::FieldDecl &m, const cling::Interpreter& interp);
503
504//______________________________________________________________________________
505clang::RecordDecl *GetUnderlyingRecordDecl(clang::QualType type);
506
507//______________________________________________________________________________
508std::string TrueName(const clang::FieldDecl &m);
509
510//______________________________________________________________________________
511const clang::CXXRecordDecl *ScopeSearch(const char *name,
512 const cling::Interpreter &gInterp,
513 bool diagnose,
514 const clang::Type** resultType);
515
516//______________________________________________________________________________
517void WriteAuxFunctions(std::ostream& finalString,
518 const AnnotatedRecordDecl &cl,
519 const clang::CXXRecordDecl *decl,
520 const cling::Interpreter &interp,
521 const RConstructorTypes& ctorTypes,
522 const TNormalizedCtxt &normCtxt);
523
524
525//______________________________________________________________________________
526const clang::FunctionDecl *GetFuncWithProto(const clang::Decl* cinfo,
527 const char *method,
528 const char *proto,
529 const cling::Interpreter &gInterp,
530 bool diagnose);
531
532//______________________________________________________________________________
533void WriteClassCode(CallWriteStreamer_t WriteStreamerFunc,
534 const AnnotatedRecordDecl &cl,
535 const cling::Interpreter &interp,
536 const TNormalizedCtxt &normCtxt,
537 std::ostream& finalString,
538 const RConstructorTypes& ctorTypes,
539 bool isGenreflex);
540
541//______________________________________________________________________________
542void WriteClassInit(std::ostream& finalString,
543 const AnnotatedRecordDecl &cl,
544 const clang::CXXRecordDecl *decl,
545 const cling::Interpreter &interp,
546 const TNormalizedCtxt &normCtxt,
547 const RConstructorTypes& ctorTypes,
548 bool& needCollectionProxy);
549
550//______________________________________________________________________________
552 const clang::CXXRecordDecl* clxx,
553 const cling::Interpreter &interp,
554 const TNormalizedCtxt &normCtxt);
555
556//______________________________________________________________________________
558 const clang::CXXRecordDecl* clxx,
559 const cling::Interpreter &interp,
560 const TNormalizedCtxt &normCtxt);
561
562//______________________________________________________________________________
563// Return the header file to be included to declare the Decl
564llvm::StringRef GetFileName(const clang::Decl& decl,
565 const cling::Interpreter& interp);
566
567//______________________________________________________________________________
568// Return the dictionary file name for a module
569std::string GetModuleFileName(const char* moduleName);
570
571//______________________________________________________________________________
572// Return (in the argument 'output') a mangled version of the C++ symbol/type (pass as 'input')
573// that can be used in C++ as a variable name.
574void GetCppName(std::string &output, const char *input);
575
576//______________________________________________________________________________
577// Return the type with all parts fully qualified (most typedefs),
578// including template arguments, appended to name.
579void GetFullyQualifiedTypeName(std::string &name, const clang::QualType &type, const cling::Interpreter &interpreter);
580
581//______________________________________________________________________________
582// Return the type with all parts fully qualified (most typedefs),
583// including template arguments, appended to name, without using the interpreter
584void GetFullyQualifiedTypeName(std::string &name, const clang::QualType &type, const clang::ASTContext &);
585
586//______________________________________________________________________________
587// Return the type normalized for ROOT,
588// keeping only the ROOT opaque typedef (Double32_t, etc.) and
589// adding default template argument for all types except those explicitly
590// requested to be drop by the user.
591// Default template for STL collections are not yet removed by this routine.
592clang::QualType GetNormalizedType(const clang::QualType &type, const cling::Interpreter &interpreter, const TNormalizedCtxt &normCtxt);
593
594//______________________________________________________________________________
595// Return the type name normalized for ROOT,
596// keeping only the ROOT opaque typedef (Double32_t, etc.) and
597// adding default template argument for all types except the STL collections
598// where we remove the default template argument if any.
599void GetNormalizedName(std::string &norm_name, const clang::QualType &type, const cling::Interpreter &interpreter, const TNormalizedCtxt &normCtxt);
600
601//______________________________________________________________________________
602// Alternative signature
603void GetNormalizedName(std::string &norm_name,
604 const clang::TypeDecl* typeDecl,
605 const cling::Interpreter &interpreter);
606
607//______________________________________________________________________________
608// Analog to GetNameForIO but with types.
609// It uses the LookupHelper of Cling to transform the name in type.
610clang::QualType GetTypeForIO(const clang::QualType& templateInstanceType,
611 const cling::Interpreter &interpreter,
612 const TNormalizedCtxt &normCtxt,
614
615//______________________________________________________________________________
616// Get the name and the type for the IO given a certain type. In some sense the
617// combination of GetNameForIO and GetTypeForIO.
618std::pair<std::string,clang::QualType> GetNameTypeForIO(const clang::QualType& templateInstanceType,
619 const cling::Interpreter &interpreter,
620 const TNormalizedCtxt &normCtxt,
622
623//______________________________________________________________________________
624// Returns comment in a meaningful way
625llvm::StringRef GetComment(const clang::Decl &decl, clang::SourceLocation *loc = 0);
626
627//______________________________________________________________________________
628// Returns the comment of the ClassDef macro
629llvm::StringRef GetClassComment(const clang::CXXRecordDecl &decl, clang::SourceLocation *loc, const cling::Interpreter &interpreter);
630
631//______________________________________________________________________________
632// Return the base/underlying type of a chain of array or pointers type.
633const clang::Type *GetUnderlyingType(clang::QualType type);
634
635//______________________________________________________________________________
636// Scans the redeclaration chain for an annotation.
637//
638// returns 0 if no annotation was found.
639//
640template<typename T>
641const T* GetAnnotatedRedeclarable(const T* Redecl) {
642 if (!Redecl)
643 return 0;
644
645 Redecl = Redecl->getMostRecentDecl();
646 while (Redecl && !Redecl->hasAttrs())
647 Redecl = Redecl->getPreviousDecl();
648
649 return Redecl;
650}
651
652//______________________________________________________________________________
653// Overload the template for typedefs, because they don't contain
654// isThisDeclarationADefinition method. (Use inline to avoid violating ODR)
655const clang::TypedefNameDecl* GetAnnotatedRedeclarable(const clang::TypedefNameDecl* TND);
656
657//______________________________________________________________________________
658// Overload the template for tags, because we only check definitions.
659const clang::TagDecl* GetAnnotatedRedeclarable(const clang::TagDecl* TND);
660
661//______________________________________________________________________________
662// Return true if the decl is part of the std namespace.
663bool IsStdClass(const clang::RecordDecl &cl);
664
665//______________________________________________________________________________
666// Return true, if the decl is part of the std namespace and we want
667// its default parameter dropped.
668bool IsStdDropDefaultClass(const clang::RecordDecl &cl);
669
670//______________________________________________________________________________
671// See if the CXXRecordDecl matches the current of any of the previous CXXRecordDecls
672bool MatchWithDeclOrAnyOfPrevious(const clang::CXXRecordDecl &cl, const clang::CXXRecordDecl &currentCl);
673
674//______________________________________________________________________________
675// Return true if the decl is of type
676bool IsOfType(const clang::CXXRecordDecl &cl, const std::string& type, const cling::LookupHelper& lh);
677
678//______________________________________________________________________________
679// Return which kind of STL container the decl is, if any.
680ROOT::ESTLType IsSTLCont(const clang::RecordDecl &cl);
681
682//______________________________________________________________________________
683// Check if 'input' or any of its template parameter was substituted when
684// instantiating the class template instance and replace it with the
685// partially sugared type we have from 'instance'.
686clang::QualType ReSubstTemplateArg(clang::QualType input, const clang::Type *instance);
687
688//______________________________________________________________________________
689// Remove the last n template arguments from the name
690int RemoveTemplateArgsFromName(std::string& name, unsigned int);
691
692//______________________________________________________________________________
693clang::TemplateName ExtractTemplateNameFromQualType(const clang::QualType& qt);
694
695//______________________________________________________________________________
696bool QualType2Template(const clang::QualType& qt,
697 clang::ClassTemplateDecl*& ctd,
698 clang::ClassTemplateSpecializationDecl*& ctsd);
699
700//______________________________________________________________________________
701clang::ClassTemplateDecl* QualType2ClassTemplateDecl(const clang::QualType& qt);
702
703//______________________________________________________________________________
704// Extract the namespaces enclosing a DeclContext
705void ExtractCtxtEnclosingNameSpaces(const clang::DeclContext&,
706 std::list<std::pair<std::string,bool> >&);
707//______________________________________________________________________________
708void ExtractEnclosingNameSpaces(const clang::Decl&,
709 std::list<std::pair<std::string,bool> >&);
710
711//______________________________________________________________________________
712const clang::RecordDecl* ExtractEnclosingScopes(const clang::Decl& decl,
713 std::list<std::pair<std::string,unsigned int> >& enclosingSc);
714//______________________________________________________________________________
715// Kind of stl container
716ROOT::ESTLType STLKind(const llvm::StringRef type);
717
718//______________________________________________________________________________
719// Set the toolchain and the include paths for relocatability
720void SetPathsForRelocatability(std::vector<std::string>& clingArgs);
721
722//______________________________________________________________________________
723void ReplaceAll(std::string& str, const std::string& from, const std::string& to, bool recurse=false);
724
725// Functions for the printouts -------------------------------------------------
726
727//______________________________________________________________________________
728inline unsigned int &GetNumberOfErrors()
729{
730 static unsigned int gNumberOfErrors = 0;
731 return gNumberOfErrors;
732}
733
734//______________________________________________________________________________
735// True if printing a warning should increase GetNumberOfErrors
737{
738 static bool gWarningsAreErrors = false;
739 return gWarningsAreErrors;
740}
741
742//______________________________________________________________________________
743// Inclusive minimum error level a message needs to get handled
744inline int &GetErrorIgnoreLevel() {
746 return gErrorIgnoreLevel;
747}
748
749//______________________________________________________________________________
750inline void LevelPrint(bool prefix, int level, const char *location, const char *fmt, va_list ap)
751{
752 if (level < GetErrorIgnoreLevel())
753 return;
754
755 const char *type = 0;
756
757 if (level >= ROOT::TMetaUtils::kInfo)
758 type = "Info";
759 if (level >= ROOT::TMetaUtils::kNote)
760 type = "Note";
761 if (level >= ROOT::TMetaUtils::kWarning)
762 type = "Warning";
763 if (level >= ROOT::TMetaUtils::kError)
764 type = "Error";
765 if (level >= ROOT::TMetaUtils::kSysError)
766 type = "SysError";
767 if (level >= ROOT::TMetaUtils::kFatal)
768 type = "Fatal";
769
770 if (!location || !location[0]) {
771 if (prefix) fprintf(stderr, "%s: ", type);
772 vfprintf(stderr, (const char*)va_(fmt), ap);
773 } else {
774 if (prefix) fprintf(stderr, "%s in <%s>: ", type, location);
775 else fprintf(stderr, "In <%s>: ", location);
776 vfprintf(stderr, (const char*)va_(fmt), ap);
777 }
778
779 fflush(stderr);
780
781 // Keep track of the warnings/errors we printed.
784 }
785}
786
787//______________________________________________________________________________
788// Use this function in case an error occured.
789inline void Error(const char *location, const char *va_(fmt), ...)
790{
791 va_list ap;
792 va_start(ap,va_(fmt));
793 LevelPrint(true, ROOT::TMetaUtils::kError, location, va_(fmt), ap);
794 va_end(ap);
795}
796
797//______________________________________________________________________________
798// Use this function in case a system (OS or GUI) related error occured.
799inline void SysError(const char *location, const char *va_(fmt), ...)
800{
801 va_list ap;
802 va_start(ap, va_(fmt));
803 LevelPrint(true, ROOT::TMetaUtils::kSysError, location, va_(fmt), ap);
804 va_end(ap);
805}
806
807//______________________________________________________________________________
808// Use this function for informational messages.
809inline void Info(const char *location, const char *va_(fmt), ...)
810{
811 va_list ap;
812 va_start(ap,va_(fmt));
813 LevelPrint(true, ROOT::TMetaUtils::kInfo, location, va_(fmt), ap);
814 va_end(ap);
815}
816
817//______________________________________________________________________________
818// Use this function in warning situations.
819inline void Warning(const char *location, const char *va_(fmt), ...)
820{
821 va_list ap;
822 va_start(ap,va_(fmt));
823 LevelPrint(true, ROOT::TMetaUtils::kWarning, location, va_(fmt), ap);
824 va_end(ap);
825}
826
827//______________________________________________________________________________
828// Use this function in case of a fatal error. It will abort the program.
829inline void Fatal(const char *location, const char *va_(fmt), ...)
830{
831 va_list ap;
832 va_start(ap,va_(fmt));
833 LevelPrint(true, ROOT::TMetaUtils::kFatal, location, va_(fmt), ap);
834 va_end(ap);
835}
836
837//______________________________________________________________________________
838const std::string& GetPathSeparator();
839
840//______________________________________________________________________________
841bool EndsWith(const std::string &theString, const std::string &theSubstring);
842
843//______________________________________________________________________________
844bool BeginsWith(const std::string &theString, const std::string &theSubstring);
845
846//______________________________________________________________________________
847bool IsLinkdefFile(const char *filename);
848
849//______________________________________________________________________________
850bool IsHeaderName(const std::string &filename);
851
852//______________________________________________________________________________
853namespace AST2SourceTools {
854
855//______________________________________________________________________________
856const std::string Decls2FwdDecls(const std::vector<const clang::Decl*> &decls,
857 bool (*ignoreFiles)(const clang::PresumedLoc&) ,
858 const cling::Interpreter& interp, std::string *logs);
859
860//______________________________________________________________________________
861int PrepareArgsForFwdDecl(std::string& templateArgs,
862 const clang::TemplateParameterList& tmplParamList,
863 const cling::Interpreter& interpreter);
864
865//______________________________________________________________________________
866int EncloseInNamespaces(const clang::Decl& decl, std::string& defString);
867
868//______________________________________________________________________________
869const clang::RecordDecl* EncloseInScopes(const clang::Decl& decl, std::string& defString);
870
871//______________________________________________________________________________
872int FwdDeclFromRcdDecl(const clang::RecordDecl& recordDecl,
873 const cling::Interpreter& interpreter,
874 std::string& defString,
875 bool acceptStl=false);
876
877//______________________________________________________________________________
878int FwdDeclFromTmplDecl(const clang::TemplateDecl& tmplDecl,
879 const cling::Interpreter& interpreter,
880 std::string& defString);
881
882//______________________________________________________________________________
883int FwdDeclIfTmplSpec(const clang::RecordDecl& recordDecl,
884 const cling::Interpreter& interpreter,
885 std::string& defString,
886 const std::string &normalizedName);
887//______________________________________________________________________________
888int GetDefArg(const clang::ParmVarDecl& par, std::string& valAsString, const clang::PrintingPolicy& pp);
889
890//______________________________________________________________________________
891int FwdDeclFromFcnDecl(const clang::FunctionDecl& fcnDecl,
892 const cling::Interpreter& interpreter,
893 std::string& defString);
894//______________________________________________________________________________
895int FwdDeclFromTypeDefNameDecl(const clang::TypedefNameDecl& tdnDecl,
896 const cling::Interpreter& interpreter,
897 std::string& fwdDeclString,
898 std::unordered_set<std::string>* fwdDeclSet=nullptr);
899
900} // namespace AST2SourceTools
901
902} // namespace TMetaUtils
903
904} // namespace ROOT
905
906#endif // ROOT_TMetaUtils
cling::Interpreter * gInterp
R__EXTERN Int_t gErrorIgnoreLevel
Definition TError.h:129
char name[80]
Definition TGX11.cxx:110
int type
Definition TGX11.cxx:121
typedef void((*Func_t)())
#define va_(arg)
Definition Varargs.h:41
const char * proto
Definition civetweb.c:16604
const clang::RecordDecl * GetRecordDecl() const
const clang::RecordDecl * fDecl
bool operator<(const AnnotatedRecordDecl &right) const
const char * GetRequestedName() const
static std::string BuildDemangledTypeInfo(const clang::RecordDecl *rDecl, const std::string &normalizedName)
const std::string & GetDemangledTypeInfo() const
const char * GetNormalizedName() const
const clang::CXXRecordDecl * fArgType
const clang::CXXRecordDecl * GetType() const
virtual bool IsDeclaredScope(const std::string &base, bool &isInlined)
bool(* AutoParse_t)(const char *name)
bool(* ExistingTypeCheck_t)(const std::string &tname, std::string &result)
virtual bool GetPartiallyDesugaredNameWithScopeHandling(const std::string &tname, std::string &result, bool dropstd=true)
We assume that we have a simple type: [const] typename[*&][const].
virtual bool IsAlreadyPartiallyDesugaredName(const std::string &nondef, const std::string &nameLong)
ExistingTypeCheck_t fExistingTypeCheck
virtual void GetPartiallyDesugaredName(std::string &nameLong)
virtual bool ExistingTypeCheck(const std::string &tname, std::string &result)
Helper routine to ry hard to avoid looking up in the Cling database as this could enduce an unwanted ...
void AddTemplAndNargsToKeep(const clang::ClassTemplateDecl *templ, unsigned int i)
void keepTypedef(const cling::LookupHelper &lh, const char *name, bool replace=false)
cling::utils::Transform::Config Config_t
std::map< const clang::ClassTemplateDecl *, int > TemplPtrIntMap_t
TNormalizedCtxtImpl * fImpl
const TypesCont_t & GetTypeWithAlternative() const
std::set< const clang::Type * > TypesCont_t
int GetNargsToKeep(const clang::ClassTemplateDecl *templ) const
const Config_t & GetConfig() const
const TemplPtrIntMap_t GetTemplNargsToKeepMap() const
Type
enumeration specifying the integration types.
int EncloseInNamespaces(const clang::Decl &decl, std::string &defString)
Take the namespaces which enclose the decl and put them around the definition string.
int FwdDeclFromTypeDefNameDecl(const clang::TypedefNameDecl &tdnDecl, const cling::Interpreter &interpreter, std::string &fwdDeclString, std::unordered_set< std::string > *fwdDeclSet=nullptr)
Extract "forward declaration" of a typedef.
int PrepareArgsForFwdDecl(std::string &templateArgs, const clang::TemplateParameterList &tmplParamList, const cling::Interpreter &interpreter)
Loop over the template parameters and build a string for template arguments using the fully qualified...
int FwdDeclFromFcnDecl(const clang::FunctionDecl &fcnDecl, const cling::Interpreter &interpreter, std::string &defString)
int FwdDeclFromTmplDecl(const clang::TemplateDecl &tmplDecl, const cling::Interpreter &interpreter, std::string &defString)
Convert a tmplt decl to its fwd decl.
const clang::RecordDecl * EncloseInScopes(const clang::Decl &decl, std::string &defString)
Take the scopes which enclose the decl and put them around the definition string.
int FwdDeclFromRcdDecl(const clang::RecordDecl &recordDecl, const cling::Interpreter &interpreter, std::string &defString, bool acceptStl=false)
Convert a rcd decl to its fwd decl If this is a template specialisation, treat in the proper way.
int GetDefArg(const clang::ParmVarDecl &par, std::string &valAsString, const clang::PrintingPolicy &pp)
Get the default value as string.
int FwdDeclIfTmplSpec(const clang::RecordDecl &recordDecl, const cling::Interpreter &interpreter, std::string &defString, const std::string &normalizedName)
Convert a tmplt decl to its fwd decl.
const std::string Decls2FwdDecls(const std::vector< const clang::Decl * > &decls, bool(*ignoreFiles)(const clang::PresumedLoc &), const cling::Interpreter &interp, std::string *logs)
static const std::string iotype("iotype")
static const std::string transient("transient")
static const std::string separator("@@@")
static const std::string pattern("pattern")
static const std::string persistent("persistent")
static const std::string nArgsToKeep("nArgsToKeep")
static const std::string ioname("ioname")
static const std::string comment("comment")
llvm::StringRef GetClassComment(const clang::CXXRecordDecl &decl, clang::SourceLocation *loc, const cling::Interpreter &interpreter)
Return the class comment after the ClassDef: class MyClass { ... ClassDef(MyClass,...
const T * GetAnnotatedRedeclarable(const T *Redecl)
int extractPropertyNameValFromString(const std::string attributeStr, std::string &attrName, std::string &attrValue)
bool hasOpaqueTypedef(clang::QualType instanceType, const TNormalizedCtxt &normCtxt)
Return true if the type is a Double32_t or Float16_t or is a instance template that depends on Double...
EIOCtorCategory CheckConstructor(const clang::CXXRecordDecl *, const RConstructorType &, const cling::Interpreter &interp)
Check if class has constructor of provided type - either default or with single argument.
clang::RecordDecl * GetUnderlyingRecordDecl(clang::QualType type)
void Info(const char *location, const char *va_(fmt),...)
bool BeginsWith(const std::string &theString, const std::string &theSubstring)
const int kMaxLen
llvm::StringRef DataMemberInfo__ValidArrayIndex(const clang::DeclaratorDecl &m, int *errnum=0, llvm::StringRef *errstr=0)
ValidArrayIndex return a static string (so use it or copy it immediatly, do not call GrabIndex twice ...
const clang::FunctionDecl * ClassInfo__HasMethod(const clang::DeclContext *cl, char const *, const cling::Interpreter &interp)
bool GetNameWithinNamespace(std::string &, std::string &, std::string &, clang::CXXRecordDecl const *)
Return true if one of the class' enclosing scope is a namespace and set fullname to the fully qualifi...
const clang::RecordDecl * ExtractEnclosingScopes(const clang::Decl &decl, std::list< std::pair< std::string, unsigned int > > &enclosingSc)
Extract the names and types of containing scopes.
bool HasCustomOperatorNewArrayPlacement(clang::RecordDecl const &, const cling::Interpreter &interp)
return true if we can find a custom operator new with placement
void WriteClassInit(std::ostream &finalString, const AnnotatedRecordDecl &cl, const clang::CXXRecordDecl *decl, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt, const RConstructorTypes &ctorTypes, bool &needCollectionProxy)
FIXME: a function of 450+ lines!
int WriteNamespaceHeader(std::ostream &, const clang::RecordDecl *)
int GetClassVersion(const clang::RecordDecl *cl, const cling::Interpreter &interp)
Return the version number of the class or -1 if the function Class_Version does not exist.
void Error(const char *location, const char *va_(fmt),...)
DataMemberInfo__ValidArrayIndex_error_code
clang::QualType GetTypeForIO(const clang::QualType &templateInstanceType, const cling::Interpreter &interpreter, const TNormalizedCtxt &normCtxt, TClassEdit::EModType mode=TClassEdit::kNone)
int extractAttrString(clang::Attr *attribute, std::string &attrString)
Extract attr string.
void GetNormalizedName(std::string &norm_name, const clang::QualType &type, const cling::Interpreter &interpreter, const TNormalizedCtxt &normCtxt)
Return the type name normalized for ROOT, keeping only the ROOT opaque typedef (Double32_t,...
void WritePointersSTL(const AnnotatedRecordDecl &cl, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt)
Write interface function for STL members.
bool HasNewMerge(clang::CXXRecordDecl const *, const cling::Interpreter &)
Return true if the class has a method Merge(TCollection*,TFileMergeInfo*)
bool CheckPublicFuncWithProto(clang::CXXRecordDecl const *, char const *, char const *, const cling::Interpreter &, bool diagnose)
Return true, if the function (defined by the name and prototype) exists and is public.
void Fatal(const char *location, const char *va_(fmt),...)
clang::ClassTemplateDecl * QualType2ClassTemplateDecl(const clang::QualType &qt)
Extract from a qualtype the class template if this makes sense.
int IsSTLContainer(const AnnotatedRecordDecl &annotated)
Is this an STL container.
std::list< RConstructorType > RConstructorTypes
int extractPropertyNameVal(clang::Attr *attribute, std::string &attrName, std::string &attrValue)
std::string GetModuleFileName(const char *moduleName)
Return the dictionary file name for a module.
const int kWarning
const int kSysError
clang::QualType ReSubstTemplateArg(clang::QualType input, const clang::Type *instance)
Check if 'input' or any of its template parameter was substituted when instantiating the class templa...
llvm::StringRef GetFileName(const clang::Decl &decl, const cling::Interpreter &interp)
Return the header file to be included to declare the Decl.
bool NeedDestructor(clang::CXXRecordDecl const *, const cling::Interpreter &)
bool EndsWith(const std::string &theString, const std::string &theSubstring)
void GetFullyQualifiedTypeName(std::string &name, const clang::QualType &type, const cling::Interpreter &interpreter)
void LevelPrint(bool prefix, int level, const char *location, const char *fmt, va_list ap)
bool NeedTemplateKeyword(clang::CXXRecordDecl const *)
bool HasCustomConvStreamerMemberFunction(const AnnotatedRecordDecl &cl, const clang::CXXRecordDecl *clxx, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt)
Return true if the class has a custom member function streamer.
bool HasDirectoryAutoAdd(clang::CXXRecordDecl const *, const cling::Interpreter &)
Return true if the class has a method DirectoryAutoAdd(TDirectory *)
const clang::FunctionDecl * GetFuncWithProto(const clang::Decl *cinfo, const char *method, const char *proto, const cling::Interpreter &gInterp, bool diagnose)
bool MatchWithDeclOrAnyOfPrevious(const clang::CXXRecordDecl &cl, const clang::CXXRecordDecl &currentCl)
This is a recursive function.
clang::QualType GetNormalizedType(const clang::QualType &type, const cling::Interpreter &interpreter, const TNormalizedCtxt &normCtxt)
Return the type normalized for ROOT, keeping only the ROOT opaque typedef (Double32_t,...
bool & GetWarningsAreErrors()
const char * ShortTypeName(const char *typeDesc)
Return the absolute type of typeDesc.
void GetCppName(std::string &output, const char *input)
Return (in the argument 'output') a mangled version of the C++ symbol/type (pass as 'input') that can...
bool HasCustomOperatorNewPlacement(char const *, clang::RecordDecl const &, const cling::Interpreter &)
return true if we can find a custom operator new with placement
bool IsStdClass(const clang::RecordDecl &cl)
Return true, if the decl is part of the std namespace.
void CreateNameTypeMap(clang::CXXRecordDecl const &, std::map< std::string, ROOT::Internal::TSchemaType > &)
bool HasResetAfterMerge(clang::CXXRecordDecl const *, const cling::Interpreter &)
Return true if the class has a method ResetAfterMerge(TFileMergeInfo *)
ROOT::ESTLType STLKind(const llvm::StringRef type)
Converts STL container name to number. vector -> 1, etc..
void WriteClassCode(CallWriteStreamer_t WriteStreamerFunc, const AnnotatedRecordDecl &cl, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt, std::ostream &finalString, const RConstructorTypes &ctorTypes, bool isGenreflex)
Generate the code of the class If the requestor is genreflex, request the new streamer format.
bool HasOldMerge(clang::CXXRecordDecl const *, const cling::Interpreter &)
Return true if the class has a method Merge(TCollection*)
clang::TemplateName ExtractTemplateNameFromQualType(const clang::QualType &qt)
These manipulations are necessary because a template specialisation type does not inherit from a reco...
int RemoveTemplateArgsFromName(std::string &name, unsigned int)
Remove the last n template arguments from the name.
long GetLineNumber(clang::Decl const *)
It looks like the template specialization decl actually contains less information on the location of ...
void WriteAuxFunctions(std::ostream &finalString, const AnnotatedRecordDecl &cl, const clang::CXXRecordDecl *decl, const cling::Interpreter &interp, const RConstructorTypes &ctorTypes, const TNormalizedCtxt &normCtxt)
std::string NormalizedName; GetNormalizedName(NormalizedName, decl->getASTContext()....
void foreachHeaderInModule(const clang::Module &module, const std::function< void(const clang::Module::Header &)> &closure, bool includeDirectlyUsedModules=true)
Calls the given lambda on every header in the given module.
bool IsBase(const clang::CXXRecordDecl *cl, const clang::CXXRecordDecl *base, const clang::CXXRecordDecl *context, const cling::Interpreter &interp)
void ExtractCtxtEnclosingNameSpaces(const clang::DeclContext &, std::list< std::pair< std::string, bool > > &)
Extract enclosing namespaces recursively.
std::pair< bool, int > GetTrivialIntegralReturnValue(const clang::FunctionDecl *funcCV, const cling::Interpreter &interp)
If the function contains 'just': return SomeValue; this routine will extract this value and return it...
bool HasCustomStreamerMemberFunction(const AnnotatedRecordDecl &cl, const clang::CXXRecordDecl *clxx, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt)
Return true if the class has a custom member function streamer.
std::string GetRealPath(const std::string &path)
clang::QualType AddDefaultParameters(clang::QualType instanceType, const cling::Interpreter &interpret, const TNormalizedCtxt &normCtxt)
Add any unspecified template parameters to the class template instance, mentioned anywhere in the typ...
std::pair< std::string, clang::QualType > GetNameTypeForIO(const clang::QualType &templateInstanceType, const cling::Interpreter &interpreter, const TNormalizedCtxt &normCtxt, TClassEdit::EModType mode=TClassEdit::kNone)
void GetQualifiedName(std::string &qual_name, const clang::QualType &type, const clang::NamedDecl &forcontext)
Main implementation relying on GetFullyQualifiedTypeName All other GetQualifiedName functions leverag...
void SysError(const char *location, const char *va_(fmt),...)
bool ExtractAttrIntPropertyFromName(const clang::Decl &decl, const std::string &propName, int &propValue)
This routine counts on the "propName<separator>propValue" format.
bool IsLinkdefFile(const char *filename)
unsigned int & GetNumberOfErrors()
void SetPathsForRelocatability(std::vector< std::string > &clingArgs)
Organise the parameters for cling in order to guarantee relocatability It treats the gcc toolchain an...
bool IsStreamableObject(const clang::FieldDecl &m, const cling::Interpreter &interp)
void ReplaceAll(std::string &str, const std::string &from, const std::string &to, bool recurse=false)
bool QualType2Template(const clang::QualType &qt, clang::ClassTemplateDecl *&ctd, clang::ClassTemplateSpecializationDecl *&ctsd)
Get the template specialisation decl and template decl behind the qualtype Returns true if successful...
std::string TrueName(const clang::FieldDecl &m)
TrueName strips the typedefs and array dimensions.
const clang::Type * GetUnderlyingType(clang::QualType type)
Return the base/underlying type of a chain of array or pointers type.
ROOT::ESTLType IsSTLCont(const clang::RecordDecl &cl)
type : type name: vector<list<classA,allocator>,allocator> result: 0 : not stl container abs(result):...
bool IsStdDropDefaultClass(const clang::RecordDecl &cl)
Return true, if the decl is part of the std namespace and we want its default parameter dropped.
bool RequireCompleteType(const cling::Interpreter &interp, const clang::CXXRecordDecl *cl)
bool IsHeaderName(const std::string &filename)
int ElementStreamer(std::ostream &finalString, const clang::NamedDecl &forcontext, const clang::QualType &qti, const char *t, int rwmode, const cling::Interpreter &interp, const char *tcl=0)
bool IsOfType(const clang::CXXRecordDecl &cl, const std::string &type, const cling::LookupHelper &lh)
const std::string & GetPathSeparator()
Return the separator suitable for this platform.
bool CheckDefaultConstructor(const clang::CXXRecordDecl *, const cling::Interpreter &interp)
Checks if default constructor exists and accessible.
EIOCtorCategory CheckIOConstructor(const clang::CXXRecordDecl *, const char *, const clang::CXXRecordDecl *, const cling::Interpreter &interp)
Checks IO constructor - must be public and with specified argument.
bool ExtractAttrPropertyFromName(const clang::Decl &decl, const std::string &propName, std::string &propValue)
This routine counts on the "propName<separator>propValue" format.
void(* CallWriteStreamer_t)(const AnnotatedRecordDecl &cl, const cling::Interpreter &interp, const TNormalizedCtxt &normCtxt, std::ostream &dictStream, bool isAutoStreamer)
const clang::CXXRecordDecl * ScopeSearch(const char *name, const cling::Interpreter &gInterp, bool diagnose, const clang::Type **resultType)
Return the scope corresponding to 'name' or std::'name'.
void Warning(const char *location, const char *va_(fmt),...)
int & GetErrorIgnoreLevel()
void ExtractEnclosingNameSpaces(const clang::Decl &, std::list< std::pair< std::string, bool > > &)
Extract the immediately outer namespace and then launch the recursion.
bool HasIOConstructor(clang::CXXRecordDecl const *, std::string &, const RConstructorTypes &, const cling::Interpreter &)
return true if we can find an constructor calleable without any arguments or with one the IOCtor spec...
llvm::StringRef GetComment(const clang::Decl &decl, clang::SourceLocation *loc=0)
Returns the comment (// striped away), annotating declaration in a meaningful for ROOT IO way.
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
ESTLType
Definition ESTLType.h:28
bool operator()(const AnnotatedRecordDecl &right, const AnnotatedRecordDecl &left) const
auto * m
Definition textangle.C:8
static void output(int code)
Definition gifencode.c:226