1998-09-21 Ben Elliston <bje@cygnus.com>
[official-gcc.git] / gcc / print-rtl.c
blob415a2cc8ad41c5c8b2ffcdab479a3094cf8d2d1c
1 /* Print RTL for GNU C Compiler.
2 Copyright (C) 1987, 1988, 1992, 1997 Free Software Foundation, Inc.
4 This file is part of GNU CC.
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.
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.
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. */
22 #include "config.h"
23 #include "system.h"
24 #include "rtl.h"
25 #include "bitmap.h"
26 #include "real.h"
29 /* How to print out a register name.
30 We don't use PRINT_REG because some definitions of PRINT_REG
31 don't work here. */
32 #ifndef DEBUG_PRINT_REG
33 #define DEBUG_PRINT_REG(RTX, CODE, FILE) \
34 fprintf ((FILE), "%d %s", REGNO (RTX), reg_names[REGNO (RTX)])
35 #endif
37 /* Array containing all of the register names */
39 #ifdef DEBUG_REGISTER_NAMES
40 static char *reg_names[] = DEBUG_REGISTER_NAMES;
41 #else
42 static char *reg_names[] = REGISTER_NAMES;
43 #endif
45 static FILE *outfile;
47 char spaces[] = " ";
49 static int sawclose = 0;
51 static int indent;
53 /* Names for patterns. Non-zero only when linked with insn-output.c. */
55 extern char **insn_name_ptr;
57 int flag_dump_unnumbered = 0;
58 /* Print IN_RTX onto OUTFILE. This is the recursive part of printing. */
60 static void
61 print_rtx (in_rtx)
62 register rtx in_rtx;
64 register int i, j;
65 register char *format_ptr;
66 register int is_insn;
68 if (sawclose)
70 fprintf (outfile, "\n%s",
71 (spaces + (sizeof spaces - 1 - indent * 2)));
72 sawclose = 0;
75 if (in_rtx == 0)
77 fprintf (outfile, "(nil)");
78 sawclose = 1;
79 return;
82 /* print name of expression code */
83 fprintf (outfile, "(%s", GET_RTX_NAME (GET_CODE (in_rtx)));
85 if (in_rtx->in_struct)
86 fprintf (outfile, "/s");
88 if (in_rtx->volatil)
89 fprintf (outfile, "/v");
91 if (in_rtx->unchanging)
92 fprintf (outfile, "/u");
94 if (in_rtx->integrated)
95 fprintf (outfile, "/i");
97 if (GET_MODE (in_rtx) != VOIDmode)
99 /* Print REG_NOTE names for EXPR_LIST and INSN_LIST. */
100 if (GET_CODE (in_rtx) == EXPR_LIST || GET_CODE (in_rtx) == INSN_LIST)
101 fprintf (outfile, ":%s", GET_REG_NOTE_NAME (GET_MODE (in_rtx)));
102 else
103 fprintf (outfile, ":%s", GET_MODE_NAME (GET_MODE (in_rtx)));
106 is_insn = (GET_RTX_CLASS (GET_CODE (in_rtx)) == 'i');
107 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
109 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
110 switch (*format_ptr++)
112 case 'S':
113 case 's':
114 if (i == 3 && GET_CODE (in_rtx) == NOTE
115 && (NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_EH_REGION_BEG
116 || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_EH_REGION_END
117 || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_BLOCK_BEG
118 || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_BLOCK_END))
120 fprintf (outfile, " %d", NOTE_BLOCK_NUMBER (in_rtx));
121 sawclose = 1;
122 break;
125 if (i == 3 && GET_CODE (in_rtx) == NOTE
126 && (NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_RANGE_START
127 || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_RANGE_END
128 || NOTE_LINE_NUMBER (in_rtx) == NOTE_INSN_LIVE))
130 indent += 2;
131 if (!sawclose)
132 fprintf (outfile, " ");
133 print_rtx (NOTE_RANGE_INFO (in_rtx));
134 indent -= 2;
135 break;
138 if (XSTR (in_rtx, i) == 0)
139 fprintf (outfile, " \"\"");
140 else
141 fprintf (outfile, " (\"%s\")", XSTR (in_rtx, i));
142 sawclose = 1;
143 break;
145 /* 0 indicates a field for internal use that should not be printed. */
146 case '0':
147 break;
149 case 'e':
150 indent += 2;
151 if (!sawclose)
152 fprintf (outfile, " ");
153 print_rtx (XEXP (in_rtx, i));
154 indent -= 2;
155 break;
157 case 'E':
158 case 'V':
159 indent += 2;
160 if (sawclose)
162 fprintf (outfile, "\n%s",
163 (spaces + (sizeof spaces - 1 - indent * 2)));
164 sawclose = 0;
166 fprintf (outfile, "[ ");
167 if (NULL != XVEC (in_rtx, i))
169 indent += 2;
170 if (XVECLEN (in_rtx, i))
171 sawclose = 1;
173 for (j = 0; j < XVECLEN (in_rtx, i); j++)
174 print_rtx (XVECEXP (in_rtx, i, j));
176 indent -= 2;
178 if (sawclose)
179 fprintf (outfile, "\n%s",
180 (spaces + (sizeof spaces - 1 - indent * 2)));
182 fprintf (outfile, "] ");
183 sawclose = 1;
184 indent -= 2;
185 break;
187 case 'w':
188 fprintf (outfile, " ");
189 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
190 break;
192 case 'i':
194 register int value = XINT (in_rtx, i);
196 if (GET_CODE (in_rtx) == REG && value < FIRST_PSEUDO_REGISTER)
198 fputc (' ', outfile);
199 DEBUG_PRINT_REG (in_rtx, 0, outfile);
201 else if (flag_dump_unnumbered
202 && (is_insn || GET_CODE (in_rtx) == NOTE))
203 fprintf (outfile, "#");
204 else
205 fprintf (outfile, " %d", value);
207 if (is_insn && &INSN_CODE (in_rtx) == &XINT (in_rtx, i)
208 && insn_name_ptr
209 && XINT (in_rtx, i) >= 0)
210 fprintf (outfile, " {%s}", insn_name_ptr[XINT (in_rtx, i)]);
211 sawclose = 0;
212 break;
214 /* Print NOTE_INSN names rather than integer codes. */
216 case 'n':
217 if (XINT (in_rtx, i) <= 0)
218 fprintf (outfile, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx, i)));
219 else
220 fprintf (outfile, " %d", XINT (in_rtx, i));
221 sawclose = 0;
222 break;
224 case 'u':
225 if (XEXP (in_rtx, i) != NULL)
227 if (flag_dump_unnumbered)
228 fprintf (outfile, "#");
229 else
230 fprintf (outfile, " %d", INSN_UID (XEXP (in_rtx, i)));
232 else
233 fprintf (outfile, " 0");
234 sawclose = 0;
235 break;
237 case 'b':
238 if (XBITMAP (in_rtx, i) == NULL)
239 fprintf (outfile, " {null}");
240 else
241 bitmap_print (outfile, XBITMAP (in_rtx, i), " {", "}");
242 sawclose = 0;
243 break;
245 case 't':
246 putc (' ', outfile);
247 fprintf (outfile, HOST_PTR_PRINTF, (char *) XTREE (in_rtx, i));
248 break;
250 case '*':
251 fprintf (outfile, " Unknown");
252 sawclose = 0;
253 break;
255 default:
256 fprintf (stderr,
257 "switch format wrong in rtl.print_rtx(). format was: %c.\n",
258 format_ptr[-1]);
259 abort ();
262 if (GET_CODE (in_rtx) == MEM)
263 fprintf (outfile, " %d", MEM_ALIAS_SET (in_rtx));
265 #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && LONG_DOUBLE_TYPE_SIZE == 64
266 if (GET_CODE (in_rtx) == CONST_DOUBLE && FLOAT_MODE_P (GET_MODE (in_rtx)))
268 double val;
269 REAL_VALUE_FROM_CONST_DOUBLE (val, in_rtx);
270 fprintf (outfile, " [%.16g]", val);
272 #endif
274 fprintf (outfile, ")");
275 sawclose = 1;
278 /* Print an rtx on the current line of FILE. Initially indent IND
279 characters. */
281 void
282 print_inline_rtx (outf, x, ind)
283 FILE *outf;
284 rtx x;
285 int ind;
287 int oldsaw = sawclose;
288 int oldindent = indent;
290 sawclose = 0;
291 indent = ind;
292 outfile = outf;
293 print_rtx (x);
294 sawclose = oldsaw;
295 indent = oldindent;
298 /* Call this function from the debugger to see what X looks like. */
300 void
301 debug_rtx (x)
302 rtx x;
304 outfile = stderr;
305 print_rtx (x);
306 fprintf (stderr, "\n");
309 /* Count of rtx's to print with debug_rtx_list.
310 This global exists because gdb user defined commands have no arguments. */
312 int debug_rtx_count = 0; /* 0 is treated as equivalent to 1 */
314 /* Call this function to print list from X on.
316 N is a count of the rtx's to print. Positive values print from the specified
317 rtx on. Negative values print a window around the rtx.
318 EG: -5 prints 2 rtx's on either side (in addition to the specified rtx). */
320 void
321 debug_rtx_list (x, n)
322 rtx x;
323 int n;
325 int i,count;
326 rtx insn;
328 count = n == 0 ? 1 : n < 0 ? -n : n;
330 /* If we are printing a window, back up to the start. */
332 if (n < 0)
333 for (i = count / 2; i > 0; i--)
335 if (PREV_INSN (x) == 0)
336 break;
337 x = PREV_INSN (x);
340 for (i = count, insn = x; i > 0 && insn != 0; i--, insn = NEXT_INSN (insn))
341 debug_rtx (insn);
344 /* Call this function to search an rtx list to find one with insn uid UID,
345 and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
346 The found insn is returned to enable further debugging analysis. */
349 debug_rtx_find (x, uid)
350 rtx x;
351 int uid;
353 while (x != 0 && INSN_UID (x) != uid)
354 x = NEXT_INSN (x);
355 if (x != 0)
357 debug_rtx_list (x, debug_rtx_count);
358 return x;
360 else
362 fprintf (stderr, "insn uid %d not found\n", uid);
363 return 0;
367 /* External entry point for printing a chain of insns
368 starting with RTX_FIRST onto file OUTF.
369 A blank line separates insns.
371 If RTX_FIRST is not an insn, then it alone is printed, with no newline. */
373 void
374 print_rtl (outf, rtx_first)
375 FILE *outf;
376 rtx rtx_first;
378 register rtx tmp_rtx;
380 outfile = outf;
381 sawclose = 0;
383 if (rtx_first == 0)
384 fprintf (outf, "(nil)\n");
385 else
386 switch (GET_CODE (rtx_first))
388 case INSN:
389 case JUMP_INSN:
390 case CALL_INSN:
391 case NOTE:
392 case CODE_LABEL:
393 case BARRIER:
394 for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
396 if (! flag_dump_unnumbered
397 || GET_CODE (tmp_rtx) != NOTE
398 || NOTE_LINE_NUMBER (tmp_rtx) < 0)
400 print_rtx (tmp_rtx);
401 fprintf (outfile, "\n");
404 break;
406 default:
407 print_rtx (rtx_first);
411 /* Like print_rtx, except specify a file. */
413 void
414 print_rtl_single (outf, x)
415 FILE *outf;
416 rtx x;
418 outfile = outf;
419 sawclose = 0;
420 if (! flag_dump_unnumbered
421 || GET_CODE (x) != NOTE || NOTE_LINE_NUMBER (x) < 0)
423 print_rtx (x);
424 putc ('\n', outf);