forked from vgvassilev/creduce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstantiateTemplateParam.h
117 lines (83 loc) · 3.28 KB
/
InstantiateTemplateParam.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//===----------------------------------------------------------------------===//
//
// Copyright (c) 2012, 2013 The University of Utah
// All rights reserved.
//
// This file is distributed under the University of Illinois Open Source
// License. See the file COPYING for details.
//
//===----------------------------------------------------------------------===//
#ifndef INSTANTIATE_TEMPLATE_PARAM_H
#define INSTANTIATE_TEMPLATE_PARAM_H
#include "llvm/ADT/SmallPtrSet.h"
#include "Transformation.h"
namespace clang {
class DeclGroupRef;
class ASTContext;
class FunctionTemplateDecl;
class ClassTemplateDecl;
class TemplateDecl;
class TemplateArgumentList;
class TemplateArgument;
class QualType;
class NamedDecl;
class Type;
class RecordDecl;
}
class InstantiateTemplateParamASTVisitor;
class InstantiateTemplateParamRewriteVisitor;
class InstantiateTemplateParam : public Transformation {
friend class InstantiateTemplateParamASTVisitor;
friend class InstantiateTemplateParamRewriteVisitor;
public:
InstantiateTemplateParam(const char *TransName, const char *Desc)
: Transformation(TransName, Desc),
CollectionVisitor(NULL),
ParamRewriteVisitor(NULL),
TheParameter(NULL),
TheTemplateDecl(NULL),
TheInstantiationString(""),
TheForwardDeclString("")
{}
~InstantiateTemplateParam();
private:
typedef llvm::SmallPtrSet<const clang::RecordDecl *, 10> RecordDeclSet;
typedef llvm::SmallPtrSet<void *, 10> LocPtrSet;
virtual void Initialize(clang::ASTContext &context);
virtual void HandleTranslationUnit(clang::ASTContext &Ctx);
void handleOneFunctionTemplateDecl(const clang::FunctionTemplateDecl *D);
void handleOneClassTemplateDecl(const clang::ClassTemplateDecl *D);
void handleOneTemplateSpecialization(
const clang::TemplateDecl *D,
const clang::TemplateArgumentList & ArgList);
bool getTemplateArgumentString(const clang::TemplateArgument &Arg,
std::string &Str,
std::string &ForwardStr);
bool getTypeString(const clang::QualType &QT,
std::string &ArgStr,
std::string &ForwardStr);
void getForwardDeclStr(const clang::Type *Ty,
std::string &ForwardStr,
RecordDeclSet &TempAvailableRecordDecls);
void addOneForwardDeclStr(const clang::RecordDecl *RD,
std::string &ForwardStr,
RecordDeclSet &TempAvailableRecordDecls);
void addForwardTemplateDeclStr(const clang::ClassTemplateDecl *ClassTD,
std::string &ForwardStr,
RecordDeclSet &TempAvailableRecordDecls);
void removeTemplateKeyword();
void addForwardDecl();
RecordDeclSet AvailableRecordDecls;
LocPtrSet VisitedLocs;
InstantiateTemplateParamASTVisitor *CollectionVisitor;
InstantiateTemplateParamRewriteVisitor *ParamRewriteVisitor;
const clang::NamedDecl *TheParameter;
const clang::TemplateDecl *TheTemplateDecl;
std::string TheInstantiationString;
std::string TheForwardDeclString;
// Unimplemented
InstantiateTemplateParam();
InstantiateTemplateParam(const InstantiateTemplateParam &);
void operator=(const InstantiateTemplateParam &);
};
#endif