diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-10-23 18:20:26 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-10-23 18:20:26 +0200 |
commit | 87d918b21de7f83c269b8270bc648988947ff52c (patch) | |
tree | e1f05f0ba3fba187232f5a4bb5686e9acd29890f /src/vhdl | |
parent | a70e34db18ae133e760de7fb898f72bf41653f79 (diff) | |
download | ghdl-87d918b21de7f83c269b8270bc648988947ff52c.tar.gz ghdl-87d918b21de7f83c269b8270bc648988947ff52c.tar.bz2 ghdl-87d918b21de7f83c269b8270bc648988947ff52c.zip |
Make Canon_Extract_Sequential_Statement_Chain_Sensitivity public.
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/canon.ads | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/vhdl/canon.ads b/src/vhdl/canon.ads index 7ae2579f6..a130580e7 100644 --- a/src/vhdl/canon.ads +++ b/src/vhdl/canon.ads @@ -47,7 +47,7 @@ package Canon is -- are converted (by an aggregate) into array. Canon_Concatenation : Boolean := False; - -- Do canonicalization: + -- Do canonicalization: -- Transforms concurrent statements into sensitized process statements -- (all but component instanciation and block). -- This computes sensivity list. @@ -77,13 +77,17 @@ package Canon is function Canon_Conditional_Signal_Assignment_Statement (Stmt : Iir) return Iir; - -- Compute the sensivity list of EXPR and add it to SENSIVITY_LIST. - -- If IS_TARGET is true, the longuest static prefix of the signal name - -- is not added to the sensitivity list, but other static prefix (such - -- as indexes of an indexed name) are added. + -- Compute the sensivity list of EXPR and add it to SENSIVITY_LIST. + -- If IS_TARGET is true, the longuest static prefix of the signal name + -- is not added to the sensitivity list, but other static prefix (such + -- as indexes of an indexed name) are added. procedure Canon_Extract_Sensitivity (Expr: Iir; Sensitivity_List: Iir_List; Is_Target: Boolean := False); + -- Likewise, but for all expressions appearing in statements CHAIN. + procedure Canon_Extract_Sequential_Statement_Chain_Sensitivity + (Chain : Iir; List : Iir_List); + -- Compute the sensitivity list of all-sensitized process PROC. -- Used for vhdl 08. function Canon_Extract_Process_Sensitivity |