forked from vgvassilev/creduce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TemplateArgToInt.cpp
388 lines (326 loc) · 11 KB
/
TemplateArgToInt.cpp
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
//===----------------------------------------------------------------------===//
//
// Copyright (c) 2012, 2013, 2014 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.
//
//===----------------------------------------------------------------------===//
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include "TemplateArgToInt.h"
#include "clang/Lex/Lexer.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include "clang/AST/ASTContext.h"
#include "clang/Basic/SourceManager.h"
#include "TransformationManager.h"
#include "CommonTemplateArgumentVisitor.h"
using namespace clang;
using namespace llvm;
using namespace clang_delta_common_visitor;
static const char *DescriptionMsg =
"This pass replaces a template argument in an instantiation with \
int if the argument: \n\
* is type of CXXRecord; \n\
* the corresponding template parameter T is not used as T::x, \n\
nor template<typename T> class : T { ... };\n\
For example, from:\n\
struct S {};\n\
template <typename T> struct C {};\n\
C<S> c;\n\
to:\n\
struct S {};\n\
template <typename T> struct C {};\n\
C<int> c;\n\
";
static RegisterTransformation<TemplateArgToInt>
Trans("template-arg-to-int", DescriptionMsg);
class TemplateArgToIntASTVisitor : public
RecursiveASTVisitor<TemplateArgToIntASTVisitor> {
public:
explicit TemplateArgToIntASTVisitor(
TemplateArgToInt *Instance)
: ConsumerInstance(Instance)
{ }
bool VisitClassTemplateDecl(ClassTemplateDecl *D);
bool VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
private:
TemplateArgToInt *ConsumerInstance;
};
class TemplateArgToIntArgCollector : public
CommonTemplateArgumentVisitor<TemplateArgToIntArgCollector,
TemplateArgToInt> {
public:
explicit TemplateArgToIntArgCollector(TemplateArgToInt *Instance)
: CommonTemplateArgumentVisitor<TemplateArgToIntArgCollector,
TemplateArgToInt>(Instance)
{ }
};
typedef llvm::SmallPtrSet<const NamedDecl *, 8> TemplateParameterSet;
// rule out cases like:
//template <typename T1> struct S { typedef T1 type; };
// struct S1 { void foo() {} };
// struct S2 {
// typedef S<S1>::type type;
// S<S1>::type s1;
// type s2;
// void bar() { s1.foo(); s2.foo(); }
// };
class TemplateGlobalInvalidParameterVisitor : public
RecursiveASTVisitor<TemplateGlobalInvalidParameterVisitor> {
public:
explicit TemplateGlobalInvalidParameterVisitor(
TemplateArgToInt *Instance)
: ConsumerInstance(Instance)
{ }
~TemplateGlobalInvalidParameterVisitor() { };
bool VisitMemberExpr(MemberExpr *ME);
bool VisitCXXRecordDecl(CXXRecordDecl *D);
private:
TemplateArgToInt *ConsumerInstance;
};
bool TemplateGlobalInvalidParameterVisitor::VisitMemberExpr(MemberExpr *ME)
{
const Expr *Base = ME->getBase();
if (dyn_cast<CXXThisExpr>(Base))
return true;
const Type *Ty = Base->getType().getTypePtr();
ConsumerInstance->handleOneType(Ty);
return true;
}
bool TemplateGlobalInvalidParameterVisitor::VisitCXXRecordDecl(CXXRecordDecl *D)
{
if (!D->isCompleteDefinition())
return true;
for (CXXRecordDecl::base_class_const_iterator I = D->bases_begin(),
E = D->bases_end(); I != E; ++I) {
const CXXBaseSpecifier *BS = I;
const Type *Ty = BS->getType().getTypePtr();
ConsumerInstance->handleOneType(Ty);
}
return true;
}
class TemplateInvalidParameterVisitor : public
RecursiveASTVisitor<TemplateInvalidParameterVisitor> {
public:
TemplateInvalidParameterVisitor(TemplateParameterSet &Params,
TemplateArgToInt *Instance)
: Parameters(Params),
ConsumerInstance(Instance)
{ }
~TemplateInvalidParameterVisitor() { };
bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc Loc);
bool VisitCXXRecordDecl(CXXRecordDecl *D);
private:
TemplateParameterSet &Parameters;
TemplateArgToInt *ConsumerInstance;
};
bool TemplateInvalidParameterVisitor::VisitTemplateTypeParmTypeLoc(
TemplateTypeParmTypeLoc Loc)
{
const NamedDecl *ND = Loc.getDecl();
if (ConsumerInstance->isBeforeColonColon(Loc))
Parameters.insert(ND);
return true;
}
bool TemplateInvalidParameterVisitor::VisitCXXRecordDecl(CXXRecordDecl *D)
{
if (!D->isCompleteDefinition())
return true;
for (CXXRecordDecl::base_class_const_iterator I = D->bases_begin(),
E = D->bases_end(); I != E; ++I) {
const CXXBaseSpecifier *BS = I;
const Type *Ty = BS->getType().getTypePtr();
const TemplateTypeParmType *ParmTy = dyn_cast<TemplateTypeParmType>(Ty);
if (!ParmTy)
continue;
const TemplateTypeParmDecl *ParmD = ParmTy->getDecl();
Parameters.insert(ParmD);
}
return true;
}
bool TemplateArgToIntASTVisitor::VisitClassTemplateDecl(
ClassTemplateDecl *D)
{
if (D->isThisDeclarationADefinition())
ConsumerInstance->handleOneTemplateDecl(D);
return true;
}
bool TemplateArgToIntASTVisitor::VisitFunctionTemplateDecl(
FunctionTemplateDecl *D)
{
if (D->isThisDeclarationADefinition())
ConsumerInstance->handleOneTemplateDecl(D);
return true;
}
void TemplateArgToInt::Initialize(ASTContext &context)
{
Transformation::Initialize(context);
CollectionVisitor = new TemplateArgToIntASTVisitor(this);
ArgCollector = new TemplateArgToIntArgCollector(this);
GlobalParamFilter = new TemplateGlobalInvalidParameterVisitor(this);
}
void TemplateArgToInt::HandleTranslationUnit(ASTContext &Ctx)
{
if (TransformationManager::isCLangOpt()) {
ValidInstanceNum = 0;
}
else {
CollectionVisitor->TraverseDecl(Ctx.getTranslationUnitDecl());
GlobalParamFilter->TraverseDecl(Ctx.getTranslationUnitDecl());
ArgCollector->TraverseDecl(Ctx.getTranslationUnitDecl());
}
if (QueryInstanceOnly)
return;
if (TransformationCounter > ValidInstanceNum) {
TransError = TransMaxInstanceError;
return;
}
Ctx.getDiagnostics().setSuppressAllDiagnostics(false);
rewriteTemplateArgument();
if (Ctx.getDiagnostics().hasErrorOccurred() ||
Ctx.getDiagnostics().hasFatalErrorOccurred())
TransError = TransInternalError;
}
void TemplateArgToInt::collectInvalidParamIdx(
const TemplateDecl *D,
TemplateParameterIdxSet &InvalidParamIdx)
{
TemplateParameterSet InvalidParams;
NamedDecl *ND = D->getTemplatedDecl();
TemplateInvalidParameterVisitor ParameterVisitor(InvalidParams, this);
ParameterVisitor.TraverseDecl(ND);
TemplateParameterList *TPList = D->getTemplateParameters();
unsigned Idx = 0;
for (TemplateParameterList::const_iterator I = TPList->begin(),
E = TPList->end(); I != E; ++I) {
const NamedDecl *ParamND = (*I);
ParamToTemplateDecl[ParamND] = D;
if (InvalidParams.count(ParamND)) {
TransAssert(!InvalidParamIdx.count(Idx) && "Duplicate Index!");
InvalidParamIdx.insert(Idx);
}
Idx++;
}
}
void TemplateArgToInt::handleOneTemplateDecl(const TemplateDecl *D)
{
TemplateParameterIdxSet *InvalidIdx = new TemplateParameterIdxSet();
collectInvalidParamIdx(D, *InvalidIdx);
TransAssert(!DeclToParamIdx[D] && "Duplicate TemplateDecl!");
DeclToParamIdx[dyn_cast<TemplateDecl>(D->getCanonicalDecl())] = InvalidIdx;
}
void TemplateArgToInt::handleOneTemplateArgumentLoc(
const TemplateArgumentLoc &ArgLoc)
{
if (ArgLoc.getLocation().isInvalid())
return;
const TemplateArgument &Arg = ArgLoc.getArgument();
if (Arg.getKind() != TemplateArgument::Type)
return;
const Type *Ty = Arg.getAsType().getTypePtr();
if (!Ty->getAsCXXRecordDecl() && !Ty->getPointeeCXXRecordDecl())
return;
ValidInstanceNum++;
if (ValidInstanceNum == TransformationCounter)
TheTypeSourceInfo = ArgLoc.getTypeSourceInfo();
}
void TemplateArgToInt::handleTemplateArgumentLocs(
const TemplateDecl *D, const TemplateArgumentLoc *TAL, unsigned NumArgs)
{
TransAssert(D && "NULL TemplateDecl!");
if (!TAL)
return;
TemplateParameterIdxSet *InvalidIdx =
DeclToParamIdx[dyn_cast<TemplateDecl>(D->getCanonicalDecl())];
if (!InvalidIdx)
return;
for (unsigned I = 0; I < NumArgs; ++I) {
if (!InvalidIdx->count(I))
handleOneTemplateArgumentLoc(TAL[I]);
}
}
void TemplateArgToInt::handleTemplateSpecializationTypeLoc(
const TemplateSpecializationTypeLoc &TLoc)
{
const Type *Ty = TLoc.getTypePtr();
const TemplateSpecializationType *TST =
Ty->getAs<TemplateSpecializationType>();
TemplateName TplName = TST->getTemplateName();
const TemplateDecl *TplD = TplName.getAsTemplateDecl();
TemplateParameterIdxSet *InvalidIdx =
DeclToParamIdx[dyn_cast<TemplateDecl>(TplD->getCanonicalDecl())];
if (!InvalidIdx)
return;
for (unsigned I = 0; I < TLoc.getNumArgs(); ++I) {
if (!InvalidIdx->count(I))
handleOneTemplateArgumentLoc(TLoc.getArgLoc(I));
}
}
void TemplateArgToInt::rewriteTemplateArgument()
{
TransAssert(TheTypeSourceInfo && "NULL TheTypeSourceInfo");
SourceRange Range = TheTypeSourceInfo->getTypeLoc().getSourceRange();
TheRewriter.ReplaceText(Range, "int");
}
const SubstTemplateTypeParmType *
TemplateArgToInt::getSubstTemplateTypeParmType(const Type *Ty)
{
Type::TypeClass TC = Ty->getTypeClass();
switch (TC) {
case Type::Elaborated: {
const ElaboratedType *ETy = dyn_cast<ElaboratedType>(Ty);
const Type *NamedT = ETy->getNamedType().getTypePtr();
return getSubstTemplateTypeParmType(NamedT);
}
case Type::Typedef: {
const TypedefType *TdefTy = dyn_cast<TypedefType>(Ty);
const TypedefNameDecl *TdefD = TdefTy->getDecl();
const Type *UnderlyingTy = TdefD->getUnderlyingType().getTypePtr();
return getSubstTemplateTypeParmType(UnderlyingTy);
}
case Type::SubstTemplateTypeParm: {
return dyn_cast<SubstTemplateTypeParmType>(Ty);
}
default:
return NULL;
}
return NULL;
}
void TemplateArgToInt::handleOneType(const Type *Ty)
{
if (Ty->isPointerType() || Ty->isReferenceType())
Ty = getBasePointerElemType(Ty);
const SubstTemplateTypeParmType *SubstType = getSubstTemplateTypeParmType(Ty);
if (!SubstType)
return;
const TemplateTypeParmType *ParmType = SubstType->getReplacedParameter();
TemplateTypeParmDecl *ParmDecl = ParmType->getDecl();
TransAssert(ParmDecl && "Invalid ParmDecl!");
const TemplateDecl *TmplD = ParamToTemplateDecl[ParmDecl];
if (TmplD == NULL) {
const DeclContext *Ctx = ParmDecl->getDeclContext();
TransAssert(Ctx && "NULL Ctx!");
const ClassTemplateSpecializationDecl *Spec =
dyn_cast<ClassTemplateSpecializationDecl>(Ctx);
TransAssert(Spec && "Not a ClassTemplateSpecializationDecl!");
TmplD = Spec->getSpecializedTemplate();
}
TransAssert(TmplD && "NULL TemplateDecl!");
TemplateParameterIdxSet *InvalidIdx =
DeclToParamIdx[dyn_cast<TemplateDecl>(TmplD->getCanonicalDecl())];
TransAssert(InvalidIdx && "NULL InvalidIdx!");
InvalidIdx->insert(ParmType->getIndex());
}
TemplateArgToInt::~TemplateArgToInt()
{
for (TemplateDeclToParamIdxMap::iterator I = DeclToParamIdx.begin(),
E = DeclToParamIdx.end(); I != E; ++I) {
delete (*I).second;
}
delete CollectionVisitor;
delete ArgCollector;
delete GlobalParamFilter;
}