aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-disp_dot.adb
blob: e5d1981b6fc01d254ab20fd6376a1c95a8046553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
--  Routine to dump (for debugging purpose) a netlist.
--  Copyright (C) 2017 Tristan Gingold
--
--  This file is part of GHDL.
--
--  This program is free software: you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation, either version 2 of the License, or
--  (at your option) any later version.
--
--  This program is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--  GNU General Public License for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with this program.  If not, see <gnu.org/licenses>.

with Simple_IO; use Simple_IO;
with Utils_IO; use Utils_IO;

with Netlists.Utils; use Netlists.Utils;
with Netlists.Iterators; use Netlists.Iterators;
with Netlists.Dump; use Netlists.Dump;

package body Netlists.Disp_Dot is

   -- That can't be right.
   -- This must already be defined somewhere.
   type Port_Dir is (Port_Input, Port_Output);

   Prefix_Port_Input  : constant String := "pi";
   Prefix_Port_Output : constant String := "po";
   Prefix_Instance    : constant String := "i";

   procedure Put_Port (Dir : in Port_Dir; M : in Module; Idx : in Port_Nbr) is
   begin
      Put("  ");
      case Dir is
         when Port_Input  => Put(Prefix_Port_Input);
         when Port_Output => Put(Prefix_Port_Output);
      end case;
      Put_Uns32 (Uns32 (Idx - 1));
      Put(" [label=""" & "\");
      case Dir is
         when Port_Input  => Dump_Name(Get_Input_Desc (M, Idx - 1).Name);
         when Port_Output => Dump_Name(Get_Output_Desc(M, Idx - 1).Name);
      end case;
      Put("""];");
      New_Line;
   end Put_Port;

   procedure Put_Port_Input (M : in Module; Idx : in Port_Nbr) is
   begin
      Put_Port(Port_Input, M, Idx);
   end Put_Port_Input;

   procedure Put_Instance (Inst : in Instance; M : in Module) is
   begin
      Put ("  " & Prefix_Instance);
      Put_Uns32 (Uns32 (Inst));
      Put (" [label=""");
      Dump_Name (Get_Module_Name (M));
      Put_Line ("""];");
   end Put_Instance;

   procedure Put_Port_Output (M : in Module; Idx : in Port_Nbr) is
   begin
      Put_Port(Port_Output, M, Idx);
   end Put_Port_Output;

   procedure Put_Net_Port_To_Instance (Idx : in Port_Nbr;
                                       D : in Instance; N : in Net) is
   begin
      Put ("  " & Prefix_Port_Input);
      Put_Uns32 (Uns32 (Idx - 1));
      Put (" -> " & Prefix_Instance);
      Put_Uns32 (Uns32 (D));
      Put (" [label=""n");
      Put_Uns32 (Uns32 (N));
      Put ("""]");
      Put_Line (";");
   end Put_Net_Port_To_Instance;

   procedure Put_Net_Instance_To_Port (D : in Instance;
                                       Idx : in Port_Nbr; N : in Net) is
   begin
      Put("  " & Prefix_Instance);
      Put_Uns32(Uns32(D));
      Put(" -> " & Prefix_Port_Output);
      Put_Uns32 (Uns32 (Idx - 1));
      Put (" [label=""n");
      Put_Uns32 (Uns32 (N));
      Put ("""]");
      Put_Line (";");
   end Put_Net_Instance_To_Port;

   procedure Put_Net_Instance_To_Instance (Inst, D : in Instance;
                                           N : in Net) is
   begin
      Put ("  " & Prefix_Instance);
      Put_Uns32 (Uns32 (Inst));
      Put (" -> " & Prefix_Instance);
      Put_Uns32 (Uns32 (D));
      Put (" [label=""n");
      Put_Uns32 (Uns32 (N));
      Put ("""]");
      Put_Line (";");
   end Put_Net_Instance_To_Instance;

   procedure Disp_Dot_Instance (Self : in Instance; Inst : Instance)
   is
      M : constant Module := Get_Module (Inst);
      N : Net;
      I : Input;
      D : Instance;
   begin
      Put_Instance(Inst, M);

      for Idx in 1 .. Get_Nbr_Outputs (Inst) loop
         N := Get_Output (Inst, Idx - 1);
         I := Get_First_Sink (N);
         while I /= No_Input loop
            D := Get_Input_Parent (I);
            if D = Self then
               -- Hold on a second, this net goes straight to
               -- an output port of the top module !
               -- Do not write the net, the top module has
               -- already done it.
               null;
            else
               Put_Net_Instance_To_Instance(Inst, D, N);
            end if;
            I := Get_Next_Sink (I);
         end loop;
      end loop;
   end Disp_Dot_Instance;

   procedure Disp_Dot_Module (M : Module) is
      Self : constant Instance := Get_Self_Instance (M);
      N : Net;
      I : Input;
      D : Instance;
   begin
      Put ("digraph m");
      Put_Uns32 (Uns32 (M));
      Put_Line (" {");

      -- uh ?
      if Self = No_Instance then
         return;
      end if;

      --  Handle inputs and outputs.
      for Idx in 1 .. Get_Nbr_Inputs (M) loop
         Put_Port_Input(M, Idx);

         N := Get_Output (Self, Idx - 1);
         I := Get_First_Sink (N);
         while I /= No_Input loop
            D := Get_Input_Parent (I);
            Put_Net_Port_To_Instance(Idx, D, N);
            I := Get_Next_Sink (I);
         end loop;
         New_Line;
      end loop;

      for Idx in 1 .. Get_Nbr_Outputs(M) loop
         Put_Port_Output(M, Idx);
         I := Get_Input(Self, Idx - 1);
         N := Get_Driver(I);
         D := Get_Net_Parent(N);
         Put_Net_Instance_To_Port(D, Idx, N);
         New_Line;
      end loop;

      for Inst of Instances (M) loop
         Disp_Dot_Instance (Self, Inst);
         New_Line;
      end loop;

      Put_Line ("}");
   end Disp_Dot_Module;

   procedure Disp_Dot_Top_Module (M : Module) is
   begin
      --  Submodules.
      for S of Sub_Modules (M) loop
         if Get_Id (S) >= Id_User_None then
            Disp_Dot_Module (S);
            exit;
         end if;
      end loop;
   end Disp_Dot_Top_Module;
end Netlists.Disp_Dot;