28
28
#define mts (x, y ) stack_expr(x).move_to_sub((irept &)stack_expr(y))
29
29
#define swapop (x, y ) stack_expr(x).operands().swap(stack_expr(y).operands())
30
30
#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 )
32
32
#define pop_scope () PARSER.scopes.pop_scope();
33
33
34
34
int yyveriloglex ();
@@ -644,7 +644,7 @@ module_identifier_with_scope:
644
644
module_identifier
645
645
{
646
646
$$ = $1 ;
647
- push_scope (stack_expr($1 ).id(), ".");
647
+ push_scope (stack_expr($1 ).id(), ".", verilog_scopet::MODULE );
648
648
}
649
649
;
650
650
@@ -823,7 +823,7 @@ class_declaration:
823
823
{
824
824
init ($$, ID_verilog_class);
825
825
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 );
827
827
}
828
828
class_item_brace
829
829
TOK_ENDCLASS
@@ -839,7 +839,7 @@ package_declaration:
839
839
lifetime_opt
840
840
package_identifier ' ;'
841
841
{
842
- push_scope (stack_expr ($5 ).id (), " ::" );
842
+ push_scope (stack_expr ($5 ).id (), " ::" , verilog_scopet::PACKAGE );
843
843
}
844
844
timeunits_declaration_opt
845
845
package_item_brace
@@ -1442,7 +1442,7 @@ net_declaration:
1442
1442
type_declaration:
1443
1443
TOK_TYPEDEF data_type new_identifier ' ;'
1444
1444
{ // 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 );
1446
1446
name.is_type = true ;
1447
1447
1448
1448
init ($$, ID_decl);
@@ -1569,7 +1569,7 @@ enum_name_declaration:
1569
1569
TOK_NON_TYPE_IDENTIFIER enum_name_value_opt
1570
1570
{
1571
1571
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 );
1573
1573
stack_expr ($$).set (ID_base_name, scope.base_name ());
1574
1574
stack_expr ($$).set (ID_identifier, scope.identifier ());
1575
1575
stack_expr ($$).add (ID_value).swap (stack_expr ($2 ));
@@ -2137,7 +2137,7 @@ function_declaration: TOK_FUNCTION lifetime_opt function_body_declaration
2137
2137
function_body_declaration:
2138
2138
function_data_type_or_implicit
2139
2139
function_identifier
2140
- { push_scope (stack_expr ($2 ).get (ID_identifier), " ." ); }
2140
+ { push_scope (stack_expr ($2 ).get (ID_identifier), " ." , verilog_scopet::FUNCTION ); }
2141
2141
' ;'
2142
2142
tf_item_declaration_brace statement
2143
2143
TOK_ENDFUNCTION
@@ -2152,7 +2152,7 @@ function_body_declaration:
2152
2152
}
2153
2153
| function_data_type_or_implicit
2154
2154
function_identifier
2155
- { push_scope (stack_expr ($2 ).get (ID_identifier), " ." ); }
2155
+ { push_scope (stack_expr ($2 ).get (ID_identifier), " ." , verilog_scopet::FUNCTION ); }
2156
2156
' (' tf_port_list_opt ' )' ' ;'
2157
2157
tf_item_declaration_brace statement
2158
2158
TOK_ENDFUNCTION
@@ -2193,7 +2193,7 @@ function_prototype: TOK_FUNCTION data_type_or_void function_identifier
2193
2193
2194
2194
task_declaration:
2195
2195
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 ); }
2197
2197
' ;'
2198
2198
tf_item_declaration_brace
2199
2199
statement_or_null TOK_ENDTASK
@@ -2205,7 +2205,7 @@ task_declaration:
2205
2205
pop_scope ();
2206
2206
}
2207
2207
| 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 ); }
2209
2209
' (' tf_port_list_opt ' )' ' ;'
2210
2210
tf_item_declaration_brace
2211
2211
statement_or_null TOK_ENDTASK
@@ -3385,7 +3385,7 @@ seq_block:
3385
3385
TOK_END
3386
3386
{ init ($$, ID_block); swapop ($$, $2 ); }
3387
3387
| TOK_BEGIN TOK_COLON block_identifier
3388
- { push_scope (stack_expr ($3 ).id (), " ." ); }
3388
+ { push_scope (stack_expr ($3 ).id (), " ." , verilog_scopet::BLOCK ); }
3389
3389
block_item_declaration_or_statement_or_null_brace
3390
3390
TOK_END
3391
3391
{ init ($$, ID_block);
0 commit comments