diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-01 18:38:12 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-01 18:38:12 +0100 |
commit | ddf587a71472a8740b044c976b8f67c537ab0c06 (patch) | |
tree | 19c1fec5c60ce941ff427eae6805a83b144bbbdb /src/synth/synth-vhdl_stmts.ads | |
parent | 4ac2b03fb79b40080dd3ae22788e543245eb0c28 (diff) | |
download | ghdl-ddf587a71472a8740b044c976b8f67c537ab0c06.tar.gz ghdl-ddf587a71472a8740b044c976b8f67c537ab0c06.tar.bz2 ghdl-ddf587a71472a8740b044c976b8f67c537ab0c06.zip |
synth: elaborate case generate statements
Diffstat (limited to 'src/synth/synth-vhdl_stmts.ads')
-rw-r--r-- | src/synth/synth-vhdl_stmts.ads | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/synth-vhdl_stmts.ads b/src/synth/synth-vhdl_stmts.ads index ac9cd13d8..e9eda5c25 100644 --- a/src/synth/synth-vhdl_stmts.ads +++ b/src/synth/synth-vhdl_stmts.ads @@ -157,6 +157,12 @@ package Synth.Vhdl_Stmts is Func : Node; Arg : Valtyp) return Valtyp; + -- Return the associated choice from CHOICES chain selected by SEL. + -- It returns the choice (not the associated expression or chain) which + -- carries the association. + function Execute_Static_Choices_Scalar + (Inst : Synth_Instance_Acc; Choices : Node; Sel : Int64) return Node; + -- Return the statements chain to be executed. function Execute_Static_Case_Statement (Inst : Synth_Instance_Acc; Stmt : Node; Sel : Valtyp) return Node; |