OSDN Git Service

irix6 ctors
[pf3gnuchains/gcc-fork.git] / gcc / print-rtl.c
1 /* Print RTL for GNU C Compiler.
2    Copyright (C) 1987, 1988, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 #include "config.h"
23 #include <ctype.h>
24 #include <stdio.h>
25 #include "rtl.h"
26
27
28 /* How to print out a register name.
29    We don't use PRINT_REG because some definitions of PRINT_REG
30    don't work here.  */
31 #ifndef DEBUG_PRINT_REG
32 #define DEBUG_PRINT_REG(RTX, CODE, FILE) \
33   fprintf ((FILE), "%d %s", REGNO (RTX), reg_names[REGNO (RTX)])
34 #endif
35
36 /* Array containing all of the register names */
37
38 #ifdef DEBUG_REGISTER_NAMES
39 static char *reg_names[] = DEBUG_REGISTER_NAMES;
40 #else
41 static char *reg_names[] = REGISTER_NAMES;
42 #endif
43
44 static FILE *outfile;
45
46 char spaces[] = "                                                                                                                                                                ";
47
48 static int sawclose = 0;
49
50 /* Names for patterns.  Non-zero only when linked with insn-output.c.  */
51
52 extern char **insn_name_ptr;
53
54 /* Print IN_RTX onto OUTFILE.  This is the recursive part of printing.  */
55
56 static void
57 print_rtx (in_rtx)
58      register rtx in_rtx;
59 {
60   static int indent;
61   register int i, j;
62   register char *format_ptr;
63   register int is_insn;
64
65   if (sawclose)
66     {
67       fprintf (outfile, "\n%s",
68                (spaces + (sizeof spaces - 1 - indent * 2)));
69       sawclose = 0;
70     }
71
72   if (in_rtx == 0)
73     {
74       fprintf (outfile, "(nil)");
75       sawclose = 1;
76       return;
77     }
78
79   /* print name of expression code */
80   fprintf (outfile, "(%s", GET_RTX_NAME (GET_CODE (in_rtx)));
81
82   if (in_rtx->in_struct)
83     fprintf (outfile, "/s");
84
85   if (in_rtx->volatil)
86     fprintf (outfile, "/v");
87
88   if (in_rtx->unchanging)
89     fprintf (outfile, "/u");
90
91   if (in_rtx->integrated)
92     fprintf (outfile, "/i");
93
94   if (GET_MODE (in_rtx) != VOIDmode)
95     {
96       /* Print REG_NOTE names for EXPR_LIST and INSN_LIST.  */
97       if (GET_CODE (in_rtx) == EXPR_LIST || GET_CODE (in_rtx) == INSN_LIST)
98         fprintf (outfile, ":%s", GET_REG_NOTE_NAME (GET_MODE (in_rtx)));
99       else
100         fprintf (outfile, ":%s", GET_MODE_NAME (GET_MODE (in_rtx)));
101     }
102
103   is_insn = (GET_RTX_CLASS (GET_CODE (in_rtx)) == 'i');
104   format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
105
106   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
107     switch (*format_ptr++)
108       {
109       case 'S':
110       case 's':
111         if (i == 3 && GET_CODE (in_rtx) == NOTE
112             && (NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_EH_REGION_BEG
113                 || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_EH_REGION_END))
114           {
115             fprintf (outfile, " %d", NOTE_BLOCK_NUMBER (in_rtx));
116             sawclose = 1;
117             break;
118           }
119         if (XSTR (in_rtx, i) == 0)
120           fprintf (outfile, " \"\"");
121         else
122           fprintf (outfile, " (\"%s\")", XSTR (in_rtx, i));
123         sawclose = 1;
124         break;
125
126         /* 0 indicates a field for internal use that should not be printed.  */
127       case '0':
128         break;
129
130       case 'e':
131         indent += 2;
132         if (!sawclose)
133           fprintf (outfile, " ");
134         print_rtx (XEXP (in_rtx, i));
135         indent -= 2;
136         break;
137
138       case 'E':
139       case 'V':
140         indent += 2;
141         if (sawclose)
142           {
143             fprintf (outfile, "\n%s",
144                      (spaces + (sizeof spaces - 1 - indent * 2)));
145             sawclose = 0;
146           }
147         fprintf (outfile, "[ ");
148         if (NULL != XVEC (in_rtx, i))
149           {
150             indent += 2;
151             if (XVECLEN (in_rtx, i))
152               sawclose = 1;
153
154             for (j = 0; j < XVECLEN (in_rtx, i); j++)
155               print_rtx (XVECEXP (in_rtx, i, j));
156
157             indent -= 2;
158           }
159         if (sawclose)
160           fprintf (outfile, "\n%s",
161                    (spaces + (sizeof spaces - 1 - indent * 2)));
162
163         fprintf (outfile, "] ");
164         sawclose = 1;
165         indent -= 2;
166         break;
167
168       case 'w':
169         fprintf (outfile,
170 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
171                  " %d",
172 #else
173                  " %ld",
174 #endif
175                  XWINT (in_rtx, i));
176         break;
177
178       case 'i':
179         {
180           register int value = XINT (in_rtx, i);
181
182           if (GET_CODE (in_rtx) == REG && value < FIRST_PSEUDO_REGISTER)
183             {
184               fputc (' ', outfile);
185               DEBUG_PRINT_REG (in_rtx, 0, outfile);
186             }
187           else
188             fprintf (outfile, " %d", value);
189         }
190         if (is_insn && &INSN_CODE (in_rtx) == &XINT (in_rtx, i)
191             && insn_name_ptr
192             && XINT (in_rtx, i) >= 0)
193           fprintf (outfile, " {%s}", insn_name_ptr[XINT (in_rtx, i)]);
194         sawclose = 0;
195         break;
196
197       /* Print NOTE_INSN names rather than integer codes.  */
198
199       case 'n':
200         if (XINT (in_rtx, i) <= 0)
201           fprintf (outfile, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx, i)));
202         else
203           fprintf (outfile, " %d", XINT (in_rtx, i));
204         sawclose = 0;
205         break;
206
207       case 'u':
208         if (XEXP (in_rtx, i) != NULL)
209           fprintf (outfile, " %d", INSN_UID (XEXP (in_rtx, i)));
210         else
211           fprintf (outfile, " 0");
212         sawclose = 0;
213         break;
214
215       case '*':
216         fprintf (outfile, " Unknown");
217         sawclose = 0;
218         break;
219
220       default:
221         fprintf (stderr,
222                  "switch format wrong in rtl.print_rtx(). format was: %c.\n",
223                  format_ptr[-1]);
224         abort ();
225       }
226
227   fprintf (outfile, ")");
228   sawclose = 1;
229 }
230
231 /* Call this function from the debugger to see what X looks like.  */
232
233 void
234 debug_rtx (x)
235      rtx x;
236 {
237   outfile = stderr;
238   print_rtx (x);
239   fprintf (stderr, "\n");
240 }
241
242 /* Count of rtx's to print with debug_rtx_list.
243    This global exists because gdb user defined commands have no arguments.  */
244
245 int debug_rtx_count = 0;        /* 0 is treated as equivalent to 1 */
246
247 /* Call this function to print list from X on.
248
249    N is a count of the rtx's to print. Positive values print from the specified
250    rtx on.  Negative values print a window around the rtx.
251    EG: -5 prints 2 rtx's on either side (in addition to the specified rtx).  */
252
253 void
254 debug_rtx_list (x, n)
255      rtx x;
256      int n;
257 {
258   int i,count;
259   rtx insn;
260
261   count = n == 0 ? 1 : n < 0 ? -n : n;
262
263   /* If we are printing a window, back up to the start.  */
264
265   if (n < 0)
266     for (i = count / 2; i > 0; i--)
267       {
268         if (PREV_INSN (x) == 0)
269           break;
270         x = PREV_INSN (x);
271       }
272
273   for (i = count, insn = x; i > 0 && insn != 0; i--, insn = NEXT_INSN (insn))
274     debug_rtx (insn);
275 }
276
277 /* Call this function to search an rtx list to find one with insn uid UID,
278    and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
279    The found insn is returned to enable further debugging analysis.  */
280
281 rtx
282 debug_rtx_find(x, uid)
283      rtx x;
284      int uid;
285 {
286   while (x != 0 && INSN_UID (x) != uid)
287     x = NEXT_INSN (x);
288   if (x != 0)
289     {
290       debug_rtx_list (x, debug_rtx_count);
291       return x;
292     }
293   else
294     {
295       fprintf (stderr, "insn uid %d not found\n", uid);
296       return 0;
297     }
298 }
299
300 /* External entry point for printing a chain of insns
301    starting with RTX_FIRST onto file OUTF.
302    A blank line separates insns.
303
304    If RTX_FIRST is not an insn, then it alone is printed, with no newline.  */
305
306 void
307 print_rtl (outf, rtx_first)
308      FILE *outf;
309      rtx rtx_first;
310 {
311   register rtx tmp_rtx;
312
313   outfile = outf;
314   sawclose = 0;
315
316   if (rtx_first == 0)
317     fprintf (outf, "(nil)\n");
318   else
319     switch (GET_CODE (rtx_first))
320       {
321       case INSN:
322       case JUMP_INSN:
323       case CALL_INSN:
324       case NOTE:
325       case CODE_LABEL:
326       case BARRIER:
327         for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
328           {
329             print_rtx (tmp_rtx);
330             fprintf (outfile, "\n");
331           }
332         break;
333
334       default:
335         print_rtx (rtx_first);
336       }
337 }