diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-12 18:24:24 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-12 18:24:24 +0100 |
commit | 768c62a76be455d299a065e5516fb8b7a917c019 (patch) | |
tree | 891c81c489597d70f58035d6e519d4488dff4ee3 /src/simul/simul-vhdl_elab.adb | |
parent | 00607141b93dbbd38f83c2faeb88db80df1a7739 (diff) | |
download | ghdl-768c62a76be455d299a065e5516fb8b7a917c019.tar.gz ghdl-768c62a76be455d299a065e5516fb8b7a917c019.tar.bz2 ghdl-768c62a76be455d299a065e5516fb8b7a917c019.zip |
simul: handle PSL aborts
Diffstat (limited to 'src/simul/simul-vhdl_elab.adb')
-rw-r--r-- | src/simul/simul-vhdl_elab.adb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/simul/simul-vhdl_elab.adb b/src/simul/simul-vhdl_elab.adb index 03bd3f863..0ff4d2446 100644 --- a/src/simul/simul-vhdl_elab.adb +++ b/src/simul/simul-vhdl_elab.adb @@ -21,6 +21,11 @@ with Areapools; with Vhdl.Errors; use Vhdl.Errors; with Vhdl.Utils; use Vhdl.Utils; with Vhdl.Canon; +with Vhdl.Canon_PSL; + +with PSL.Nodes; +with PSL.Subsets; +with PSL.Types; with Synth.Vhdl_Stmts; with Synth.Vhdl_Decls; @@ -621,6 +626,23 @@ package body Simul.Vhdl_Elab is | Iir_Kind_Psl_Cover_Directive => List := Get_PSL_Clock_Sensitivity (Proc); Gather_Sensitivity (Inst, Proc_Idx, List); + if Get_Kind (Proc) in Iir_Kinds_Psl_Property_Directive + and then Get_PSL_Abort_Flag (Proc) + then + declare + use PSL.Types; + use PSL.Nodes; + Prop : constant PSL_Node := Get_Psl_Property (Proc); + begin + if PSL.Subsets.Is_Async_Abort (Prop) then + List := Create_Iir_List; + Vhdl.Canon_PSL.Canon_Extract_Sensitivity + (Get_Boolean (Prop), List); + Gather_Sensitivity (Inst, Proc_Idx, List); + Destroy_Iir_List (List); + end if; + end; + end if; return; when Iir_Kind_Concurrent_Break_Statement => List := Get_Sensitivity_List (Proc); |