-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHierarchyUtils.h
173 lines (136 loc) · 4.63 KB
/
HierarchyUtils.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
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
/*
This file is part of the clazy static checker.
Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, [email protected]
Author: Sérgio Martins <[email protected]>
Copyright (C) 2015 Sergio Martins <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef CLAZY_HIERARCHY_UTILS_H
#define CLAZY_HIERARCHY_UTILS_H
// Contains utility classes to retrieve parents and childs from AST Nodes
#include "clazy_stl.h"
#include <clang/Frontend/CompilerInstance.h>
#include <clang/AST/Stmt.h>
#include <clang/AST/ExprCXX.h>
namespace clang {
class ParentMap;
}
namespace HierarchyUtils {
/**
* Returns true if child is a child of parent.
*/
bool isChildOf(clang::Stmt *child, clang::Stmt *parent);
/**
* Returns true if stm is parent of a member function call named "name"
*/
bool isParentOfMemberFunctionCall(clang::Stmt *stm, const std::string &name);
/**
* Returns the first child of stm of type T.
* Does depth-first.
*/
template <typename T>
T* getFirstChildOfType(clang::Stmt *stm)
{
if (!stm)
return nullptr;
for (auto child : stm->children()) {
if (!child) // Can happen
continue;
if (auto s = clang::dyn_cast<T>(child))
return s;
if (auto s = getFirstChildOfType<T>(child))
return s;
}
return nullptr;
}
/**
* Returns the first child of stm of type T, but only looks at the first branch.
*/
template <typename T>
T* getFirstChildOfType2(clang::Stmt *stm)
{
if (!stm)
return nullptr;
if (clazy_std::hasChildren(stm)) {
auto child = *(stm->child_begin());
if (auto s = clang::dyn_cast<T>(child))
return s;
if (auto s = getFirstChildOfType<T>(child))
return s;
}
return nullptr;
}
// If depth = 0, return s
// If depth = 1, returns parent of s
// etc.
clang::Stmt* parent(clang::ParentMap *, clang::Stmt *s, unsigned int depth = 1);
// Returns the first parent of type T, with max depth depth
template <typename T>
T* getFirstParentOfType(clang::ParentMap *pmap, clang::Stmt *s, unsigned int depth = -1)
{
if (!s)
return nullptr;
if (auto t = clang::dyn_cast<T>(s))
return t;
if (depth == 0)
return nullptr;
--depth;
return getFirstParentOfType<T>(pmap, parent(pmap, s), depth);
}
clang::Stmt * getFirstChild(clang::Stmt *parent);
clang::Stmt * getFirstChildAtDepth(clang::Stmt *parent, unsigned int depth);
template <typename T>
void getChilds(clang::Stmt *stmt, std::vector<T*> &result_list, int depth = -1)
{
if (!stmt)
return;
auto cexpr = llvm::dyn_cast<T>(stmt);
if (cexpr)
result_list.push_back(cexpr);
if (depth > 0 || depth == -1) {
if (depth > 0)
--depth;
for (auto child : stmt->children()) {
getChilds(child, result_list, depth);
}
}
}
/**
* Returns all statements of type T in body, starting from startLocation, or from body->getLocStart() if
* startLocation is null.
*
* Similar to getChilds(), but with startLocation support.
*/
template <typename T>
std::vector<T*> getStatements(clang::Stmt *body, const clang::SourceManager *sm = nullptr, clang::SourceLocation startLocation = {}, int depth = -1, bool includeParent = false)
{
std::vector<T*> statements;
if (!body || depth == 0)
return statements;
if (includeParent)
if (T *t = clang::dyn_cast<T>(body))
statements.push_back(t);
for (auto child : body->children()) {
if (!child) continue; // can happen
if (T *childT = clang::dyn_cast<T>(child)) {
if (!startLocation.isValid() || (sm && sm->isBeforeInSLocAddrSpace(sm->getSpellingLoc(startLocation), child->getLocStart())))
statements.push_back(childT);
}
auto childStatements = getStatements<T>(child, sm, startLocation, depth - 1);
clazy_std::append(childStatements, statements);
}
return statements;
}
}
#endif