diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-04-27 05:37:05 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-04-27 05:41:57 +0200 |
commit | 2cb68775de37c6869c1d3abcd3a07a3d160452df (patch) | |
tree | 06543f1ca78d53db1b0935ce72f12e942e4e5b2d /src/synth/synth-static_oper.adb | |
parent | d3953518b0f819040941303939ac48fac3d4b06f (diff) | |
download | ghdl-2cb68775de37c6869c1d3abcd3a07a3d160452df.tar.gz ghdl-2cb68775de37c6869c1d3abcd3a07a3d160452df.tar.bz2 ghdl-2cb68775de37c6869c1d3abcd3a07a3d160452df.zip |
synth-static_oper: handle bit/boolean array element operations
(at least and).
Fix #1898
Diffstat (limited to 'src/synth/synth-static_oper.adb')
-rw-r--r-- | src/synth/synth-static_oper.adb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/synth/synth-static_oper.adb b/src/synth/synth-static_oper.adb index 504e49c04..d5dc9159a 100644 --- a/src/synth/synth-static_oper.adb +++ b/src/synth/synth-static_oper.adb @@ -41,6 +41,12 @@ package body Synth.Static_Oper is -- (math library) on unix systems. pragma Linker_Options ("-lm"); + type Tf_Table_2d is array (Boolean, Boolean) of Boolean; + + Tf_2d_And : constant Tf_Table_2d := + (False => (others => False), + True => (True => True, False => False)); + function Create_Res_Bound (Prev : Type_Acc) return Type_Acc is begin if Prev.Vbound.Dir = Dir_Downto @@ -78,6 +84,21 @@ package body Synth.Static_Oper is return Res; end Synth_Vector_Dyadic; + function Synth_Tf_Array_Element (El, Arr : Memtyp; + Op : Tf_Table_2d) return Memtyp + is + Res : Memtyp; + Ve, Va : Boolean; + begin + Res := Create_Memory (Arr.Typ); + Ve := Boolean'Val (Read_U8 (El.Mem)); + for I in 1 .. Arr.Typ.Sz loop + Va := Boolean'Val (Read_U8 (Arr.Mem + (I - 1))); + Write_U8 (Res.Mem + (I - 1), Boolean'Pos (Op (Ve, Va))); + end loop; + return Res; + end Synth_Tf_Array_Element; + function Get_Static_Ulogic (Op : Memtyp) return Std_Ulogic is begin pragma Assert (Op.Typ.Kind = Type_Logic); @@ -391,6 +412,11 @@ package body Synth.Static_Oper is end; end if; + when Iir_Predefined_TF_Element_Array_And => + return Synth_Tf_Array_Element (Left, Right, Tf_2d_And); + when Iir_Predefined_TF_Array_Element_And => + return Synth_Tf_Array_Element (Right, Left, Tf_2d_And); + when Iir_Predefined_Ieee_1164_Vector_And | Iir_Predefined_Ieee_Numeric_Std_And_Uns_Uns | Iir_Predefined_Ieee_Numeric_Std_And_Sgn_Sgn => |