Skip to content

Commit 343cd5c

Browse files
committed
SystemVerilog: track the kind of scope
SystemVerilog has numerous different kinds of scopes, and this is now tracked when creating a scope.
1 parent 2ccff6c commit 343cd5c

File tree

2 files changed

+41
-18
lines changed

2 files changed

+41
-18
lines changed

src/verilog/parser.y

+11-11
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Author: Daniel Kroening, [email protected]
2828
#define mts(x, y) stack_expr(x).move_to_sub((irept &)stack_expr(y))
2929
#define swapop(x, y) stack_expr(x).operands().swap(stack_expr(y).operands())
3030
#define addswap(x, y, z) stack_expr(x).add(y).swap(stack_expr(z))
31-
#define push_scope(x, y) PARSER.scopes.push_scope(x, y)
31+
#define push_scope(name, separator, kind) PARSER.scopes.push_scope(name, separator, kind)
3232
#define pop_scope() PARSER.scopes.pop_scope();
3333

3434
int yyveriloglex();
@@ -644,7 +644,7 @@ module_identifier_with_scope:
644644
module_identifier
645645
{
646646
$$ = $1;
647-
push_scope(stack_expr($1).id(), ".");
647+
push_scope(stack_expr($1).id(), ".", verilog_scopet::MODULE);
648648
}
649649
;
650650

