1 /* Tree-dumping functionality for intermediate representation.
2 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 Written by Mark Mitchell <mark@codesourcery.com>
6 This file is part of GCC.
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
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
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
25 #include "coretypes.h"
28 #include "splay-tree.h"
29 #include "diagnostic.h"
31 #include "tree-dump.h"
32 #include "tree-pass.h"
33 #include "langhooks.h"
34 #include "tree-iterator.h"
36 static unsigned int queue (dump_info_p
, tree
, int);
37 static void dump_index (dump_info_p
, unsigned int);
38 static void dequeue_and_dump (dump_info_p
);
39 static void dump_new_line (dump_info_p
);
40 static void dump_maybe_newline (dump_info_p
);
41 static int dump_enable_all (int, int);
43 /* Add T to the end of the queue of nodes to dump. Returns the index
47 queue (dump_info_p di
, tree t
, int flags
)
53 /* Assign the next available index to T. */
56 /* Obtain a new queue node. */
60 di
->free_list
= dq
->next
;
63 dq
= xmalloc (sizeof (struct dump_queue
));
65 /* Create a new entry in the splay-tree. */
66 dni
= xmalloc (sizeof (struct dump_node_info
));
68 dni
->binfo_p
= ((flags
& DUMP_BINFO
) != 0);
69 dq
->node
= splay_tree_insert (di
->nodes
, (splay_tree_key
) t
,
70 (splay_tree_value
) dni
);
72 /* Add it to the end of the queue. */
77 di
->queue_end
->next
= dq
;
80 /* Return the index. */
85 dump_index (dump_info_p di
, unsigned int index
)
87 fprintf (di
->stream
, "@%-6u ", index
);
91 /* If T has not already been output, queue it for subsequent output.
92 FIELD is a string to print before printing the index. Then, the
93 index of T is printed. */
96 queue_and_dump_index (dump_info_p di
, const char *field
, tree t
, int flags
)
101 /* If there's no node, just return. This makes for fewer checks in
106 /* See if we've already queued or dumped this node. */
107 n
= splay_tree_lookup (di
->nodes
, (splay_tree_key
) t
);
109 index
= ((dump_node_info_p
) n
->value
)->index
;
111 /* If we haven't, add it to the queue. */
112 index
= queue (di
, t
, flags
);
114 /* Print the index of the node. */
115 dump_maybe_newline (di
);
116 fprintf (di
->stream
, "%-4s: ", field
);
118 dump_index (di
, index
);
121 /* Dump the type of T. */
124 queue_and_dump_type (dump_info_p di
, tree t
)
126 queue_and_dump_index (di
, "type", TREE_TYPE (t
), DUMP_NONE
);
129 /* Dump column control */
130 #define SOL_COLUMN 25 /* Start of line column. */
131 #define EOL_COLUMN 55 /* End of line column. */
132 #define COLUMN_ALIGNMENT 15 /* Alignment. */
134 /* Insert a new line in the dump output, and indent to an appropriate
135 place to start printing more fields. */
138 dump_new_line (dump_info_p di
)
140 fprintf (di
->stream
, "\n%*s", SOL_COLUMN
, "");
141 di
->column
= SOL_COLUMN
;
144 /* If necessary, insert a new line. */
147 dump_maybe_newline (dump_info_p di
)
151 /* See if we need a new line. */
152 if (di
->column
> EOL_COLUMN
)
154 /* See if we need any padding. */
155 else if ((extra
= (di
->column
- SOL_COLUMN
) % COLUMN_ALIGNMENT
) != 0)
157 fprintf (di
->stream
, "%*s", COLUMN_ALIGNMENT
- extra
, "");
158 di
->column
+= COLUMN_ALIGNMENT
- extra
;
162 /* Dump pointer PTR using FIELD to identify it. */
165 dump_pointer (dump_info_p di
, const char *field
, void *ptr
)
167 dump_maybe_newline (di
);
168 fprintf (di
->stream
, "%-4s: %-8lx ", field
, (long) ptr
);
172 /* Dump integer I using FIELD to identify it. */
175 dump_int (dump_info_p di
, const char *field
, int i
)
177 dump_maybe_newline (di
);
178 fprintf (di
->stream
, "%-4s: %-7d ", field
, i
);
182 /* Dump the string S. */
185 dump_string (dump_info_p di
, const char *string
)
187 dump_maybe_newline (di
);
188 fprintf (di
->stream
, "%-13s ", string
);
189 if (strlen (string
) > 13)
190 di
->column
+= strlen (string
) + 1;
195 /* Dump the string field S. */
198 dump_string_field (dump_info_p di
, const char *field
, const char *string
)
200 dump_maybe_newline (di
);
201 fprintf (di
->stream
, "%-4s: %-7s ", field
, string
);
202 if (strlen (string
) > 7)
203 di
->column
+= 6 + strlen (string
) + 1;
208 /* Dump the next node in the queue. */
211 dequeue_and_dump (dump_info_p di
)
215 dump_node_info_p dni
;
219 enum tree_code_class code_class
;
220 const char* code_name
;
222 /* Get the next node from the queue. */
226 dni
= (dump_node_info_p
) stn
->value
;
229 /* Remove the node from the queue, and put it on the free list. */
230 di
->queue
= dq
->next
;
233 dq
->next
= di
->free_list
;
236 /* Print the node index. */
237 dump_index (di
, index
);
238 /* And the type of node this is. */
242 code_name
= tree_code_name
[(int) TREE_CODE (t
)];
243 fprintf (di
->stream
, "%-16s ", code_name
);
246 /* Figure out what kind of node this is. */
247 code
= TREE_CODE (t
);
248 code_class
= TREE_CODE_CLASS (code
);
250 /* Although BINFOs are TREE_VECs, we dump them specially so as to be
256 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (t
);
258 dump_child ("type", BINFO_TYPE (t
));
260 if (BINFO_VIRTUAL_P (t
))
261 dump_string_field (di
, "spec", "virt");
263 dump_int (di
, "bases", BINFO_N_BASE_BINFOS (t
));
264 for (ix
= 0; BINFO_BASE_ITERATE (t
, ix
, base
); ix
++)
266 tree access
= (accesses
? VEC_index (tree
, accesses
, ix
)
267 : access_public_node
);
268 const char *string
= NULL
;
270 if (access
== access_public_node
)
272 else if (access
== access_protected_node
)
274 else if (access
== access_private_node
)
279 dump_string_field (di
, "accs", string
);
280 queue_and_dump_index (di
, "binf", base
, DUMP_BINFO
);
286 /* We can knock off a bunch of expression nodes in exactly the same
288 if (IS_EXPR_CODE_CLASS (code_class
))
290 /* If we're dumping children, dump them now. */
291 queue_and_dump_type (di
, t
);
296 dump_child ("op 0", TREE_OPERAND (t
, 0));
301 dump_child ("op 0", TREE_OPERAND (t
, 0));
302 dump_child ("op 1", TREE_OPERAND (t
, 1));
308 /* These nodes are handled explicitly below. */
317 expanded_location xloc
;
318 /* All declarations have names. */
320 dump_child ("name", DECL_NAME (t
));
321 if (DECL_ASSEMBLER_NAME_SET_P (t
)
322 && DECL_ASSEMBLER_NAME (t
) != DECL_NAME (t
))
323 dump_child ("mngl", DECL_ASSEMBLER_NAME (t
));
324 if (DECL_ABSTRACT_ORIGIN (t
))
325 dump_child ("orig", DECL_ABSTRACT_ORIGIN (t
));
327 queue_and_dump_type (di
, t
);
328 dump_child ("scpe", DECL_CONTEXT (t
));
329 /* And a source position. */
330 xloc
= expand_location (DECL_SOURCE_LOCATION (t
));
333 const char *filename
= strrchr (xloc
.file
, '/');
335 filename
= xloc
.file
;
337 /* Skip the slash. */
340 dump_maybe_newline (di
);
341 fprintf (di
->stream
, "srcp: %s:%-6d ", filename
,
343 di
->column
+= 6 + strlen (filename
) + 8;
345 /* And any declaration can be compiler-generated. */
346 if (DECL_ARTIFICIAL (t
))
347 dump_string_field (di
, "note", "artificial");
348 if (TREE_CHAIN (t
) && !dump_flag (di
, TDF_SLIM
, NULL
))
349 dump_child ("chan", TREE_CHAIN (t
));
351 else if (code_class
== tcc_type
)
353 /* All types have qualifiers. */
354 int quals
= lang_hooks
.tree_dump
.type_quals (t
);
356 if (quals
!= TYPE_UNQUALIFIED
)
358 fprintf (di
->stream
, "qual: %c%c%c ",
359 (quals
& TYPE_QUAL_CONST
) ? 'c' : ' ',
360 (quals
& TYPE_QUAL_VOLATILE
) ? 'v' : ' ',
361 (quals
& TYPE_QUAL_RESTRICT
) ? 'r' : ' ');
365 /* All types have associated declarations. */
366 dump_child ("name", TYPE_NAME (t
));
368 /* All types have a main variant. */
369 if (TYPE_MAIN_VARIANT (t
) != t
)
370 dump_child ("unql", TYPE_MAIN_VARIANT (t
));
373 dump_child ("size", TYPE_SIZE (t
));
375 /* All types have alignments. */
376 dump_int (di
, "algn", TYPE_ALIGN (t
));
378 else if (code_class
== tcc_constant
)
379 /* All constants can have types. */
380 queue_and_dump_type (di
, t
);
382 /* Give the language-specific code a chance to print something. If
383 it's completely taken care of things, don't bother printing
384 anything more ourselves. */
385 if (lang_hooks
.tree_dump
.dump_tree (di
, t
))
388 /* Now handle the various kinds of nodes. */
393 case IDENTIFIER_NODE
:
394 dump_string_field (di
, "strg", IDENTIFIER_POINTER (t
));
395 dump_int (di
, "lngt", IDENTIFIER_LENGTH (t
));
399 dump_child ("purp", TREE_PURPOSE (t
));
400 dump_child ("valu", TREE_VALUE (t
));
401 dump_child ("chan", TREE_CHAIN (t
));
406 tree_stmt_iterator it
;
407 for (i
= 0, it
= tsi_start (t
); !tsi_end_p (it
); tsi_next (&it
), i
++)
410 sprintf (buffer
, "%u", i
);
411 dump_child (buffer
, tsi_stmt (it
));
417 dump_int (di
, "lngt", TREE_VEC_LENGTH (t
));
418 for (i
= 0; i
< TREE_VEC_LENGTH (t
); ++i
)
421 sprintf (buffer
, "%u", i
);
422 dump_child (buffer
, TREE_VEC_ELT (t
, i
));
428 dump_int (di
, "prec", TYPE_PRECISION (t
));
429 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
430 dump_child ("min", TYPE_MIN_VALUE (t
));
431 dump_child ("max", TYPE_MAX_VALUE (t
));
433 if (code
== ENUMERAL_TYPE
)
434 dump_child ("csts", TYPE_VALUES (t
));
438 dump_int (di
, "prec", TYPE_PRECISION (t
));
442 dump_child ("ptd", TREE_TYPE (t
));
446 dump_child ("refd", TREE_TYPE (t
));
450 dump_child ("clas", TYPE_METHOD_BASETYPE (t
));
454 dump_child ("retn", TREE_TYPE (t
));
455 dump_child ("prms", TYPE_ARG_TYPES (t
));
459 dump_child ("elts", TREE_TYPE (t
));
460 dump_child ("domn", TYPE_DOMAIN (t
));
465 if (TREE_CODE (t
) == RECORD_TYPE
)
466 dump_string_field (di
, "tag", "struct");
468 dump_string_field (di
, "tag", "union");
470 dump_child ("flds", TYPE_FIELDS (t
));
471 dump_child ("fncs", TYPE_METHODS (t
));
472 queue_and_dump_index (di
, "binf", TYPE_BINFO (t
),
477 dump_child ("cnst", DECL_INITIAL (t
));
484 if (TREE_CODE (t
) == PARM_DECL
)
485 dump_child ("argt", DECL_ARG_TYPE (t
));
487 dump_child ("init", DECL_INITIAL (t
));
488 dump_child ("size", DECL_SIZE (t
));
489 dump_int (di
, "algn", DECL_ALIGN (t
));
491 if (TREE_CODE (t
) == FIELD_DECL
)
493 if (DECL_FIELD_OFFSET (t
))
494 dump_child ("bpos", bit_position (t
));
496 else if (TREE_CODE (t
) == VAR_DECL
497 || TREE_CODE (t
) == PARM_DECL
)
499 dump_int (di
, "used", TREE_USED (t
));
500 if (DECL_REGISTER (t
))
501 dump_string_field (di
, "spec", "register");
506 dump_child ("args", DECL_ARGUMENTS (t
));
507 if (DECL_EXTERNAL (t
))
508 dump_string_field (di
, "body", "undefined");
510 dump_string_field (di
, "link", "extern");
512 dump_string_field (di
, "link", "static");
513 if (DECL_LANG_SPECIFIC (t
) && !dump_flag (di
, TDF_SLIM
, t
))
514 dump_child ("body", DECL_SAVED_TREE (t
));
518 if (TREE_INT_CST_HIGH (t
))
519 dump_int (di
, "high", TREE_INT_CST_HIGH (t
));
520 dump_int (di
, "low", TREE_INT_CST_LOW (t
));
524 fprintf (di
->stream
, "strg: %-7s ", TREE_STRING_POINTER (t
));
525 dump_int (di
, "lngt", TREE_STRING_LENGTH (t
));
531 case ALIGN_INDIRECT_REF
:
532 case MISALIGNED_INDIRECT_REF
:
533 case CLEANUP_POINT_EXPR
:
537 /* These nodes are unary, but do not have code class `1'. */
538 dump_child ("op 0", TREE_OPERAND (t
, 0));
541 case TRUTH_ANDIF_EXPR
:
542 case TRUTH_ORIF_EXPR
:
546 case PREDECREMENT_EXPR
:
547 case PREINCREMENT_EXPR
:
548 case POSTDECREMENT_EXPR
:
549 case POSTINCREMENT_EXPR
:
550 /* These nodes are binary, but do not have code class `2'. */
551 dump_child ("op 0", TREE_OPERAND (t
, 0));
552 dump_child ("op 1", TREE_OPERAND (t
, 1));
556 dump_child ("op 0", TREE_OPERAND (t
, 0));
557 dump_child ("op 1", TREE_OPERAND (t
, 1));
558 dump_child ("op 2", TREE_OPERAND (t
, 2));
562 case ARRAY_RANGE_REF
:
563 dump_child ("op 0", TREE_OPERAND (t
, 0));
564 dump_child ("op 1", TREE_OPERAND (t
, 1));
565 dump_child ("op 2", TREE_OPERAND (t
, 2));
566 dump_child ("op 3", TREE_OPERAND (t
, 3));
570 dump_child ("op 0", TREE_OPERAND (t
, 0));
571 dump_child ("op 1", TREE_OPERAND (t
, 1));
572 dump_child ("op 2", TREE_OPERAND (t
, 2));
575 case TRY_FINALLY_EXPR
:
576 dump_child ("op 0", TREE_OPERAND (t
, 0));
577 dump_child ("op 1", TREE_OPERAND (t
, 1));
581 dump_child ("fn", TREE_OPERAND (t
, 0));
582 dump_child ("args", TREE_OPERAND (t
, 1));
587 unsigned HOST_WIDE_INT cnt
;
589 dump_int (di
, "lngt", VEC_length (constructor_elt
,
590 CONSTRUCTOR_ELTS (t
)));
591 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), cnt
, index
, value
)
593 dump_child ("idx", index
);
594 dump_child ("val", value
);
600 dump_child ("vars", TREE_OPERAND (t
, 0));
601 dump_child ("body", TREE_OPERAND (t
, 1));
605 dump_child ("body", TREE_OPERAND (t
, 0));
609 dump_child ("cond", TREE_OPERAND (t
, 0));
613 dump_child ("expr", TREE_OPERAND (t
, 0));
617 dump_child ("decl", TREE_OPERAND (t
, 0));
618 dump_child ("init", TREE_OPERAND (t
, 1));
619 dump_child ("clnp", TREE_OPERAND (t
, 2));
620 /* There really are two possible places the initializer can be.
621 After RTL expansion, the second operand is moved to the
622 position of the fourth operand, and the second operand
624 dump_child ("init", TREE_OPERAND (t
, 3));
627 case CASE_LABEL_EXPR
:
628 dump_child ("name", CASE_LABEL (t
));
630 dump_child ("low ", CASE_LOW (t
));
632 dump_child ("high", CASE_HIGH (t
));
637 dump_child ("name", TREE_OPERAND (t
,0));
640 dump_child ("labl", TREE_OPERAND (t
, 0));
643 dump_child ("cond", TREE_OPERAND (t
, 0));
644 dump_child ("body", TREE_OPERAND (t
, 1));
645 if (TREE_OPERAND (t
, 2))
647 dump_child ("labl", TREE_OPERAND (t
,2));
651 /* There are no additional fields to print. */
656 if (dump_flag (di
, TDF_ADDRESS
, NULL
))
657 dump_pointer (di
, "addr", (void *)t
);
659 /* Terminate the line. */
660 fprintf (di
->stream
, "\n");
663 /* Return nonzero if FLAG has been specified for the dump, and NODE
664 is not the root node of the dump. */
666 int dump_flag (dump_info_p di
, int flag
, tree node
)
668 return (di
->flags
& flag
) && (node
!= di
->node
);
671 /* Dump T, and all its children, on STREAM. */
674 dump_node (tree t
, int flags
, FILE *stream
)
678 dump_queue_p next_dq
;
680 /* Initialize the dump-information structure. */
689 di
.nodes
= splay_tree_new (splay_tree_compare_pointers
, 0,
690 (splay_tree_delete_value_fn
) &free
);
692 /* Queue up the first node. */
693 queue (&di
, t
, DUMP_NONE
);
695 /* Until the queue is empty, keep dumping nodes. */
697 dequeue_and_dump (&di
);
700 for (dq
= di
.free_list
; dq
; dq
= next_dq
)
705 splay_tree_delete (di
.nodes
);
709 /* Table of tree dump switches. This must be consistent with the
710 TREE_DUMP_INDEX enumeration in tree.h */
711 static struct dump_file_info dump_files
[TDI_end
] =
713 {NULL
, NULL
, NULL
, 0, 0, 0, 0},
714 {".tu", "translation-unit", NULL
, TDF_TREE
, 0, 0, 0},
715 {".class", "class-hierarchy", NULL
, TDF_TREE
, 0, 1, 0},
716 {".original", "tree-original", NULL
, TDF_TREE
, 0, 2, 0},
717 {".gimple", "tree-gimple", NULL
, TDF_TREE
, 0, 3, 0},
718 {".nested", "tree-nested", NULL
, TDF_TREE
, 0, 4, 0},
719 {".inlined", "tree-inlined", NULL
, TDF_TREE
, 0, 5, 0},
720 {".vcg", "tree-vcg", NULL
, TDF_TREE
, 0, 6, 0},
721 {NULL
, "tree-all", NULL
, TDF_TREE
, 0, 0, 0},
722 {NULL
, "rtl-all", NULL
, TDF_RTL
, 0, 0, 0},
723 {NULL
, "ipa-all", NULL
, TDF_IPA
, 0, 0, 0},
725 { ".cgraph", "ipa-cgraph", NULL
, TDF_IPA
, 0, 0, 0},
728 /* Dynamically registered tree dump files and switches. */
729 static struct dump_file_info
*extra_dump_files
;
730 static size_t extra_dump_files_in_use
;
731 static size_t extra_dump_files_alloced
;
733 /* Define a name->number mapping for a dump flag value. */
734 struct dump_option_value_info
736 const char *const name
; /* the name of the value */
737 const int value
; /* the value of the name */
740 /* Table of dump options. This must be consistent with the TDF_* flags
742 static const struct dump_option_value_info dump_options
[] =
744 {"address", TDF_ADDRESS
},
747 {"details", TDF_DETAILS
},
748 {"stats", TDF_STATS
},
749 {"blocks", TDF_BLOCKS
},
751 {"lineno", TDF_LINENO
},
753 {"stmtaddr", TDF_STMTADDR
},
754 {"all", ~(TDF_RAW
| TDF_SLIM
| TDF_LINENO
| TDF_TREE
| TDF_RTL
| TDF_IPA
755 | TDF_STMTADDR
| TDF_GRAPH
)},
760 dump_register (const char *suffix
, const char *swtch
, const char *glob
,
761 int flags
, unsigned int num
, int letter
)
763 size_t this = extra_dump_files_in_use
++;
765 if (this >= extra_dump_files_alloced
)
767 if (extra_dump_files_alloced
== 0)
768 extra_dump_files_alloced
= 32;
770 extra_dump_files_alloced
*= 2;
771 extra_dump_files
= xrealloc (extra_dump_files
,
772 sizeof (struct dump_file_info
)
773 * extra_dump_files_alloced
);
776 memset (&extra_dump_files
[this], 0, sizeof (struct dump_file_info
));
777 extra_dump_files
[this].suffix
= suffix
;
778 extra_dump_files
[this].swtch
= swtch
;
779 extra_dump_files
[this].glob
= glob
;
780 extra_dump_files
[this].flags
= flags
;
781 extra_dump_files
[this].num
= num
;
782 extra_dump_files
[this].letter
= letter
;
784 return this + TDI_end
;
788 /* Return the dump_file_info for the given phase. */
790 struct dump_file_info
*
791 get_dump_file_info (enum tree_dump_index phase
)
794 return &dump_files
[phase
];
795 else if (phase
- TDI_end
>= extra_dump_files_in_use
)
798 return extra_dump_files
+ (phase
- TDI_end
);
802 /* Return the name of the dump file for the given phase.
803 If the dump is not enabled, returns NULL. */
806 get_dump_file_name (enum tree_dump_index phase
)
809 struct dump_file_info
*dfi
;
811 if (phase
== TDI_none
)
814 dfi
= get_dump_file_info (phase
);
822 const char *template;
823 if (dfi
->flags
& TDF_TREE
)
825 else if (dfi
->flags
& TDF_IPA
)
830 if (snprintf (dump_id
, sizeof (dump_id
), template, dfi
->num
) < 0)
834 return concat (dump_base_name
, dump_id
, dfi
->suffix
, NULL
);
837 /* Begin a tree dump for PHASE. Stores any user supplied flag in
838 *FLAG_PTR and returns a stream to write to. If the dump is not
839 enabled, returns NULL.
840 Multiple calls will reopen and append to the dump file. */
843 dump_begin (enum tree_dump_index phase
, int *flag_ptr
)
846 struct dump_file_info
*dfi
;
849 if (phase
== TDI_none
|| !dump_enabled_p (phase
))
852 name
= get_dump_file_name (phase
);
853 dfi
= get_dump_file_info (phase
);
854 stream
= fopen (name
, dfi
->state
< 0 ? "w" : "a");
856 error ("could not open dump file %qs: %s", name
, strerror (errno
));
862 *flag_ptr
= dfi
->flags
;
867 /* Returns nonzero if tree dump PHASE is enabled. If PHASE is
868 TDI_tree_all, return nonzero if any dump is enabled. */
871 dump_enabled_p (enum tree_dump_index phase
)
873 if (phase
== TDI_tree_all
)
876 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
877 if (dump_files
[i
].state
)
879 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
880 if (extra_dump_files
[i
].state
)
886 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
891 /* Returns nonzero if tree dump PHASE has been initialized. */
894 dump_initialized_p (enum tree_dump_index phase
)
896 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
897 return dfi
->state
> 0;
900 /* Returns the switch name of PHASE. */
903 dump_flag_name (enum tree_dump_index phase
)
905 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
909 /* Finish a tree dump for PHASE. STREAM is the stream created by
913 dump_end (enum tree_dump_index phase ATTRIBUTE_UNUSED
, FILE *stream
)
918 /* Enable all tree dumps. Return number of enabled tree dumps. */
921 dump_enable_all (int flags
, int letter
)
926 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
927 if ((dump_files
[i
].flags
& flags
)
928 && (letter
== 0 || letter
== dump_files
[i
].letter
))
930 dump_files
[i
].state
= -1;
931 dump_files
[i
].flags
= flags
;
935 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
936 if ((extra_dump_files
[i
].flags
& flags
)
937 && (letter
== 0 || letter
== extra_dump_files
[i
].letter
))
939 extra_dump_files
[i
].state
= -1;
940 extra_dump_files
[i
].flags
= flags
;
947 /* Parse ARG as a dump switch. Return nonzero if it is, and store the
948 relevant details in the dump_files array. */
951 dump_switch_p_1 (const char *arg
, struct dump_file_info
*dfi
, bool doglob
)
953 const char *option_value
;
957 if (doglob
&& !dfi
->glob
)
960 option_value
= skip_leading_substring (arg
, doglob
? dfi
->glob
: dfi
->swtch
);
969 const struct dump_option_value_info
*option_ptr
;
975 end_ptr
= strchr (ptr
, '-');
977 end_ptr
= ptr
+ strlen (ptr
);
978 length
= end_ptr
- ptr
;
980 for (option_ptr
= dump_options
; option_ptr
->name
; option_ptr
++)
981 if (strlen (option_ptr
->name
) == length
982 && !memcmp (option_ptr
->name
, ptr
, length
))
984 flags
|= option_ptr
->value
;
987 warning (0, "ignoring unknown option %q.*s in %<-fdump-%s%>",
988 length
, ptr
, dfi
->swtch
);
996 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
998 if (dfi
->suffix
== NULL
)
999 dump_enable_all (dfi
->flags
, 0);
1005 dump_switch_p (const char *arg
)
1010 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1011 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], false);
1013 /* Don't glob if we got a hit already */
1015 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1016 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], true);
1018 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1019 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], false);
1022 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1023 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], true);
1029 /* Dump FUNCTION_DECL FN as tree dump PHASE. */
1032 dump_function (enum tree_dump_index phase
, tree fn
)
1037 stream
= dump_begin (phase
, &flags
);
1040 dump_function_to_file (fn
, stream
, flags
);
1041 dump_end (phase
, stream
);
1046 enable_rtl_dump_file (int letter
)
1051 return dump_enable_all (TDF_RTL
, letter
) > 0;