(CPP_SPEC): add %(subtarget_cpp_spec).
[official-gcc.git] / gcc / print-rtl.c
blob7c268197a7423819ba9398dde00a981f8219153a
1 /* Print RTL for GNU C Compiler.
2 Copyright (C) 1987, 1988, 1992 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 <ctype.h>
24 #include <stdio.h>
25 #include "rtl.h"
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
36 /* Array containing all of the register names */
38 #ifdef DEBUG_REGISTER_NAMES
39 static char *reg_names[] = DEBUG_REGISTER_NAMES;
40 #else
41 static char *reg_names[] = REGISTER_NAMES;
42 #endif
44 static FILE *outfile;
46 char spaces[] = " ";
48 static int sawclose = 0;
50 /* Names for patterns. Non-zero only when linked with insn-output.c. */
52 extern char **insn_name_ptr;
54 /* Print IN_RTX onto OUTFILE. This is the recursive part of printing. */
56 static void
57 print_rtx (in_rtx)
58 register rtx in_rtx;
60 static int indent;
61 register int i, j;
62 register char *format_ptr;
63 register int is_insn;
65 if (sawclose)
67 fprintf (outfile, "\n%s",
68 (spaces + (sizeof spaces - 1 - indent * 2)));
69 sawclose = 0;
72 if (in_rtx == 0)
74 fprintf (outfile, "(nil)");
75 sawclose = 1;
76 return;
79 /* print name of expression code */
80 fprintf (outfile, "(%s", GET_RTX_NAME (GET_CODE (in_rtx)));
82 if (in_rtx->in_struct)
83 fprintf (outfile, "/s");
85 if (in_rtx->volatil)
86 fprintf (outfile, "/v");
88 if (in_rtx->unchanging)
89 fprintf (outfile, "/u");
91 if (in_rtx->integrated)
92 fprintf (outfile, "/i");
94 if (GET_MODE (in_rtx) != VOIDmode)
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)));
103 is_insn = (GET_RTX_CLASS (GET_CODE (in_rtx)) == 'i');
104 format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
106 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
107 switch (*format_ptr++)
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))
115 fprintf (outfile, " %d", NOTE_BLOCK_NUMBER (in_rtx));
116 sawclose = 1;
117 break;
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;
126 /* 0 indicates a field for internal use that should not be printed. */
127 case '0':
128 break;
130 case 'e':
131 indent += 2;
132 if (!sawclose)
133 fprintf (outfile, " ");
134 print_rtx (XEXP (in_rtx, i));
135 indent -= 2;
136 break;
138 case 'E':
139 case 'V':
140 indent += 2;
141 if (sawclose)
143 fprintf (outfile, "\n%s",
144 (spaces + (sizeof spaces - 1 - indent * 2)));
145 sawclose = 0;
147 fprintf (outfile, "[ ");
148 if (NULL != XVEC (in_rtx, i))
150 indent += 2;
151 if (XVECLEN (in_rtx, i))
152 sawclose = 1;
154 for (j = 0; j < XVECLEN (in_rtx, i); j++)
155 print_rtx (XVECEXP (in_rtx, i, j));
157 indent -= 2;
159 if (sawclose)
160 fprintf (outfile, "\n%s",
161 (spaces + (sizeof spaces - 1 - indent * 2)));
163 fprintf (outfile, "] ");
164 sawclose = 1;
165 indent -= 2;
166 break;
168 case 'w':
169 fprintf (outfile, " ");
170 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
171 break;
173 case 'i':
175 register int value = XINT (in_rtx, i);
177 if (GET_CODE (in_rtx) == REG && value < FIRST_PSEUDO_REGISTER)
179 fputc (' ', outfile);
180 DEBUG_PRINT_REG (in_rtx, 0, outfile);
182 else
183 fprintf (outfile, " %d", value);
185 if (is_insn && &INSN_CODE (in_rtx) == &XINT (in_rtx, i)
186 && insn_name_ptr
187 && XINT (in_rtx, i) >= 0)
188 fprintf (outfile, " {%s}", insn_name_ptr[XINT (in_rtx, i)]);
189 sawclose = 0;
190 break;
192 /* Print NOTE_INSN names rather than integer codes. */
194 case 'n':
195 if (XINT (in_rtx, i) <= 0)
196 fprintf (outfile, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx, i)));
197 else
198 fprintf (outfile, " %d", XINT (in_rtx, i));
199 sawclose = 0;
200 break;
202 case 'u':
203 if (XEXP (in_rtx, i) != NULL)
204 fprintf (outfile, " %d", INSN_UID (XEXP (in_rtx, i)));
205 else
206 fprintf (outfile, " 0");
207 sawclose = 0;
208 break;
210 case '*':
211 fprintf (outfile, " Unknown");
212 sawclose = 0;
213 break;
215 default:
216 fprintf (stderr,
217 "switch format wrong in rtl.print_rtx(). format was: %c.\n",
218 format_ptr[-1]);
219 abort ();
222 fprintf (outfile, ")");
223 sawclose = 1;
226 /* Call this function from the debugger to see what X looks like. */
228 void
229 debug_rtx (x)
230 rtx x;
232 outfile = stderr;
233 print_rtx (x);
234 fprintf (stderr, "\n");
237 /* Count of rtx's to print with debug_rtx_list.
238 This global exists because gdb user defined commands have no arguments. */
240 int debug_rtx_count = 0; /* 0 is treated as equivalent to 1 */
242 /* Call this function to print list from X on.
244 N is a count of the rtx's to print. Positive values print from the specified
245 rtx on. Negative values print a window around the rtx.
246 EG: -5 prints 2 rtx's on either side (in addition to the specified rtx). */
248 void
249 debug_rtx_list (x, n)
250 rtx x;
251 int n;
253 int i,count;
254 rtx insn;
256 count = n == 0 ? 1 : n < 0 ? -n : n;
258 /* If we are printing a window, back up to the start. */
260 if (n < 0)
261 for (i = count / 2; i > 0; i--)
263 if (PREV_INSN (x) == 0)
264 break;
265 x = PREV_INSN (x);
268 for (i = count, insn = x; i > 0 && insn != 0; i--, insn = NEXT_INSN (insn))
269 debug_rtx (insn);
272 /* Call this function to search an rtx list to find one with insn uid UID,
273 and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
274 The found insn is returned to enable further debugging analysis. */
277 debug_rtx_find(x, uid)
278 rtx x;
279 int uid;
281 while (x != 0 && INSN_UID (x) != uid)
282 x = NEXT_INSN (x);
283 if (x != 0)
285 debug_rtx_list (x, debug_rtx_count);
286 return x;
288 else
290 fprintf (stderr, "insn uid %d not found\n", uid);
291 return 0;
295 /* External entry point for printing a chain of insns
296 starting with RTX_FIRST onto file OUTF.
297 A blank line separates insns.
299 If RTX_FIRST is not an insn, then it alone is printed, with no newline. */
301 void
302 print_rtl (outf, rtx_first)
303 FILE *outf;
304 rtx rtx_first;
306 register rtx tmp_rtx;
308 outfile = outf;
309 sawclose = 0;
311 if (rtx_first == 0)
312 fprintf (outf, "(nil)\n");
313 else
314 switch (GET_CODE (rtx_first))
316 case INSN:
317 case JUMP_INSN:
318 case CALL_INSN:
319 case NOTE:
320 case CODE_LABEL:
321 case BARRIER:
322 for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
324 print_rtx (tmp_rtx);
325 fprintf (outfile, "\n");
327 break;
329 default:
330 print_rtx (rtx_first);