@@ -823,7 +823,7 @@ class_declaration:
823823
{
824824
init($$, ID_verilog_class);
825825
stack_expr($$).set(ID_base_name, stack_expr($2).id());
826-
push_scope(stack_expr($2).id(), "::");
826+
push_scope(stack_expr($2).id(), "::", verilog_scopet::CLASS);
827827
}
828828
class_item_brace
829829
TOK_ENDCLASS
@@ -839,7 +839,7 @@ package_declaration:
839839
lifetime_opt
840840
package_identifier ';'
841841
{
842-
push_scope(stack_expr($5).id(), "::");
842+
push_scope(stack_expr($5).id(), "::", verilog_scopet::PACKAGE);
843843
}
844844
timeunits_declaration_opt
845845
package_item_brace
@@ -1442,7 +1442,7 @@ net_declaration:
14421442
type_declaration:
14431443
TOK_TYPEDEF data_type new_identifier ';'
14441444
{ // add to the scope as a type name
1445-
auto &name = PARSER.scopes.add_name(stack_expr($3).get(ID_identifier), "");
1445+
auto &name = PARSER.scopes.add_name(stack_expr($3).get(ID_identifier), "", verilog_scopet::TYPEDEF);
14461446
name.is_type = true;
14471447

14481448
init($$, ID_decl);
@@ -1569,7 +1569,7 @@ enum_name_declaration:
15691569
TOK_NON_TYPE_IDENTIFIER enum_name_value_opt
15701570
{
15711571
init($$);
1572-
auto &scope = PARSER.scopes.add_name(stack_expr($1).id(), "");
1572+
auto &scope = PARSER.scopes.add_name(stack_expr($1).id(), "", verilog_scopet::ENUM_NAME);
15731573
stack_expr($$).set(ID_base_name, scope.base_name());
15741574
stack_expr($$).set(ID_identifier, scope.identifier());
15751575
stack_expr($$).add(ID_value).swap(stack_expr($2));
@@ -2137,7 +2137,7 @@ function_declaration: TOK_FUNCTION lifetime_opt function_body_declaration
21372137
function_body_declaration:
21382138
function_data_type_or_implicit
21392139
function_identifier
2140-
{ push_scope(stack_expr($2).get(ID_identifier), "."); }
2140+
{ push_scope(stack_expr($2).get(ID_identifier), ".", verilog_scopet::FUNCTION); }
21412141
';'
21422142
tf_item_declaration_brace statement
21432143
TOK_ENDFUNCTION
@@ -2152,7 +2152,7 @@ function_body_declaration:
21522152
}
21532153
| function_data_type_or_implicit
21542154
function_identifier
2155-
{ push_scope(stack_expr($2).get(ID_identifier), "."); }
2155+
{ push_scope(stack_expr($2).get(ID_identifier), ".", verilog_scopet::FUNCTION); }
21562156
'(' tf_port_list_opt ')' ';'
21572157
tf_item_declaration_brace statement
21582158
TOK_ENDFUNCTION
@@ -2193,7 +2193,7 @@ function_prototype: TOK_FUNCTION data_type_or_void function_identifier
21932193

21942194
task_declaration:
21952195
TOK_TASK task_identifier
2196-
{ push_scope(stack_expr($2).get(ID_identifier), "."); }
2196+
{ push_scope(stack_expr($2).get(ID_identifier), ".", verilog_scopet::TASK); }
21972197
';'
21982198
tf_item_declaration_brace
21992199
statement_or_null TOK_ENDTASK
@@ -2205,7 +2205,7 @@ task_declaration:
22052205
pop_scope();
22062206
}
22072207
| TOK_TASK task_identifier
2208-
{ push_scope(stack_expr($2).get(ID_identifier), "."); }
2208+
{ push_scope(stack_expr($2).get(ID_identifier), ".", verilog_scopet::TASK); }
22092209
'(' tf_port_list_opt ')' ';'
22102210
tf_item_declaration_brace
22112211
statement_or_null TOK_ENDTASK
@@ -3385,7 +3385,7 @@ seq_block:
33853385
TOK_END
33863386
{ init($$, ID_block); swapop($$, $2); }
33873387
| TOK_BEGIN TOK_COLON block_identifier
3388-
{ push_scope(stack_expr($3).id(), "."); }
3388+
{ push_scope(stack_expr($3).id(), ".", verilog_scopet::BLOCK); }
33893389
block_item_declaration_or_statement_or_null_brace
33903390
TOK_END
33913391
{ init($$, ID_block);

src/verilog/verilog_scope.h

+30-7
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,41 @@ Author: Daniel Kroening, [email protected]
1616
// parser scopes and identifiers
1717
struct verilog_scopet
1818
{
19-
verilog_scopet() : parent(nullptr), prefix("Verilog::")
19+
using kindt = enum {
20+
GLOBAL,
21+
FILE,
22+
PACKAGE,
23+
MODULE,
24+
CLASS,
25+
ENUM_NAME,
26+
TASK,
27+
FUNCTION,
28+
BLOCK,
29+
TYPEDEF,
30+
OTHER
31+
};
32+
33+
verilog_scopet() : parent(nullptr), prefix("Verilog::"), kind(GLOBAL)
2034
{
2135
}
2236

2337
verilog_scopet(
2438
irep_idt _base_name,
2539
const std::string &separator,
26-
verilog_scopet *_parent)
40+
verilog_scopet *_parent,
41+
kindt _kind)
2742
: parent(_parent),
2843
__base_name(_base_name),
29-
prefix(id2string(_parent->prefix) + id2string(_base_name) + separator)
44+
prefix(id2string(_parent->prefix) + id2string(_base_name) + separator),
45+
kind(_kind)
3046
{
3147
}
3248

3349
verilog_scopet *parent = nullptr;
3450
bool is_type = false;
3551
irep_idt __base_name;
3652
std::string prefix;
53+
kindt kind;
3754

3855
irep_idt identifier() const
3956
{
@@ -58,17 +75,23 @@ class verilog_scopest
5875

5976
scopet top_scope, *current_scope = &top_scope;
6077

61-
scopet &add_name(irep_idt _base_name, const std::string &separator)
78+
scopet &add_name(
79+
irep_idt _base_name,
80+
const std::string &separator,
81+
scopet::kindt kind)
6282
{
6383
auto result = current_scope->scope_map.emplace(
64-
_base_name, scopet{_base_name, separator, current_scope});
84+
_base_name, scopet{_base_name, separator, current_scope, kind});
6585
return result.first->second;
6686
}
6787

6888
// Create the given sub-scope of the current scope.
69-
void push_scope(irep_idt _base_name, const std::string &separator)
89+
void push_scope(
90+
irep_idt _base_name,
91+
const std::string &separator,
92+
scopet::kindt kind)
7093
{
71-
current_scope = &add_name(_base_name, separator);
94+
current_scope = &add_name(_base_name, separator, kind);
7295
}
7396

7497
void pop_scope()

0 commit comments

Comments
 (0)