OSDN Git Service

* 1aexcept.adb, 1aexcept.ads, 1ic.ads, 1ssecsta.adb,
[pf3gnuchains/gcc-fork.git] / gcc / ada / debug_a.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              D E B U G _ A                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-1998 Free Software Foundation, Inc.          --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 with Atree;   use Atree;
28 with Debug;   use Debug;
29 with Sinfo;   use Sinfo;
30 with Sinput;  use Sinput;
31 with Output;  use Output;
32
33 package body Debug_A is
34
35    Debug_A_Depth : Natural := 0;
36    --  Output for the debug A flag is preceded by a sequence of vertical bar
37    --  characters corresponding to the recursion depth of the actions being
38    --  recorded (analysis, expansion, resolution and evaluation of nodes)
39    --  This variable records the depth.
40
41    Max_Node_Ids : constant := 200;
42    --  Maximum number of Node_Id values that get stacked
43
44    Node_Ids : array (1 .. Max_Node_Ids) of Node_Id;
45    --  A stack used to keep track of Node_Id values for setting the value of
46    --  Current_Error_Node correctly. Note that if we have more than 200
47    --  recursion levels, we just don't reset the right value on exit, which
48    --  is not crucial, since this is only for debugging!
49
50    -----------------------
51    -- Local Subprograms --
52    -----------------------
53
54    procedure Debug_Output_Astring;
55    --  Outputs Debug_A_Depth number of vertical bars, used to preface messages
56
57    -------------------
58    -- Debug_A_Entry --
59    -------------------
60
61    procedure Debug_A_Entry (S : String; N : Node_Id) is
62    begin
63       if Debug_Flag_A then
64          Debug_Output_Astring;
65          Write_Str (S);
66          Write_Str ("Node_Id = ");
67          Write_Int (Int (N));
68          Write_Str ("  ");
69          Write_Location (Sloc (N));
70          Write_Str ("  ");
71          Write_Str (Node_Kind'Image (Nkind (N)));
72          Write_Eol;
73       end if;
74
75       Debug_A_Depth := Debug_A_Depth + 1;
76       Current_Error_Node := N;
77
78       if Debug_A_Depth <= Max_Node_Ids then
79          Node_Ids (Debug_A_Depth) := N;
80       end if;
81    end Debug_A_Entry;
82
83    ------------------
84    -- Debug_A_Exit --
85    ------------------
86
87    procedure Debug_A_Exit (S : String; N : Node_Id; Comment : String) is
88    begin
89       Debug_A_Depth := Debug_A_Depth - 1;
90
91       if Debug_A_Depth in 1 .. Max_Node_Ids then
92          Current_Error_Node := Node_Ids (Debug_A_Depth);
93       end if;
94
95       if Debug_Flag_A then
96          Debug_Output_Astring;
97          Write_Str (S);
98          Write_Str ("Node_Id = ");
99          Write_Int (Int (N));
100          Write_Str (Comment);
101          Write_Eol;
102       end if;
103    end Debug_A_Exit;
104
105    --------------------------
106    -- Debug_Output_Astring --
107    --------------------------
108
109    procedure Debug_Output_Astring is
110       Vbars : String := "|||||||||||||||||||||||||";
111       --  Should be constant, removed because of GNAT 1.78 bug ???
112
113    begin
114       if Debug_A_Depth > Vbars'Length then
115          for I in Vbars'Length .. Debug_A_Depth loop
116             Write_Char ('|');
117          end loop;
118
119          Write_Str (Vbars);
120
121       else
122          Write_Str (Vbars (1 .. Debug_A_Depth));
123       end if;
124    end Debug_Output_Astring;
125
126 end Debug_A;