2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file is compiled twice: once for the generator programs,
21 once for the compiler. */
29 #include "coretypes.h"
33 /* These headers all define things which are not available in
34 generator programs. */
35 #ifndef GENERATOR_FILE
39 #include "double-int.h"
46 #include "print-tree.h"
48 #include "hard-reg-set.h"
52 #include "basic-block.h"
53 #include "diagnostic.h"
54 #include "tree-pretty-print.h"
56 #include "dumpfile.h" /* for dump_flags */
57 #include "dwarf2out.h"
62 static int sawclose
= 0;
66 static bool in_call_function_usage
;
68 static void print_rtx (const_rtx
);
70 /* String printed at beginning of each RTL when it is dumped.
71 This string is set to ASM_COMMENT_START when the RTL is dumped in
72 the assembly output file. */
73 const char *print_rtx_head
= "";
76 /* These are defined from the .opt file when not used in generator
79 /* Nonzero means suppress output of instruction numbers
81 This must be defined here so that programs like gencodes can be linked. */
82 int flag_dump_unnumbered
= 0;
84 /* Nonzero means suppress output of instruction numbers for previous
85 and next insns in debugging dumps.
86 This must be defined here so that programs like gencodes can be linked. */
87 int flag_dump_unnumbered_links
= 0;
90 /* Nonzero means use simplified format without flags, modes, etc. */
93 #ifndef GENERATOR_FILE
95 print_mem_expr (FILE *outfile
, const_tree expr
)
98 print_generic_expr (outfile
, CONST_CAST_TREE (expr
), dump_flags
);
102 /* Print IN_RTX onto OUTFILE. This is the recursive part of printing. */
105 print_rtx (const_rtx in_rtx
)
109 const char *format_ptr
;
115 fputc (' ', outfile
);
117 fprintf (outfile
, "\n%s%*s", print_rtx_head
, indent
* 2, "");
123 fputs ("(nil)", outfile
);
127 else if (GET_CODE (in_rtx
) > NUM_RTX_CODE
)
129 fprintf (outfile
, "(??? bad code %d\n%s%*s)", GET_CODE (in_rtx
),
130 print_rtx_head
, indent
* 2, "");
135 is_insn
= INSN_P (in_rtx
);
137 /* Print name of expression code. */
138 if (flag_simple
&& CONST_INT_P (in_rtx
))
139 fputc ('(', outfile
);
141 fprintf (outfile
, "(%s", GET_RTX_NAME (GET_CODE (in_rtx
)));
145 if (RTX_FLAG (in_rtx
, in_struct
))
146 fputs ("/s", outfile
);
148 if (RTX_FLAG (in_rtx
, volatil
))
149 fputs ("/v", outfile
);
151 if (RTX_FLAG (in_rtx
, unchanging
))
152 fputs ("/u", outfile
);
154 if (RTX_FLAG (in_rtx
, frame_related
))
155 fputs ("/f", outfile
);
157 if (RTX_FLAG (in_rtx
, jump
))
158 fputs ("/j", outfile
);
160 if (RTX_FLAG (in_rtx
, call
))
161 fputs ("/c", outfile
);
163 if (RTX_FLAG (in_rtx
, return_val
))
164 fputs ("/i", outfile
);
166 /* Print REG_NOTE names for EXPR_LIST and INSN_LIST. */
167 if ((GET_CODE (in_rtx
) == EXPR_LIST
168 || GET_CODE (in_rtx
) == INSN_LIST
169 || GET_CODE (in_rtx
) == INT_LIST
)
170 && (int)GET_MODE (in_rtx
) < REG_NOTE_MAX
171 && !in_call_function_usage
)
172 fprintf (outfile
, ":%s",
173 GET_REG_NOTE_NAME (GET_MODE (in_rtx
)));
175 /* For other rtl, print the mode if it's not VOID. */
176 else if (GET_MODE (in_rtx
) != VOIDmode
)
177 fprintf (outfile
, ":%s", GET_MODE_NAME (GET_MODE (in_rtx
)));
179 #ifndef GENERATOR_FILE
180 if (GET_CODE (in_rtx
) == VAR_LOCATION
)
182 if (TREE_CODE (PAT_VAR_LOCATION_DECL (in_rtx
)) == STRING_CST
)
183 fputs (" <debug string placeholder>", outfile
);
185 print_mem_expr (outfile
, PAT_VAR_LOCATION_DECL (in_rtx
));
186 fputc (' ', outfile
);
187 print_rtx (PAT_VAR_LOCATION_LOC (in_rtx
));
188 if (PAT_VAR_LOCATION_STATUS (in_rtx
)
189 == VAR_INIT_STATUS_UNINITIALIZED
)
190 fprintf (outfile
, " [uninit]");
192 i
= GET_RTX_LENGTH (VAR_LOCATION
);
197 #ifndef GENERATOR_FILE
198 if (CONST_DOUBLE_AS_FLOAT_P (in_rtx
))
202 if (INSN_CHAIN_CODE_P (GET_CODE (in_rtx
)))
204 if (flag_dump_unnumbered
)
205 fprintf (outfile
, " #");
207 fprintf (outfile
, " %d", INSN_UID (in_rtx
));
210 /* Get the format string and skip the first elements if we have handled
212 format_ptr
= GET_RTX_FORMAT (GET_CODE (in_rtx
)) + i
;
213 for (; i
< GET_RTX_LENGTH (GET_CODE (in_rtx
)); i
++)
214 switch (*format_ptr
++)
219 str
= XTMPL (in_rtx
, i
);
224 str
= XSTR (in_rtx
, i
);
228 fputs (" \"\"", outfile
);
230 fprintf (outfile
, " (\"%s\")", str
);
234 /* 0 indicates a field for internal use that should not be printed.
235 An exception is the third field of a NOTE, where it indicates
236 that the field has several different valid contents. */
238 #ifndef GENERATOR_FILE
239 if (i
== 1 && GET_CODE (in_rtx
) == SYMBOL_REF
)
241 int flags
= SYMBOL_REF_FLAGS (in_rtx
);
243 fprintf (outfile
, " [flags %#x]", flags
);
244 tree decl
= SYMBOL_REF_DECL (in_rtx
);
246 print_node_brief (outfile
, "", decl
, dump_flags
);
248 else if (i
== 3 && NOTE_P (in_rtx
))
250 switch (NOTE_KIND (in_rtx
))
252 case NOTE_INSN_EH_REGION_BEG
:
253 case NOTE_INSN_EH_REGION_END
:
254 if (flag_dump_unnumbered
)
255 fprintf (outfile
, " #");
257 fprintf (outfile
, " %d", NOTE_EH_HANDLER (in_rtx
));
261 case NOTE_INSN_BLOCK_BEG
:
262 case NOTE_INSN_BLOCK_END
:
263 dump_addr (outfile
, " ", NOTE_BLOCK (in_rtx
));
267 case NOTE_INSN_BASIC_BLOCK
:
269 basic_block bb
= NOTE_BASIC_BLOCK (in_rtx
);
271 fprintf (outfile
, " [bb %d]", bb
->index
);
275 case NOTE_INSN_DELETED_LABEL
:
276 case NOTE_INSN_DELETED_DEBUG_LABEL
:
278 const char *label
= NOTE_DELETED_LABEL_NAME (in_rtx
);
280 fprintf (outfile
, " (\"%s\")", label
);
282 fprintf (outfile
, " \"\"");
286 case NOTE_INSN_SWITCH_TEXT_SECTIONS
:
288 basic_block bb
= NOTE_BASIC_BLOCK (in_rtx
);
290 fprintf (outfile
, " [bb %d]", bb
->index
);
294 case NOTE_INSN_VAR_LOCATION
:
295 case NOTE_INSN_CALL_ARG_LOCATION
:
296 fputc (' ', outfile
);
297 print_rtx (NOTE_VAR_LOCATION (in_rtx
));
301 fputc ('\n', outfile
);
302 output_cfi_directive (outfile
, NOTE_CFI (in_rtx
));
303 fputc ('\t', outfile
);
310 else if (i
== 7 && JUMP_P (in_rtx
) && JUMP_LABEL (in_rtx
) != NULL
)
312 /* Output the JUMP_LABEL reference. */
313 fprintf (outfile
, "\n%s%*s -> ", print_rtx_head
, indent
* 2, "");
314 if (GET_CODE (JUMP_LABEL (in_rtx
)) == RETURN
)
315 fprintf (outfile
, "return");
316 else if (GET_CODE (JUMP_LABEL (in_rtx
)) == SIMPLE_RETURN
)
317 fprintf (outfile
, "simple_return");
319 fprintf (outfile
, "%d", INSN_UID (JUMP_LABEL (in_rtx
)));
321 else if (i
== 0 && GET_CODE (in_rtx
) == VALUE
)
323 cselib_val
*val
= CSELIB_VAL_PTR (in_rtx
);
325 fprintf (outfile
, " %u:%u", val
->uid
, val
->hash
);
326 dump_addr (outfile
, " @", in_rtx
);
327 dump_addr (outfile
, "/", (void*)val
);
329 else if (i
== 0 && GET_CODE (in_rtx
) == DEBUG_EXPR
)
331 fprintf (outfile
, " D#%i",
332 DEBUG_TEMP_UID (DEBUG_EXPR_TREE_DECL (in_rtx
)));
334 else if (i
== 0 && GET_CODE (in_rtx
) == ENTRY_VALUE
)
338 fprintf (outfile
, " ");
339 print_rtx (ENTRY_VALUE_EXP (in_rtx
));
348 if (i
== 6 && INSN_P (in_rtx
))
349 /* Put REG_NOTES on their own line. */
350 fprintf (outfile
, "\n%s%*s",
351 print_rtx_head
, indent
* 2, "");
353 fprintf (outfile
, " ");
354 if (i
== 7 && CALL_P (in_rtx
))
356 in_call_function_usage
= true;
357 print_rtx (XEXP (in_rtx
, i
));
358 in_call_function_usage
= false;
361 print_rtx (XEXP (in_rtx
, i
));
370 fprintf (outfile
, "\n%s%*s",
371 print_rtx_head
, indent
* 2, "");
374 fputs (" [", outfile
);
375 if (NULL
!= XVEC (in_rtx
, i
))
378 if (XVECLEN (in_rtx
, i
))
381 for (j
= 0; j
< XVECLEN (in_rtx
, i
); j
++)
382 print_rtx (XVECEXP (in_rtx
, i
, j
));
387 fprintf (outfile
, "\n%s%*s", print_rtx_head
, indent
* 2, "");
389 fputs ("]", outfile
);
396 fprintf (outfile
, " ");
397 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, XWINT (in_rtx
, i
));
399 fprintf (outfile
, " [" HOST_WIDE_INT_PRINT_HEX
"]",
400 (unsigned HOST_WIDE_INT
) XWINT (in_rtx
, i
));
404 if (i
== 4 && INSN_P (in_rtx
))
406 #ifndef GENERATOR_FILE
407 const rtx_insn
*in_insn
= as_a
<const rtx_insn
*> (in_rtx
);
409 /* Pretty-print insn locations. Ignore scoping as it is mostly
410 redundant with line number information and do not print anything
411 when there is no location information available. */
412 if (INSN_HAS_LOCATION (in_insn
))
414 expanded_location xloc
= insn_location (in_insn
);
415 fprintf (outfile
, " %s:%i", xloc
.file
, xloc
.line
);
419 else if (i
== 6 && GET_CODE (in_rtx
) == ASM_OPERANDS
)
421 #ifndef GENERATOR_FILE
422 if (ASM_OPERANDS_SOURCE_LOCATION (in_rtx
) != UNKNOWN_LOCATION
)
423 fprintf (outfile
, " %s:%i",
424 LOCATION_FILE (ASM_OPERANDS_SOURCE_LOCATION (in_rtx
)),
425 LOCATION_LINE (ASM_OPERANDS_SOURCE_LOCATION (in_rtx
)));
428 else if (i
== 1 && GET_CODE (in_rtx
) == ASM_INPUT
)
430 #ifndef GENERATOR_FILE
431 if (ASM_INPUT_SOURCE_LOCATION (in_rtx
) != UNKNOWN_LOCATION
)
432 fprintf (outfile
, " %s:%i",
433 LOCATION_FILE (ASM_INPUT_SOURCE_LOCATION (in_rtx
)),
434 LOCATION_LINE (ASM_INPUT_SOURCE_LOCATION (in_rtx
)));
437 else if (i
== 5 && NOTE_P (in_rtx
))
439 /* This field is only used for NOTE_INSN_DELETED_LABEL, and
440 other times often contains garbage from INSN->NOTE death. */
441 if (NOTE_KIND (in_rtx
) == NOTE_INSN_DELETED_LABEL
442 || NOTE_KIND (in_rtx
) == NOTE_INSN_DELETED_DEBUG_LABEL
)
443 fprintf (outfile
, " %d", XINT (in_rtx
, i
));
445 #if !defined(GENERATOR_FILE) && NUM_UNSPECV_VALUES > 0
447 && GET_CODE (in_rtx
) == UNSPEC_VOLATILE
448 && XINT (in_rtx
, 1) >= 0
449 && XINT (in_rtx
, 1) < NUM_UNSPECV_VALUES
)
450 fprintf (outfile
, " %s", unspecv_strings
[XINT (in_rtx
, 1)]);
452 #if !defined(GENERATOR_FILE) && NUM_UNSPEC_VALUES > 0
454 && (GET_CODE (in_rtx
) == UNSPEC
455 || GET_CODE (in_rtx
) == UNSPEC_VOLATILE
)
456 && XINT (in_rtx
, 1) >= 0
457 && XINT (in_rtx
, 1) < NUM_UNSPEC_VALUES
)
458 fprintf (outfile
, " %s", unspec_strings
[XINT (in_rtx
, 1)]);
462 int value
= XINT (in_rtx
, i
);
465 #ifndef GENERATOR_FILE
466 if (REG_P (in_rtx
) && (unsigned) value
< FIRST_PSEUDO_REGISTER
)
467 fprintf (outfile
, " %d %s", value
, reg_names
[value
]);
468 else if (REG_P (in_rtx
)
469 && (unsigned) value
<= LAST_VIRTUAL_REGISTER
)
471 if (value
== VIRTUAL_INCOMING_ARGS_REGNUM
)
472 fprintf (outfile
, " %d virtual-incoming-args", value
);
473 else if (value
== VIRTUAL_STACK_VARS_REGNUM
)
474 fprintf (outfile
, " %d virtual-stack-vars", value
);
475 else if (value
== VIRTUAL_STACK_DYNAMIC_REGNUM
)
476 fprintf (outfile
, " %d virtual-stack-dynamic", value
);
477 else if (value
== VIRTUAL_OUTGOING_ARGS_REGNUM
)
478 fprintf (outfile
, " %d virtual-outgoing-args", value
);
479 else if (value
== VIRTUAL_CFA_REGNUM
)
480 fprintf (outfile
, " %d virtual-cfa", value
);
481 else if (value
== VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM
)
482 fprintf (outfile
, " %d virtual-preferred-stack-boundary",
485 fprintf (outfile
, " %d virtual-reg-%d", value
,
486 value
-FIRST_VIRTUAL_REGISTER
);
490 if (flag_dump_unnumbered
491 && (is_insn
|| NOTE_P (in_rtx
)))
492 fputc ('#', outfile
);
494 fprintf (outfile
, " %d", value
);
496 #ifndef GENERATOR_FILE
497 if (REG_P (in_rtx
) && REG_ATTRS (in_rtx
))
499 fputs (" [", outfile
);
500 if (ORIGINAL_REGNO (in_rtx
) != REGNO (in_rtx
))
501 fprintf (outfile
, "orig:%i", ORIGINAL_REGNO (in_rtx
));
502 if (REG_EXPR (in_rtx
))
503 print_mem_expr (outfile
, REG_EXPR (in_rtx
));
505 if (REG_OFFSET (in_rtx
))
506 fprintf (outfile
, "+" HOST_WIDE_INT_PRINT_DEC
,
507 REG_OFFSET (in_rtx
));
508 fputs (" ]", outfile
);
510 if (REG_P (in_rtx
) && REGNO (in_rtx
) != ORIGINAL_REGNO (in_rtx
))
511 fprintf (outfile
, " [%d]", ORIGINAL_REGNO (in_rtx
));
514 if (is_insn
&& &INSN_CODE (in_rtx
) == &XINT (in_rtx
, i
)
515 && XINT (in_rtx
, i
) >= 0
516 && (name
= get_insn_name (XINT (in_rtx
, i
))) != NULL
)
517 fprintf (outfile
, " {%s}", name
);
522 /* Print NOTE_INSN names rather than integer codes. */
525 fprintf (outfile
, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx
, i
)));
530 if (XEXP (in_rtx
, i
) != NULL
)
532 rtx sub
= XEXP (in_rtx
, i
);
533 enum rtx_code subc
= GET_CODE (sub
);
535 if (GET_CODE (in_rtx
) == LABEL_REF
)
538 && NOTE_KIND (sub
) == NOTE_INSN_DELETED_LABEL
)
540 if (flag_dump_unnumbered
)
541 fprintf (outfile
, " [# deleted]");
543 fprintf (outfile
, " [%d deleted]", INSN_UID (sub
));
548 if (subc
!= CODE_LABEL
)
552 if (flag_dump_unnumbered
553 || (flag_dump_unnumbered_links
&& (i
== 1 || i
== 2)
554 && (INSN_P (in_rtx
) || NOTE_P (in_rtx
)
555 || LABEL_P (in_rtx
) || BARRIER_P (in_rtx
))))
556 fputs (" #", outfile
);
558 fprintf (outfile
, " %d", INSN_UID (sub
));
561 fputs (" 0", outfile
);
566 #ifndef GENERATOR_FILE
567 if (i
== 0 && GET_CODE (in_rtx
) == DEBUG_IMPLICIT_PTR
)
568 print_mem_expr (outfile
, DEBUG_IMPLICIT_PTR_DECL (in_rtx
));
569 else if (i
== 0 && GET_CODE (in_rtx
) == DEBUG_PARAMETER_REF
)
570 print_mem_expr (outfile
, DEBUG_PARAMETER_REF_DECL (in_rtx
));
572 dump_addr (outfile
, " ", XTREE (in_rtx
, i
));
577 fputs (" Unknown", outfile
);
582 #ifndef GENERATOR_FILE
583 if (XBBDEF (in_rtx
, i
))
584 fprintf (outfile
, " %i", XBBDEF (in_rtx
, i
)->index
);
592 switch (GET_CODE (in_rtx
))
594 #ifndef GENERATOR_FILE
596 if (__builtin_expect (final_insns_dump_p
, false))
597 fprintf (outfile
, " [");
599 fprintf (outfile
, " [" HOST_WIDE_INT_PRINT_DEC
,
600 (HOST_WIDE_INT
) MEM_ALIAS_SET (in_rtx
));
602 if (MEM_EXPR (in_rtx
))
603 print_mem_expr (outfile
, MEM_EXPR (in_rtx
));
605 fputc (' ', outfile
);
607 if (MEM_OFFSET_KNOWN_P (in_rtx
))
608 fprintf (outfile
, "+" HOST_WIDE_INT_PRINT_DEC
, MEM_OFFSET (in_rtx
));
610 if (MEM_SIZE_KNOWN_P (in_rtx
))
611 fprintf (outfile
, " S" HOST_WIDE_INT_PRINT_DEC
, MEM_SIZE (in_rtx
));
613 if (MEM_ALIGN (in_rtx
) != 1)
614 fprintf (outfile
, " A%u", MEM_ALIGN (in_rtx
));
616 if (!ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (in_rtx
)))
617 fprintf (outfile
, " AS%u", MEM_ADDR_SPACE (in_rtx
));
619 fputc (']', outfile
);
623 if (FLOAT_MODE_P (GET_MODE (in_rtx
)))
627 real_to_decimal (s
, CONST_DOUBLE_REAL_VALUE (in_rtx
),
629 fprintf (outfile
, " %s", s
);
631 real_to_hexadecimal (s
, CONST_DOUBLE_REAL_VALUE (in_rtx
),
633 fprintf (outfile
, " [%s]", s
);
638 fprintf (outfile
, " ");
639 cwi_output_hex (outfile
, in_rtx
);
644 fprintf (outfile
, " [%d uses]", LABEL_NUSES (in_rtx
));
645 switch (LABEL_KIND (in_rtx
))
647 case LABEL_NORMAL
: break;
648 case LABEL_STATIC_ENTRY
: fputs (" [entry]", outfile
); break;
649 case LABEL_GLOBAL_ENTRY
: fputs (" [global entry]", outfile
); break;
650 case LABEL_WEAK_ENTRY
: fputs (" [weak entry]", outfile
); break;
651 default: gcc_unreachable ();
659 fputc (')', outfile
);
663 /* Print an rtx on the current line of FILE. Initially indent IND
667 print_inline_rtx (FILE *outf
, const_rtx x
, int ind
)
669 int oldsaw
= sawclose
;
670 int oldindent
= indent
;
680 /* Call this function from the debugger to see what X looks like. */
683 debug_rtx (const_rtx x
)
688 fprintf (stderr
, "\n");
694 debug (const rtx_def
&ref
)
700 debug (const rtx_def
*ptr
)
705 fprintf (stderr
, "<nil>\n");
708 /* Count of rtx's to print with debug_rtx_list.
709 This global exists because gdb user defined commands have no arguments. */
711 DEBUG_VARIABLE
int debug_rtx_count
= 0; /* 0 is treated as equivalent to 1 */
713 /* Call this function to print list from X on.
715 N is a count of the rtx's to print. Positive values print from the specified
716 rtx_insn on. Negative values print a window around the rtx_insn.
717 EG: -5 prints 2 rtx_insn's on either side (in addition to the specified
721 debug_rtx_list (const rtx_insn
*x
, int n
)
724 const rtx_insn
*insn
;
726 count
= n
== 0 ? 1 : n
< 0 ? -n
: n
;
728 /* If we are printing a window, back up to the start. */
731 for (i
= count
/ 2; i
> 0; i
--)
733 if (PREV_INSN (x
) == 0)
738 for (i
= count
, insn
= x
; i
> 0 && insn
!= 0; i
--, insn
= NEXT_INSN (insn
))
741 fprintf (stderr
, "\n");
745 /* Call this function to print an rtx_insn list from START to END
749 debug_rtx_range (const rtx_insn
*start
, const rtx_insn
*end
)
754 fprintf (stderr
, "\n");
755 if (!start
|| start
== end
)
757 start
= NEXT_INSN (start
);
761 /* Call this function to search an rtx_insn list to find one with insn uid UID,
762 and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
763 The found insn is returned to enable further debugging analysis. */
765 DEBUG_FUNCTION const_rtx
766 debug_rtx_find (const rtx_insn
*x
, int uid
)
768 while (x
!= 0 && INSN_UID (x
) != uid
)
772 debug_rtx_list (x
, debug_rtx_count
);
777 fprintf (stderr
, "insn uid %d not found\n", uid
);
782 /* External entry point for printing a chain of insns
783 starting with RTX_FIRST onto file OUTF.
784 A blank line separates insns.
786 If RTX_FIRST is not an insn, then it alone is printed, with no newline. */
789 print_rtl (FILE *outf
, const_rtx rtx_first
)
791 const rtx_insn
*tmp_rtx
;
798 fputs (print_rtx_head
, outf
);
799 fputs ("(nil)\n", outf
);
802 switch (GET_CODE (rtx_first
))
809 case JUMP_TABLE_DATA
:
811 for (tmp_rtx
= as_a
<const rtx_insn
*> (rtx_first
);
813 tmp_rtx
= NEXT_INSN (tmp_rtx
))
815 fputs (print_rtx_head
, outfile
);
817 fprintf (outfile
, "\n");
822 fputs (print_rtx_head
, outfile
);
823 print_rtx (rtx_first
);
827 /* Like print_rtx, except specify a file. */
828 /* Return nonzero if we actually printed anything. */
831 print_rtl_single (FILE *outf
, const_rtx x
)
833 return print_rtl_single_with_indent (outf
, x
, 0);
836 /* Like print_rtl_single, except specify a file and indentation. */
839 print_rtl_single_with_indent (FILE *outf
, const_rtx x
, int ind
)
841 int old_indent
= indent
;
842 char *s_indent
= (char *) alloca ((size_t) ind
+ 1);
843 memset ((void *) s_indent
, ' ', (size_t) ind
);
844 s_indent
[ind
] = '\0';
849 fputs (s_indent
, outfile
);
850 fputs (print_rtx_head
, outfile
);
858 /* Like print_rtl except without all the detail; for example,
859 if RTX is a CONST_INT then print in decimal format. */
862 print_simple_rtl (FILE *outf
, const_rtx x
)