forked from chipsalliance/verible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.cc
181 lines (149 loc) · 6.53 KB
/
functions.cc
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
// Copyright 2017-2020 The Verible Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "verilog/CST/functions.h"
#include <vector>
#include "common/analysis/matcher/matcher.h"
#include "common/analysis/matcher/matcher_builders.h"
#include "common/analysis/syntax_tree_search.h"
#include "common/text/concrete_syntax_tree.h"
#include "common/text/symbol.h"
#include "common/text/tree_utils.h"
#include "verilog/CST/identifier.h"
#include "verilog/CST/type.h"
#include "verilog/CST/verilog_matchers.h" // pragma IWYU: keep
namespace verilog {
using verible::GetSubtreeAsNode;
using verible::GetSubtreeAsSymbol;
using verible::Symbol;
using verible::SyntaxTreeNode;
std::vector<verible::TreeSearchMatch> FindAllFunctionDeclarations(
const Symbol& root) {
return verible::SearchSyntaxTree(root, NodekFunctionDeclaration());
}
std::vector<verible::TreeSearchMatch> FindAllFunctionPrototypes(
const Symbol& root) {
return verible::SearchSyntaxTree(root, NodekFunctionPrototype());
}
std::vector<verible::TreeSearchMatch> FindAllFunctionHeaders(
const Symbol& root) {
return verible::SearchSyntaxTree(root, NodekFunctionHeader());
}
std::vector<verible::TreeSearchMatch> FindAllFunctionOrTaskCalls(
const Symbol& root) {
return verible::SearchSyntaxTree(root, NodekFunctionCall());
}
std::vector<verible::TreeSearchMatch> FindAllFunctionOrTaskCallsExtension(
const Symbol& root) {
return verible::SearchSyntaxTree(root, NodekMethodCallExtension());
}
std::vector<verible::TreeSearchMatch> FindAllConstructorPrototypes(
const Symbol& root) {
return verible::SearchSyntaxTree(root, NodekClassConstructorPrototype());
}
const verible::SyntaxTreeNode* GetFunctionHeader(const Symbol& function_decl) {
return GetSubtreeAsNode(function_decl, NodeEnum::kFunctionDeclaration, 0,
NodeEnum::kFunctionHeader);
}
const verible::SyntaxTreeNode* GetFunctionPrototypeHeader(
const Symbol& function_decl) {
return GetSubtreeAsNode(function_decl, NodeEnum::kFunctionPrototype, 0,
NodeEnum::kFunctionHeader);
}
const Symbol* GetFunctionHeaderLifetime(const Symbol& function_header) {
return GetSubtreeAsSymbol(function_header, NodeEnum::kFunctionHeader, 2);
}
const Symbol* GetFunctionHeaderReturnType(const Symbol& function_header) {
return GetSubtreeAsSymbol(function_header, NodeEnum::kFunctionHeader, 3);
}
const Symbol* GetFunctionHeaderId(const Symbol& function_header) {
return GetSubtreeAsSymbol(function_header, NodeEnum::kFunctionHeader, 4);
}
const Symbol* GetFunctionHeaderFormalPortsGroup(const Symbol& function_header) {
return GetSubtreeAsSymbol(function_header, NodeEnum::kFunctionHeader, 5);
}
const Symbol* GetFunctionLifetime(const Symbol& function_decl) {
const auto* header = GetFunctionHeader(function_decl);
return header ? GetFunctionHeaderLifetime(*header) : nullptr;
}
const Symbol* GetFunctionReturnType(const Symbol& function_decl) {
const auto* header = GetFunctionHeader(function_decl);
return header ? GetFunctionHeaderReturnType(*header) : nullptr;
}
const Symbol* GetFunctionId(const Symbol& function_decl) {
const auto* header = GetFunctionHeader(function_decl);
return header ? GetFunctionHeaderId(*header) : nullptr;
}
const Symbol* GetFunctionFormalPortsGroup(const Symbol& function_decl) {
const auto* header = GetFunctionHeader(function_decl);
return header ? GetFunctionHeaderFormalPortsGroup(*header) : nullptr;
}
const verible::SyntaxTreeLeaf* GetFunctionName(
const verible::Symbol& function_decl) {
const auto* function_id = GetFunctionId(function_decl);
if (!function_id) return nullptr;
return GetIdentifier(*function_id);
}
const verible::SyntaxTreeNode* GetLocalRootFromFunctionCall(
const verible::Symbol& function_call) {
return GetSubtreeAsNode(function_call, NodeEnum::kFunctionCall, 0,
NodeEnum::kLocalRoot);
}
const verible::SyntaxTreeNode* GetIdentifiersFromFunctionCall(
const verible::Symbol& function_call) {
const verible::SyntaxTreeNode* local_root = GetSubtreeAsNode(
function_call, NodeEnum::kFunctionCall, 0, NodeEnum::kLocalRoot);
if (!local_root) return nullptr;
const verible::Symbol* identifier = GetIdentifiersFromLocalRoot(*local_root);
if (!identifier) return nullptr;
if (identifier->Kind() != verible::SymbolKind::kNode) return nullptr;
return &verible::SymbolCastToNode(*identifier);
}
const verible::SyntaxTreeLeaf* GetFunctionCallName(
const verible::Symbol& function_call) {
const auto* local_root = GetLocalRootFromFunctionCall(function_call);
if (!local_root) return nullptr;
const auto* unqualified_id = GetSubtreeAsNode(
*local_root, NodeEnum::kLocalRoot, 0, NodeEnum::kUnqualifiedId);
if (!unqualified_id) return nullptr;
return GetIdentifier(*unqualified_id);
}
const verible::SyntaxTreeLeaf* GetFunctionCallNameFromCallExtension(
const verible::Symbol& function_call) {
const auto* unqualified_id =
GetSubtreeAsNode(function_call, NodeEnum::kMethodCallExtension, 1,
NodeEnum::kUnqualifiedId);
if (!unqualified_id) return nullptr;
return GetIdentifier(*unqualified_id);
}
const verible::SyntaxTreeNode* GetFunctionBlockStatementList(
const verible::Symbol& function_decl) {
return verible::GetSubtreeAsNode(function_decl,
NodeEnum::kFunctionDeclaration, 2);
}
const verible::SyntaxTreeNode* GetParenGroupFromCall(
const verible::Symbol& function_call) {
return verible::GetSubtreeAsNode(function_call, NodeEnum::kFunctionCall, 1,
NodeEnum::kParenGroup);
}
const verible::SyntaxTreeNode* GetParenGroupFromCallExtension(
const verible::Symbol& function_call) {
return verible::GetSubtreeAsNode(
function_call, NodeEnum::kMethodCallExtension, 2, NodeEnum::kParenGroup);
}
const verible::SyntaxTreeLeaf* GetConstructorPrototypeNewKeyword(
const verible::Symbol& constructor_prototype) {
return GetSubtreeAsLeaf(constructor_prototype,
NodeEnum::kClassConstructorPrototype, 1);
}
} // namespace verilog