2 Copyright (C) 1987, 1988, 1992, 1997, 1998, 1999, 2000, 2002, 2003, 2004
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
25 #include "coretypes.h"
29 /* We don't want the tree code checking code for the access to the
30 DECL_NAME to be included in the gen* programs. */
31 #undef ENABLE_TREE_CHECKING
35 #include "hard-reg-set.h"
36 #include "basic-block.h"
41 static int sawclose
= 0;
45 static void print_rtx (rtx
);
47 /* String printed at beginning of each RTL when it is dumped.
48 This string is set to ASM_COMMENT_START when the RTL is dumped in
49 the assembly output file. */
50 const char *print_rtx_head
= "";
52 /* Nonzero means suppress output of instruction numbers and line number
53 notes in debugging dumps.
54 This must be defined here so that programs like gencodes can be linked. */
55 int flag_dump_unnumbered
= 0;
57 /* Nonzero means use simplified format without flags, modes, etc. */
60 /* Nonzero if we are dumping graphical description. */
63 /* Nonzero to dump all call_placeholder alternatives. */
64 static int debug_call_placeholder_verbose
;
67 print_mem_expr (FILE *outfile
, tree expr
)
69 if (TREE_CODE (expr
) == COMPONENT_REF
)
71 if (TREE_OPERAND (expr
, 0))
72 print_mem_expr (outfile
, TREE_OPERAND (expr
, 0));
74 fputs (" <variable>", outfile
);
75 if (DECL_NAME (TREE_OPERAND (expr
, 1)))
76 fprintf (outfile
, ".%s",
77 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (expr
, 1))));
79 else if (TREE_CODE (expr
) == INDIRECT_REF
)
81 fputs (" (*", outfile
);
82 print_mem_expr (outfile
, TREE_OPERAND (expr
, 0));
85 else if (DECL_NAME (expr
))
86 fprintf (outfile
, " %s", IDENTIFIER_POINTER (DECL_NAME (expr
)));
87 else if (TREE_CODE (expr
) == RESULT_DECL
)
88 fputs (" <result>", outfile
);
90 fputs (" <anonymous>", outfile
);
93 /* Print IN_RTX onto OUTFILE. This is the recursive part of printing. */
96 print_rtx (rtx in_rtx
)
100 const char *format_ptr
;
107 fputc (' ', outfile
);
109 fprintf (outfile
, "\n%s%*s", print_rtx_head
, indent
* 2, "");
115 fputs ("(nil)", outfile
);
119 else if (GET_CODE (in_rtx
) > NUM_RTX_CODE
)
121 fprintf (outfile
, "(??? bad code %d\n)", GET_CODE (in_rtx
));
126 is_insn
= INSN_P (in_rtx
);
128 /* When printing in VCG format we write INSNs, NOTE, LABEL, and BARRIER
129 in separate nodes and therefore have to handle them special here. */
131 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
132 || GET_CODE (in_rtx
) == CODE_LABEL
|| GET_CODE (in_rtx
) == BARRIER
))
139 /* Print name of expression code. */
140 if (flag_simple
&& GET_CODE (in_rtx
) == CONST_INT
)
141 fputc ('(', outfile
);
143 fprintf (outfile
, "(%s", GET_RTX_NAME (GET_CODE (in_rtx
)));
147 if (RTX_FLAG (in_rtx
, in_struct
))
148 fputs ("/s", outfile
);
150 if (RTX_FLAG (in_rtx
, volatil
))
151 fputs ("/v", outfile
);
153 if (RTX_FLAG (in_rtx
, unchanging
))
154 fputs ("/u", outfile
);
156 if (RTX_FLAG (in_rtx
, integrated
))
157 fputs ("/i", outfile
);
159 if (RTX_FLAG (in_rtx
, frame_related
))
160 fputs ("/f", outfile
);
162 if (RTX_FLAG (in_rtx
, jump
))
163 fputs ("/j", outfile
);
165 if (RTX_FLAG (in_rtx
, call
))
166 fputs ("/c", outfile
);
168 if (GET_MODE (in_rtx
) != VOIDmode
)
170 /* Print REG_NOTE names for EXPR_LIST and INSN_LIST. */
171 if (GET_CODE (in_rtx
) == EXPR_LIST
172 || GET_CODE (in_rtx
) == INSN_LIST
)
173 fprintf (outfile
, ":%s",
174 GET_REG_NOTE_NAME (GET_MODE (in_rtx
)));
176 fprintf (outfile
, ":%s", GET_MODE_NAME (GET_MODE (in_rtx
)));
181 #ifndef GENERATOR_FILE
182 if (GET_CODE (in_rtx
) == CONST_DOUBLE
&& FLOAT_MODE_P (GET_MODE (in_rtx
)))
186 /* Get the format string and skip the first elements if we have handled
188 format_ptr
= GET_RTX_FORMAT (GET_CODE (in_rtx
)) + i
;
189 for (; i
< GET_RTX_LENGTH (GET_CODE (in_rtx
)); i
++)
190 switch (*format_ptr
++)
195 str
= XTMPL (in_rtx
, i
);
200 str
= XSTR (in_rtx
, i
);
204 fputs (dump_for_graph
? " \\\"\\\"" : " \"\"", outfile
);
208 fprintf (outfile
, " (\\\"%s\\\")", str
);
210 fprintf (outfile
, " (\"%s\")", str
);
215 /* 0 indicates a field for internal use that should not be printed.
216 An exception is the third field of a NOTE, where it indicates
217 that the field has several different valid contents. */
219 if (i
== 1 && GET_CODE (in_rtx
) == REG
)
221 if (REGNO (in_rtx
) != ORIGINAL_REGNO (in_rtx
))
222 fprintf (outfile
, " [%d]", ORIGINAL_REGNO (in_rtx
));
224 #ifndef GENERATOR_FILE
225 else if (i
== 1 && GET_CODE (in_rtx
) == SYMBOL_REF
)
227 int flags
= SYMBOL_REF_FLAGS (in_rtx
);
229 fprintf (outfile
, " [flags 0x%x]", flags
);
231 else if (i
== 2 && GET_CODE (in_rtx
) == SYMBOL_REF
)
233 tree decl
= SYMBOL_REF_DECL (in_rtx
);
235 print_node_brief (outfile
, "", decl
, 0);
238 else if (i
== 4 && GET_CODE (in_rtx
) == NOTE
)
240 switch (NOTE_LINE_NUMBER (in_rtx
))
242 case NOTE_INSN_EH_REGION_BEG
:
243 case NOTE_INSN_EH_REGION_END
:
244 if (flag_dump_unnumbered
)
245 fprintf (outfile
, " #");
247 fprintf (outfile
, " %d", NOTE_EH_HANDLER (in_rtx
));
251 case NOTE_INSN_BLOCK_BEG
:
252 case NOTE_INSN_BLOCK_END
:
253 fprintf (outfile
, " ");
254 if (flag_dump_unnumbered
)
255 fprintf (outfile
, "#");
257 fprintf (outfile
, HOST_PTR_PRINTF
,
258 (char *) NOTE_BLOCK (in_rtx
));
262 case NOTE_INSN_BASIC_BLOCK
:
264 basic_block bb
= NOTE_BASIC_BLOCK (in_rtx
);
266 fprintf (outfile
, " [bb %d]", bb
->index
);
270 case NOTE_INSN_EXPECTED_VALUE
:
273 fprintf (outfile
, " ");
274 print_rtx (NOTE_EXPECTED_VALUE (in_rtx
));
278 case NOTE_INSN_DELETED_LABEL
:
279 if (NOTE_SOURCE_FILE (in_rtx
))
280 fprintf (outfile
, " (\"%s\")", NOTE_SOURCE_FILE (in_rtx
));
282 fprintf (outfile
, " \"\"");
285 case NOTE_INSN_PREDICTION
:
286 if (NOTE_PREDICTION (in_rtx
))
287 fprintf (outfile
, " [ %d %d ] ",
288 (int)NOTE_PREDICTION_ALG (in_rtx
),
289 (int) NOTE_PREDICTION_FLAGS (in_rtx
));
291 fprintf (outfile
, " [ ERROR ]");
294 case NOTE_INSN_UNLIKELY_EXECUTED_CODE
:
296 basic_block bb
= NOTE_BASIC_BLOCK (in_rtx
);
298 fprintf (outfile
, " [bb %d]", bb
->index
);
302 case NOTE_INSN_VAR_LOCATION
:
303 fprintf (outfile
, " (");
304 print_mem_expr (outfile
, NOTE_VAR_LOCATION_DECL (in_rtx
));
305 fprintf (outfile
, " ");
306 print_rtx (NOTE_VAR_LOCATION_LOC (in_rtx
));
307 fprintf (outfile
, ")");
312 const char * const str
= X0STR (in_rtx
, i
);
314 if (NOTE_LINE_NUMBER (in_rtx
) < 0)
317 fputs (dump_for_graph
? " \\\"\\\"" : " \"\"", outfile
);
321 fprintf (outfile
, " (\\\"%s\\\")", str
);
323 fprintf (outfile
, " (\"%s\")", str
);
335 fprintf (outfile
, " ");
336 print_rtx (XEXP (in_rtx
, i
));
345 fprintf (outfile
, "\n%s%*s",
346 print_rtx_head
, indent
* 2, "");
349 fputs (" [", outfile
);
350 if (NULL
!= XVEC (in_rtx
, i
))
353 if (XVECLEN (in_rtx
, i
))
356 for (j
= 0; j
< XVECLEN (in_rtx
, i
); j
++)
357 print_rtx (XVECEXP (in_rtx
, i
, j
));
362 fprintf (outfile
, "\n%s%*s", print_rtx_head
, indent
* 2, "");
364 fputs ("]", outfile
);
371 fprintf (outfile
, " ");
372 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, XWINT (in_rtx
, i
));
374 fprintf (outfile
, " [" HOST_WIDE_INT_PRINT_HEX
"]",
379 if (i
== 4 && INSN_P (in_rtx
))
381 #ifndef GENERATOR_FILE
382 /* Pretty-print insn locators. Ignore scoping as it is mostly
383 redundant with line number information and do not print anything
384 when there is no location information available. */
385 if (INSN_LOCATOR (in_rtx
) && insn_file (in_rtx
))
386 fprintf(outfile
, " %s:%i", insn_file (in_rtx
), insn_line (in_rtx
));
389 else if (i
== 6 && GET_CODE (in_rtx
) == NOTE
)
391 /* This field is only used for NOTE_INSN_DELETED_LABEL, and
392 other times often contains garbage from INSN->NOTE death. */
393 if (NOTE_LINE_NUMBER (in_rtx
) == NOTE_INSN_DELETED_LABEL
)
394 fprintf (outfile
, " %d", XINT (in_rtx
, i
));
398 int value
= XINT (in_rtx
, i
);
401 #ifndef GENERATOR_FILE
402 if (GET_CODE (in_rtx
) == REG
&& value
< FIRST_PSEUDO_REGISTER
)
403 fprintf (outfile
, " %d %s", REGNO (in_rtx
),
404 reg_names
[REGNO (in_rtx
)]);
405 else if (GET_CODE (in_rtx
) == REG
406 && value
<= LAST_VIRTUAL_REGISTER
)
408 if (value
== VIRTUAL_INCOMING_ARGS_REGNUM
)
409 fprintf (outfile
, " %d virtual-incoming-args", value
);
410 else if (value
== VIRTUAL_STACK_VARS_REGNUM
)
411 fprintf (outfile
, " %d virtual-stack-vars", value
);
412 else if (value
== VIRTUAL_STACK_DYNAMIC_REGNUM
)
413 fprintf (outfile
, " %d virtual-stack-dynamic", value
);
414 else if (value
== VIRTUAL_OUTGOING_ARGS_REGNUM
)
415 fprintf (outfile
, " %d virtual-outgoing-args", value
);
416 else if (value
== VIRTUAL_CFA_REGNUM
)
417 fprintf (outfile
, " %d virtual-cfa", value
);
419 fprintf (outfile
, " %d virtual-reg-%d", value
,
420 value
-FIRST_VIRTUAL_REGISTER
);
424 if (flag_dump_unnumbered
425 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
))
426 fputc ('#', outfile
);
428 fprintf (outfile
, " %d", value
);
430 if (GET_CODE (in_rtx
) == REG
&& REG_ATTRS (in_rtx
))
432 fputs (" [", outfile
);
433 if (ORIGINAL_REGNO (in_rtx
) != REGNO (in_rtx
))
434 fprintf (outfile
, "orig:%i", ORIGINAL_REGNO (in_rtx
));
435 if (REG_EXPR (in_rtx
))
436 print_mem_expr (outfile
, REG_EXPR (in_rtx
));
438 if (REG_OFFSET (in_rtx
))
439 fprintf (outfile
, "+" HOST_WIDE_INT_PRINT_DEC
,
440 REG_OFFSET (in_rtx
));
441 fputs (" ]", outfile
);
444 if (is_insn
&& &INSN_CODE (in_rtx
) == &XINT (in_rtx
, i
)
445 && XINT (in_rtx
, i
) >= 0
446 && (name
= get_insn_name (XINT (in_rtx
, i
))) != NULL
)
447 fprintf (outfile
, " {%s}", name
);
452 /* Print NOTE_INSN names rather than integer codes. */
455 if (XINT (in_rtx
, i
) >= (int) NOTE_INSN_BIAS
456 && XINT (in_rtx
, i
) < (int) NOTE_INSN_MAX
)
457 fprintf (outfile
, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx
, i
)));
459 fprintf (outfile
, " %d", XINT (in_rtx
, i
));
464 if (XEXP (in_rtx
, i
) != NULL
)
466 rtx sub
= XEXP (in_rtx
, i
);
467 enum rtx_code subc
= GET_CODE (sub
);
469 if (GET_CODE (in_rtx
) == LABEL_REF
)
472 && NOTE_LINE_NUMBER (sub
) == NOTE_INSN_DELETED_LABEL
)
474 if (flag_dump_unnumbered
)
475 fprintf (outfile
, " [# deleted]");
477 fprintf (outfile
, " [%d deleted]", INSN_UID (sub
));
482 if (subc
!= CODE_LABEL
)
486 if (flag_dump_unnumbered
)
487 fputs (" #", outfile
);
489 fprintf (outfile
, " %d", INSN_UID (sub
));
492 fputs (" 0", outfile
);
497 if (XBITMAP (in_rtx
, i
) == NULL
)
498 fputs (" {null}", outfile
);
500 bitmap_print (outfile
, XBITMAP (in_rtx
, i
), " {", "}");
505 fprintf (outfile
, " " HOST_PTR_PRINTF
, (void *) XTREE (in_rtx
, i
));
509 fputs (" Unknown", outfile
);
514 if (XBBDEF (in_rtx
, i
))
515 fprintf (outfile
, " %i", XBBDEF (in_rtx
, i
)->index
);
520 "switch format wrong in rtl.print_rtx(). format was: %c.\n",
525 switch (GET_CODE (in_rtx
))
527 #ifndef GENERATOR_FILE
529 fprintf (outfile
, " [" HOST_WIDE_INT_PRINT_DEC
, MEM_ALIAS_SET (in_rtx
));
531 if (MEM_EXPR (in_rtx
))
532 print_mem_expr (outfile
, MEM_EXPR (in_rtx
));
534 if (MEM_OFFSET (in_rtx
))
535 fprintf (outfile
, "+" HOST_WIDE_INT_PRINT_DEC
,
536 INTVAL (MEM_OFFSET (in_rtx
)));
538 if (MEM_SIZE (in_rtx
))
539 fprintf (outfile
, " S" HOST_WIDE_INT_PRINT_DEC
,
540 INTVAL (MEM_SIZE (in_rtx
)));
542 if (MEM_ALIGN (in_rtx
) != 1)
543 fprintf (outfile
, " A%u", MEM_ALIGN (in_rtx
));
545 fputc (']', outfile
);
549 if (FLOAT_MODE_P (GET_MODE (in_rtx
)))
553 real_to_decimal (s
, CONST_DOUBLE_REAL_VALUE (in_rtx
),
555 fprintf (outfile
, " %s", s
);
557 real_to_hexadecimal (s
, CONST_DOUBLE_REAL_VALUE (in_rtx
),
559 fprintf (outfile
, " [%s]", s
);
565 fprintf (outfile
, " [%d uses]", LABEL_NUSES (in_rtx
));
566 switch (LABEL_KIND (in_rtx
))
568 case LABEL_NORMAL
: break;
569 case LABEL_STATIC_ENTRY
: fputs (" [entry]", outfile
); break;
570 case LABEL_GLOBAL_ENTRY
: fputs (" [global entry]", outfile
); break;
571 case LABEL_WEAK_ENTRY
: fputs (" [weak entry]", outfile
); break;
576 case CALL_PLACEHOLDER
:
577 if (debug_call_placeholder_verbose
)
579 fputs (" (cond [\n (const_string \"normal\") (sequence [", outfile
);
580 for (tem
= XEXP (in_rtx
, 0); tem
!= 0; tem
= NEXT_INSN (tem
))
582 fputs ("\n ", outfile
);
583 print_inline_rtx (outfile
, tem
, 4);
586 tem
= XEXP (in_rtx
, 1);
588 fputs ("\n ])\n (const_string \"tail_call\") (sequence [",
590 for (; tem
!= 0; tem
= NEXT_INSN (tem
))
592 fputs ("\n ", outfile
);
593 print_inline_rtx (outfile
, tem
, 4);
596 tem
= XEXP (in_rtx
, 2);
598 fputs ("\n ])\n (const_string \"tail_recursion\") (sequence [",
600 for (; tem
!= 0; tem
= NEXT_INSN (tem
))
602 fputs ("\n ", outfile
);
603 print_inline_rtx (outfile
, tem
, 4);
606 fputs ("\n ])\n ])", outfile
);
610 for (tem
= XEXP (in_rtx
, 0); tem
!= 0; tem
= NEXT_INSN (tem
))
611 if (GET_CODE (tem
) == CALL_INSN
)
613 fprintf (outfile
, " ");
624 && (is_insn
|| GET_CODE (in_rtx
) == NOTE
625 || GET_CODE (in_rtx
) == CODE_LABEL
|| GET_CODE (in_rtx
) == BARRIER
))
629 fputc (')', outfile
);
634 /* Print an rtx on the current line of FILE. Initially indent IND
638 print_inline_rtx (FILE *outf
, rtx x
, int ind
)
640 int oldsaw
= sawclose
;
641 int oldindent
= indent
;
651 /* Call this function from the debugger to see what X looks like. */
659 fprintf (stderr
, "\n");
662 /* Count of rtx's to print with debug_rtx_list.
663 This global exists because gdb user defined commands have no arguments. */
665 int debug_rtx_count
= 0; /* 0 is treated as equivalent to 1 */
667 /* Call this function to print list from X on.
669 N is a count of the rtx's to print. Positive values print from the specified
670 rtx on. Negative values print a window around the rtx.
671 EG: -5 prints 2 rtx's on either side (in addition to the specified rtx). */
674 debug_rtx_list (rtx x
, int n
)
679 count
= n
== 0 ? 1 : n
< 0 ? -n
: n
;
681 /* If we are printing a window, back up to the start. */
684 for (i
= count
/ 2; i
> 0; i
--)
686 if (PREV_INSN (x
) == 0)
691 for (i
= count
, insn
= x
; i
> 0 && insn
!= 0; i
--, insn
= NEXT_INSN (insn
))
694 fprintf (stderr
, "\n");
698 /* Call this function to print an rtx list from START to END inclusive. */
701 debug_rtx_range (rtx start
, rtx end
)
706 fprintf (stderr
, "\n");
707 if (!start
|| start
== end
)
709 start
= NEXT_INSN (start
);
713 /* Call this function to search an rtx list to find one with insn uid UID,
714 and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
715 The found insn is returned to enable further debugging analysis. */
718 debug_rtx_find (rtx x
, int uid
)
720 while (x
!= 0 && INSN_UID (x
) != uid
)
724 debug_rtx_list (x
, debug_rtx_count
);
729 fprintf (stderr
, "insn uid %d not found\n", uid
);
734 /* External entry point for printing a chain of insns
735 starting with RTX_FIRST onto file OUTF.
736 A blank line separates insns.
738 If RTX_FIRST is not an insn, then it alone is printed, with no newline. */
741 print_rtl (FILE *outf
, rtx rtx_first
)
750 fputs (print_rtx_head
, outf
);
751 fputs ("(nil)\n", outf
);
754 switch (GET_CODE (rtx_first
))
762 for (tmp_rtx
= rtx_first
; tmp_rtx
!= 0; tmp_rtx
= NEXT_INSN (tmp_rtx
))
763 if (! flag_dump_unnumbered
764 || GET_CODE (tmp_rtx
) != NOTE
|| NOTE_LINE_NUMBER (tmp_rtx
) < 0)
766 fputs (print_rtx_head
, outfile
);
768 fprintf (outfile
, "\n");
773 fputs (print_rtx_head
, outfile
);
774 print_rtx (rtx_first
);
778 /* Like print_rtx, except specify a file. */
779 /* Return nonzero if we actually printed anything. */
782 print_rtl_single (FILE *outf
, rtx x
)
786 if (! flag_dump_unnumbered
787 || GET_CODE (x
) != NOTE
|| NOTE_LINE_NUMBER (x
) < 0)
789 fputs (print_rtx_head
, outfile
);
798 /* Like print_rtl except without all the detail; for example,
799 if RTX is a CONST_INT then print in decimal format. */
802 print_simple_rtl (FILE *outf
, rtx x
)