OSDN Git Service

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