diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-05-02 18:35:30 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-05-02 18:35:30 +0200 |
commit | fd518765a1f0d263d94a26f825d821c38ee1593a (patch) | |
tree | a99bdbc8074e6d3e176ae88f6854960bcc2a8812 /src/synth | |
parent | a67a8ab579534255f14c0a15862c214ac29d83d3 (diff) | |
download | ghdl-fd518765a1f0d263d94a26f825d821c38ee1593a.tar.gz ghdl-fd518765a1f0d263d94a26f825d821c38ee1593a.tar.bz2 ghdl-fd518765a1f0d263d94a26f825d821c38ee1593a.zip |
synth-vhdl_context: resize table before access. Fix #2049
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-vhdl_context.adb | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/src/synth/synth-vhdl_context.adb b/src/synth/synth-vhdl_context.adb index 472d5ea4f..dc79aaa29 100644 --- a/src/synth/synth-vhdl_context.adb +++ b/src/synth/synth-vhdl_context.adb @@ -32,14 +32,19 @@ package body Synth.Vhdl_Context is Table_Low_Bound => First_Instance_Id, Table_Initial => 16); + procedure Resize_Extra_Tables (Id : Instance_Id_Type) is + begin + while Id > Extra_Tables.Last loop + Extra_Tables.Append ((Base => null, Name => No_Sname)); + end loop; + end Resize_Extra_Tables; + procedure Set_Extra (Inst : Synth_Instance_Acc; Extra : Extra_Vhdl_Instance_Type) is Id : constant Instance_Id_Type := Get_Instance_Id (Inst); begin - while Id > Extra_Tables.Last loop - Extra_Tables.Append ((Base => null, Name => No_Sname)); - end loop; + Resize_Extra_Tables (Id); Extra_Tables.Table (Id) := Extra; end Set_Extra; @@ -69,10 +74,13 @@ package body Synth.Vhdl_Context is procedure Set_Extra (Inst : Synth_Instance_Acc; Parent : Synth_Instance_Acc; - Name : Sname := No_Sname) is + Name : Sname := No_Sname) + is + Id : constant Instance_Id_Type := Get_Instance_Id (Inst); begin - Set_Extra (Inst, (Base => Get_Instance_Extra (Parent).Base, - Name => Name)); + Resize_Extra_Tables (Id); + Extra_Tables.Table (Id) := (Base => Get_Instance_Extra (Parent).Base, + Name => Name); end Set_Extra; function Make_Instance (Parent : Synth_Instance_Acc; |