1 /* Print RTL for GNU C Compiler.
2 Copyright (C) 1987, 1988, 1992, 1997, 1998, 1999
3 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
28 #include "basic-block.h"
31 /* How to print out a register name.
32 We don't use PRINT_REG because some definitions of PRINT_REG
34 #ifndef DEBUG_PRINT_REG
35 #define DEBUG_PRINT_REG(RTX, CODE, FILE) \
36 fprintf ((FILE), "%d %s", REGNO (RTX), reg_names[REGNO (RTX)])
39 /* Array containing all of the register names */
41 #ifdef DEBUG_REGISTER_NAMES
42 static const char * const reg_names
[] = DEBUG_REGISTER_NAMES
;
44 static const char * const reg_names
[] = REGISTER_NAMES
;
49 static const char xspaces
[] = " ";
51 static int sawclose
= 0;
55 static void print_rtx
PROTO ((rtx
));
57 /* Nonzero means suppress output of instruction numbers and line number
58 notes in debugging dumps.
59 This must be defined here so that programs like gencodes can be linked. */
60 int flag_dump_unnumbered
= 0;
62 /* Nonzero if we are dumping graphical description. */
65 /* Print IN_RTX onto OUTFILE. This is the recursive part of printing. */
73 register const char *format_ptr
;
78 fprintf (outfile
, "\n%s",
79 (xspaces
+ (sizeof xspaces
- 1 - indent
* 2)));
85 fputs ("(nil)", outfile
);
90 is_insn
= (GET_RTX_CLASS (GET_CODE (in_rtx
)) == 'i');
92 /* When printing in VCG format we write INSNs, NOTE, LABEL, and BARRIER
93 in separate nodes and therefore have to handle them special here. */
95 (is_insn
|| GET_CODE (in_rtx
) == NOTE
|| GET_CODE (in_rtx
) == CODE_LABEL
96 || GET_CODE (in_rtx
) == BARRIER
))
103 /* print name of expression code */
104 fprintf (outfile
, "(%s", GET_RTX_NAME (GET_CODE (in_rtx
)));
106 if (in_rtx
->in_struct
)
107 fputs ("/s", outfile
);
110 fputs ("/v", outfile
);
112 if (in_rtx
->unchanging
)
113 fputs ("/u", outfile
);
115 if (in_rtx
->integrated
)
116 fputs ("/i", outfile
);
118 if (in_rtx
->frame_related
)
119 fputs ("/f", outfile
);
122 fputs ("/j", outfile
);
125 fputs ("/c", outfile
);
127 if (GET_MODE (in_rtx
) != VOIDmode
)
129 /* Print REG_NOTE names for EXPR_LIST and INSN_LIST. */
130 if (GET_CODE (in_rtx
) == EXPR_LIST
|| GET_CODE (in_rtx
) == INSN_LIST
)
131 fprintf (outfile
, ":%s", GET_REG_NOTE_NAME (GET_MODE (in_rtx
)));
133 fprintf (outfile
, ":%s", GET_MODE_NAME (GET_MODE (in_rtx
)));
137 /* Get the format string and skip the first elements if we have handled
139 format_ptr
= GET_RTX_FORMAT (GET_CODE (in_rtx
)) + i
;
141 for (; i
< GET_RTX_LENGTH (GET_CODE (in_rtx
)); i
++)
142 switch (*format_ptr
++)
146 if (XSTR (in_rtx
, i
) == 0)
147 fputs (dump_for_graph
? " \\\"\\\"" : " \"\"", outfile
);
149 fprintf (outfile
, dump_for_graph
? " (\\\"%s\\\")" : " (\"%s\")",
154 /* 0 indicates a field for internal use that should not be printed.
155 An exception is the third field of a NOTE, where it indicates
156 that the field has several different valid contents. */
158 if (i
== 3 && GET_CODE (in_rtx
) == NOTE
)
160 if (NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_EH_REGION_BEG
161 || NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_EH_REGION_END
)
163 fprintf (outfile
, " %d", NOTE_EH_HANDLER (in_rtx
));
166 else if (NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_BLOCK_BEG
167 || NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_BLOCK_END
)
169 fprintf (outfile
, " ");
170 fprintf (outfile
, HOST_PTR_PRINTF
,
171 (char *) NOTE_BLOCK (in_rtx
));
174 else if (NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_RANGE_START
175 || NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_RANGE_END
176 || NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_LIVE
)
180 fprintf (outfile
, " ");
181 print_rtx (NOTE_RANGE_INFO (in_rtx
));
184 else if (NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_BASIC_BLOCK
)
186 basic_block bb
= NOTE_BASIC_BLOCK (in_rtx
);
187 fprintf (outfile
, " [bb %d]", bb
->index
);
191 char *str
= X0STR (in_rtx
, i
);
193 fputs (dump_for_graph
? " \\\"\\\"" : " \"\"", outfile
);
196 dump_for_graph
? " (\\\"%s\\\")" : " (\"%s\")",
205 fprintf (outfile
, " ");
206 print_rtx (XEXP (in_rtx
, i
));
215 fprintf (outfile
, "\n%s",
216 (xspaces
+ (sizeof xspaces
- 1 - indent
* 2)));
219 fputs ("[ ", outfile
);
220 if (NULL
!= XVEC (in_rtx
, i
))
223 if (XVECLEN (in_rtx
, i
))
226 for (j
= 0; j
< XVECLEN (in_rtx
, i
); j
++)
227 print_rtx (XVECEXP (in_rtx
, i
, j
));
232 fprintf (outfile
, "\n%s",
233 (xspaces
+ (sizeof xspaces
- 1 - indent
* 2)));
235 fputs ("] ", outfile
);
241 fprintf (outfile
, " ");
242 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, XWINT (in_rtx
, i
));
243 fprintf (outfile
, " [");
244 fprintf (outfile
, HOST_WIDE_INT_PRINT_HEX
, XWINT (in_rtx
, i
));
245 fprintf (outfile
, "]");
250 register int value
= XINT (in_rtx
, i
);
253 if (GET_CODE (in_rtx
) == REG
&& value
< FIRST_PSEUDO_REGISTER
)
255 fputc (' ', outfile
);
256 DEBUG_PRINT_REG (in_rtx
, 0, outfile
);
258 else if (GET_CODE (in_rtx
) == REG
&& value
<= LAST_VIRTUAL_REGISTER
)
260 if (value
== VIRTUAL_INCOMING_ARGS_REGNUM
)
261 fprintf (outfile
, " %d virtual-incoming-args", value
);
262 else if (value
== VIRTUAL_STACK_VARS_REGNUM
)
263 fprintf (outfile
, " %d virtual-stack-vars", value
);
264 else if (value
== VIRTUAL_STACK_DYNAMIC_REGNUM
)
265 fprintf (outfile
, " %d virtual-stack-dynamic", value
);
266 else if (value
== VIRTUAL_OUTGOING_ARGS_REGNUM
)
267 fprintf (outfile
, " %d virtual-outgoing-args", value
);
268 else if (value
== VIRTUAL_CFA_REGNUM
)
269 fprintf (outfile
, " %d virtual-cfa", value
);
271 fprintf (outfile
, " %d virtual-reg-%d", value
,
272 value
-FIRST_VIRTUAL_REGISTER
);
274 else if (flag_dump_unnumbered
275 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
))
276 fputc ('#', outfile
);
278 fprintf (outfile
, " %d", value
);
280 if (is_insn
&& &INSN_CODE (in_rtx
) == &XINT (in_rtx
, i
)
281 && XINT (in_rtx
, i
) >= 0
282 && (name
= get_insn_name (XINT (in_rtx
, i
))) != NULL
)
283 fprintf (outfile
, " {%s}", name
);
288 /* Print NOTE_INSN names rather than integer codes. */
291 if (XINT (in_rtx
, i
) <= 0)
292 fprintf (outfile
, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx
, i
)));
294 fprintf (outfile
, " %d", XINT (in_rtx
, i
));
299 if (XEXP (in_rtx
, i
) != NULL
)
301 if (flag_dump_unnumbered
)
302 fputc ('#', outfile
);
304 fprintf (outfile
, " %d", INSN_UID (XEXP (in_rtx
, i
)));
307 fputs (" 0", outfile
);
312 if (XBITMAP (in_rtx
, i
) == NULL
)
313 fputs (" {null}", outfile
);
315 bitmap_print (outfile
, XBITMAP (in_rtx
, i
), " {", "}");
321 fprintf (outfile
, HOST_PTR_PRINTF
, (char *) XTREE (in_rtx
, i
));
325 fputs (" Unknown", outfile
);
331 "switch format wrong in rtl.print_rtx(). format was: %c.\n",
336 if (GET_CODE (in_rtx
) == MEM
)
337 fprintf (outfile
, " %d", MEM_ALIAS_SET (in_rtx
));
339 #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && LONG_DOUBLE_TYPE_SIZE == 64
340 if (GET_CODE (in_rtx
) == CONST_DOUBLE
&& FLOAT_MODE_P (GET_MODE (in_rtx
)))
343 REAL_VALUE_FROM_CONST_DOUBLE (val
, in_rtx
);
344 fprintf (outfile
, " [%.16g]", val
);
348 if (GET_CODE (in_rtx
) == CODE_LABEL
)
349 fprintf (outfile
, " [num uses: %d]", LABEL_NUSES (in_rtx
));
352 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
353 || GET_CODE (in_rtx
) == CODE_LABEL
|| GET_CODE (in_rtx
) == BARRIER
))
357 fputc (')', outfile
);
362 /* Print an rtx on the current line of FILE. Initially indent IND
366 print_inline_rtx (outf
, x
, ind
)
371 int oldsaw
= sawclose
;
372 int oldindent
= indent
;
382 /* Call this function from the debugger to see what X looks like. */
390 fprintf (stderr
, "\n");
393 /* Count of rtx's to print with debug_rtx_list.
394 This global exists because gdb user defined commands have no arguments. */
396 int debug_rtx_count
= 0; /* 0 is treated as equivalent to 1 */
398 /* Call this function to print list from X on.
400 N is a count of the rtx's to print. Positive values print from the specified
401 rtx on. Negative values print a window around the rtx.
402 EG: -5 prints 2 rtx's on either side (in addition to the specified rtx). */
405 debug_rtx_list (x
, n
)
412 count
= n
== 0 ? 1 : n
< 0 ? -n
: n
;
414 /* If we are printing a window, back up to the start. */
417 for (i
= count
/ 2; i
> 0; i
--)
419 if (PREV_INSN (x
) == 0)
424 for (i
= count
, insn
= x
; i
> 0 && insn
!= 0; i
--, insn
= NEXT_INSN (insn
))
428 /* Call this function to search an rtx list to find one with insn uid UID,
429 and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
430 The found insn is returned to enable further debugging analysis. */
433 debug_rtx_find (x
, uid
)
437 while (x
!= 0 && INSN_UID (x
) != uid
)
441 debug_rtx_list (x
, debug_rtx_count
);
446 fprintf (stderr
, "insn uid %d not found\n", uid
);
451 /* External entry point for printing a chain of insns
452 starting with RTX_FIRST onto file OUTF.
453 A blank line separates insns.
455 If RTX_FIRST is not an insn, then it alone is printed, with no newline. */
458 print_rtl (outf
, rtx_first
)
462 register rtx tmp_rtx
;
468 fputs ("(nil)\n", outf
);
470 switch (GET_CODE (rtx_first
))
478 for (tmp_rtx
= rtx_first
; NULL
!= tmp_rtx
; tmp_rtx
= NEXT_INSN (tmp_rtx
))
480 if (! flag_dump_unnumbered
481 || GET_CODE (tmp_rtx
) != NOTE
482 || NOTE_LINE_NUMBER (tmp_rtx
) < 0)
485 fprintf (outfile
, "\n");
491 print_rtx (rtx_first
);
495 /* Like print_rtx, except specify a file. */
496 /* Return nonzero if we actually printed anything. */
499 print_rtl_single (outf
, x
)
505 if (! flag_dump_unnumbered
506 || GET_CODE (x
) != NOTE
|| NOTE_LINE_NUMBER (x
) < 0)