diff options
-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 |