1 /* Tree-dumping functionality for intermediate representation.
2 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008
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 3, 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 COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
27 #include "splay-tree.h"
28 #include "diagnostic.h"
30 #include "tree-dump.h"
31 #include "tree-pass.h"
32 #include "langhooks.h"
33 #include "tree-iterator.h"
35 #include "fixed-value.h"
37 static unsigned int queue (dump_info_p
, const_tree
, int);
38 static void dump_index (dump_info_p
, unsigned int);
39 static void dequeue_and_dump (dump_info_p
);
40 static void dump_new_line (dump_info_p
);
41 static void dump_maybe_newline (dump_info_p
);
42 static int dump_enable_all (int, int);
44 /* Add T to the end of the queue of nodes to dump. Returns the index
48 queue (dump_info_p di
, const_tree t
, int flags
)
54 /* Assign the next available index to T. */
57 /* Obtain a new queue node. */
61 di
->free_list
= dq
->next
;
64 dq
= XNEW (struct dump_queue
);
66 /* Create a new entry in the splay-tree. */
67 dni
= XNEW (struct dump_node_info
);
69 dni
->binfo_p
= ((flags
& DUMP_BINFO
) != 0);
70 dq
->node
= splay_tree_insert (di
->nodes
, (splay_tree_key
) t
,
71 (splay_tree_value
) dni
);
73 /* Add it to the end of the queue. */
78 di
->queue_end
->next
= dq
;
81 /* Return the index. */
86 dump_index (dump_info_p di
, unsigned int index
)
88 fprintf (di
->stream
, "@%-6u ", index
);
92 /* If T has not already been output, queue it for subsequent output.
93 FIELD is a string to print before printing the index. Then, the
94 index of T is printed. */
97 queue_and_dump_index (dump_info_p di
, const char *field
, const_tree t
, int flags
)
102 /* If there's no node, just return. This makes for fewer checks in
107 /* See if we've already queued or dumped this node. */
108 n
= splay_tree_lookup (di
->nodes
, (splay_tree_key
) t
);
110 index
= ((dump_node_info_p
) n
->value
)->index
;
112 /* If we haven't, add it to the queue. */
113 index
= queue (di
, t
, flags
);
115 /* Print the index of the node. */
116 dump_maybe_newline (di
);
117 fprintf (di
->stream
, "%-4s: ", field
);
119 dump_index (di
, index
);
122 /* Dump the type of T. */
125 queue_and_dump_type (dump_info_p di
, const_tree t
)
127 queue_and_dump_index (di
, "type", TREE_TYPE (t
), DUMP_NONE
);
130 /* Dump column control */
131 #define SOL_COLUMN 25 /* Start of line column. */
132 #define EOL_COLUMN 55 /* End of line column. */
133 #define COLUMN_ALIGNMENT 15 /* Alignment. */
135 /* Insert a new line in the dump output, and indent to an appropriate
136 place to start printing more fields. */
139 dump_new_line (dump_info_p di
)
141 fprintf (di
->stream
, "\n%*s", SOL_COLUMN
, "");
142 di
->column
= SOL_COLUMN
;
145 /* If necessary, insert a new line. */
148 dump_maybe_newline (dump_info_p di
)
152 /* See if we need a new line. */
153 if (di
->column
> EOL_COLUMN
)
155 /* See if we need any padding. */
156 else if ((extra
= (di
->column
- SOL_COLUMN
) % COLUMN_ALIGNMENT
) != 0)
158 fprintf (di
->stream
, "%*s", COLUMN_ALIGNMENT
- extra
, "");
159 di
->column
+= COLUMN_ALIGNMENT
- extra
;
163 /* Dump pointer PTR using FIELD to identify it. */
166 dump_pointer (dump_info_p di
, const char *field
, void *ptr
)
168 dump_maybe_newline (di
);
169 fprintf (di
->stream
, "%-4s: %-8lx ", field
, (unsigned long) ptr
);
173 /* Dump integer I using FIELD to identify it. */
176 dump_int (dump_info_p di
, const char *field
, int i
)
178 dump_maybe_newline (di
);
179 fprintf (di
->stream
, "%-4s: %-7d ", field
, i
);
183 /* Dump the floating point value R, using FIELD to identify it. */
186 dump_real (dump_info_p di
, const char *field
, const REAL_VALUE_TYPE
*r
)
189 real_to_decimal (buf
, r
, sizeof (buf
), 0, true);
190 dump_maybe_newline (di
);
191 fprintf (di
->stream
, "%-4s: %s ", field
, buf
);
192 di
->column
+= strlen (buf
) + 7;
195 /* Dump the fixed-point value F, using FIELD to identify it. */
198 dump_fixed (dump_info_p di
, const char *field
, const FIXED_VALUE_TYPE
*f
)
201 fixed_to_decimal (buf
, f
, sizeof (buf
));
202 dump_maybe_newline (di
);
203 fprintf (di
->stream
, "%-4s: %s ", field
, buf
);
204 di
->column
+= strlen (buf
) + 7;
208 /* Dump the string S. */
211 dump_string (dump_info_p di
, const char *string
)
213 dump_maybe_newline (di
);
214 fprintf (di
->stream
, "%-13s ", string
);
215 if (strlen (string
) > 13)
216 di
->column
+= strlen (string
) + 1;
221 /* Dump the string field S. */
224 dump_string_field (dump_info_p di
, const char *field
, const char *string
)
226 dump_maybe_newline (di
);
227 fprintf (di
->stream
, "%-4s: %-7s ", field
, string
);
228 if (strlen (string
) > 7)
229 di
->column
+= 6 + strlen (string
) + 1;
234 /* Dump the next node in the queue. */
237 dequeue_and_dump (dump_info_p di
)
241 dump_node_info_p dni
;
245 enum tree_code_class code_class
;
246 const char* code_name
;
248 /* Get the next node from the queue. */
252 dni
= (dump_node_info_p
) stn
->value
;
255 /* Remove the node from the queue, and put it on the free list. */
256 di
->queue
= dq
->next
;
259 dq
->next
= di
->free_list
;
262 /* Print the node index. */
263 dump_index (di
, index
);
264 /* And the type of node this is. */
268 code_name
= tree_code_name
[(int) TREE_CODE (t
)];
269 fprintf (di
->stream
, "%-16s ", code_name
);
272 /* Figure out what kind of node this is. */
273 code
= TREE_CODE (t
);
274 code_class
= TREE_CODE_CLASS (code
);
276 /* Although BINFOs are TREE_VECs, we dump them specially so as to be
282 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (t
);
284 dump_child ("type", BINFO_TYPE (t
));
286 if (BINFO_VIRTUAL_P (t
))
287 dump_string_field (di
, "spec", "virt");
289 dump_int (di
, "bases", BINFO_N_BASE_BINFOS (t
));
290 for (ix
= 0; BINFO_BASE_ITERATE (t
, ix
, base
); ix
++)
292 tree access
= (accesses
? VEC_index (tree
, accesses
, ix
)
293 : access_public_node
);
294 const char *string
= NULL
;
296 if (access
== access_public_node
)
298 else if (access
== access_protected_node
)
300 else if (access
== access_private_node
)
305 dump_string_field (di
, "accs", string
);
306 queue_and_dump_index (di
, "binf", base
, DUMP_BINFO
);
312 /* We can knock off a bunch of expression nodes in exactly the same
314 if (IS_EXPR_CODE_CLASS (code_class
))
316 /* If we're dumping children, dump them now. */
317 queue_and_dump_type (di
, t
);
322 dump_child ("op 0", TREE_OPERAND (t
, 0));
327 dump_child ("op 0", TREE_OPERAND (t
, 0));
328 dump_child ("op 1", TREE_OPERAND (t
, 1));
335 /* These nodes are handled explicitly below. */
344 expanded_location xloc
;
345 /* All declarations have names. */
347 dump_child ("name", DECL_NAME (t
));
348 if (DECL_ASSEMBLER_NAME_SET_P (t
)
349 && DECL_ASSEMBLER_NAME (t
) != DECL_NAME (t
))
350 dump_child ("mngl", DECL_ASSEMBLER_NAME (t
));
351 if (DECL_ABSTRACT_ORIGIN (t
))
352 dump_child ("orig", DECL_ABSTRACT_ORIGIN (t
));
354 queue_and_dump_type (di
, t
);
355 dump_child ("scpe", DECL_CONTEXT (t
));
356 /* And a source position. */
357 xloc
= expand_location (DECL_SOURCE_LOCATION (t
));
360 const char *filename
= strrchr (xloc
.file
, '/');
362 filename
= xloc
.file
;
364 /* Skip the slash. */
367 dump_maybe_newline (di
);
368 fprintf (di
->stream
, "srcp: %s:%-6d ", filename
,
370 di
->column
+= 6 + strlen (filename
) + 8;
372 /* And any declaration can be compiler-generated. */
373 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_COMMON
)
374 && DECL_ARTIFICIAL (t
))
375 dump_string_field (di
, "note", "artificial");
376 if (TREE_CHAIN (t
) && !dump_flag (di
, TDF_SLIM
, NULL
))
377 dump_child ("chan", TREE_CHAIN (t
));
379 else if (code_class
== tcc_type
)
381 /* All types have qualifiers. */
382 int quals
= lang_hooks
.tree_dump
.type_quals (t
);
384 if (quals
!= TYPE_UNQUALIFIED
)
386 fprintf (di
->stream
, "qual: %c%c%c ",
387 (quals
& TYPE_QUAL_CONST
) ? 'c' : ' ',
388 (quals
& TYPE_QUAL_VOLATILE
) ? 'v' : ' ',
389 (quals
& TYPE_QUAL_RESTRICT
) ? 'r' : ' ');
393 /* All types have associated declarations. */
394 dump_child ("name", TYPE_NAME (t
));
396 /* All types have a main variant. */
397 if (TYPE_MAIN_VARIANT (t
) != t
)
398 dump_child ("unql", TYPE_MAIN_VARIANT (t
));
401 dump_child ("size", TYPE_SIZE (t
));
403 /* All types have alignments. */
404 dump_int (di
, "algn", TYPE_ALIGN (t
));
406 else if (code_class
== tcc_constant
)
407 /* All constants can have types. */
408 queue_and_dump_type (di
, t
);
410 /* Give the language-specific code a chance to print something. If
411 it's completely taken care of things, don't bother printing
412 anything more ourselves. */
413 if (lang_hooks
.tree_dump
.dump_tree (di
, t
))
416 /* Now handle the various kinds of nodes. */
421 case IDENTIFIER_NODE
:
422 dump_string_field (di
, "strg", IDENTIFIER_POINTER (t
));
423 dump_int (di
, "lngt", IDENTIFIER_LENGTH (t
));
427 dump_child ("purp", TREE_PURPOSE (t
));
428 dump_child ("valu", TREE_VALUE (t
));
429 dump_child ("chan", TREE_CHAIN (t
));
434 tree_stmt_iterator it
;
435 for (i
= 0, it
= tsi_start (t
); !tsi_end_p (it
); tsi_next (&it
), i
++)
438 sprintf (buffer
, "%u", i
);
439 dump_child (buffer
, tsi_stmt (it
));
445 dump_int (di
, "lngt", TREE_VEC_LENGTH (t
));
446 for (i
= 0; i
< TREE_VEC_LENGTH (t
); ++i
)
449 sprintf (buffer
, "%u", i
);
450 dump_child (buffer
, TREE_VEC_ELT (t
, i
));
456 dump_int (di
, "prec", TYPE_PRECISION (t
));
457 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
458 dump_child ("min", TYPE_MIN_VALUE (t
));
459 dump_child ("max", TYPE_MAX_VALUE (t
));
461 if (code
== ENUMERAL_TYPE
)
462 dump_child ("csts", TYPE_VALUES (t
));
466 dump_int (di
, "prec", TYPE_PRECISION (t
));
469 case FIXED_POINT_TYPE
:
470 dump_int (di
, "prec", TYPE_PRECISION (t
));
471 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
472 dump_string_field (di
, "saturating",
473 TYPE_SATURATING (t
) ? "saturating": "non-saturating");
477 dump_child ("ptd", TREE_TYPE (t
));
481 dump_child ("refd", TREE_TYPE (t
));
485 dump_child ("clas", TYPE_METHOD_BASETYPE (t
));
489 dump_child ("retn", TREE_TYPE (t
));
490 dump_child ("prms", TYPE_ARG_TYPES (t
));
494 dump_child ("elts", TREE_TYPE (t
));
495 dump_child ("domn", TYPE_DOMAIN (t
));
500 if (TREE_CODE (t
) == RECORD_TYPE
)
501 dump_string_field (di
, "tag", "struct");
503 dump_string_field (di
, "tag", "union");
505 dump_child ("flds", TYPE_FIELDS (t
));
506 dump_child ("fncs", TYPE_METHODS (t
));
507 queue_and_dump_index (di
, "binf", TYPE_BINFO (t
),
512 dump_child ("cnst", DECL_INITIAL (t
));
515 case SYMBOL_MEMORY_TAG
:
516 case NAME_MEMORY_TAG
:
517 case STRUCT_FIELD_TAG
:
524 if (TREE_CODE (t
) == PARM_DECL
)
525 dump_child ("argt", DECL_ARG_TYPE (t
));
527 dump_child ("init", DECL_INITIAL (t
));
528 dump_child ("size", DECL_SIZE (t
));
529 dump_int (di
, "algn", DECL_ALIGN (t
));
531 if (TREE_CODE (t
) == FIELD_DECL
)
533 if (DECL_FIELD_OFFSET (t
))
534 dump_child ("bpos", bit_position (t
));
536 else if (TREE_CODE (t
) == VAR_DECL
537 || TREE_CODE (t
) == PARM_DECL
)
539 dump_int (di
, "used", TREE_USED (t
));
540 if (DECL_REGISTER (t
))
541 dump_string_field (di
, "spec", "register");
546 dump_child ("args", DECL_ARGUMENTS (t
));
547 if (DECL_EXTERNAL (t
))
548 dump_string_field (di
, "body", "undefined");
550 dump_string_field (di
, "link", "extern");
552 dump_string_field (di
, "link", "static");
553 if (DECL_SAVED_TREE (t
) && !dump_flag (di
, TDF_SLIM
, t
))
554 dump_child ("body", DECL_SAVED_TREE (t
));
558 if (TREE_INT_CST_HIGH (t
))
559 dump_int (di
, "high", TREE_INT_CST_HIGH (t
));
560 dump_int (di
, "low", TREE_INT_CST_LOW (t
));
564 fprintf (di
->stream
, "strg: %-7s ", TREE_STRING_POINTER (t
));
565 dump_int (di
, "lngt", TREE_STRING_LENGTH (t
));
569 dump_real (di
, "valu", TREE_REAL_CST_PTR (t
));
573 dump_fixed (di
, "valu", TREE_FIXED_CST_PTR (t
));
579 case ALIGN_INDIRECT_REF
:
580 case MISALIGNED_INDIRECT_REF
:
581 case CLEANUP_POINT_EXPR
:
585 /* These nodes are unary, but do not have code class `1'. */
586 dump_child ("op 0", TREE_OPERAND (t
, 0));
589 case TRUTH_ANDIF_EXPR
:
590 case TRUTH_ORIF_EXPR
:
594 case PREDECREMENT_EXPR
:
595 case PREINCREMENT_EXPR
:
596 case POSTDECREMENT_EXPR
:
597 case POSTINCREMENT_EXPR
:
598 /* These nodes are binary, but do not have code class `2'. */
599 dump_child ("op 0", TREE_OPERAND (t
, 0));
600 dump_child ("op 1", TREE_OPERAND (t
, 1));
603 case GIMPLE_MODIFY_STMT
:
604 dump_child ("op 0", GIMPLE_STMT_OPERAND (t
, 0));
605 dump_child ("op 1", GIMPLE_STMT_OPERAND (t
, 1));
609 dump_child ("op 0", TREE_OPERAND (t
, 0));
610 dump_child ("op 1", TREE_OPERAND (t
, 1));
611 dump_child ("op 2", TREE_OPERAND (t
, 2));
615 case ARRAY_RANGE_REF
:
616 dump_child ("op 0", TREE_OPERAND (t
, 0));
617 dump_child ("op 1", TREE_OPERAND (t
, 1));
618 dump_child ("op 2", TREE_OPERAND (t
, 2));
619 dump_child ("op 3", TREE_OPERAND (t
, 3));
623 dump_child ("op 0", TREE_OPERAND (t
, 0));
624 dump_child ("op 1", TREE_OPERAND (t
, 1));
625 dump_child ("op 2", TREE_OPERAND (t
, 2));
628 case TRY_FINALLY_EXPR
:
629 dump_child ("op 0", TREE_OPERAND (t
, 0));
630 dump_child ("op 1", TREE_OPERAND (t
, 1));
637 call_expr_arg_iterator iter
;
638 dump_child ("fn", CALL_EXPR_FN (t
));
639 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, t
)
642 sprintf (buffer
, "%u", i
);
643 dump_child (buffer
, arg
);
651 unsigned HOST_WIDE_INT cnt
;
653 dump_int (di
, "lngt", VEC_length (constructor_elt
,
654 CONSTRUCTOR_ELTS (t
)));
655 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), cnt
, index
, value
)
657 dump_child ("idx", index
);
658 dump_child ("val", value
);
664 dump_child ("vars", TREE_OPERAND (t
, 0));
665 dump_child ("body", TREE_OPERAND (t
, 1));
669 dump_child ("body", TREE_OPERAND (t
, 0));
673 dump_child ("cond", TREE_OPERAND (t
, 0));
677 dump_child ("expr", TREE_OPERAND (t
, 0));
681 dump_child ("decl", TREE_OPERAND (t
, 0));
682 dump_child ("init", TREE_OPERAND (t
, 1));
683 dump_child ("clnp", TREE_OPERAND (t
, 2));
684 /* There really are two possible places the initializer can be.
685 After RTL expansion, the second operand is moved to the
686 position of the fourth operand, and the second operand
688 dump_child ("init", TREE_OPERAND (t
, 3));
691 case CASE_LABEL_EXPR
:
692 dump_child ("name", CASE_LABEL (t
));
695 dump_child ("low ", CASE_LOW (t
));
697 dump_child ("high", CASE_HIGH (t
));
701 dump_child ("name", TREE_OPERAND (t
,0));
704 dump_child ("labl", TREE_OPERAND (t
, 0));
707 dump_child ("cond", TREE_OPERAND (t
, 0));
708 dump_child ("body", TREE_OPERAND (t
, 1));
709 if (TREE_OPERAND (t
, 2))
711 dump_child ("labl", TREE_OPERAND (t
,2));
717 fprintf (di
->stream
, "%s\n", omp_clause_code_name
[OMP_CLAUSE_CODE (t
)]);
718 for (i
= 0; i
< omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)]; i
++)
719 dump_child ("op: ", OMP_CLAUSE_OPERAND (t
, i
));
723 /* There are no additional fields to print. */
728 if (dump_flag (di
, TDF_ADDRESS
, NULL
))
729 dump_pointer (di
, "addr", (void *)t
);
731 /* Terminate the line. */
732 fprintf (di
->stream
, "\n");
735 /* Return nonzero if FLAG has been specified for the dump, and NODE
736 is not the root node of the dump. */
738 int dump_flag (dump_info_p di
, int flag
, const_tree node
)
740 return (di
->flags
& flag
) && (node
!= di
->node
);
743 /* Dump T, and all its children, on STREAM. */
746 dump_node (const_tree t
, int flags
, FILE *stream
)
750 dump_queue_p next_dq
;
752 /* Initialize the dump-information structure. */
761 di
.nodes
= splay_tree_new (splay_tree_compare_pointers
, 0,
762 (splay_tree_delete_value_fn
) &free
);
764 /* Queue up the first node. */
765 queue (&di
, t
, DUMP_NONE
);
767 /* Until the queue is empty, keep dumping nodes. */
769 dequeue_and_dump (&di
);
772 for (dq
= di
.free_list
; dq
; dq
= next_dq
)
777 splay_tree_delete (di
.nodes
);
781 /* Table of tree dump switches. This must be consistent with the
782 tree_dump_index enumeration in tree-pass.h. */
783 static struct dump_file_info dump_files
[TDI_end
] =
785 {NULL
, NULL
, NULL
, 0, 0, 0, 0},
786 {".cgraph", "ipa-cgraph", NULL
, TDF_IPA
, 0, 0, 0},
787 {".tu", "translation-unit", NULL
, TDF_TREE
, 0, 1, 0},
788 {".class", "class-hierarchy", NULL
, TDF_TREE
, 0, 2, 0},
789 {".original", "tree-original", NULL
, TDF_TREE
, 0, 3, 0},
790 {".gimple", "tree-gimple", NULL
, TDF_TREE
, 0, 4, 0},
791 {".nested", "tree-nested", NULL
, TDF_TREE
, 0, 5, 0},
792 {".vcg", "tree-vcg", NULL
, TDF_TREE
, 0, 6, 0},
793 #define FIRST_AUTO_NUMBERED_DUMP 7
795 {NULL
, "tree-all", NULL
, TDF_TREE
, 0, 0, 0},
796 {NULL
, "rtl-all", NULL
, TDF_RTL
, 0, 0, 0},
797 {NULL
, "ipa-all", NULL
, TDF_IPA
, 0, 0, 0},
800 /* Dynamically registered tree dump files and switches. */
801 static struct dump_file_info
*extra_dump_files
;
802 static size_t extra_dump_files_in_use
;
803 static size_t extra_dump_files_alloced
;
805 /* Define a name->number mapping for a dump flag value. */
806 struct dump_option_value_info
808 const char *const name
; /* the name of the value */
809 const int value
; /* the value of the name */
812 /* Table of dump options. This must be consistent with the TDF_* flags
814 static const struct dump_option_value_info dump_options
[] =
816 {"address", TDF_ADDRESS
},
819 {"details", TDF_DETAILS
},
820 {"stats", TDF_STATS
},
821 {"blocks", TDF_BLOCKS
},
823 {"lineno", TDF_LINENO
},
825 {"stmtaddr", TDF_STMTADDR
},
826 {"memsyms", TDF_MEMSYMS
},
827 {"all", ~(TDF_RAW
| TDF_SLIM
| TDF_LINENO
| TDF_TREE
| TDF_RTL
| TDF_IPA
828 | TDF_STMTADDR
| TDF_GRAPH
| TDF_DIAGNOSTIC
)},
833 dump_register (const char *suffix
, const char *swtch
, const char *glob
,
836 static int next_dump
= FIRST_AUTO_NUMBERED_DUMP
;
837 int num
= next_dump
++;
839 size_t this = extra_dump_files_in_use
++;
841 if (this >= extra_dump_files_alloced
)
843 if (extra_dump_files_alloced
== 0)
844 extra_dump_files_alloced
= 32;
846 extra_dump_files_alloced
*= 2;
847 extra_dump_files
= xrealloc (extra_dump_files
,
848 sizeof (struct dump_file_info
)
849 * extra_dump_files_alloced
);
852 memset (&extra_dump_files
[this], 0, sizeof (struct dump_file_info
));
853 extra_dump_files
[this].suffix
= suffix
;
854 extra_dump_files
[this].swtch
= swtch
;
855 extra_dump_files
[this].glob
= glob
;
856 extra_dump_files
[this].flags
= flags
;
857 extra_dump_files
[this].num
= num
;
859 return this + TDI_end
;
863 /* Return the dump_file_info for the given phase. */
865 struct dump_file_info
*
866 get_dump_file_info (enum tree_dump_index phase
)
869 return &dump_files
[phase
];
870 else if (phase
- TDI_end
>= extra_dump_files_in_use
)
873 return extra_dump_files
+ (phase
- TDI_end
);
877 /* Return the name of the dump file for the given phase.
878 If the dump is not enabled, returns NULL. */
881 get_dump_file_name (enum tree_dump_index phase
)
884 struct dump_file_info
*dfi
;
886 if (phase
== TDI_none
)
889 dfi
= get_dump_file_info (phase
);
898 if (dfi
->flags
& TDF_TREE
)
900 else if (dfi
->flags
& TDF_IPA
)
905 if (snprintf (dump_id
, sizeof (dump_id
), ".%03d%c", dfi
->num
, suffix
) < 0)
909 return concat (dump_base_name
, dump_id
, dfi
->suffix
, NULL
);
912 /* Begin a tree dump for PHASE. Stores any user supplied flag in
913 *FLAG_PTR and returns a stream to write to. If the dump is not
914 enabled, returns NULL.
915 Multiple calls will reopen and append to the dump file. */
918 dump_begin (enum tree_dump_index phase
, int *flag_ptr
)
921 struct dump_file_info
*dfi
;
924 if (phase
== TDI_none
|| !dump_enabled_p (phase
))
927 name
= get_dump_file_name (phase
);
928 dfi
= get_dump_file_info (phase
);
929 stream
= fopen (name
, dfi
->state
< 0 ? "w" : "a");
931 error ("could not open dump file %qs: %s", name
, strerror (errno
));
937 *flag_ptr
= dfi
->flags
;
942 /* Returns nonzero if tree dump PHASE is enabled. If PHASE is
943 TDI_tree_all, return nonzero if any dump is enabled. */
946 dump_enabled_p (enum tree_dump_index phase
)
948 if (phase
== TDI_tree_all
)
951 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
952 if (dump_files
[i
].state
)
954 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
955 if (extra_dump_files
[i
].state
)
961 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
966 /* Returns nonzero if tree dump PHASE has been initialized. */
969 dump_initialized_p (enum tree_dump_index phase
)
971 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
972 return dfi
->state
> 0;
975 /* Returns the switch name of PHASE. */
978 dump_flag_name (enum tree_dump_index phase
)
980 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
984 /* Finish a tree dump for PHASE. STREAM is the stream created by
988 dump_end (enum tree_dump_index phase ATTRIBUTE_UNUSED
, FILE *stream
)
993 /* Enable all tree dumps. Return number of enabled tree dumps. */
996 dump_enable_all (int flags
, int letter
)
998 int ir_dump_type
= (flags
& (TDF_TREE
| TDF_RTL
| TDF_IPA
));
1002 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
1003 if ((dump_files
[i
].flags
& ir_dump_type
)
1004 && (letter
== 0 || letter
== dump_files
[i
].letter
))
1006 dump_files
[i
].state
= -1;
1007 dump_files
[i
].flags
|= flags
;
1011 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1012 if ((extra_dump_files
[i
].flags
& ir_dump_type
)
1013 && (letter
== 0 || letter
== extra_dump_files
[i
].letter
))
1015 extra_dump_files
[i
].state
= -1;
1016 extra_dump_files
[i
].flags
|= flags
;
1023 /* Parse ARG as a dump switch. Return nonzero if it is, and store the
1024 relevant details in the dump_files array. */
1027 dump_switch_p_1 (const char *arg
, struct dump_file_info
*dfi
, bool doglob
)
1029 const char *option_value
;
1033 if (doglob
&& !dfi
->glob
)
1036 option_value
= skip_leading_substring (arg
, doglob
? dfi
->glob
: dfi
->swtch
);
1040 if (*option_value
&& *option_value
!= '-')
1048 const struct dump_option_value_info
*option_ptr
;
1049 const char *end_ptr
;
1054 end_ptr
= strchr (ptr
, '-');
1056 end_ptr
= ptr
+ strlen (ptr
);
1057 length
= end_ptr
- ptr
;
1059 for (option_ptr
= dump_options
; option_ptr
->name
; option_ptr
++)
1060 if (strlen (option_ptr
->name
) == length
1061 && !memcmp (option_ptr
->name
, ptr
, length
))
1063 flags
|= option_ptr
->value
;
1066 warning (0, "ignoring unknown option %q.*s in %<-fdump-%s%>",
1067 length
, ptr
, dfi
->swtch
);
1073 dfi
->flags
|= flags
;
1075 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
1077 if (dfi
->suffix
== NULL
)
1078 dump_enable_all (dfi
->flags
, 0);
1084 dump_switch_p (const char *arg
)
1089 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1090 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], false);
1092 /* Don't glob if we got a hit already */
1094 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1095 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], true);
1097 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1098 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], false);
1101 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1102 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], true);
1108 /* Dump FUNCTION_DECL FN as tree dump PHASE. */
1111 dump_function (enum tree_dump_index phase
, tree fn
)
1116 stream
= dump_begin (phase
, &flags
);
1119 dump_function_to_file (fn
, stream
, flags
);
1120 dump_end (phase
, stream
);
1125 enable_rtl_dump_file (int letter
)
1130 return dump_enable_all (TDF_RTL
| TDF_DETAILS
| TDF_BLOCKS
, letter
) > 0;