diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-11 18:29:30 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-11 18:29:30 +0100 |
commit | 5e13660e8ffb8192f6e7aaea57df66f6281cf1ed (patch) | |
tree | c9ab5ac59e4b34023d950f1b9da9c71a6b86d050 /src/vhdl | |
parent | 9cbd04885b4c21c980c78c1eef1a6608c3728877 (diff) | |
download | ghdl-5e13660e8ffb8192f6e7aaea57df66f6281cf1ed.tar.gz ghdl-5e13660e8ffb8192f6e7aaea57df66f6281cf1ed.tar.bz2 ghdl-5e13660e8ffb8192f6e7aaea57df66f6281cf1ed.zip |
synth-vhdl_eval: handle to_X01 for bit to std_ulogic.
Fix #2307
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-ieee-std_logic_1164.adb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-ieee-std_logic_1164.adb b/src/vhdl/vhdl-ieee-std_logic_1164.adb index 207d2f0c5..93c8dec8e 100644 --- a/src/vhdl/vhdl-ieee-std_logic_1164.adb +++ b/src/vhdl/vhdl-ieee-std_logic_1164.adb @@ -41,6 +41,13 @@ package body Vhdl.Ieee.Std_Logic_1164 is return Base_Type = Std_Package.Bit_Vector_Type_Definition; end Is_Bitvec_Parameter; + function Is_Bit_Parameter (Inter : Iir) return Boolean + is + Base_Type : constant Iir := Get_Base_Type (Get_Type (Inter)); + begin + return Base_Type = Std_Package.Bit_Type_Definition; + end Is_Bit_Parameter; + function Is_Integer_Parameter (Inter : Iir) return Boolean is begin return (Get_Base_Type (Get_Type (Inter)) @@ -219,6 +226,24 @@ package body Vhdl.Ieee.Std_Logic_1164 is return True; end Is_Bitvec_Function; + -- Return True iff the profile of FUNC is: (l : bit) + function Is_Bit_Function (Func : Iir) return Boolean + is + Inter : constant Iir := Get_Interface_Declaration_Chain (Func); + begin + if Get_Implicit_Definition (Func) /= Iir_Predefined_None then + return False; + end if; + if Inter = Null_Iir or else not Is_Bit_Parameter (Inter) then + return False; + end if; + if Get_Chain (Inter) /= Null_Iir then + return False; + end if; + + return True; + end Is_Bit_Function; + procedure Extract_Declarations (Pkg : Iir_Package_Declaration) is Error : exception; @@ -382,6 +407,8 @@ package body Vhdl.Ieee.Std_Logic_1164 is Predefined := Iir_Predefined_Ieee_1164_To_X01_Slv; elsif Is_Scalar_Function (Decl) then Predefined := Iir_Predefined_Ieee_1164_To_X01_Log; + elsif Is_Bit_Function (Decl) then + Predefined := Iir_Predefined_Ieee_1164_To_X01_Bit_Log; end if; when Name_To_UX01 => if Is_Vector_Function (Decl) then |