forked from vgvassilev/creduce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimplifyNestedClass.cpp
190 lines (160 loc) · 5.33 KB
/
SimplifyNestedClass.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
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include "SimplifyNestedClass.h"
#include "clang/Basic/SourceManager.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include "clang/AST/ASTContext.h"
#include "clang/Lex/Lexer.h"
#include "TransformationManager.h"
using namespace clang;
using namespace llvm;
static const char *DescriptionMsg =
"This pass tries to simplify nested classes by replacing the \
outer class with the inner class, if \n\
* the outer class doesn't have any base class, and \n\
* the outer class has only one inner class definition, and \n\
* the outer class does not have any described template, and \n\
* the outer class does not have any other declarations except \
the inner class \n\
";
static RegisterTransformation<SimplifyNestedClass>
Trans("simplify-nested-class", DescriptionMsg);
class SimplifyNestedClassVisitor : public
RecursiveASTVisitor<SimplifyNestedClassVisitor> {
public:
explicit SimplifyNestedClassVisitor(
SimplifyNestedClass *Instance)
: ConsumerInstance(Instance)
{ }
bool VisitCXXRecordDecl(CXXRecordDecl *CXXRD);
private:
SimplifyNestedClass *ConsumerInstance;
};
bool SimplifyNestedClassVisitor::VisitCXXRecordDecl(
CXXRecordDecl *CXXRD)
{
if (ConsumerInstance->isSpecialRecordDecl(CXXRD) || !CXXRD->hasDefinition())
return true;
ConsumerInstance->handleOneCXXRecordDecl(CXXRD->getDefinition());
return true;
}
class SimplifyNestedClassRewriteVisitor : public
RecursiveASTVisitor<SimplifyNestedClassRewriteVisitor> {
public:
explicit SimplifyNestedClassRewriteVisitor(
SimplifyNestedClass *Instance)
: ConsumerInstance(Instance)
{ }
bool VisitRecordTypeLoc(RecordTypeLoc TLoc);
private:
SimplifyNestedClass *ConsumerInstance;
};
bool SimplifyNestedClassRewriteVisitor::VisitRecordTypeLoc(RecordTypeLoc TLoc)
{
const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TLoc.getDecl());
if (!RD || (RD->getCanonicalDecl() !=
ConsumerInstance->TheBaseCXXRD->getCanonicalDecl()))
return true;
if (ConsumerInstance->isBeforeColonColon(TLoc)) {
SourceLocation LocEnd =
ConsumerInstance->RewriteHelper->getLocationAfter(
TLoc.getEndLoc(), ':');
ConsumerInstance->TheRewriter.RemoveText(
SourceRange(TLoc.getBeginLoc(), LocEnd));
}
else {
ConsumerInstance->RewriteHelper->replaceRecordType(TLoc,
ConsumerInstance->TheBaseCXXRD->getNameAsString() + " ");
}
return true;
}
void SimplifyNestedClass::Initialize(ASTContext &context)
{
Transformation::Initialize(context);
CollectionVisitor = new SimplifyNestedClassVisitor(this);
RewriteVisitor = new SimplifyNestedClassRewriteVisitor(this);
}
void SimplifyNestedClass::HandleTranslationUnit(ASTContext &Ctx)
{
if (TransformationManager::isCLangOpt()) {
ValidInstanceNum = 0;
}
else {
CollectionVisitor->TraverseDecl(Ctx.getTranslationUnitDecl());
}
if (QueryInstanceOnly)
return;
if (TransformationCounter > ValidInstanceNum) {
TransError = TransMaxInstanceError;
return;
}
Ctx.getDiagnostics().setSuppressAllDiagnostics(false);
TransAssert(RewriteVisitor && "NULL RewriteVisitor!");
RewriteVisitor->TraverseDecl(Ctx.getTranslationUnitDecl());
removeOuterClass();
if (Ctx.getDiagnostics().hasErrorOccurred() ||
Ctx.getDiagnostics().hasFatalErrorOccurred())
TransError = TransInternalError;
}
void SimplifyNestedClass::removeOuterClass()
{
TransAssert(TheBaseCXXRD && "NULL Base CXXRD!");
SourceLocation LocStart = TheBaseCXXRD->getLocStart();
SourceLocation LocEnd = TheInnerDecl->getLocStart();
LocEnd = LocEnd.getLocWithOffset(-1);
TheRewriter.RemoveText(SourceRange(LocStart, LocEnd));
LocStart = TheBaseCXXRD->getRBraceLoc();
LocEnd = RewriteHelper->getLocationUntil(LocStart, ';');
if (LocStart.isInvalid() || LocEnd.isInvalid())
return;
TheRewriter.RemoveText(SourceRange(LocStart, LocEnd));
}
void SimplifyNestedClass::handleOneCXXRecordDecl(const CXXRecordDecl *CXXRD)
{
TransAssert(CXXRD && "NULL CXXRD!");
TransAssert(CXXRD->isThisDeclarationADefinition() && "Not a definition!");
if (CXXRD->getDescribedClassTemplate() ||
CXXRD->getNumBases() ||
dyn_cast<ClassTemplateSpecializationDecl>(CXXRD))
return;
// anon class
if (CXXRD->getNameAsString() == "")
return;
const Decl *InnerDecl = NULL;
const DeclContext *Ctx = dyn_cast<DeclContext>(CXXRD);
for (DeclContext::decl_iterator I = Ctx->decls_begin(),
E = Ctx->decls_end(); I != E; ++I) {
if ((*I)->isImplicit() || dyn_cast<AccessSpecDecl>(*I))
continue;
if (dyn_cast<CXXRecordDecl>(*I) || dyn_cast<ClassTemplateDecl>(*I)) {
if (InnerDecl)
return;
InnerDecl = (*I);
}
else {
return;
}
}
if (!InnerDecl)
return;
ValidInstanceNum++;
if (ValidInstanceNum == TransformationCounter) {
TheBaseCXXRD = CXXRD;
TheInnerDecl = InnerDecl;
}
}
SimplifyNestedClass::~SimplifyNestedClass(void)
{
delete CollectionVisitor;
delete RewriteVisitor;
}