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
);
43 /* Add T to the end of the queue of nodes to dump. Returns the index
47 queue (dump_info_p di
, const_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
= XNEW (struct dump_queue
);
65 /* Create a new entry in the splay-tree. */
66 dni
= XNEW (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
, const_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
, const_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
, (unsigned 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 floating point value R, using FIELD to identify it. */
185 dump_real (dump_info_p di
, const char *field
, const REAL_VALUE_TYPE
*r
)
188 real_to_decimal (buf
, r
, sizeof (buf
), 0, true);
189 dump_maybe_newline (di
);
190 fprintf (di
->stream
, "%-4s: %s ", field
, buf
);
191 di
->column
+= strlen (buf
) + 7;
194 /* Dump the fixed-point value F, using FIELD to identify it. */
197 dump_fixed (dump_info_p di
, const char *field
, const FIXED_VALUE_TYPE
*f
)
200 fixed_to_decimal (buf
, f
, sizeof (buf
));
201 dump_maybe_newline (di
);
202 fprintf (di
->stream
, "%-4s: %s ", field
, buf
);
203 di
->column
+= strlen (buf
) + 7;
207 /* Dump the string S. */
210 dump_string (dump_info_p di
, const char *string
)
212 dump_maybe_newline (di
);
213 fprintf (di
->stream
, "%-13s ", string
);
214 if (strlen (string
) > 13)
215 di
->column
+= strlen (string
) + 1;
220 /* Dump the string field S. */
223 dump_string_field (dump_info_p di
, const char *field
, const char *string
)
225 dump_maybe_newline (di
);
226 fprintf (di
->stream
, "%-4s: %-7s ", field
, string
);
227 if (strlen (string
) > 7)
228 di
->column
+= 6 + strlen (string
) + 1;
233 /* Dump the next node in the queue. */
236 dequeue_and_dump (dump_info_p di
)
240 dump_node_info_p dni
;
244 enum tree_code_class code_class
;
245 const char* code_name
;
247 /* Get the next node from the queue. */
251 dni
= (dump_node_info_p
) stn
->value
;
254 /* Remove the node from the queue, and put it on the free list. */
255 di
->queue
= dq
->next
;
258 dq
->next
= di
->free_list
;
261 /* Print the node index. */
262 dump_index (di
, index
);
263 /* And the type of node this is. */
267 code_name
= tree_code_name
[(int) TREE_CODE (t
)];
268 fprintf (di
->stream
, "%-16s ", code_name
);
271 /* Figure out what kind of node this is. */
272 code
= TREE_CODE (t
);
273 code_class
= TREE_CODE_CLASS (code
);
275 /* Although BINFOs are TREE_VECs, we dump them specially so as to be
281 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (t
);
283 dump_child ("type", BINFO_TYPE (t
));
285 if (BINFO_VIRTUAL_P (t
))
286 dump_string_field (di
, "spec", "virt");
288 dump_int (di
, "bases", BINFO_N_BASE_BINFOS (t
));
289 for (ix
= 0; BINFO_BASE_ITERATE (t
, ix
, base
); ix
++)
291 tree access
= (accesses
? VEC_index (tree
, accesses
, ix
)
292 : access_public_node
);
293 const char *string
= NULL
;
295 if (access
== access_public_node
)
297 else if (access
== access_protected_node
)
299 else if (access
== access_private_node
)
304 dump_string_field (di
, "accs", string
);
305 queue_and_dump_index (di
, "binf", base
, DUMP_BINFO
);
311 /* We can knock off a bunch of expression nodes in exactly the same
313 if (IS_EXPR_CODE_CLASS (code_class
))
315 /* If we're dumping children, dump them now. */
316 queue_and_dump_type (di
, t
);
321 dump_child ("op 0", TREE_OPERAND (t
, 0));
326 dump_child ("op 0", TREE_OPERAND (t
, 0));
327 dump_child ("op 1", TREE_OPERAND (t
, 1));
334 /* These nodes are handled explicitly below. */
343 expanded_location xloc
;
344 /* All declarations have names. */
346 dump_child ("name", DECL_NAME (t
));
347 if (DECL_ASSEMBLER_NAME_SET_P (t
)
348 && DECL_ASSEMBLER_NAME (t
) != DECL_NAME (t
))
349 dump_child ("mngl", DECL_ASSEMBLER_NAME (t
));
350 if (DECL_ABSTRACT_ORIGIN (t
))
351 dump_child ("orig", DECL_ABSTRACT_ORIGIN (t
));
353 queue_and_dump_type (di
, t
);
354 dump_child ("scpe", DECL_CONTEXT (t
));
355 /* And a source position. */
356 xloc
= expand_location (DECL_SOURCE_LOCATION (t
));
359 const char *filename
= strrchr (xloc
.file
, '/');
361 filename
= xloc
.file
;
363 /* Skip the slash. */
366 dump_maybe_newline (di
);
367 fprintf (di
->stream
, "srcp: %s:%-6d ", filename
,
369 di
->column
+= 6 + strlen (filename
) + 8;
371 /* And any declaration can be compiler-generated. */
372 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_COMMON
)
373 && DECL_ARTIFICIAL (t
))
374 dump_string_field (di
, "note", "artificial");
375 if (TREE_CHAIN (t
) && !dump_flag (di
, TDF_SLIM
, NULL
))
376 dump_child ("chan", TREE_CHAIN (t
));
378 else if (code_class
== tcc_type
)
380 /* All types have qualifiers. */
381 int quals
= lang_hooks
.tree_dump
.type_quals (t
);
383 if (quals
!= TYPE_UNQUALIFIED
)
385 fprintf (di
->stream
, "qual: %c%c%c ",
386 (quals
& TYPE_QUAL_CONST
) ? 'c' : ' ',
387 (quals
& TYPE_QUAL_VOLATILE
) ? 'v' : ' ',
388 (quals
& TYPE_QUAL_RESTRICT
) ? 'r' : ' ');
392 /* All types have associated declarations. */
393 dump_child ("name", TYPE_NAME (t
));
395 /* All types have a main variant. */
396 if (TYPE_MAIN_VARIANT (t
) != t
)
397 dump_child ("unql", TYPE_MAIN_VARIANT (t
));
400 dump_child ("size", TYPE_SIZE (t
));
402 /* All types have alignments. */
403 dump_int (di
, "algn", TYPE_ALIGN (t
));
405 else if (code_class
== tcc_constant
)
406 /* All constants can have types. */
407 queue_and_dump_type (di
, t
);
409 /* Give the language-specific code a chance to print something. If
410 it's completely taken care of things, don't bother printing
411 anything more ourselves. */
412 if (lang_hooks
.tree_dump
.dump_tree (di
, t
))
415 /* Now handle the various kinds of nodes. */
420 case IDENTIFIER_NODE
:
421 dump_string_field (di
, "strg", IDENTIFIER_POINTER (t
));
422 dump_int (di
, "lngt", IDENTIFIER_LENGTH (t
));
426 dump_child ("purp", TREE_PURPOSE (t
));
427 dump_child ("valu", TREE_VALUE (t
));
428 dump_child ("chan", TREE_CHAIN (t
));
433 tree_stmt_iterator it
;
434 for (i
= 0, it
= tsi_start (t
); !tsi_end_p (it
); tsi_next (&it
), i
++)
437 sprintf (buffer
, "%u", i
);
438 dump_child (buffer
, tsi_stmt (it
));
444 dump_int (di
, "lngt", TREE_VEC_LENGTH (t
));
445 for (i
= 0; i
< TREE_VEC_LENGTH (t
); ++i
)
448 sprintf (buffer
, "%u", i
);
449 dump_child (buffer
, TREE_VEC_ELT (t
, i
));
455 dump_int (di
, "prec", TYPE_PRECISION (t
));
456 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
457 dump_child ("min", TYPE_MIN_VALUE (t
));
458 dump_child ("max", TYPE_MAX_VALUE (t
));
460 if (code
== ENUMERAL_TYPE
)
461 dump_child ("csts", TYPE_VALUES (t
));
465 dump_int (di
, "prec", TYPE_PRECISION (t
));
468 case FIXED_POINT_TYPE
:
469 dump_int (di
, "prec", TYPE_PRECISION (t
));
470 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
471 dump_string_field (di
, "saturating",
472 TYPE_SATURATING (t
) ? "saturating": "non-saturating");
476 dump_child ("ptd", TREE_TYPE (t
));
480 dump_child ("refd", TREE_TYPE (t
));
484 dump_child ("clas", TYPE_METHOD_BASETYPE (t
));
488 dump_child ("retn", TREE_TYPE (t
));
489 dump_child ("prms", TYPE_ARG_TYPES (t
));
493 dump_child ("elts", TREE_TYPE (t
));
494 dump_child ("domn", TYPE_DOMAIN (t
));
499 if (TREE_CODE (t
) == RECORD_TYPE
)
500 dump_string_field (di
, "tag", "struct");
502 dump_string_field (di
, "tag", "union");
504 dump_child ("flds", TYPE_FIELDS (t
));
505 dump_child ("fncs", TYPE_METHODS (t
));
506 queue_and_dump_index (di
, "binf", TYPE_BINFO (t
),
511 dump_child ("cnst", DECL_INITIAL (t
));
514 case SYMBOL_MEMORY_TAG
:
515 case NAME_MEMORY_TAG
:
522 if (TREE_CODE (t
) == PARM_DECL
)
523 dump_child ("argt", DECL_ARG_TYPE (t
));
525 dump_child ("init", DECL_INITIAL (t
));
526 dump_child ("size", DECL_SIZE (t
));
527 dump_int (di
, "algn", DECL_ALIGN (t
));
529 if (TREE_CODE (t
) == FIELD_DECL
)
531 if (DECL_FIELD_OFFSET (t
))
532 dump_child ("bpos", bit_position (t
));
534 else if (TREE_CODE (t
) == VAR_DECL
535 || TREE_CODE (t
) == PARM_DECL
)
537 dump_int (di
, "used", TREE_USED (t
));
538 if (DECL_REGISTER (t
))
539 dump_string_field (di
, "spec", "register");
544 dump_child ("args", DECL_ARGUMENTS (t
));
545 if (DECL_EXTERNAL (t
))
546 dump_string_field (di
, "body", "undefined");
548 dump_string_field (di
, "link", "extern");
550 dump_string_field (di
, "link", "static");
551 if (DECL_SAVED_TREE (t
) && !dump_flag (di
, TDF_SLIM
, t
))
552 dump_child ("body", DECL_SAVED_TREE (t
));
556 if (TREE_INT_CST_HIGH (t
))
557 dump_int (di
, "high", TREE_INT_CST_HIGH (t
));
558 dump_int (di
, "low", TREE_INT_CST_LOW (t
));
562 fprintf (di
->stream
, "strg: %-7s ", TREE_STRING_POINTER (t
));
563 dump_int (di
, "lngt", TREE_STRING_LENGTH (t
));
567 dump_real (di
, "valu", TREE_REAL_CST_PTR (t
));
571 dump_fixed (di
, "valu", TREE_FIXED_CST_PTR (t
));
577 case ALIGN_INDIRECT_REF
:
578 case MISALIGNED_INDIRECT_REF
:
579 case CLEANUP_POINT_EXPR
:
583 /* These nodes are unary, but do not have code class `1'. */
584 dump_child ("op 0", TREE_OPERAND (t
, 0));
587 case TRUTH_ANDIF_EXPR
:
588 case TRUTH_ORIF_EXPR
:
592 case PREDECREMENT_EXPR
:
593 case PREINCREMENT_EXPR
:
594 case POSTDECREMENT_EXPR
:
595 case POSTINCREMENT_EXPR
:
596 /* These nodes are binary, but do not have code class `2'. */
597 dump_child ("op 0", TREE_OPERAND (t
, 0));
598 dump_child ("op 1", TREE_OPERAND (t
, 1));
601 case GIMPLE_MODIFY_STMT
:
602 dump_child ("op 0", GIMPLE_STMT_OPERAND (t
, 0));
603 dump_child ("op 1", GIMPLE_STMT_OPERAND (t
, 1));
607 dump_child ("op 0", TREE_OPERAND (t
, 0));
608 dump_child ("op 1", TREE_OPERAND (t
, 1));
609 dump_child ("op 2", TREE_OPERAND (t
, 2));
613 case ARRAY_RANGE_REF
:
614 dump_child ("op 0", TREE_OPERAND (t
, 0));
615 dump_child ("op 1", TREE_OPERAND (t
, 1));
616 dump_child ("op 2", TREE_OPERAND (t
, 2));
617 dump_child ("op 3", TREE_OPERAND (t
, 3));
621 dump_child ("op 0", TREE_OPERAND (t
, 0));
622 dump_child ("op 1", TREE_OPERAND (t
, 1));
623 dump_child ("op 2", TREE_OPERAND (t
, 2));
626 case TRY_FINALLY_EXPR
:
627 dump_child ("op 0", TREE_OPERAND (t
, 0));
628 dump_child ("op 1", TREE_OPERAND (t
, 1));
635 call_expr_arg_iterator iter
;
636 dump_child ("fn", CALL_EXPR_FN (t
));
637 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, t
)
640 sprintf (buffer
, "%u", i
);
641 dump_child (buffer
, arg
);
649 unsigned HOST_WIDE_INT cnt
;
651 dump_int (di
, "lngt", VEC_length (constructor_elt
,
652 CONSTRUCTOR_ELTS (t
)));
653 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), cnt
, index
, value
)
655 dump_child ("idx", index
);
656 dump_child ("val", value
);
662 dump_child ("vars", TREE_OPERAND (t
, 0));
663 dump_child ("body", TREE_OPERAND (t
, 1));
667 dump_child ("body", TREE_OPERAND (t
, 0));
671 dump_child ("cond", TREE_OPERAND (t
, 0));
675 dump_child ("expr", TREE_OPERAND (t
, 0));
679 dump_child ("decl", TREE_OPERAND (t
, 0));
680 dump_child ("init", TREE_OPERAND (t
, 1));
681 dump_child ("clnp", TREE_OPERAND (t
, 2));
682 /* There really are two possible places the initializer can be.
683 After RTL expansion, the second operand is moved to the
684 position of the fourth operand, and the second operand
686 dump_child ("init", TREE_OPERAND (t
, 3));
689 case CASE_LABEL_EXPR
:
690 dump_child ("name", CASE_LABEL (t
));
693 dump_child ("low ", CASE_LOW (t
));
695 dump_child ("high", CASE_HIGH (t
));
699 dump_child ("name", TREE_OPERAND (t
,0));
702 dump_child ("labl", TREE_OPERAND (t
, 0));
705 dump_child ("cond", TREE_OPERAND (t
, 0));
706 dump_child ("body", TREE_OPERAND (t
, 1));
707 if (TREE_OPERAND (t
, 2))
709 dump_child ("labl", TREE_OPERAND (t
,2));
715 fprintf (di
->stream
, "%s\n", omp_clause_code_name
[OMP_CLAUSE_CODE (t
)]);
716 for (i
= 0; i
< omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)]; i
++)
717 dump_child ("op: ", OMP_CLAUSE_OPERAND (t
, i
));
721 /* There are no additional fields to print. */
726 if (dump_flag (di
, TDF_ADDRESS
, NULL
))
727 dump_pointer (di
, "addr", (void *)t
);
729 /* Terminate the line. */
730 fprintf (di
->stream
, "\n");
733 /* Return nonzero if FLAG has been specified for the dump, and NODE
734 is not the root node of the dump. */
736 int dump_flag (dump_info_p di
, int flag
, const_tree node
)
738 return (di
->flags
& flag
) && (node
!= di
->node
);
741 /* Dump T, and all its children, on STREAM. */
744 dump_node (const_tree t
, int flags
, FILE *stream
)
748 dump_queue_p next_dq
;
750 /* Initialize the dump-information structure. */
759 di
.nodes
= splay_tree_new (splay_tree_compare_pointers
, 0,
760 (splay_tree_delete_value_fn
) &free
);
762 /* Queue up the first node. */
763 queue (&di
, t
, DUMP_NONE
);
765 /* Until the queue is empty, keep dumping nodes. */
767 dequeue_and_dump (&di
);
770 for (dq
= di
.free_list
; dq
; dq
= next_dq
)
775 splay_tree_delete (di
.nodes
);
779 /* Table of tree dump switches. This must be consistent with the
780 tree_dump_index enumeration in tree-pass.h. */
781 static struct dump_file_info dump_files
[TDI_end
] =
783 {NULL
, NULL
, NULL
, 0, 0, 0},
784 {".cgraph", "ipa-cgraph", NULL
, TDF_IPA
, 0, 0},
785 {".tu", "translation-unit", NULL
, TDF_TREE
, 0, 1},
786 {".class", "class-hierarchy", NULL
, TDF_TREE
, 0, 2},
787 {".original", "tree-original", NULL
, TDF_TREE
, 0, 3},
788 {".gimple", "tree-gimple", NULL
, TDF_TREE
, 0, 4},
789 {".nested", "tree-nested", NULL
, TDF_TREE
, 0, 5},
790 {".vcg", "tree-vcg", NULL
, TDF_TREE
, 0, 6},
791 #define FIRST_AUTO_NUMBERED_DUMP 7
793 {NULL
, "tree-all", NULL
, TDF_TREE
, 0, 0},
794 {NULL
, "rtl-all", NULL
, TDF_RTL
, 0, 0},
795 {NULL
, "ipa-all", NULL
, TDF_IPA
, 0, 0},
798 /* Dynamically registered tree dump files and switches. */
799 static struct dump_file_info
*extra_dump_files
;
800 static size_t extra_dump_files_in_use
;
801 static size_t extra_dump_files_alloced
;
803 /* Define a name->number mapping for a dump flag value. */
804 struct dump_option_value_info
806 const char *const name
; /* the name of the value */
807 const int value
; /* the value of the name */
810 /* Table of dump options. This must be consistent with the TDF_* flags
812 static const struct dump_option_value_info dump_options
[] =
814 {"address", TDF_ADDRESS
},
817 {"details", TDF_DETAILS
},
818 {"stats", TDF_STATS
},
819 {"blocks", TDF_BLOCKS
},
821 {"lineno", TDF_LINENO
},
823 {"stmtaddr", TDF_STMTADDR
},
824 {"memsyms", TDF_MEMSYMS
},
825 {"verbose", TDF_VERBOSE
},
826 {"all", ~(TDF_RAW
| TDF_SLIM
| TDF_LINENO
| TDF_TREE
| TDF_RTL
| TDF_IPA
827 | TDF_STMTADDR
| TDF_GRAPH
| TDF_DIAGNOSTIC
| TDF_VERBOSE
)},
832 dump_register (const char *suffix
, const char *swtch
, const char *glob
,
835 static int next_dump
= FIRST_AUTO_NUMBERED_DUMP
;
836 int num
= next_dump
++;
838 size_t this = extra_dump_files_in_use
++;
840 if (this >= extra_dump_files_alloced
)
842 if (extra_dump_files_alloced
== 0)
843 extra_dump_files_alloced
= 32;
845 extra_dump_files_alloced
*= 2;
846 extra_dump_files
= xrealloc (extra_dump_files
,
847 sizeof (struct dump_file_info
)
848 * extra_dump_files_alloced
);
851 memset (&extra_dump_files
[this], 0, sizeof (struct dump_file_info
));
852 extra_dump_files
[this].suffix
= suffix
;
853 extra_dump_files
[this].swtch
= swtch
;
854 extra_dump_files
[this].glob
= glob
;
855 extra_dump_files
[this].flags
= flags
;
856 extra_dump_files
[this].num
= num
;
858 return this + TDI_end
;
862 /* Return the dump_file_info for the given phase. */
864 struct dump_file_info
*
865 get_dump_file_info (enum tree_dump_index phase
)
868 return &dump_files
[phase
];
869 else if (phase
- TDI_end
>= extra_dump_files_in_use
)
872 return extra_dump_files
+ (phase
- TDI_end
);
876 /* Return the name of the dump file for the given phase.
877 If the dump is not enabled, returns NULL. */
880 get_dump_file_name (enum tree_dump_index phase
)
883 struct dump_file_info
*dfi
;
885 if (phase
== TDI_none
)
888 dfi
= get_dump_file_info (phase
);
897 if (dfi
->flags
& TDF_TREE
)
899 else if (dfi
->flags
& TDF_IPA
)
904 if (snprintf (dump_id
, sizeof (dump_id
), ".%03d%c", dfi
->num
, suffix
) < 0)
908 return concat (dump_base_name
, dump_id
, dfi
->suffix
, NULL
);
911 /* Begin a tree dump for PHASE. Stores any user supplied flag in
912 *FLAG_PTR and returns a stream to write to. If the dump is not
913 enabled, returns NULL.
914 Multiple calls will reopen and append to the dump file. */
917 dump_begin (enum tree_dump_index phase
, int *flag_ptr
)
920 struct dump_file_info
*dfi
;
923 if (phase
== TDI_none
|| !dump_enabled_p (phase
))
926 name
= get_dump_file_name (phase
);
927 dfi
= get_dump_file_info (phase
);
928 stream
= fopen (name
, dfi
->state
< 0 ? "w" : "a");
930 error ("could not open dump file %qs: %s", name
, strerror (errno
));
936 *flag_ptr
= dfi
->flags
;
941 /* Returns nonzero if tree dump PHASE is enabled. If PHASE is
942 TDI_tree_all, return nonzero if any dump is enabled. */
945 dump_enabled_p (enum tree_dump_index phase
)
947 if (phase
== TDI_tree_all
)
950 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
951 if (dump_files
[i
].state
)
953 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
954 if (extra_dump_files
[i
].state
)
960 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
965 /* Returns nonzero if tree dump PHASE has been initialized. */
968 dump_initialized_p (enum tree_dump_index phase
)
970 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
971 return dfi
->state
> 0;
974 /* Returns the switch name of PHASE. */
977 dump_flag_name (enum tree_dump_index phase
)
979 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
983 /* Finish a tree dump for PHASE. STREAM is the stream created by
987 dump_end (enum tree_dump_index phase ATTRIBUTE_UNUSED
, FILE *stream
)
992 /* Enable all tree dumps. Return number of enabled tree dumps. */
995 dump_enable_all (int flags
)
997 int ir_dump_type
= (flags
& (TDF_TREE
| TDF_RTL
| TDF_IPA
));
1001 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
1002 if ((dump_files
[i
].flags
& ir_dump_type
))
1004 dump_files
[i
].state
= -1;
1005 dump_files
[i
].flags
|= flags
;
1009 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1010 if ((extra_dump_files
[i
].flags
& ir_dump_type
))
1012 extra_dump_files
[i
].state
= -1;
1013 extra_dump_files
[i
].flags
|= flags
;
1020 /* Parse ARG as a dump switch. Return nonzero if it is, and store the
1021 relevant details in the dump_files array. */
1024 dump_switch_p_1 (const char *arg
, struct dump_file_info
*dfi
, bool doglob
)
1026 const char *option_value
;
1030 if (doglob
&& !dfi
->glob
)
1033 option_value
= skip_leading_substring (arg
, doglob
? dfi
->glob
: dfi
->swtch
);
1037 if (*option_value
&& *option_value
!= '-')
1045 const struct dump_option_value_info
*option_ptr
;
1046 const char *end_ptr
;
1051 end_ptr
= strchr (ptr
, '-');
1053 end_ptr
= ptr
+ strlen (ptr
);
1054 length
= end_ptr
- ptr
;
1056 for (option_ptr
= dump_options
; option_ptr
->name
; option_ptr
++)
1057 if (strlen (option_ptr
->name
) == length
1058 && !memcmp (option_ptr
->name
, ptr
, length
))
1060 flags
|= option_ptr
->value
;
1063 warning (0, "ignoring unknown option %q.*s in %<-fdump-%s%>",
1064 length
, ptr
, dfi
->swtch
);
1070 dfi
->flags
|= flags
;
1072 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
1074 if (dfi
->suffix
== NULL
)
1075 dump_enable_all (dfi
->flags
);
1081 dump_switch_p (const char *arg
)
1086 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1087 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], false);
1089 /* Don't glob if we got a hit already */
1091 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1092 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], true);
1094 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1095 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], false);
1098 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1099 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], true);
1105 /* Dump FUNCTION_DECL FN as tree dump PHASE. */
1108 dump_function (enum tree_dump_index phase
, tree fn
)
1113 stream
= dump_begin (phase
, &flags
);
1116 dump_function_to_file (fn
, stream
, flags
);
1117 dump_end (phase
, stream
);
1122 enable_rtl_dump_file (void)
1124 return dump_enable_all (TDF_RTL
| TDF_DETAILS
| TDF_BLOCKS
) > 0;