8
8
9
9
from .logging import *
10
10
from .messages import *
11
- from . import ast , logging
11
+ from . import ast , logging , compat
12
12
import dml .globals
13
13
from . import dmllex12
14
14
from . import dmllex14
@@ -176,6 +176,7 @@ def prod(f):
176
176
@prod
177
177
def device (t ):
178
178
'dml : DEVICE objident SEMI maybe_bitorder device_statements'
179
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
179
180
t [0 ] = ast .dml (site (t ), t [2 ], t [5 ])
180
181
181
182
# Entry point for imported files
@@ -290,6 +291,7 @@ def array_list(t):
290
291
@prod
291
292
def object_regarray (t ):
292
293
'object : REGISTER objident array_list sizespec offsetspec maybe_istemplate object_spec'
294
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
293
295
t [0 ] = ast .object_ (site (t ), t [2 ], 'register' , t [3 ],
294
296
t [4 ] + t [5 ] + t [6 ] + t [7 ])
295
297
@@ -306,6 +308,7 @@ def bitrangespec_empty(t):
306
308
@prod_dml14
307
309
def object_field (t ):
308
310
'object : FIELD objident array_list bitrangespec maybe_istemplate object_spec'
311
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
309
312
t [0 ] = ast .object_ (site (t ), t [2 ], 'field' , t [3 ], t [4 ] + t [5 ] + t [6 ])
310
313
311
314
def endian_translate_bit (expr , width , bitorder ):
@@ -454,11 +457,13 @@ def object3(t):
454
457
| GROUP objident array_list maybe_istemplate object_spec
455
458
| PORT objident array_list maybe_istemplate object_spec
456
459
| IMPLEMENT objident array_list maybe_istemplate object_spec'''
460
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
457
461
t [0 ] = ast .object_ (site (t ), t [2 ], t [1 ], t [3 ], t [4 ] + t [5 ])
458
462
459
463
@prod_dml14
460
464
def object_subdevice (t ):
461
465
'''object : SUBDEVICE objident array_list maybe_istemplate object_spec'''
466
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
462
467
t [0 ] = ast .object_ (site (t ), t [2 ], t [1 ], t [3 ], t [4 ] + t [5 ])
463
468
464
469
@prod_dml12
@@ -582,6 +587,7 @@ def method_qualifiers_check(site, qualifiers, inp, outp, throws, default):
582
587
def object_method (t ):
583
588
'''method : method_qualifiers METHOD objident method_params_typed maybe_default compound_statement'''
584
589
name = t [3 ]
590
+ ident_enforce_not_discard_ref (site (t , 3 ), name )
585
591
(inp , outp , throws ) = t [4 ]
586
592
body = t [6 ]
587
593
(inp , outp ) = method_qualifiers_check (site (t ), t [1 ], inp , outp , throws ,
@@ -594,6 +600,7 @@ def object_method(t):
594
600
def object_inline_method (t ):
595
601
'''method : INLINE METHOD objident method_params_maybe_untyped maybe_default compound_statement'''
596
602
name = t [3 ]
603
+ ident_enforce_not_discard_ref (site (t , 3 ), name )
597
604
(inp , outp , throws ) = t [4 ]
598
605
if all (typ for (_ , asite , name , typ ) in inp ):
599
606
# inline annotation would have no effect for fully typed methods.
@@ -642,11 +649,13 @@ def arraydef2(t):
642
649
@prod_dml14
643
650
def arraydef (t ):
644
651
'''arraydef : ident LT expression'''
652
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
645
653
t [0 ] = (t [1 ], t [3 ])
646
654
647
655
@prod_dml14
648
656
def arraydef_implicit (t ):
649
657
'''arraydef : ident LT ELLIPSIS'''
658
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
650
659
t [0 ] = (t [1 ], None )
651
660
652
661
# Traits
@@ -745,15 +754,18 @@ def trait_method(t):
745
754
@prod
746
755
def shared_method_abstract (t ):
747
756
'''shared_method : ident method_params_typed SEMI'''
757
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
748
758
t [0 ] = (t [1 ], t [2 ], True , None , site (t , 3 ))
749
759
@prod
750
760
def shared_method_default (t ):
751
761
'''shared_method : ident method_params_typed DEFAULT compound_statement'''
762
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
752
763
t [0 ] = (t [1 ], t [2 ], True , t [4 ], lex_end_site (t , - 1 ))
753
764
754
765
@prod
755
766
def shared_method_final (t ):
756
767
'''shared_method : ident method_params_typed compound_statement'''
768
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
757
769
t [0 ] = (t [1 ], t [2 ], False , t [3 ], lex_end_site (t , - 1 ))
758
770
759
771
@prod_dml12
@@ -784,6 +796,7 @@ def template(t):
784
796
@prod_dml14
785
797
def template (t ):
786
798
'toplevel : TEMPLATE objident maybe_istemplate LBRACE template_stmts RBRACE'
799
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
787
800
ises = [s for s in t [5 ] if s .kind == 'is' ]
788
801
shared_methods = [s for s in t [5 ] if s .kind == 'sharedmethod' ]
789
802
if ises and shared_methods :
@@ -812,13 +825,15 @@ def impl_header(t):
812
825
@prod
813
826
def loggroup (t ):
814
827
'toplevel : LOGGROUP ident SEMI'
828
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
815
829
t [0 ] = ast .loggroup (site (t ), t [2 ])
816
830
817
831
# constant/extern
818
832
819
833
@prod
820
834
def constant (t ):
821
835
'toplevel : CONSTANT ident EQUALS expression SEMI'
836
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
822
837
t [0 ] = ast .constant (site (t ), t [2 ], t [4 ])
823
838
if logging .show_porting :
824
839
report (PCONSTANT (site (t )))
@@ -1019,6 +1034,7 @@ def object_else_if(t):
1019
1034
@prod
1020
1035
def object_parameter (t ):
1021
1036
'''parameter : param_ objident paramspec'''
1037
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
1022
1038
if logging .show_porting :
1023
1039
if t [2 ] == 'hard_reset_value' :
1024
1040
report (PHARD_RESET_VALUE (site (t , 2 )))
@@ -1031,6 +1047,7 @@ def object_parameter(t):
1031
1047
@prod_dml14
1032
1048
def object_typedparam (t ):
1033
1049
'''parameter : param_ objident COLON ctypedecl SEMI'''
1050
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
1034
1051
t [0 ] = ast .typedparam (site (t ), site (t , 2 ), t [2 ], t [4 ])
1035
1052
1036
1053
@prod
@@ -1207,6 +1224,7 @@ def cdecl_or_ident_decl(t):
1207
1224
@prod_dml14
1208
1225
def cdecl_or_ident_inline (t ):
1209
1226
'''cdecl_or_ident : INLINE ident'''
1227
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
1210
1228
t [0 ] = ast .cdecl (site (t ), t [2 ], None )
1211
1229
1212
1230
# A C-like declaration with required identifier name
@@ -1309,6 +1327,7 @@ def cdecl3(t):
1309
1327
@prod_dml14
1310
1328
def cdecl3 (t ):
1311
1329
'cdecl3 : ident'
1330
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
1312
1331
t [0 ] = [t [1 ]]
1313
1332
1314
1333
@prod
@@ -2211,6 +2230,7 @@ def ident_list_nonempty(t):
2211
2230
@prod_dml14
2212
2231
def ident_list_one (t ):
2213
2232
'nonempty_ident_list : ident'
2233
+ ident_enforce_not_discard_ref (site (t , 1 ), t [1 ])
2214
2234
t [0 ] = [(site (t , 1 ), t [1 ])]
2215
2235
2216
2236
@prod_dml14
@@ -2226,6 +2246,7 @@ def statement_delay_hook(t):
2226
2246
@prod_dml14
2227
2247
def statement_delay_hook_one_msg_param (t ):
2228
2248
'statement_except_hashif : AFTER expression ARROW ident COLON expression SEMI %prec bind'
2249
+ ident_enforce_not_discard_ref (site (t , 4 ), t [4 ])
2229
2250
t [0 ] = ast .afteronhook (site (t ), t [2 ], [(site (t , 4 ), t [4 ])], t [6 ])
2230
2251
2231
2252
@@ -2350,23 +2371,27 @@ def hashselect(t):
2350
2371
@prod
2351
2372
def select (t ):
2352
2373
'statement_except_hashif : hashselect ident IN LPAREN expression RPAREN WHERE LPAREN expression RPAREN statement hashelse statement'
2374
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
2353
2375
t [0 ] = ast .select (site (t ), t [2 ], t [5 ], t [9 ], t [11 ], t [13 ])
2354
2376
2355
2377
@prod_dml12
2356
2378
def foreach (t ):
2357
2379
'statement_except_hashif : FOREACH ident IN LPAREN expression RPAREN statement'
2380
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
2358
2381
t [0 ] = ast .foreach_dml12 (site (t ), t [2 ], t [5 ], t [7 ])
2359
2382
if logging .show_porting :
2360
2383
report (PHASH (site (t )))
2361
2384
2362
2385
@prod_dml14
2363
2386
def foreach (t ):
2364
2387
'statement_except_hashif : FOREACH ident IN LPAREN expression RPAREN statement'
2388
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
2365
2389
t [0 ] = ast .foreach (site (t ), t [2 ], t [5 ], t [7 ])
2366
2390
2367
2391
@prod_dml14
2368
2392
def hashforeach (t ):
2369
2393
'statement_except_hashif : HASHFOREACH ident IN LPAREN expression RPAREN statement'
2394
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
2370
2395
t [0 ] = ast .hashforeach (site (t ), t [2 ], t [5 ], t [7 ])
2371
2396
2372
2397
@prod_dml12
@@ -2397,6 +2422,7 @@ def case_statement_default(t):
2397
2422
@prod_dml14
2398
2423
def goto_statement (t ):
2399
2424
'statement_except_hashif : GOTO ident SEMI'
2425
+ ident_enforce_not_discard_ref (site (t , 2 ), t [2 ])
2400
2426
# Restricted goto should be implemented, see SIMICS-6130
2401
2427
report (ESYNTAX (site (t ), 'goto' ,
2402
2428
'goto statements are not yet implemented in DML 1.4' ))
@@ -2573,6 +2599,7 @@ def simple_array_list(t):
2573
2599
@prod_dml14
2574
2600
def hook_decl (t ):
2575
2601
'''hook_decl : HOOK LPAREN cdecl_list RPAREN ident simple_array_list SEMI'''
2602
+ ident_enforce_not_discard_ref (site (t , 5 ), t [5 ])
2576
2603
cdecl_list_enforce_unnamed (t [3 ])
2577
2604
if t [6 ]:
2578
2605
# Hook arrays are an internal feature, as their design depends on if we
@@ -2632,6 +2659,12 @@ def ident(t):
2632
2659
def ident (t ):
2633
2660
t [0 ] = t [1 ]
2634
2661
2662
+ def ident_enforce_not_discard_ref (site , ident ):
2663
+ if (str (ident ) == '_'
2664
+ and site .dml_version () != (1 , 2 )
2665
+ and compat .discard_ref_shadowing not in dml .globals .enabled_compat ):
2666
+ report (ESYNTAX (site , '_' , "reserved identifier" ))
2667
+
2635
2668
reserved_words_12 = [
2636
2669
'CLASS' , 'ENUM' , 'NAMESPACE' , 'PRIVATE' , 'PROTECTED' , 'PUBLIC' ,
2637
2670
'RESTRICT' , 'UNION' , 'USING' , 'VIRTUAL' , 'VOLATILE' ]
0 commit comments