aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/elab-vhdl_insts.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-08-25 04:12:33 +0200
committerTristan Gingold <tgingold@free.fr>2022-08-25 04:12:33 +0200
commit044fe92b06cbb970ea02c686709163147bd5f6ed (patch)
tree8d82c4748924a274eb4357f63a58a437212652ad /src/synth/elab-vhdl_insts.adb
parentd340440584e3b60d11ec4ac88b34b3ed0dd25d5e (diff)
downloadghdl-044fe92b06cbb970ea02c686709163147bd5f6ed.tar.gz
ghdl-044fe92b06cbb970ea02c686709163147bd5f6ed.tar.bz2
ghdl-044fe92b06cbb970ea02c686709163147bd5f6ed.zip
synth: handle unbounded top-level ports
Diffstat (limited to 'src/synth/elab-vhdl_insts.adb')
-rw-r--r--src/synth/elab-vhdl_insts.adb27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/synth/elab-vhdl_insts.adb b/src/synth/elab-vhdl_insts.adb
index 045de2e1c..36eda88e6 100644
--- a/src/synth/elab-vhdl_insts.adb
+++ b/src/synth/elab-vhdl_insts.adb
@@ -820,16 +820,25 @@ package body Elab.Vhdl_Insts is
-- association.
Inter := Get_Port_Chain (Entity);
while Is_Valid (Inter) loop
- if not Is_Fully_Constrained_Type (Get_Type (Inter)) then
- -- TODO
- raise Internal_Error;
+ if Is_Fully_Constrained_Type (Get_Type (Inter)) then
+ declare
+ Inter_Typ : Type_Acc;
+ begin
+ Inter_Typ := Elab_Declaration_Type (Top_Inst, Inter);
+ Create_Signal (Top_Inst, Inter, Inter_Typ);
+ end;
+ else
+ declare
+ Def : constant Node := Get_Default_Value (Inter);
+ Inter_Typ : Type_Acc;
+ Val : Valtyp;
+ begin
+ pragma Assert (Def /= Null_Node);
+ Inter_Typ := Elab_Declaration_Type (Top_Inst, Inter);
+ Val := Synth_Expression_With_Type (Top_Inst, Def, Inter_Typ);
+ Create_Signal (Top_Inst, Inter, Val.Typ);
+ end;
end if;
- declare
- Inter_Typ : Type_Acc;
- begin
- Inter_Typ := Elab_Declaration_Type (Top_Inst, Inter);
- Create_Signal (Top_Inst, Inter, Inter_Typ);
- end;
Inter := Get_Chain (Inter);
end loop;