aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-09-12 09:59:03 +0200
committerTristan Gingold <tgingold@free.fr>2021-09-12 09:59:03 +0200
commita3326f7439515f192ec798ad8f1ceb2b29565345 (patch)
treedec346bae5d9fecee0f612f78bca234e2a1eb058 /src/vhdl
parentbe8a0febe889ad3211f058df01ad66d2c4f74f50 (diff)
downloadghdl-a3326f7439515f192ec798ad8f1ceb2b29565345.tar.gz
ghdl-a3326f7439515f192ec798ad8f1ceb2b29565345.tar.bz2
ghdl-a3326f7439515f192ec798ad8f1ceb2b29565345.zip
vhdl-canon: recurse for default block configuration of a vunit.
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/vhdl-canon.adb35
1 files changed, 23 insertions, 12 deletions
diff --git a/src/vhdl/vhdl-canon.adb b/src/vhdl/vhdl-canon.adb
index 9e3dea60e..1db61ad63 100644
--- a/src/vhdl/vhdl-canon.adb
+++ b/src/vhdl/vhdl-canon.adb
@@ -3269,6 +3269,27 @@ package body Vhdl.Canon is
end case;
end Canon_Block_Configuration_Statement;
+ -- Recursion for Canon_Block_Configuration: canonicalize each item of a
+ -- block configuration (starting with FIRST_ITEM).
+ procedure Canon_Block_Configuration_Recurse (Top : Iir_Design_Unit;
+ First_Item : Iir)
+ is
+ El : Iir;
+ begin
+ El := First_Item;
+ while El /= Null_Iir loop
+ case Get_Kind (El) is
+ when Iir_Kind_Block_Configuration =>
+ Canon_Block_Configuration (Top, El);
+ when Iir_Kind_Component_Configuration =>
+ Canon_Component_Configuration (Top, El);
+ when others =>
+ Error_Kind ("canon_block_configuration_recurse", El);
+ end case;
+ El := Get_Chain (El);
+ end loop;
+ end Canon_Block_Configuration_Recurse;
+
procedure Canon_Block_Configuration (Top : Iir_Design_Unit;
Conf : Iir_Block_Configuration)
is
@@ -3351,18 +3372,7 @@ package body Vhdl.Canon is
Set_Configuration_Item_Chain (Conf, First_Item);
-- 4) Canon component configuration and block configuration (recursion).
- El := First_Item;
- while El /= Null_Iir loop
- case Get_Kind (El) is
- when Iir_Kind_Block_Configuration =>
- Canon_Block_Configuration (Top, El);
- when Iir_Kind_Component_Configuration =>
- Canon_Component_Configuration (Top, El);
- when others =>
- Error_Kind ("canon_block_configuration", El);
- end case;
- El := Get_Chain (El);
- end loop;
+ Canon_Block_Configuration_Recurse (Top, First_Item);
end Canon_Block_Configuration;
procedure Canon_Interface_List (Chain : Iir)
@@ -3447,6 +3457,7 @@ package body Vhdl.Canon is
end loop;
Set_Configuration_Item_Chain (Blk_Cfg, First_Conf);
+ Canon_Block_Configuration_Recurse (Unit, First_Conf);
end Canon_Psl_Verification_Unit;
procedure Canonicalize (Unit: Iir_Design_Unit)