OSDN Git Service

* config/pa/fptr.c: Update license header.
[pf3gnuchains/gcc-fork.git] / gcc / print-rtl.c
1 /* Print RTL for GCC.
2    Copyright (C) 1987, 1988, 1992, 1997, 1998, 1999, 2000, 2002, 2003,
3    2004, 2005
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.  */
22
23 /* This file is compiled twice: once for the generator programs,
24    once for the compiler.  */
25 #ifdef GENERATOR_FILE
26 #include "bconfig.h"
27 #else
28 #include "config.h"
29 #endif
30
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "rtl.h"
35
36 /* These headers all define things which are not available in
37    generator programs.  */
38 #ifndef GENERATOR_FILE
39 #include "tree.h"
40 #include "real.h"
41 #include "flags.h"
42 #include "hard-reg-set.h"
43 #include "basic-block.h"
44 #endif
45
46 static FILE *outfile;
47
48 static int sawclose = 0;
49
50 static int indent;
51
52 static void print_rtx (rtx);
53
54 /* String printed at beginning of each RTL when it is dumped.
55    This string is set to ASM_COMMENT_START when the RTL is dumped in
56    the assembly output file.  */
57 const char *print_rtx_head = "";
58
59 /* Nonzero means suppress output of instruction numbers
60    in debugging dumps.
61    This must be defined here so that programs like gencodes can be linked.  */
62 int flag_dump_unnumbered = 0;
63
64 /* Nonzero means use simplified format without flags, modes, etc.  */
65 int flag_simple = 0;
66
67 /* Nonzero if we are dumping graphical description.  */
68 int dump_for_graph;
69
70 #ifndef GENERATOR_FILE
71 static void
72 print_decl_name (FILE *outfile, tree node)
73 {
74   if (DECL_NAME (node))
75     fputs (IDENTIFIER_POINTER (DECL_NAME (node)), outfile);
76   else
77     {
78       if (TREE_CODE (node) == LABEL_DECL && LABEL_DECL_UID (node) != -1)
79         fprintf (outfile, "L." HOST_WIDE_INT_PRINT_DEC, LABEL_DECL_UID (node));
80       else
81         {
82           char c = TREE_CODE (node) == CONST_DECL ? 'C' : 'D';
83           fprintf (outfile, "%c.%u", c, DECL_UID (node));
84         }
85     }
86 }
87
88 void
89 print_mem_expr (FILE *outfile, tree expr)
90 {
91   if (TREE_CODE (expr) == COMPONENT_REF)
92     {
93       if (TREE_OPERAND (expr, 0))
94         print_mem_expr (outfile, TREE_OPERAND (expr, 0));
95       else
96         fputs (" <variable>", outfile);
97       fputc ('.', outfile);
98       print_decl_name (outfile, TREE_OPERAND (expr, 1));
99     }
100   else if (TREE_CODE (expr) == INDIRECT_REF)
101     {
102       fputs (" (*", outfile);
103       print_mem_expr (outfile, TREE_OPERAND (expr, 0));
104       fputs (")", outfile);
105     }
106   else if (TREE_CODE (expr) == ALIGN_INDIRECT_REF)
107     {
108       fputs (" (A*", outfile);
109       print_mem_expr (outfile, TREE_OPERAND (expr, 0));
110       fputs (")", outfile);
111     }
112   else if (TREE_CODE (expr) == MISALIGNED_INDIRECT_REF)
113     {
114       fputs (" (M*", outfile);
115       print_mem_expr (outfile, TREE_OPERAND (expr, 0));
116       fputs (")", outfile);
117     }
118   else if (TREE_CODE (expr) == RESULT_DECL)
119     fputs (" <result>", outfile);
120   else
121     {
122       fputc (' ', outfile);
123       print_decl_name (outfile, expr);
124     }
125 }
126 #endif
127
128 /* Print IN_RTX onto OUTFILE.  This is the recursive part of printing.  */
129
130 static void
131 print_rtx (rtx in_rtx)
132 {
133   int i = 0;
134   int j;
135   const char *format_ptr;
136   int is_insn;
137
138   if (sawclose)
139     {
140       if (flag_simple)
141         fputc (' ', outfile);
142       else
143         fprintf (outfile, "\n%s%*s", print_rtx_head, indent * 2, "");
144       sawclose = 0;
145     }
146
147   if (in_rtx == 0)
148     {
149       fputs ("(nil)", outfile);
150       sawclose = 1;
151       return;
152     }
153   else if (GET_CODE (in_rtx) > NUM_RTX_CODE)
154     {
155        fprintf (outfile, "(??? bad code %d\n)", GET_CODE (in_rtx));
156        sawclose = 1;
157        return;
158     }
159
160   is_insn = INSN_P (in_rtx);
161
162   /* When printing in VCG format we write INSNs, NOTE, LABEL, and BARRIER
163      in separate nodes and therefore have to handle them special here.  */
164   if (dump_for_graph
165       && (is_insn || NOTE_P (in_rtx)
166           || LABEL_P (in_rtx) || BARRIER_P (in_rtx)))
167     {
168       i = 3;
169       indent = 0;
170     }
171   else
172     {
173       /* Print name of expression code.  */
174       if (flag_simple && GET_CODE (in_rtx) == CONST_INT)
175         fputc ('(', outfile);
176       else
177         fprintf (outfile, "(%s", GET_RTX_NAME (GET_CODE (in_rtx)));
178
179       if (! flag_simple)
180         {
181           if (RTX_FLAG (in_rtx, in_struct))
182             fputs ("/s", outfile);
183
184           if (RTX_FLAG (in_rtx, volatil))
185             fputs ("/v", outfile);
186
187           if (RTX_FLAG (in_rtx, unchanging))
188             fputs ("/u", outfile);
189
190           if (RTX_FLAG (in_rtx, frame_related))
191             fputs ("/f", outfile);
192
193           if (RTX_FLAG (in_rtx, jump))
194             fputs ("/j", outfile);
195
196           if (RTX_FLAG (in_rtx, call))
197             fputs ("/c", outfile);
198
199           if (RTX_FLAG (in_rtx, return_val))
200             fputs ("/i", outfile);
201
202           /* Print REG_NOTE names for EXPR_LIST and INSN_LIST.  */
203           if (GET_CODE (in_rtx) == EXPR_LIST
204               || GET_CODE (in_rtx) == INSN_LIST)
205             fprintf (outfile, ":%s",
206                      GET_REG_NOTE_NAME (GET_MODE (in_rtx)));
207
208           /* For other rtl, print the mode if it's not VOID.  */
209           else if (GET_MODE (in_rtx) != VOIDmode)
210             fprintf (outfile, ":%s", GET_MODE_NAME (GET_MODE (in_rtx)));
211         }
212     }
213
214 #ifndef GENERATOR_FILE
215   if (GET_CODE (in_rtx) == CONST_DOUBLE && FLOAT_MODE_P (GET_MODE (in_rtx)))
216     i = 5;
217 #endif
218
219   /* Get the format string and skip the first elements if we have handled
220      them already.  */
221   format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx)) + i;
222   for (; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
223     switch (*format_ptr++)
224       {
225         const char *str;
226
227       case 'T':
228         str = XTMPL (in_rtx, i);
229         goto string;
230
231       case 'S':
232       case 's':
233         str = XSTR (in_rtx, i);
234       string:
235
236         if (str == 0)
237           fputs (dump_for_graph ? " \\\"\\\"" : " \"\"", outfile);
238         else
239           {
240             if (dump_for_graph)
241               fprintf (outfile, " (\\\"%s\\\")", str);
242             else
243               fprintf (outfile, " (\"%s\")", str);
244           }
245         sawclose = 1;
246         break;
247
248         /* 0 indicates a field for internal use that should not be printed.
249            An exception is the third field of a NOTE, where it indicates
250            that the field has several different valid contents.  */
251       case '0':
252         if (i == 1 && REG_P (in_rtx))
253           {
254             if (REGNO (in_rtx) != ORIGINAL_REGNO (in_rtx))
255               fprintf (outfile, " [%d]", ORIGINAL_REGNO (in_rtx));
256           }
257 #ifndef GENERATOR_FILE
258         else if (i == 1 && GET_CODE (in_rtx) == SYMBOL_REF)
259           {
260             int flags = SYMBOL_REF_FLAGS (in_rtx);
261             if (flags)
262               fprintf (outfile, " [flags 0x%x]", flags);
263           }
264         else if (i == 2 && GET_CODE (in_rtx) == SYMBOL_REF)
265           {
266             tree decl = SYMBOL_REF_DECL (in_rtx);
267             if (decl)
268               print_node_brief (outfile, "", decl, 0);
269           }
270 #endif
271         else if (i == 4 && NOTE_P (in_rtx))
272           {
273             switch (NOTE_KIND (in_rtx))
274               {
275               case NOTE_INSN_EH_REGION_BEG:
276               case NOTE_INSN_EH_REGION_END:
277                 if (flag_dump_unnumbered)
278                   fprintf (outfile, " #");
279                 else
280                   fprintf (outfile, " %d", NOTE_EH_HANDLER (in_rtx));
281                 sawclose = 1;
282                 break;
283
284               case NOTE_INSN_BLOCK_BEG:
285               case NOTE_INSN_BLOCK_END:
286 #ifndef GENERATOR_FILE
287                 dump_addr (outfile, " ", NOTE_BLOCK (in_rtx));
288 #endif
289                 sawclose = 1;
290                 break;
291
292               case NOTE_INSN_BASIC_BLOCK:
293                 {
294 #ifndef GENERATOR_FILE
295                   basic_block bb = NOTE_BASIC_BLOCK (in_rtx);
296                   if (bb != 0)
297                     fprintf (outfile, " [bb %d]", bb->index);
298 #endif
299                   break;
300                 }
301
302               case NOTE_INSN_DELETED_LABEL:
303                 {
304                   const char *label = NOTE_DELETED_LABEL_NAME (in_rtx);
305                   if (label)
306                     fprintf (outfile, " (\"%s\")", label);
307                   else
308                     fprintf (outfile, " \"\"");
309                 }
310                 break;
311
312               case NOTE_INSN_SWITCH_TEXT_SECTIONS:
313                 {
314 #ifndef GENERATOR_FILE
315                   basic_block bb = NOTE_BASIC_BLOCK (in_rtx);
316                   if (bb != 0)
317                     fprintf (outfile, " [bb %d]", bb->index);
318 #endif
319                   break;
320                 }
321                 
322               case NOTE_INSN_VAR_LOCATION:
323 #ifndef GENERATOR_FILE
324                 fprintf (outfile, " (");
325                 print_mem_expr (outfile, NOTE_VAR_LOCATION_DECL (in_rtx));
326                 fprintf (outfile, " ");
327                 print_rtx (NOTE_VAR_LOCATION_LOC (in_rtx));
328                 if (NOTE_VAR_LOCATION_STATUS (in_rtx) == 
329                                                  VAR_INIT_STATUS_UNINITIALIZED)
330                   fprintf (outfile, " [uninit]");
331                 fprintf (outfile, ")");
332 #endif
333                 break;
334
335               default:
336                 break;
337               }
338           }
339         break;
340
341       case 'e':
342       do_e:
343         indent += 2;
344         if (!sawclose)
345           fprintf (outfile, " ");
346         print_rtx (XEXP (in_rtx, i));
347         indent -= 2;
348         break;
349
350       case 'E':
351       case 'V':
352         indent += 2;
353         if (sawclose)
354           {
355             fprintf (outfile, "\n%s%*s",
356                      print_rtx_head, indent * 2, "");
357             sawclose = 0;
358           }
359         fputs (" [", outfile);
360         if (NULL != XVEC (in_rtx, i))
361           {
362             indent += 2;
363             if (XVECLEN (in_rtx, i))
364               sawclose = 1;
365
366             for (j = 0; j < XVECLEN (in_rtx, i); j++)
367               print_rtx (XVECEXP (in_rtx, i, j));
368
369             indent -= 2;
370           }
371         if (sawclose)
372           fprintf (outfile, "\n%s%*s", print_rtx_head, indent * 2, "");
373
374         fputs ("]", outfile);
375         sawclose = 1;
376         indent -= 2;
377         break;
378
379       case 'w':
380         if (! flag_simple)
381           fprintf (outfile, " ");
382         fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
383         if (! flag_simple)
384           fprintf (outfile, " [" HOST_WIDE_INT_PRINT_HEX "]",
385                    XWINT (in_rtx, i));
386         break;
387
388       case 'i':
389         if (i == 4 && INSN_P (in_rtx))
390           {
391 #ifndef GENERATOR_FILE
392             /*  Pretty-print insn locators.  Ignore scoping as it is mostly
393                 redundant with line number information and do not print anything
394                 when there is no location information available.  */
395             if (INSN_LOCATOR (in_rtx) && insn_file (in_rtx))
396               fprintf(outfile, " %s:%i", insn_file (in_rtx), insn_line (in_rtx));
397 #endif
398           }
399         else if (i == 6 && NOTE_P (in_rtx))
400           {
401             /* This field is only used for NOTE_INSN_DELETED_LABEL, and
402                other times often contains garbage from INSN->NOTE death.  */
403             if (NOTE_KIND (in_rtx) == NOTE_INSN_DELETED_LABEL)
404               fprintf (outfile, " %d",  XINT (in_rtx, i));
405           }
406         else
407           {
408             int value = XINT (in_rtx, i);
409             const char *name;
410
411 #ifndef GENERATOR_FILE
412             if (REG_P (in_rtx) && value < FIRST_PSEUDO_REGISTER)
413               fprintf (outfile, " %d %s", REGNO (in_rtx),
414                        reg_names[REGNO (in_rtx)]);
415             else if (REG_P (in_rtx)
416                      && value <= LAST_VIRTUAL_REGISTER)
417               {
418                 if (value == VIRTUAL_INCOMING_ARGS_REGNUM)
419                   fprintf (outfile, " %d virtual-incoming-args", value);
420                 else if (value == VIRTUAL_STACK_VARS_REGNUM)
421                   fprintf (outfile, " %d virtual-stack-vars", value);
422                 else if (value == VIRTUAL_STACK_DYNAMIC_REGNUM)
423                   fprintf (outfile, " %d virtual-stack-dynamic", value);
424                 else if (value == VIRTUAL_OUTGOING_ARGS_REGNUM)
425                   fprintf (outfile, " %d virtual-outgoing-args", value);
426                 else if (value == VIRTUAL_CFA_REGNUM)
427                   fprintf (outfile, " %d virtual-cfa", value);
428                 else
429                   fprintf (outfile, " %d virtual-reg-%d", value,
430                            value-FIRST_VIRTUAL_REGISTER);
431               }
432             else
433 #endif
434               if (flag_dump_unnumbered
435                      && (is_insn || NOTE_P (in_rtx)))
436               fputc ('#', outfile);
437             else
438               fprintf (outfile, " %d", value);
439
440 #ifndef GENERATOR_FILE
441             if (REG_P (in_rtx) && REG_ATTRS (in_rtx))
442               {
443                 fputs (" [", outfile);
444                 if (ORIGINAL_REGNO (in_rtx) != REGNO (in_rtx))
445                   fprintf (outfile, "orig:%i", ORIGINAL_REGNO (in_rtx));
446                 if (REG_EXPR (in_rtx))
447                   print_mem_expr (outfile, REG_EXPR (in_rtx));
448
449                 if (REG_OFFSET (in_rtx))
450                   fprintf (outfile, "+" HOST_WIDE_INT_PRINT_DEC,
451                            REG_OFFSET (in_rtx));
452                 fputs (" ]", outfile);
453               }
454 #endif
455
456             if (is_insn && &INSN_CODE (in_rtx) == &XINT (in_rtx, i)
457                 && XINT (in_rtx, i) >= 0
458                 && (name = get_insn_name (XINT (in_rtx, i))) != NULL)
459               fprintf (outfile, " {%s}", name);
460             sawclose = 0;
461           }
462         break;
463
464       /* Print NOTE_INSN names rather than integer codes.  */
465
466       case 'n':
467         fprintf (outfile, " %s", GET_NOTE_INSN_NAME (XINT (in_rtx, i)));
468         sawclose = 0;
469         break;
470
471       case 'u':
472         if (XEXP (in_rtx, i) != NULL)
473           {
474             rtx sub = XEXP (in_rtx, i);
475             enum rtx_code subc = GET_CODE (sub);
476
477             if (GET_CODE (in_rtx) == LABEL_REF)
478               {
479                 if (subc == NOTE
480                     && NOTE_KIND (sub) == NOTE_INSN_DELETED_LABEL)
481                   {
482                     if (flag_dump_unnumbered)
483                       fprintf (outfile, " [# deleted]");
484                     else
485                       fprintf (outfile, " [%d deleted]", INSN_UID (sub));
486                     sawclose = 0;
487                     break;
488                   }
489
490                 if (subc != CODE_LABEL)
491                   goto do_e;
492               }
493
494             if (flag_dump_unnumbered)
495               fputs (" #", outfile);
496             else
497               fprintf (outfile, " %d", INSN_UID (sub));
498           }
499         else
500           fputs (" 0", outfile);
501         sawclose = 0;
502         break;
503
504       case 'b':
505 #ifndef GENERATOR_FILE
506         if (XBITMAP (in_rtx, i) == NULL)
507           fputs (" {null}", outfile);
508         else
509           bitmap_print (outfile, XBITMAP (in_rtx, i), " {", "}");
510 #endif
511         sawclose = 0;
512         break;
513
514       case 't':
515 #ifndef GENERATOR_FILE
516         dump_addr (outfile, " ", XTREE (in_rtx, i));
517 #endif
518         break;
519
520       case '*':
521         fputs (" Unknown", outfile);
522         sawclose = 0;
523         break;
524
525       case 'B':
526 #ifndef GENERATOR_FILE
527         if (XBBDEF (in_rtx, i))
528           fprintf (outfile, " %i", XBBDEF (in_rtx, i)->index);
529 #endif
530         break;
531
532       default:
533         gcc_unreachable ();
534       }
535
536   switch (GET_CODE (in_rtx))
537     {
538 #ifndef GENERATOR_FILE
539     case MEM:
540       fprintf (outfile, " [" HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx));
541
542       if (MEM_EXPR (in_rtx))
543         print_mem_expr (outfile, MEM_EXPR (in_rtx));
544
545       if (MEM_OFFSET (in_rtx))
546         fprintf (outfile, "+" HOST_WIDE_INT_PRINT_DEC,
547                  INTVAL (MEM_OFFSET (in_rtx)));
548
549       if (MEM_SIZE (in_rtx))
550         fprintf (outfile, " S" HOST_WIDE_INT_PRINT_DEC,
551                  INTVAL (MEM_SIZE (in_rtx)));
552
553       if (MEM_ALIGN (in_rtx) != 1)
554         fprintf (outfile, " A%u", MEM_ALIGN (in_rtx));
555
556       fputc (']', outfile);
557       break;
558
559     case CONST_DOUBLE:
560       if (FLOAT_MODE_P (GET_MODE (in_rtx)))
561         {
562           char s[60];
563
564           real_to_decimal (s, CONST_DOUBLE_REAL_VALUE (in_rtx),
565                            sizeof (s), 0, 1);
566           fprintf (outfile, " %s", s);
567
568           real_to_hexadecimal (s, CONST_DOUBLE_REAL_VALUE (in_rtx),
569                                sizeof (s), 0, 1);
570           fprintf (outfile, " [%s]", s);
571         }
572       break;
573 #endif
574
575     case CODE_LABEL:
576       fprintf (outfile, " [%d uses]", LABEL_NUSES (in_rtx));
577       switch (LABEL_KIND (in_rtx))
578         {
579           case LABEL_NORMAL: break;
580           case LABEL_STATIC_ENTRY: fputs (" [entry]", outfile); break;
581           case LABEL_GLOBAL_ENTRY: fputs (" [global entry]", outfile); break;
582           case LABEL_WEAK_ENTRY: fputs (" [weak entry]", outfile); break;
583           default: gcc_unreachable ();
584         }
585       break;
586
587     default:
588       break;
589     }
590
591   if (dump_for_graph
592       && (is_insn || NOTE_P (in_rtx)
593           || LABEL_P (in_rtx) || BARRIER_P (in_rtx)))
594     sawclose = 0;
595   else
596     {
597       fputc (')', outfile);
598       sawclose = 1;
599     }
600 }
601
602 /* Print an rtx on the current line of FILE.  Initially indent IND
603    characters.  */
604
605 void
606 print_inline_rtx (FILE *outf, rtx x, int ind)
607 {
608   int oldsaw = sawclose;
609   int oldindent = indent;
610
611   sawclose = 0;
612   indent = ind;
613   outfile = outf;
614   print_rtx (x);
615   sawclose = oldsaw;
616   indent = oldindent;
617 }
618
619 /* Call this function from the debugger to see what X looks like.  */
620
621 void
622 debug_rtx (rtx x)
623 {
624   outfile = stderr;
625   sawclose = 0;
626   print_rtx (x);
627   fprintf (stderr, "\n");
628 }
629
630 /* Count of rtx's to print with debug_rtx_list.
631    This global exists because gdb user defined commands have no arguments.  */
632
633 int debug_rtx_count = 0;        /* 0 is treated as equivalent to 1 */
634
635 /* Call this function to print list from X on.
636
637    N is a count of the rtx's to print. Positive values print from the specified
638    rtx on.  Negative values print a window around the rtx.
639    EG: -5 prints 2 rtx's on either side (in addition to the specified rtx).  */
640
641 void
642 debug_rtx_list (rtx x, int n)
643 {
644   int i,count;
645   rtx insn;
646
647   count = n == 0 ? 1 : n < 0 ? -n : n;
648
649   /* If we are printing a window, back up to the start.  */
650
651   if (n < 0)
652     for (i = count / 2; i > 0; i--)
653       {
654         if (PREV_INSN (x) == 0)
655           break;
656         x = PREV_INSN (x);
657       }
658
659   for (i = count, insn = x; i > 0 && insn != 0; i--, insn = NEXT_INSN (insn))
660     {
661       debug_rtx (insn);
662       fprintf (stderr, "\n");
663     }
664 }
665
666 /* Call this function to print an rtx list from START to END inclusive.  */
667
668 void
669 debug_rtx_range (rtx start, rtx end)
670 {
671   while (1)
672     {
673       debug_rtx (start);
674       fprintf (stderr, "\n");
675       if (!start || start == end)
676         break;
677       start = NEXT_INSN (start);
678     }
679 }
680
681 /* Call this function to search an rtx list to find one with insn uid UID,
682    and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT.
683    The found insn is returned to enable further debugging analysis.  */
684
685 rtx
686 debug_rtx_find (rtx x, int uid)
687 {
688   while (x != 0 && INSN_UID (x) != uid)
689     x = NEXT_INSN (x);
690   if (x != 0)
691     {
692       debug_rtx_list (x, debug_rtx_count);
693       return x;
694     }
695   else
696     {
697       fprintf (stderr, "insn uid %d not found\n", uid);
698       return 0;
699     }
700 }
701
702 /* External entry point for printing a chain of insns
703    starting with RTX_FIRST onto file OUTF.
704    A blank line separates insns.
705
706    If RTX_FIRST is not an insn, then it alone is printed, with no newline.  */
707
708 void
709 print_rtl (FILE *outf, rtx rtx_first)
710 {
711   rtx tmp_rtx;
712
713   outfile = outf;
714   sawclose = 0;
715
716   if (rtx_first == 0)
717     {
718       fputs (print_rtx_head, outf);
719       fputs ("(nil)\n", outf);
720     }
721   else
722     switch (GET_CODE (rtx_first))
723       {
724       case INSN:
725       case JUMP_INSN:
726       case CALL_INSN:
727       case NOTE:
728       case CODE_LABEL:
729       case BARRIER:
730         for (tmp_rtx = rtx_first; tmp_rtx != 0; tmp_rtx = NEXT_INSN (tmp_rtx))
731           {
732             fputs (print_rtx_head, outfile);
733             print_rtx (tmp_rtx);
734             fprintf (outfile, "\n");
735           }
736         break;
737
738       default:
739         fputs (print_rtx_head, outfile);
740         print_rtx (rtx_first);
741       }
742 }
743
744 /* Like print_rtx, except specify a file.  */
745 /* Return nonzero if we actually printed anything.  */
746
747 int
748 print_rtl_single (FILE *outf, rtx x)
749 {
750   outfile = outf;
751   sawclose = 0;
752   if (! flag_dump_unnumbered)
753     {
754       fputs (print_rtx_head, outfile);
755       print_rtx (x);
756       putc ('\n', outf);
757       return 1;
758     }
759   return 0;
760 }
761
762
763 /* Like print_rtl except without all the detail; for example,
764    if RTX is a CONST_INT then print in decimal format.  */
765
766 void
767 print_simple_rtl (FILE *outf, rtx x)
768 {
769   flag_simple = 1;
770   print_rtl (outf, x);
771   flag_simple = 0;
772 }