1 /* Print RTL for GNU C Compiler.
2 Copyright (C) 1987, 1988, 1992, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
27 /* We don't want the tree code checking code for the access to the
28 DECL_NAME to be included in the gen* programs. */
29 #undef ENABLE_TREE_CHECKING
33 #include "hard-reg-set.h"
34 #include "basic-block.h"
36 /* How to print out a register name.
37 We don't use PRINT_REG because some definitions of PRINT_REG
39 #ifndef DEBUG_PRINT_REG
40 #define DEBUG_PRINT_REG(RTX, CODE, FILE) \
41 fprintf ((FILE), "%d %s", REGNO (RTX), reg_names[REGNO (RTX)])
44 /* Array containing all of the register names */
46 #ifdef DEBUG_REGISTER_NAMES
47 static const char * const debug_reg_names
[] = DEBUG_REGISTER_NAMES
;
48 #define reg_names debug_reg_names
50 const char * reg_names
[] = REGISTER_NAMES
;
55 static int sawclose
= 0;
59 static void print_rtx
PARAMS ((rtx
));
61 /* String printed at beginning of each RTL when it is dumped.
62 This string is set to ASM_COMMENT_START when the RTL is dumped in
63 the assembly output file. */
64 const char *print_rtx_head
= "";
66 /* Nonzero means suppress output of instruction numbers and line number
67 notes in debugging dumps.
68 This must be defined here so that programs like gencodes can be linked. */
69 int flag_dump_unnumbered
= 0;
71 /* Nonzero means use simplified format without flags, modes, etc. */
74 /* Nonzero if we are dumping graphical description. */
77 /* Nonzero to dump all call_placeholder alternatives. */
78 static int debug_call_placeholder_verbose
;
81 print_mem_expr (outfile
, expr
)
85 if (TREE_CODE (expr
) == COMPONENT_REF
)
87 if (TREE_OPERAND (expr
, 0))
88 print_mem_expr (outfile
, TREE_OPERAND (expr
, 0));
90 fputs (" <variable>", outfile
);
91 fprintf (outfile
, ".%s",
92 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (expr
, 1))));
94 else if (DECL_NAME (expr
))
95 fprintf (outfile
, " %s", IDENTIFIER_POINTER (DECL_NAME (expr
)));
96 else if (TREE_CODE (expr
) == RESULT_DECL
)
97 fputs (" <result>", outfile
);
99 fputs (" <anonymous>", outfile
);
102 /* Print IN_RTX onto OUTFILE. This is the recursive part of printing. */
110 const char *format_ptr
;
117 fputc (' ', outfile
);
119 fprintf (outfile
, "\n%s%*s", print_rtx_head
, indent
* 2, "");
125 fputs ("(nil)", outfile
);
129 else if (GET_CODE (in_rtx
) > NUM_RTX_CODE
)
131 fprintf (outfile
, "(??? bad code %d\n)", GET_CODE (in_rtx
));
136 is_insn
= INSN_P (in_rtx
);
138 /* When printing in VCG format we write INSNs, NOTE, LABEL, and BARRIER
139 in separate nodes and therefore have to handle them special here. */
141 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
142 || GET_CODE (in_rtx
) == CODE_LABEL
|| GET_CODE (in_rtx
) == BARRIER
))
149 /* Print name of expression code. */
150 if (flag_simple
&& GET_CODE (in_rtx
) == CONST_INT
)
151 fputc ('(', outfile
);
153 fprintf (outfile
, "(%s", GET_RTX_NAME (GET_CODE (in_rtx
)));
157 if (in_rtx
->in_struct
)
158 fputs ("/s", outfile
);
161 fputs ("/v", outfile
);
163 if (in_rtx
->unchanging
)
164 fputs ("/u", outfile
);
166 if (in_rtx
->integrated
)
167 fputs ("/i", outfile
);
169 if (in_rtx
->frame_related
)
170 fputs ("/f", outfile
);
173 fputs ("/j", outfile
);
176 fputs ("/c", outfile
);
178 if (GET_MODE (in_rtx
) != VOIDmode
)
180 /* Print REG_NOTE names for EXPR_LIST and INSN_LIST. */
181 if (GET_CODE (in_rtx
) == EXPR_LIST
182 || GET_CODE (in_rtx
) == INSN_LIST
)
183 fprintf (outfile
, ":%s",
184 GET_REG_NOTE_NAME (GET_MODE (in_rtx
)));
186 fprintf (outfile
, ":%s", GET_MODE_NAME (GET_MODE (in_rtx
)));
191 /* Get the format string and skip the first elements if we have handled
193 format_ptr
= GET_RTX_FORMAT (GET_CODE (in_rtx
)) + i
;
194 for (; i
< GET_RTX_LENGTH (GET_CODE (in_rtx
)); i
++)
195 switch (*format_ptr
++)
200 str
= XTMPL (in_rtx
, i
);
205 str
= XSTR (in_rtx
, i
);
209 fputs (dump_for_graph
? " \\\"\\\"" : " \"\"", outfile
);
213 fprintf (outfile
, " (\\\"%s\\\")", str
);
215 fprintf (outfile
, " (\"%s\")", str
);
220 /* 0 indicates a field for internal use that should not be printed.
221 An exception is the third field of a NOTE, where it indicates
222 that the field has several different valid contents. */
224 if (i
== 1 && GET_CODE (in_rtx
) == REG
)
226 if (REGNO (in_rtx
) != ORIGINAL_REGNO (in_rtx
))
227 fprintf (outfile
, " [%d]", ORIGINAL_REGNO (in_rtx
));
230 if (i
== 3 && GET_CODE (in_rtx
) == NOTE
)
232 switch (NOTE_LINE_NUMBER (in_rtx
))
234 case NOTE_INSN_EH_REGION_BEG
:
235 case NOTE_INSN_EH_REGION_END
:
236 if (flag_dump_unnumbered
)
237 fprintf (outfile
, " #");
239 fprintf (outfile
, " %d", NOTE_EH_HANDLER (in_rtx
));
243 case NOTE_INSN_BLOCK_BEG
:
244 case NOTE_INSN_BLOCK_END
:
245 fprintf (outfile
, " ");
246 if (flag_dump_unnumbered
)
247 fprintf (outfile
, "#");
249 fprintf (outfile
, HOST_PTR_PRINTF
,
250 (char *) NOTE_BLOCK (in_rtx
));
254 case NOTE_INSN_RANGE_BEG
:
255 case NOTE_INSN_RANGE_END
:
259 fprintf (outfile
, " ");
260 print_rtx (NOTE_RANGE_INFO (in_rtx
));
264 case NOTE_INSN_BASIC_BLOCK
:
266 basic_block bb
= NOTE_BASIC_BLOCK (in_rtx
);
268 fprintf (outfile
, " [bb %d]", bb
->index
);
272 case NOTE_INSN_EXPECTED_VALUE
:
275 fprintf (outfile
, " ");
276 print_rtx (NOTE_EXPECTED_VALUE (in_rtx
));
280 case NOTE_INSN_DELETED_LABEL
:
281 if (NOTE_SOURCE_FILE (in_rtx
))
282 fprintf (outfile
, " (\"%s\")", NOTE_SOURCE_FILE (in_rtx
));
284 fprintf (outfile
, " \"\"");
289 const char * const str
= X0STR (in_rtx
, i
);
291 if (NOTE_LINE_NUMBER (in_rtx
) < 0)
294 fputs (dump_for_graph
? " \\\"\\\"" : " \"\"", outfile
);
298 fprintf (outfile
, " (\\\"%s\\\")", str
);
300 fprintf (outfile
, " (\"%s\")", str
);
312 fprintf (outfile
, " ");
313 print_rtx (XEXP (in_rtx
, i
));
322 fprintf (outfile
, "\n%s%*s",
323 print_rtx_head
, indent
* 2, "");
326 fputs ("[ ", outfile
);
327 if (NULL
!= XVEC (in_rtx
, i
))
330 if (XVECLEN (in_rtx
, i
))
333 for (j
= 0; j
< XVECLEN (in_rtx
, i
); j
++)
334 print_rtx (XVECEXP (in_rtx
, i
, j
));
339 fprintf (outfile
, "\n%s%*s", print_rtx_head
, indent
* 2, "");
341 fputs ("] ", outfile
);
348 fprintf (outfile
, " ");
349 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, XWINT (in_rtx
, i
));
352 fprintf (outfile
, " [");
353 fprintf (outfile
, HOST_WIDE_INT_PRINT_HEX
, XWINT (in_rtx
, i
));
354 fprintf (outfile
, "]");
359 if (i
== 5 && GET_CODE (in_rtx
) == NOTE
)
361 /* This field is only used for NOTE_INSN_DELETED_LABEL, and
362 other times often contains garbage from INSN->NOTE death. */
363 if (NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_DELETED_LABEL
)
364 fprintf (outfile
, " %d", XINT (in_rtx
, i
));
368 int value
= XINT (in_rtx
, i
);
371 if (GET_CODE (in_rtx
) == REG
&& value
< FIRST_PSEUDO_REGISTER
)
373 fputc (' ', outfile
);
374 DEBUG_PRINT_REG (in_rtx
, 0, outfile
);
376 else if (GET_CODE (in_rtx
) == REG
377 && value
<= LAST_VIRTUAL_REGISTER
)
379 if (value
== VIRTUAL_INCOMING_ARGS_REGNUM
)
380 fprintf (outfile
, " %d virtual-incoming-args", value
);
381 else if (value
== VIRTUAL_STACK_VARS_REGNUM
)
382 fprintf (outfile
, " %d virtual-stack-vars", value
);
383 else if (value
== VIRTUAL_STACK_DYNAMIC_REGNUM
)
384 fprintf (outfile
, " %d virtual-stack-dynamic", value
);
385 else if (value
== VIRTUAL_OUTGOING_ARGS_REGNUM
)
386 fprintf (outfile
, " %d virtual-outgoing-args", value
);
387 else if (value
== VIRTUAL_CFA_REGNUM
)
388 fprintf (outfile
, " %d virtual-cfa", value
);
390 fprintf (outfile
, " %d virtual-reg-%d", value
,
391 value
-FIRST_VIRTUAL_REGISTER
);
393 else if (flag_dump_unnumbered
394 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
))
395 fputc ('#', outfile
);
397 fprintf (outfile
, " %d", value
);
399 if (is_insn
&& &INSN_CODE (in_rtx
) == &XINT (in_rtx
, i
)
400 && XINT (in_rtx
, i
) >= 0
401 && (name
= get_insn_name (XINT (in_rtx
, i
))) != NULL
)
402 fprintf (outfile
, " {%s}", name
);
407 /* Print NOTE_INSN names rather than integer codes. */
410 if (XINT (in_rtx
, i
) >= (int) NOTE_INSN_BIAS
411 && XINT (in_rtx
, i
) < (int) NOTE_INSN_MAX
)
412 fprintf (outfile
, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx
, i
)));
414 fprintf (outfile
, " %d", XINT (in_rtx
, i
));
419 if (XEXP (in_rtx
, i
) != NULL
)
421 rtx sub
= XEXP (in_rtx
, i
);
422 enum rtx_code subc
= GET_CODE (sub
);
424 if (GET_CODE (in_rtx
) == LABEL_REF
)
427 && NOTE_LINE_NUMBER (sub
) == NOTE_INSN_DELETED_LABEL
)
429 if (flag_dump_unnumbered
)
430 fprintf (outfile
, " [# deleted]");
432 fprintf (outfile
, " [%d deleted]", INSN_UID (sub
));
437 if (subc
!= CODE_LABEL
)
441 if (flag_dump_unnumbered
)
442 fputs (" #", outfile
);
444 fprintf (outfile
, " %d", INSN_UID (sub
));
447 fputs (" 0", outfile
);
452 if (XBITMAP (in_rtx
, i
) == NULL
)
453 fputs (" {null}", outfile
);
455 bitmap_print (outfile
, XBITMAP (in_rtx
, i
), " {", "}");
461 fprintf (outfile
, HOST_PTR_PRINTF
, (char *) XTREE (in_rtx
, i
));
465 fputs (" Unknown", outfile
);
471 "switch format wrong in rtl.print_rtx(). format was: %c.\n",
476 switch (GET_CODE (in_rtx
))
479 fputs (" [", outfile
);
480 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, MEM_ALIAS_SET (in_rtx
));
482 if (MEM_EXPR (in_rtx
))
483 print_mem_expr (outfile
, MEM_EXPR (in_rtx
));
485 if (MEM_OFFSET (in_rtx
))
487 fputc ('+', outfile
);
488 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
,
489 INTVAL (MEM_OFFSET (in_rtx
)));
492 if (MEM_SIZE (in_rtx
))
494 fputs (" S", outfile
);
495 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
,
496 INTVAL (MEM_SIZE (in_rtx
)));
499 if (MEM_ALIGN (in_rtx
) != 1)
500 fprintf (outfile
, " A%u", MEM_ALIGN (in_rtx
));
502 fputc (']', outfile
);
505 #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && MAX_LONG_DOUBLE_TYPE_SIZE == 64
507 if (FLOAT_MODE_P (GET_MODE (in_rtx
)))
510 REAL_VALUE_FROM_CONST_DOUBLE (val
, in_rtx
);
511 fprintf (outfile
, " [%.16g]", val
);
517 fprintf (outfile
, " [%d uses]", LABEL_NUSES (in_rtx
));
518 if (LABEL_ALTERNATE_NAME (in_rtx
))
519 fprintf (outfile
, " [alternate name: %s]",
520 LABEL_ALTERNATE_NAME (in_rtx
));
523 case CALL_PLACEHOLDER
:
524 if (debug_call_placeholder_verbose
)
526 fputs (" (cond [\n (const_string \"normal\") (sequence [", outfile
);
527 for (tem
= XEXP (in_rtx
, 0); tem
!= 0; tem
= NEXT_INSN (tem
))
529 fputs ("\n ", outfile
);
530 print_inline_rtx (outfile
, tem
, 4);
533 tem
= XEXP (in_rtx
, 1);
535 fputs ("\n ])\n (const_string \"tail_call\") (sequence [",
537 for (; tem
!= 0; tem
= NEXT_INSN (tem
))
539 fputs ("\n ", outfile
);
540 print_inline_rtx (outfile
, tem
, 4);
543 tem
= XEXP (in_rtx
, 2);
545 fputs ("\n ])\n (const_string \"tail_recursion\") (sequence [",
547 for (; tem
!= 0; tem
= NEXT_INSN (tem
))
549 fputs ("\n ", outfile
);
550 print_inline_rtx (outfile
, tem
, 4);
553 fputs ("\n ])\n ])", outfile
);
557 for (tem
= XEXP (in_rtx
, 0); tem
!= 0; tem
= NEXT_INSN (tem
))
558 if (GET_CODE (tem
) == CALL_INSN
)
560 fprintf (outfile
, " ");
571 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
572 || GET_CODE (in_rtx
) == CODE_LABEL
|| GET_CODE (in_rtx
) == BARRIER
))
576 fputc (')', outfile
);
581 /* Print an rtx on the current line of FILE. Initially indent IND
585 print_inline_rtx (outf
, x
, ind
)
590 int oldsaw
= sawclose
;
591 int oldindent
= indent
;
601 /* Call this function from the debugger to see what X looks like. */
609 fprintf (stderr
, "\n");
612 /* Count of rtx's to print with debug_rtx_list.
613 This global exists because gdb user defined commands have no arguments. */
615 int debug_rtx_count
= 0; /* 0 is treated as equivalent to 1 */
617 /* Call this function to print list from X on.
619 N is a count of the rtx's to print. Positive values print from the specified
620 rtx on. Negative values print a window around the rtx.
621 EG: -5 prints 2 rtx's on either side (in addition to the specified rtx). */
624 debug_rtx_list (x
, n
)
631 count
= n
== 0 ? 1 : n
< 0 ? -n
: n
;
633 /* If we are printing a window, back up to the start. */
636 for (i
= count
/ 2; i
> 0; i
--)
638 if (PREV_INSN (x
) == 0)
643 for (i
= count
, insn
= x
; i
> 0 && insn
!= 0; i
--, insn
= NEXT_INSN (insn
))
647 /* Call this function to print an rtx list from START to END inclusive. */
650 debug_rtx_range (start
, end
)
656 if (!start
|| start
== end
)
658 start
= NEXT_INSN (start
);
662 /* Call this function to search an rtx list to find one with insn uid UID,
663 and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
664 The found insn is returned to enable further debugging analysis. */
667 debug_rtx_find (x
, uid
)
671 while (x
!= 0 && INSN_UID (x
) != uid
)
675 debug_rtx_list (x
, debug_rtx_count
);
680 fprintf (stderr
, "insn uid %d not found\n", uid
);
685 /* External entry point for printing a chain of insns
686 starting with RTX_FIRST onto file OUTF.
687 A blank line separates insns.
689 If RTX_FIRST is not an insn, then it alone is printed, with no newline. */
692 print_rtl (outf
, rtx_first
)
703 fputs (print_rtx_head
, outf
);
704 fputs ("(nil)\n", outf
);
707 switch (GET_CODE (rtx_first
))
715 for (tmp_rtx
= rtx_first
; tmp_rtx
!= 0; tmp_rtx
= NEXT_INSN (tmp_rtx
))
716 if (! flag_dump_unnumbered
717 || GET_CODE (tmp_rtx
) != NOTE
|| NOTE_LINE_NUMBER (tmp_rtx
) < 0)
719 fputs (print_rtx_head
, outfile
);
721 fprintf (outfile
, "\n");
726 fputs (print_rtx_head
, outfile
);
727 print_rtx (rtx_first
);
731 /* Like print_rtx, except specify a file. */
732 /* Return nonzero if we actually printed anything. */
735 print_rtl_single (outf
, x
)
741 if (! flag_dump_unnumbered
742 || GET_CODE (x
) != NOTE
|| NOTE_LINE_NUMBER (x
) < 0)
744 fputs (print_rtx_head
, outfile
);
753 /* Like print_rtl except without all the detail; for example,
754 if RTX is a CONST_INT then print in decimal format. */
757 print_simple_rtl (outf
, x
)