aboutsummaryrefslogtreecommitdiffstats
path: root/src/simul
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-08-23 07:01:35 +0200
committerTristan Gingold <tgingold@free.fr>2022-08-23 07:01:35 +0200
commit6961b3f82d0be3d891805ac32f8028cc15b3aa4e (patch)
tree6c5f5385e9a3b0f55fedbd358edc89a373de215c /src/simul
parente21fddad501a6da262133e220970fea42177d579 (diff)
downloadghdl-6961b3f82d0be3d891805ac32f8028cc15b3aa4e.tar.gz
ghdl-6961b3f82d0be3d891805ac32f8028cc15b3aa4e.tar.bz2
ghdl-6961b3f82d0be3d891805ac32f8028cc15b3aa4e.zip
simul: factorize code to compute number of sources
Diffstat (limited to 'src/simul')
-rw-r--r--src/simul/simul-vhdl_debug.adb4
-rw-r--r--src/simul/simul-vhdl_elab.adb35
-rw-r--r--src/simul/simul-vhdl_elab.ads9
-rw-r--r--src/simul/simul-vhdl_simul.adb122
4 files changed, 50 insertions, 120 deletions
diff --git a/src/simul/simul-vhdl_debug.adb b/src/simul/simul-vhdl_debug.adb
index f2ce5cb67..71d3f9258 100644
--- a/src/simul/simul-vhdl_debug.adb
+++ b/src/simul/simul-vhdl_debug.adb
@@ -454,7 +454,7 @@ package body Simul.Vhdl_Debug is
New_Line;
if Boolean'(True) then
- Put (" nbr sources (drv + conn):");
+ Put (" nbr sources (drv + conn : total):");
New_Line;
for I in 0 .. S.Typ.W - 1 loop
Put (" ");
@@ -463,6 +463,8 @@ package body Simul.Vhdl_Debug is
Put_Uns32 (S.Nbr_Sources (I).Nbr_Drivers);
Put (" + ");
Put_Uns32 (S.Nbr_Sources (I).Nbr_Conns);
+ Put (" : ");
+ Put_Uns32 (S.Nbr_Sources (I).Total);
New_Line;
end loop;
end if;
diff --git a/src/simul/simul-vhdl_elab.adb b/src/simul/simul-vhdl_elab.adb
index 61737af24..f5156cca5 100644
--- a/src/simul/simul-vhdl_elab.adb
+++ b/src/simul/simul-vhdl_elab.adb
@@ -88,6 +88,7 @@ package body Simul.Vhdl_Elab is
new Nbr_Sources_Array'(0 .. E.Typ.W - 1 =>
(Nbr_Drivers => 0,
Nbr_Conns => 0,
+ Total => 0,
Last_Proc => No_Process_Index));
end if;
@@ -728,6 +729,7 @@ package body Simul.Vhdl_Elab is
Simul.Vhdl_Debug.Init;
+ -- Init Signals_Table.
Signals_Table.Set_Last (Get_Nbr_Signal);
for I in Signals_Table.First .. Signals_Table.Last loop
Signals_Table.Table (I) :=
@@ -749,10 +751,43 @@ package body Simul.Vhdl_Elab is
end loop;
end;
+ -- Gather declarations in the hierarchy.
Gather_Processes_1 (Top);
-- For the debugger.
Top_Instance := Top;
+
+ -- Compute total number of sources.
+ for I in Signals_Table.First .. Signals_Table.Last loop
+ declare
+ E : Signal_Entry renames Signals_Table.Table (I);
+ Is_Out : constant Boolean :=
+ Get_Kind (E.Decl) = Iir_Kind_Interface_Signal_Declaration
+ and then Get_Mode (E.Decl) in Iir_Out_Modes;
+ begin
+ for J in 1 .. E.Typ.W loop
+ declare
+ Ns : Nbr_Sources_Type renames E.Nbr_Sources (J - 1);
+ begin
+ Ns.Total := Ns.Nbr_Drivers + Ns.Nbr_Conns;
+ if Ns.Total = 0 and then Is_Out then
+ Ns.Total := 1;
+ end if;
+ if E.Collapsed_By /= No_Signal_Index then
+ -- Add to the parent.
+ declare
+ C_Ns : Nbr_Sources_Type renames
+ Signals_Table.Table (E.Collapsed_By)
+ .Nbr_Sources (J - 1);
+ begin
+ C_Ns.Total := C_Ns.Total + Ns.Total;
+ end;
+ end if;
+ end;
+ end loop;
+ end;
+ end loop;
+
end Gather_Processes;
procedure Elab_Processes
diff --git a/src/simul/simul-vhdl_elab.ads b/src/simul/simul-vhdl_elab.ads
index 0fb790475..41185806f 100644
--- a/src/simul/simul-vhdl_elab.ads
+++ b/src/simul/simul-vhdl_elab.ads
@@ -124,8 +124,17 @@ package Simul.Vhdl_Elab is
-- Number of drivers and out connections for each scalar element.
type Nbr_Sources_Type is record
+ -- Number of processes that drive the signal.
Nbr_Drivers : Uns32;
+
+ -- Number of sources due to connections.
Nbr_Conns : Uns32;
+
+ -- Total number of sources, including sources of collapsed signals.
+ Total : Uns32;
+
+ -- Used only while computing the number of drivers: process for the
+ -- last driver.
Last_Proc : Process_Index_Type;
end record;
diff --git a/src/simul/simul-vhdl_simul.adb b/src/simul/simul-vhdl_simul.adb
index 58efc7101..70305d04f 100644
--- a/src/simul/simul-vhdl_simul.adb
+++ b/src/simul/simul-vhdl_simul.adb
@@ -18,7 +18,6 @@
with System;
with Ada.Unchecked_Conversion;
-with Ada.Unchecked_Deallocation;
with Simple_IO;
with Utils_IO;
@@ -1794,114 +1793,6 @@ package body Simul.Vhdl_Simul is
end case;
end Exec_Write_Signal;
- type Nbr_Sources_Vector is array (Uns32 range <>) of Natural;
- type Nbr_Sources_Vector_Acc is access Nbr_Sources_Vector;
- procedure Free is new Ada.Unchecked_Deallocation
- (Nbr_Sources_Vector, Nbr_Sources_Vector_Acc);
-
- -- Compute the number of sources (drivers + conn) for each scalar
- -- sub-element of signal SIG.
- procedure Compute_Nbr_Sources (Vec : in out Nbr_Sources_Vector;
- Sig : Signal_Index_Type)
- is
- type Proc_Sources_Vector is array (Uns32 range <>) of
- Process_Index_Type;
- type Proc_Sources_Vector_Acc is access Proc_Sources_Vector;
- procedure Free is new Ada.Unchecked_Deallocation
- (Proc_Sources_Vector, Proc_Sources_Vector_Acc);
- Procs : Proc_Sources_Vector_Acc;
-
- S : Signal_Entry renames Signals_Table.Table (Sig);
- Drv : Driver_Index_Type;
- Conn : Connect_Index_Type;
- begin
- Drv := S.Drivers;
-
- if S.Connect = No_Connect_Index then
- if Drv = No_Driver_Index then
- -- No connections, no drivers.
- return;
- end if;
-
- declare
- E : Driver_Entry renames Drivers_Table.Table (Drv);
- Off : Uns32;
- begin
- if E.Prev_Sig = No_Driver_Index then
- -- Only one driver, this is probably a very common case.
- pragma Assert (E.Typ.W > 0);
- Off := E.Off.Net_Off;
- for I in Off .. Off + E.Typ.W - 1 loop
- Vec (I) := Vec (I) + 1;
- end loop;
- return;
- end if;
- end;
- end if;
-
- if Drv /= No_Driver_Index then
-
- -- Count number of drivers.
- -- We know that drivers from the same process are consecutive in the
- -- driver list for a signal (because drivers are registered by
- -- process).
- Procs := new Proc_Sources_Vector'(0 .. S.Typ.W - 1 =>
- No_Process_Index);
- loop
- declare
- E : Driver_Entry renames Drivers_Table.Table (Drv);
- Off : constant Uns32 := E.Off.Net_Off;
- begin
- for I in Off .. Off + E.Typ.W - 1 loop
- if Procs (I) /= E.Proc then
- Procs (I) := E.Proc;
- Vec (I) := Vec (I) + 1;
- end if;
- end loop;
-
- Drv := E.Prev_Sig;
- end;
- exit when Drv = No_Driver_Index;
- end loop;
- Free (Procs);
- end if;
-
- Conn := S.Connect;
- while Conn /= No_Connect_Index loop
- declare
- C : Connect_Entry renames Connect_Table.Table (Conn);
- Off : Uns32;
- begin
- if C.Formal.Base = Sig then
- if C.Drive_Formal then
- Off := C.Formal.Offs.Net_Off;
- for I in Off .. Off + C.Formal.Typ.W - 1 loop
- Vec (I) := Vec (I) + 1;
- end loop;
- end if;
- Conn := C.Formal_Link;
- else
- pragma Assert (C.Actual.Base = Sig);
- if C.Drive_Actual then
- if C.Collapsed then
- -- A connection with collapsed signal.
- -- Recurse on the formal.
- pragma Assert (C.Formal.Offs = (0, 0));
- pragma Assert (C.Formal.Typ.W = S.Typ.W);
- Compute_Nbr_Sources (Vec, C.Formal.Base);
- else
- Off := C.Actual.Offs.Net_Off;
- for I in Off .. Off + C.Actual.Typ.W - 1 loop
- Vec (I) := Vec (I) + 1;
- end loop;
- end if;
- end if;
- Conn := C.Actual_Link;
- end if;
- end;
- end loop;
- end Compute_Nbr_Sources;
-
type Resolv_Instance_Type is record
Func : Iir;
Inst : Synth_Instance_Acc;
@@ -1997,7 +1888,7 @@ package body Simul.Vhdl_Simul is
Sig_Off : Uns32;
Sig_Type: Iir;
Typ : Type_Acc;
- Vec : Nbr_Sources_Vector;
+ Vec : Nbr_Sources_Array;
Already_Resolved : Boolean)
is
Sub_Resolved : Boolean := Already_Resolved;
@@ -2011,9 +1902,7 @@ package body Simul.Vhdl_Simul is
and then Get_Kind (Sig_Type) in Iir_Kinds_Subtype_Definition
then
Resolv_Func := Get_Resolution_Indication (Sig_Type);
- if Resolv_Func /= Null_Iir
- and then Vec (Sig_Off) > 1
- then
+ if Resolv_Func /= Null_Iir and then Vec (Sig_Off).Total > 1 then
Sub_Resolved := True;
Resolv_Func := Get_Named_Entity (Resolv_Func);
Arr_Type :=
@@ -2118,8 +2007,6 @@ package body Simul.Vhdl_Simul is
Iir_Kind_To_Kind_Signal : constant Iir_Kind_To_Kind_Signal_Type :=
(Iir_Register_Kind => Kind_Signal_Register,
Iir_Bus_Kind => Kind_Signal_Bus);
-
- Vec : Nbr_Sources_Vector_Acc;
begin
if Get_Guarded_Signal_Flag (E.Decl) then
Kind := Iir_Kind_To_Kind_Signal (Get_Signal_Kind (E.Decl));
@@ -2129,10 +2016,7 @@ package body Simul.Vhdl_Simul is
Grt.Signals.Ghdl_Signal_Set_Mode (E.Kind, Kind, True);
- Vec := new Nbr_Sources_Vector'(0 .. E.Typ.W - 1 => 0);
- Compute_Nbr_Sources (Vec.all, Idx);
- Create_Signal (E.Val, 0, Sig_Type, E.Typ, Vec.all, False);
- Free (Vec);
+ Create_Signal (E.Val, 0, Sig_Type, E.Typ, E.Nbr_Sources.all, False);
end Create_User_Signal;
function Alloc_Signal_Memory (Vtype : Type_Acc) return Memory_Ptr