diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-05-23 17:49:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-05-23 17:52:22 +0200 |
commit | 3dc2be548f3757cfb552d9af2921956f19713e2d (patch) | |
tree | 62070b2f19c651e120f86c80659fcd102a81ccb3 /src | |
parent | ef0164a6e0bb466c29bf6d9abba0d315b0ae9fd3 (diff) | |
download | ghdl-3dc2be548f3757cfb552d9af2921956f19713e2d.tar.gz ghdl-3dc2be548f3757cfb552d9af2921956f19713e2d.tar.bz2 ghdl-3dc2be548f3757cfb552d9af2921956f19713e2d.zip |
netlists: disp attributes in vhdl output (as comments). For #1318
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/netlists-disp_vhdl.adb | 115 | ||||
-rw-r--r-- | src/synth/netlists-disp_vhdl.ads | 1 | ||||
-rw-r--r-- | src/synth/synth-disp_vhdl.adb | 1 |
3 files changed, 97 insertions, 20 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb index 0ca1cdb04..ef1ebe3ff 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -77,7 +77,7 @@ package body Netlists.Disp_Vhdl is when Sname_User => Put_Id (Get_Sname_Suffix (N)); when Sname_Artificial => - Put (Image (Get_Sname_Suffix (N))); + Put_Id (Get_Sname_Suffix (N)); when Sname_Version => Put ("n"); Put_Name_Version (N); @@ -95,7 +95,7 @@ package body Netlists.Disp_Vhdl is if Get_Sname_Kind (N) = Sname_User and then Get_Sname_Prefix (N) = No_Sname then - Put (Name_Table.Image (Get_Sname_Suffix (N))); + Put_Id (Get_Sname_Suffix (N)); else Put_Name_1 (N); end if; @@ -113,7 +113,7 @@ package body Netlists.Disp_Vhdl is if Get_Sname_Kind (N) in Sname_User .. Sname_Artificial and then Get_Sname_Prefix (N) = No_Sname then - Put (Name_Table.Image (Get_Sname_Suffix (N))); + Put_Id (Get_Sname_Suffix (N)); else Put ("*err*"); end if; @@ -168,6 +168,50 @@ package body Netlists.Disp_Vhdl is end loop; end Disp_Binary_Digits; + procedure Disp_Pval_Binary (Pv : Pval) + is + Len : constant Uns32 := Get_Pval_Length (Pv); + V : Logic_32; + Off : Uns32; + begin + Put ('"'); + if Len > 0 then + V := Read_Pval (Pv, (Len - 1) / 32); + for I in reverse 0 .. Len - 1 loop + Off := I mod 32; + if Off = 31 then + V := Read_Pval (Pv, I / 32); + end if; + Disp_Binary_Digit (V.Val, V.Zx, Natural (Off)); + end loop; + end if; + Put ('"'); + end Disp_Pval_Binary; + + procedure Disp_Pval_String (Pv : Pval) + is + Len : constant Uns32 := Get_Pval_Length (Pv); + pragma Assert (Len rem 8 = 0); + V : Logic_32; + Off : Uns32; + C : Uns32; + begin + Put ('"'); + if Len > 0 then + V := Read_Pval (Pv, (Len - 1) / 32); + for I in reverse 0 .. (Len / 8) - 1 loop + Off := I mod 4; + if Off = 3 then + V := Read_Pval (Pv, I / 4); + end if; + pragma Assert (V.Zx = 0); + C := Shift_Right (V.Val, Natural (8 * Off)) and 16#ff#; + Put (Character'Val (C)); + end loop; + end if; + Put ('"'); + end Disp_Pval_String; + procedure Disp_Instance_Gate (Inst : Instance) is Imod : constant Module := Get_Module (Inst); @@ -211,23 +255,7 @@ package body Netlists.Disp_Vhdl is when Param_Uns32 => Put_Uns32 (Get_Param_Uns32 (Inst, P - 1)); when Param_Types_Pval => - declare - Pv : constant Pval := Get_Param_Pval (Inst, P - 1); - Len : constant Uns32 := Get_Pval_Length (Pv); - V : Logic_32; - Off : Uns32; - begin - Put ('"'); - V := Read_Pval (Pv, 0); - for I in reverse 0 .. Len - 1 loop - Off := I mod 32; - if Off = 31 then - V := Read_Pval (Pv, I / 32); - end if; - Disp_Binary_Digit (V.Val, V.Zx, Natural (Off)); - end loop; - Put ('"'); - end; + Disp_Pval_Binary (Get_Param_Pval (Inst, P - 1)); when Param_Invalid => Put ("*invalid*"); end case; @@ -1416,6 +1444,51 @@ package body Netlists.Disp_Vhdl is end loop; end Disp_Architecture_Statements; + procedure Disp_Architecture_Attributes (M : Module) + is + Attrs : constant Attribute_Map_Acc := Get_Attributes (M); + Attr : Attribute; + Inst : Instance; + Kind : Param_Type; + Val : Pval; + begin + if Attrs = null then + -- No attributes at all. + return; + end if; + + for I in + Attribute_Maps.First_Index .. Attribute_Maps.Last_Index (Attrs.all) + loop + Attr := Attribute_Maps.Get_Value (Attrs.all, I); + Inst := Attribute_Maps.Get_By_Index (Attrs.all, I); + while Attr /= No_Attribute loop + Put (" -- attribute "); + Put_Id (Get_Attribute_Name (Attr)); + Put (" of "); + Put_Name (Get_Instance_Name (Inst)); + Put (" is "); + Kind := Get_Attribute_Type (Attr); + Val := Get_Attribute_Pval (Attr); + case Kind is + when Param_Invalid + | Param_Uns32 => + Put ("??"); + when Param_Pval_String => + Disp_Pval_String (Val); + when Param_Pval_Vector + | Param_Pval_Integer + | Param_Pval_Boolean + | Param_Pval_Real + | Param_Pval_Time_Ps => + Disp_Pval_Binary (Val); + end case; + Put_Line (";"); + Attr := Get_Attribute_Next (Attr); + end loop; + end loop; + end Disp_Architecture_Attributes; + procedure Disp_Architecture (M : Module) is Self_Inst : constant Instance := Get_Self_Instance (M); @@ -1435,6 +1508,8 @@ package body Netlists.Disp_Vhdl is Disp_Architecture_Declarations (M); + Disp_Architecture_Attributes (M); + Put_Line ("begin"); Disp_Architecture_Statements (M); diff --git a/src/synth/netlists-disp_vhdl.ads b/src/synth/netlists-disp_vhdl.ads index afc29458f..da49129e6 100644 --- a/src/synth/netlists-disp_vhdl.ads +++ b/src/synth/netlists-disp_vhdl.ads @@ -22,6 +22,7 @@ package Netlists.Disp_Vhdl is procedure Disp_Vhdl (M : Module); procedure Disp_Architecture_Declarations (M : Module); + procedure Disp_Architecture_Attributes (M : Module); procedure Disp_Architecture_Statements (M : Module); procedure Put_Type (W : Width); diff --git a/src/synth/synth-disp_vhdl.adb b/src/synth/synth-disp_vhdl.adb index 885077e6f..2e895a08c 100644 --- a/src/synth/synth-disp_vhdl.adb +++ b/src/synth/synth-disp_vhdl.adb @@ -460,6 +460,7 @@ package body Synth.Disp_Vhdl is Put_Line (" is"); Disp_Ports_As_Signals (Main); Disp_Architecture_Declarations (Main); + Disp_Architecture_Attributes (Main); Put_Line ("begin"); if Inst /= null then |