1 /* Dump infrastructure for optimizations and intermediate representation.
2 Copyright (C) 2012-2014 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/>. */
22 #include "coretypes.h"
23 #include "diagnostic-core.h"
26 #include "gimple-pretty-print.h"
29 /* If non-NULL, return one past-the-end of the matching SUBPART of
31 #define skip_leading_substring(whole, part) \
32 (strncmp (whole, part, strlen (part)) ? NULL : whole + strlen (part))
34 static int pflags
; /* current dump_flags */
35 static int alt_flags
; /* current opt_info flags */
37 static void dump_loc (int, FILE *, source_location
);
38 static FILE *dump_open_alternate_stream (struct dump_file_info
*);
40 /* These are currently used for communicating between passes.
41 However, instead of accessing them directly, the passes can use
42 dump_printf () for dumps. */
43 FILE *dump_file
= NULL
;
44 FILE *alt_dump_file
= NULL
;
45 const char *dump_file_name
;
48 /* Table of tree dump switches. This must be consistent with the
49 TREE_DUMP_INDEX enumeration in dumpfile.h. */
50 static struct dump_file_info dump_files
[TDI_end
] =
52 {NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, 0, 0, 0, 0, 0, 0},
53 {".cgraph", "ipa-cgraph", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_IPA
,
55 {".type-inheritance", "ipa-type-inheritance", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_IPA
,
57 {".tu", "translation-unit", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_TREE
,
59 {".class", "class-hierarchy", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_TREE
,
61 {".original", "tree-original", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_TREE
,
63 {".gimple", "tree-gimple", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_TREE
,
65 {".nested", "tree-nested", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_TREE
,
67 #define FIRST_AUTO_NUMBERED_DUMP 6
69 {NULL
, "tree-all", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_TREE
,
71 {NULL
, "rtl-all", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_RTL
,
73 {NULL
, "ipa-all", NULL
, NULL
, NULL
, NULL
, NULL
, TDF_IPA
,
77 /* Define a name->number mapping for a dump flag value. */
78 struct dump_option_value_info
80 const char *const name
; /* the name of the value */
81 const int value
; /* the value of the name */
84 /* Table of dump options. This must be consistent with the TDF_* flags
85 in dumpfile.h and opt_info_options below. */
86 static const struct dump_option_value_info dump_options
[] =
88 {"address", TDF_ADDRESS
},
89 {"asmname", TDF_ASMNAME
},
93 {"details", (TDF_DETAILS
| MSG_OPTIMIZED_LOCATIONS
94 | MSG_MISSED_OPTIMIZATION
96 {"cselib", TDF_CSELIB
},
98 {"blocks", TDF_BLOCKS
},
100 {"lineno", TDF_LINENO
},
102 {"stmtaddr", TDF_STMTADDR
},
103 {"memsyms", TDF_MEMSYMS
},
104 {"verbose", TDF_VERBOSE
},
106 {"alias", TDF_ALIAS
},
107 {"nouid", TDF_NOUID
},
108 {"enumerate_locals", TDF_ENUMERATE_LOCALS
},
110 {"optimized", MSG_OPTIMIZED_LOCATIONS
},
111 {"missed", MSG_MISSED_OPTIMIZATION
},
114 {"all", ~(TDF_RAW
| TDF_SLIM
| TDF_LINENO
| TDF_TREE
| TDF_RTL
| TDF_IPA
115 | TDF_STMTADDR
| TDF_GRAPH
| TDF_DIAGNOSTIC
| TDF_VERBOSE
116 | TDF_RHS_ONLY
| TDF_NOUID
| TDF_ENUMERATE_LOCALS
| TDF_SCEV
)},
120 /* A subset of the dump_options table which is used for -fopt-info
121 types. This must be consistent with the MSG_* flags in dumpfile.h.
123 static const struct dump_option_value_info optinfo_verbosity_options
[] =
125 {"optimized", MSG_OPTIMIZED_LOCATIONS
},
126 {"missed", MSG_MISSED_OPTIMIZATION
},
132 /* Flags used for -fopt-info groups. */
133 static const struct dump_option_value_info optgroup_options
[] =
135 {"ipa", OPTGROUP_IPA
},
136 {"loop", OPTGROUP_LOOP
},
137 {"inline", OPTGROUP_INLINE
},
138 {"vec", OPTGROUP_VEC
},
139 {"optall", OPTGROUP_ALL
},
143 gcc::dump_manager::dump_manager ():
144 m_next_dump (FIRST_AUTO_NUMBERED_DUMP
),
145 m_extra_dump_files (NULL
),
146 m_extra_dump_files_in_use (0),
147 m_extra_dump_files_alloced (0)
153 dump_register (const char *suffix
, const char *swtch
, const char *glob
,
154 int flags
, int optgroup_flags
)
156 int num
= m_next_dump
++;
158 size_t count
= m_extra_dump_files_in_use
++;
160 if (count
>= m_extra_dump_files_alloced
)
162 if (m_extra_dump_files_alloced
== 0)
163 m_extra_dump_files_alloced
= 32;
165 m_extra_dump_files_alloced
*= 2;
166 m_extra_dump_files
= XRESIZEVEC (struct dump_file_info
,
168 m_extra_dump_files_alloced
);
171 memset (&m_extra_dump_files
[count
], 0, sizeof (struct dump_file_info
));
172 m_extra_dump_files
[count
].suffix
= suffix
;
173 m_extra_dump_files
[count
].swtch
= swtch
;
174 m_extra_dump_files
[count
].glob
= glob
;
175 m_extra_dump_files
[count
].pflags
= flags
;
176 m_extra_dump_files
[count
].optgroup_flags
= optgroup_flags
;
177 m_extra_dump_files
[count
].num
= num
;
179 return count
+ TDI_end
;
183 /* Return the dump_file_info for the given phase. */
185 struct dump_file_info
*
187 get_dump_file_info (int phase
) const
190 return &dump_files
[phase
];
191 else if ((size_t) (phase
- TDI_end
) >= m_extra_dump_files_in_use
)
194 return m_extra_dump_files
+ (phase
- TDI_end
);
198 /* Return the name of the dump file for the given phase.
199 If the dump is not enabled, returns NULL. */
203 get_dump_file_name (int phase
) const
206 struct dump_file_info
*dfi
;
208 if (phase
== TDI_none
)
211 dfi
= get_dump_file_info (phase
);
212 if (dfi
->pstate
== 0)
215 /* If available, use the command line dump filename. */
217 return xstrdup (dfi
->pfilename
);
224 if (dfi
->pflags
& TDF_TREE
)
226 else if (dfi
->pflags
& TDF_IPA
)
231 if (snprintf (dump_id
, sizeof (dump_id
), ".%03d%c", dfi
->num
, suffix
) < 0)
235 return concat (dump_base_name
, dump_id
, dfi
->suffix
, NULL
);
238 /* For a given DFI, open an alternate dump filename (which could also
239 be a standard stream such as stdout/stderr). If the alternate dump
240 file cannot be opened, return NULL. */
243 dump_open_alternate_stream (struct dump_file_info
*dfi
)
246 if (!dfi
->alt_filename
)
250 return dfi
->alt_stream
;
252 stream
= strcmp ("stderr", dfi
->alt_filename
) == 0
254 : strcmp ("stdout", dfi
->alt_filename
) == 0
256 : fopen (dfi
->alt_filename
, dfi
->alt_state
< 0 ? "w" : "a");
259 error ("could not open dump file %qs: %m", dfi
->alt_filename
);
266 /* Print source location on DFILE if enabled. */
269 dump_loc (int dump_kind
, FILE *dfile
, source_location loc
)
273 if (LOCATION_LOCUS (loc
) > BUILTINS_LOCATION
)
274 fprintf (dfile
, "%s:%d:%d: note: ", LOCATION_FILE (loc
),
275 LOCATION_LINE (loc
), LOCATION_COLUMN (loc
));
276 else if (current_function_decl
)
277 fprintf (dfile
, "%s:%d:%d: note: ",
278 DECL_SOURCE_FILE (current_function_decl
),
279 DECL_SOURCE_LINE (current_function_decl
),
280 DECL_SOURCE_COLUMN (current_function_decl
));
284 /* Dump gimple statement GS with SPC indentation spaces and
285 EXTRA_DUMP_FLAGS on the dump streams if DUMP_KIND is enabled. */
288 dump_gimple_stmt (int dump_kind
, int extra_dump_flags
, gimple gs
, int spc
)
290 if (dump_file
&& (dump_kind
& pflags
))
291 print_gimple_stmt (dump_file
, gs
, spc
, dump_flags
| extra_dump_flags
);
293 if (alt_dump_file
&& (dump_kind
& alt_flags
))
294 print_gimple_stmt (alt_dump_file
, gs
, spc
, dump_flags
| extra_dump_flags
);
297 /* Similar to dump_gimple_stmt, except additionally print source location. */
300 dump_gimple_stmt_loc (int dump_kind
, source_location loc
, int extra_dump_flags
,
303 if (dump_file
&& (dump_kind
& pflags
))
305 dump_loc (dump_kind
, dump_file
, loc
);
306 print_gimple_stmt (dump_file
, gs
, spc
, dump_flags
| extra_dump_flags
);
309 if (alt_dump_file
&& (dump_kind
& alt_flags
))
311 dump_loc (dump_kind
, alt_dump_file
, loc
);
312 print_gimple_stmt (alt_dump_file
, gs
, spc
, dump_flags
| extra_dump_flags
);
316 /* Dump expression tree T using EXTRA_DUMP_FLAGS on dump streams if
317 DUMP_KIND is enabled. */
320 dump_generic_expr (int dump_kind
, int extra_dump_flags
, tree t
)
322 if (dump_file
&& (dump_kind
& pflags
))
323 print_generic_expr (dump_file
, t
, dump_flags
| extra_dump_flags
);
325 if (alt_dump_file
&& (dump_kind
& alt_flags
))
326 print_generic_expr (alt_dump_file
, t
, dump_flags
| extra_dump_flags
);
330 /* Similar to dump_generic_expr, except additionally print the source
334 dump_generic_expr_loc (int dump_kind
, source_location loc
,
335 int extra_dump_flags
, tree t
)
337 if (dump_file
&& (dump_kind
& pflags
))
339 dump_loc (dump_kind
, dump_file
, loc
);
340 print_generic_expr (dump_file
, t
, dump_flags
| extra_dump_flags
);
343 if (alt_dump_file
&& (dump_kind
& alt_flags
))
345 dump_loc (dump_kind
, alt_dump_file
, loc
);
346 print_generic_expr (alt_dump_file
, t
, dump_flags
| extra_dump_flags
);
350 /* Output a formatted message using FORMAT on appropriate dump streams. */
353 dump_printf (int dump_kind
, const char *format
, ...)
355 if (dump_file
&& (dump_kind
& pflags
))
358 va_start (ap
, format
);
359 vfprintf (dump_file
, format
, ap
);
363 if (alt_dump_file
&& (dump_kind
& alt_flags
))
366 va_start (ap
, format
);
367 vfprintf (alt_dump_file
, format
, ap
);
372 /* Similar to dump_printf, except source location is also printed. */
375 dump_printf_loc (int dump_kind
, source_location loc
, const char *format
, ...)
377 if (dump_file
&& (dump_kind
& pflags
))
380 dump_loc (dump_kind
, dump_file
, loc
);
381 va_start (ap
, format
);
382 vfprintf (dump_file
, format
, ap
);
386 if (alt_dump_file
&& (dump_kind
& alt_flags
))
389 dump_loc (dump_kind
, alt_dump_file
, loc
);
390 va_start (ap
, format
);
391 vfprintf (alt_dump_file
, format
, ap
);
396 /* Start a dump for PHASE. Store user-supplied dump flags in
397 *FLAG_PTR. Return the number of streams opened. Set globals
398 DUMP_FILE, and ALT_DUMP_FILE to point to the opened streams, and
399 set dump_flags appropriately for both pass dump stream and
400 -fopt-info stream. */
404 dump_start (int phase
, int *flag_ptr
)
408 struct dump_file_info
*dfi
;
410 if (phase
== TDI_none
|| !dump_phase_enabled_p (phase
))
413 dfi
= get_dump_file_info (phase
);
414 name
= get_dump_file_name (phase
);
417 stream
= strcmp ("stderr", name
) == 0
419 : strcmp ("stdout", name
) == 0
421 : fopen (name
, dfi
->pstate
< 0 ? "w" : "a");
423 error ("could not open dump file %qs: %m", name
);
430 dfi
->pstream
= stream
;
431 dump_file
= dfi
->pstream
;
432 /* Initialize current dump flags. */
433 pflags
= dfi
->pflags
;
436 stream
= dump_open_alternate_stream (dfi
);
439 dfi
->alt_stream
= stream
;
441 alt_dump_file
= dfi
->alt_stream
;
442 /* Initialize current -fopt-info flags. */
443 alt_flags
= dfi
->alt_flags
;
447 *flag_ptr
= dfi
->pflags
;
452 /* Finish a tree dump for PHASE and close associated dump streams. Also
453 reset the globals DUMP_FILE, ALT_DUMP_FILE, and DUMP_FLAGS. */
457 dump_finish (int phase
)
459 struct dump_file_info
*dfi
;
463 dfi
= get_dump_file_info (phase
);
464 if (dfi
->pstream
&& (!dfi
->pfilename
465 || (strcmp ("stderr", dfi
->pfilename
) != 0
466 && strcmp ("stdout", dfi
->pfilename
) != 0)))
467 fclose (dfi
->pstream
);
469 if (dfi
->alt_stream
&& strcmp ("stderr", dfi
->alt_filename
) != 0
470 && strcmp ("stdout", dfi
->alt_filename
) != 0)
471 fclose (dfi
->alt_stream
);
473 dfi
->alt_stream
= NULL
;
476 alt_dump_file
= NULL
;
477 dump_flags
= TDI_none
;
482 /* Begin a tree dump for PHASE. Stores any user supplied flag in
483 *FLAG_PTR and returns a stream to write to. If the dump is not
484 enabled, returns NULL.
485 Multiple calls will reopen and append to the dump file. */
488 dump_begin (int phase
, int *flag_ptr
)
490 return g
->get_dumps ()->dump_begin (phase
, flag_ptr
);
495 dump_begin (int phase
, int *flag_ptr
)
498 struct dump_file_info
*dfi
;
501 if (phase
== TDI_none
|| !dump_phase_enabled_p (phase
))
504 name
= get_dump_file_name (phase
);
507 dfi
= get_dump_file_info (phase
);
509 stream
= strcmp ("stderr", name
) == 0
511 : strcmp ("stdout", name
) == 0
513 : fopen (name
, dfi
->pstate
< 0 ? "w" : "a");
516 error ("could not open dump file %qs: %m", name
);
522 *flag_ptr
= dfi
->pflags
;
524 /* Initialize current flags */
525 pflags
= dfi
->pflags
;
529 /* Returns nonzero if dump PHASE is enabled for at least one stream.
530 If PHASE is TDI_tree_all, return nonzero if any dump is enabled for
535 dump_phase_enabled_p (int phase
) const
537 if (phase
== TDI_tree_all
)
540 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
541 if (dump_files
[i
].pstate
|| dump_files
[i
].alt_state
)
543 for (i
= 0; i
< m_extra_dump_files_in_use
; i
++)
544 if (m_extra_dump_files
[i
].pstate
|| m_extra_dump_files
[i
].alt_state
)
550 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
551 return dfi
->pstate
|| dfi
->alt_state
;
555 /* Returns nonzero if tree dump PHASE has been initialized. */
559 dump_initialized_p (int phase
) const
561 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
562 return dfi
->pstate
> 0 || dfi
->alt_state
> 0;
565 /* Returns the switch name of PHASE. */
568 dump_flag_name (int phase
)
570 return g
->get_dumps ()->dump_flag_name (phase
);
575 dump_flag_name (int phase
) const
577 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
581 /* Finish a tree dump for PHASE. STREAM is the stream created by
585 dump_end (int phase ATTRIBUTE_UNUSED
, FILE *stream
)
587 if (stream
!= stderr
&& stream
!= stdout
)
591 /* Enable all tree dumps with FLAGS on FILENAME. Return number of
592 enabled tree dumps. */
596 dump_enable_all (int flags
, const char *filename
)
598 int ir_dump_type
= (flags
& (TDF_TREE
| TDF_RTL
| TDF_IPA
));
602 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
604 if ((dump_files
[i
].pflags
& ir_dump_type
))
606 const char *old_filename
= dump_files
[i
].pfilename
;
607 dump_files
[i
].pstate
= -1;
608 dump_files
[i
].pflags
|= flags
;
610 /* Override the existing filename. */
613 dump_files
[i
].pfilename
= xstrdup (filename
);
614 /* Since it is a command-line provided file, which is
615 common to all the phases, use it in append mode. */
616 dump_files
[i
].pstate
= 1;
618 if (old_filename
&& filename
!= old_filename
)
619 free (CONST_CAST (char *, old_filename
));
623 for (i
= 0; i
< m_extra_dump_files_in_use
; i
++)
625 if ((m_extra_dump_files
[i
].pflags
& ir_dump_type
))
627 const char *old_filename
= m_extra_dump_files
[i
].pfilename
;
628 m_extra_dump_files
[i
].pstate
= -1;
629 m_extra_dump_files
[i
].pflags
|= flags
;
631 /* Override the existing filename. */
634 m_extra_dump_files
[i
].pfilename
= xstrdup (filename
);
635 /* Since it is a command-line provided file, which is
636 common to all the phases, use it in append mode. */
637 m_extra_dump_files
[i
].pstate
= 1;
639 if (old_filename
&& filename
!= old_filename
)
640 free (CONST_CAST (char *, old_filename
));
647 /* Enable -fopt-info dumps on all dump files matching OPTGROUP_FLAGS.
648 Enable dumps with FLAGS on FILENAME. Return the number of enabled
653 opt_info_enable_passes (int optgroup_flags
, int flags
, const char *filename
)
658 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
660 if ((dump_files
[i
].optgroup_flags
& optgroup_flags
))
662 const char *old_filename
= dump_files
[i
].alt_filename
;
663 /* Since this file is shared among different passes, it
664 should be opened in append mode. */
665 dump_files
[i
].alt_state
= 1;
666 dump_files
[i
].alt_flags
|= flags
;
668 /* Override the existing filename. */
670 dump_files
[i
].alt_filename
= xstrdup (filename
);
671 if (old_filename
&& filename
!= old_filename
)
672 free (CONST_CAST (char *, old_filename
));
676 for (i
= 0; i
< m_extra_dump_files_in_use
; i
++)
678 if ((m_extra_dump_files
[i
].optgroup_flags
& optgroup_flags
))
680 const char *old_filename
= m_extra_dump_files
[i
].alt_filename
;
681 /* Since this file is shared among different passes, it
682 should be opened in append mode. */
683 m_extra_dump_files
[i
].alt_state
= 1;
684 m_extra_dump_files
[i
].alt_flags
|= flags
;
686 /* Override the existing filename. */
688 m_extra_dump_files
[i
].alt_filename
= xstrdup (filename
);
689 if (old_filename
&& filename
!= old_filename
)
690 free (CONST_CAST (char *, old_filename
));
697 /* Parse ARG as a dump switch. Return nonzero if it is, and store the
698 relevant details in the dump_files array. */
702 dump_switch_p_1 (const char *arg
, struct dump_file_info
*dfi
, bool doglob
)
704 const char *option_value
;
708 if (doglob
&& !dfi
->glob
)
711 option_value
= skip_leading_substring (arg
, doglob
? dfi
->glob
: dfi
->swtch
);
715 if (*option_value
&& *option_value
!= '-' && *option_value
!= '=')
723 const struct dump_option_value_info
*option_ptr
;
730 end_ptr
= strchr (ptr
, '-');
731 eq_ptr
= strchr (ptr
, '=');
733 if (eq_ptr
&& !end_ptr
)
737 end_ptr
= ptr
+ strlen (ptr
);
738 length
= end_ptr
- ptr
;
740 for (option_ptr
= dump_options
; option_ptr
->name
; option_ptr
++)
741 if (strlen (option_ptr
->name
) == length
742 && !memcmp (option_ptr
->name
, ptr
, length
))
744 flags
|= option_ptr
->value
;
750 /* Interpret rest of the argument as a dump filename. This
751 filename overrides other command line filenames. */
753 free (CONST_CAST (char *, dfi
->pfilename
));
754 dfi
->pfilename
= xstrdup (ptr
+ 1);
758 warning (0, "ignoring unknown option %q.*s in %<-fdump-%s%>",
759 length
, ptr
, dfi
->swtch
);
765 dfi
->pflags
|= flags
;
767 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
769 if (dfi
->suffix
== NULL
)
770 dump_enable_all (dfi
->pflags
, dfi
->pfilename
);
777 dump_switch_p (const char *arg
)
782 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
783 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], false);
785 /* Don't glob if we got a hit already */
787 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
788 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], true);
790 for (i
= 0; i
< m_extra_dump_files_in_use
; i
++)
791 any
|= dump_switch_p_1 (arg
, &m_extra_dump_files
[i
], false);
794 for (i
= 0; i
< m_extra_dump_files_in_use
; i
++)
795 any
|= dump_switch_p_1 (arg
, &m_extra_dump_files
[i
], true);
801 /* Parse ARG as a -fopt-info switch and store flags, optgroup_flags
802 and filename. Return non-zero if it is a recognized switch. */
805 opt_info_switch_p_1 (const char *arg
, int *flags
, int *optgroup_flags
,
808 const char *option_value
;
819 return 1; /* Handle '-fopt-info' without any additional options. */
823 const struct dump_option_value_info
*option_ptr
;
830 end_ptr
= strchr (ptr
, '-');
831 eq_ptr
= strchr (ptr
, '=');
833 if (eq_ptr
&& !end_ptr
)
837 end_ptr
= ptr
+ strlen (ptr
);
838 length
= end_ptr
- ptr
;
840 for (option_ptr
= optinfo_verbosity_options
; option_ptr
->name
;
842 if (strlen (option_ptr
->name
) == length
843 && !memcmp (option_ptr
->name
, ptr
, length
))
845 *flags
|= option_ptr
->value
;
849 for (option_ptr
= optgroup_options
; option_ptr
->name
; option_ptr
++)
850 if (strlen (option_ptr
->name
) == length
851 && !memcmp (option_ptr
->name
, ptr
, length
))
853 *optgroup_flags
|= option_ptr
->value
;
859 /* Interpret rest of the argument as a dump filename. This
860 filename overrides other command line filenames. */
861 *filename
= xstrdup (ptr
+ 1);
866 warning (0, "unknown option %q.*s in %<-fopt-info-%s%>",
877 /* Return non-zero if ARG is a recognized switch for
878 -fopt-info. Return zero otherwise. */
881 opt_info_switch_p (const char *arg
)
886 static char *file_seen
= NULL
;
887 gcc::dump_manager
*dumps
= g
->get_dumps ();
889 if (!opt_info_switch_p_1 (arg
, &flags
, &optgroup_flags
, &filename
))
893 filename
= xstrdup ("stderr");
895 /* Bail out if a different filename has been specified. */
896 if (file_seen
&& strcmp (file_seen
, filename
))
898 warning (0, "ignoring possibly conflicting option %<-fopt-info-%s%>",
903 file_seen
= xstrdup (filename
);
905 flags
= MSG_OPTIMIZED_LOCATIONS
;
907 optgroup_flags
= OPTGROUP_ALL
;
909 return dumps
->opt_info_enable_passes (optgroup_flags
, flags
, filename
);
912 /* Print basic block on the dump streams. */
915 dump_basic_block (int dump_kind
, basic_block bb
, int indent
)
917 if (dump_file
&& (dump_kind
& pflags
))
918 dump_bb (dump_file
, bb
, indent
, TDF_DETAILS
);
919 if (alt_dump_file
&& (dump_kind
& alt_flags
))
920 dump_bb (alt_dump_file
, bb
, indent
, TDF_DETAILS
);
923 /* Print information from the combine pass on dump_file. */
926 print_combine_total_stats (void)
929 dump_combine_total_stats (dump_file
);
932 /* Enable RTL dump for all the RTL passes. */
935 enable_rtl_dump_file (void)
937 gcc::dump_manager
*dumps
= g
->get_dumps ();
939 dumps
->dump_enable_all (TDF_RTL
| TDF_DETAILS
| TDF_BLOCKS
, NULL
);
940 return num_enabled
> 0;