diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-04-29 08:47:16 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-04-29 08:47:16 +0200 |
commit | f9a32a4e94080760da1a6d584604c4df08c9ee51 (patch) | |
tree | 7ece1b1034f556aef83df7f048340f183e33fcb2 /pyGHDL/libghdl | |
parent | 5013d867c156c35d28ecaffd840e80e25d64c119 (diff) | |
download | ghdl-f9a32a4e94080760da1a6d584604c4df08c9ee51.tar.gz ghdl-f9a32a4e94080760da1a6d584604c4df08c9ee51.tar.bz2 ghdl-f9a32a4e94080760da1a6d584604c4df08c9ee51.zip |
vhdl-nodes: reorder, add iir_kinds_structural_statement
Diffstat (limited to 'pyGHDL/libghdl')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes.py | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py index eba36f86c..619d5c2c4 100644 --- a/pyGHDL/libghdl/vhdl/nodes.py +++ b/pyGHDL/libghdl/vhdl/nodes.py @@ -618,11 +618,6 @@ class Iir_Kinds: Iir_Kind.Procedure_Body, ] - Process_Statement = [ - Iir_Kind.Sensitized_Process_Statement, - Iir_Kind.Process_Statement, - ] - Interface_Object_Declaration = [ Iir_Kind.Interface_Constant_Declaration, Iir_Kind.Interface_Variable_Declaration, @@ -985,6 +980,14 @@ class Iir_Kinds: Iir_Kind.Component_Instantiation_Statement, ] + Structural_Statement = [ + Iir_Kind.Block_Statement, + Iir_Kind.If_Generate_Statement, + Iir_Kind.Case_Generate_Statement, + Iir_Kind.For_Generate_Statement, + Iir_Kind.Component_Instantiation_Statement, + ] + Simple_Concurrent_Statement = [ Iir_Kind.Sensitized_Process_Statement, Iir_Kind.Process_Statement, @@ -1000,6 +1003,17 @@ class Iir_Kinds: Iir_Kind.Psl_Restrict_Directive, ] + Process_Statement = [ + Iir_Kind.Sensitized_Process_Statement, + Iir_Kind.Process_Statement, + ] + + Concurrent_Signal_Assignment = [ + Iir_Kind.Concurrent_Simple_Signal_Assignment, + Iir_Kind.Concurrent_Conditional_Signal_Assignment, + Iir_Kind.Concurrent_Selected_Signal_Assignment, + ] + Psl_Property_Directive = [ Iir_Kind.Psl_Assert_Directive, Iir_Kind.Psl_Assume_Directive, @@ -1023,12 +1037,6 @@ class Iir_Kinds: Iir_Kind.For_Generate_Statement, ] - Concurrent_Signal_Assignment = [ - Iir_Kind.Concurrent_Simple_Signal_Assignment, - Iir_Kind.Concurrent_Conditional_Signal_Assignment, - Iir_Kind.Concurrent_Selected_Signal_Assignment, - ] - If_Case_Generate_Statement = [ Iir_Kind.If_Generate_Statement, Iir_Kind.Case_Generate_Statement, |