1 /* Tree-dumping functionality for intermediate representation.
2 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
3 2010, 2011, 2012 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 "filenames.h"
29 #include "diagnostic-core.h"
31 #include "tree-dump.h"
32 #include "langhooks.h"
33 #include "tree-iterator.h"
35 /* If non-NULL, return one past-the-end of the matching SUBPART of
37 #define skip_leading_substring(whole, part) \
38 (strncmp (whole, part, strlen (part)) ? NULL : whole + strlen (part))
40 static unsigned int queue (dump_info_p
, const_tree
, int);
41 static void dump_index (dump_info_p
, unsigned int);
42 static void dequeue_and_dump (dump_info_p
);
43 static void dump_new_line (dump_info_p
);
44 static void dump_maybe_newline (dump_info_p
);
46 /* Add T to the end of the queue of nodes to dump. Returns the index
50 queue (dump_info_p di
, const_tree t
, int flags
)
56 /* Assign the next available index to T. */
59 /* Obtain a new queue node. */
63 di
->free_list
= dq
->next
;
66 dq
= XNEW (struct dump_queue
);
68 /* Create a new entry in the splay-tree. */
69 dni
= XNEW (struct dump_node_info
);
71 dni
->binfo_p
= ((flags
& DUMP_BINFO
) != 0);
72 dq
->node
= splay_tree_insert (di
->nodes
, (splay_tree_key
) t
,
73 (splay_tree_value
) dni
);
75 /* Add it to the end of the queue. */
80 di
->queue_end
->next
= dq
;
83 /* Return the index. */
88 dump_index (dump_info_p di
, unsigned int index
)
90 fprintf (di
->stream
, "@%-6u ", index
);
94 /* If T has not already been output, queue it for subsequent output.
95 FIELD is a string to print before printing the index. Then, the
96 index of T is printed. */
99 queue_and_dump_index (dump_info_p di
, const char *field
, const_tree t
, int flags
)
104 /* If there's no node, just return. This makes for fewer checks in
109 /* See if we've already queued or dumped this node. */
110 n
= splay_tree_lookup (di
->nodes
, (splay_tree_key
) t
);
112 index
= ((dump_node_info_p
) n
->value
)->index
;
114 /* If we haven't, add it to the queue. */
115 index
= queue (di
, t
, flags
);
117 /* Print the index of the node. */
118 dump_maybe_newline (di
);
119 fprintf (di
->stream
, "%-4s: ", field
);
121 dump_index (di
, index
);
124 /* Dump the type of T. */
127 queue_and_dump_type (dump_info_p di
, const_tree t
)
129 queue_and_dump_index (di
, "type", TREE_TYPE (t
), DUMP_NONE
);
132 /* Dump column control */
133 #define SOL_COLUMN 25 /* Start of line column. */
134 #define EOL_COLUMN 55 /* End of line column. */
135 #define COLUMN_ALIGNMENT 15 /* Alignment. */
137 /* Insert a new line in the dump output, and indent to an appropriate
138 place to start printing more fields. */
141 dump_new_line (dump_info_p di
)
143 fprintf (di
->stream
, "\n%*s", SOL_COLUMN
, "");
144 di
->column
= SOL_COLUMN
;
147 /* If necessary, insert a new line. */
150 dump_maybe_newline (dump_info_p di
)
154 /* See if we need a new line. */
155 if (di
->column
> EOL_COLUMN
)
157 /* See if we need any padding. */
158 else if ((extra
= (di
->column
- SOL_COLUMN
) % COLUMN_ALIGNMENT
) != 0)
160 fprintf (di
->stream
, "%*s", COLUMN_ALIGNMENT
- extra
, "");
161 di
->column
+= COLUMN_ALIGNMENT
- extra
;
165 /* Dump pointer PTR using FIELD to identify it. */
168 dump_pointer (dump_info_p di
, const char *field
, void *ptr
)
170 dump_maybe_newline (di
);
171 fprintf (di
->stream
, "%-4s: %-8lx ", field
, (unsigned long) ptr
);
175 /* Dump integer I using FIELD to identify it. */
178 dump_int (dump_info_p di
, const char *field
, int i
)
180 dump_maybe_newline (di
);
181 fprintf (di
->stream
, "%-4s: %-7d ", field
, i
);
185 /* Dump the floating point value R, using FIELD to identify it. */
188 dump_real (dump_info_p di
, const char *field
, const REAL_VALUE_TYPE
*r
)
191 real_to_decimal (buf
, r
, sizeof (buf
), 0, true);
192 dump_maybe_newline (di
);
193 fprintf (di
->stream
, "%-4s: %s ", field
, buf
);
194 di
->column
+= strlen (buf
) + 7;
197 /* Dump the fixed-point value F, using FIELD to identify it. */
200 dump_fixed (dump_info_p di
, const char *field
, const FIXED_VALUE_TYPE
*f
)
203 fixed_to_decimal (buf
, f
, sizeof (buf
));
204 dump_maybe_newline (di
);
205 fprintf (di
->stream
, "%-4s: %s ", field
, buf
);
206 di
->column
+= strlen (buf
) + 7;
210 /* Dump the string S. */
213 dump_string (dump_info_p di
, const char *string
)
215 dump_maybe_newline (di
);
216 fprintf (di
->stream
, "%-13s ", string
);
217 if (strlen (string
) > 13)
218 di
->column
+= strlen (string
) + 1;
223 /* Dump the string field S. */
226 dump_string_field (dump_info_p di
, const char *field
, const char *string
)
228 dump_maybe_newline (di
);
229 fprintf (di
->stream
, "%-4s: %-7s ", field
, string
);
230 if (strlen (string
) > 7)
231 di
->column
+= 6 + strlen (string
) + 1;
236 /* Dump the next node in the queue. */
239 dequeue_and_dump (dump_info_p di
)
243 dump_node_info_p dni
;
247 enum tree_code_class code_class
;
248 const char* code_name
;
250 /* Get the next node from the queue. */
254 dni
= (dump_node_info_p
) stn
->value
;
257 /* Remove the node from the queue, and put it on the free list. */
258 di
->queue
= dq
->next
;
261 dq
->next
= di
->free_list
;
264 /* Print the node index. */
265 dump_index (di
, index
);
266 /* And the type of node this is. */
270 code_name
= tree_code_name
[(int) TREE_CODE (t
)];
271 fprintf (di
->stream
, "%-16s ", code_name
);
274 /* Figure out what kind of node this is. */
275 code
= TREE_CODE (t
);
276 code_class
= TREE_CODE_CLASS (code
);
278 /* Although BINFOs are TREE_VECs, we dump them specially so as to be
284 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (t
);
286 dump_child ("type", BINFO_TYPE (t
));
288 if (BINFO_VIRTUAL_P (t
))
289 dump_string_field (di
, "spec", "virt");
291 dump_int (di
, "bases", BINFO_N_BASE_BINFOS (t
));
292 for (ix
= 0; BINFO_BASE_ITERATE (t
, ix
, base
); ix
++)
294 tree access
= (accesses
? VEC_index (tree
, accesses
, ix
)
295 : access_public_node
);
296 const char *string
= NULL
;
298 if (access
== access_public_node
)
300 else if (access
== access_protected_node
)
302 else if (access
== access_private_node
)
307 dump_string_field (di
, "accs", string
);
308 queue_and_dump_index (di
, "binf", base
, DUMP_BINFO
);
314 /* We can knock off a bunch of expression nodes in exactly the same
316 if (IS_EXPR_CODE_CLASS (code_class
))
318 /* If we're dumping children, dump them now. */
319 queue_and_dump_type (di
, t
);
324 dump_child ("op 0", TREE_OPERAND (t
, 0));
329 dump_child ("op 0", TREE_OPERAND (t
, 0));
330 dump_child ("op 1", TREE_OPERAND (t
, 1));
337 /* These nodes are handled explicitly below. */
346 expanded_location xloc
;
347 /* All declarations have names. */
349 dump_child ("name", DECL_NAME (t
));
350 if (DECL_ASSEMBLER_NAME_SET_P (t
)
351 && DECL_ASSEMBLER_NAME (t
) != DECL_NAME (t
))
352 dump_child ("mngl", DECL_ASSEMBLER_NAME (t
));
353 if (DECL_ABSTRACT_ORIGIN (t
))
354 dump_child ("orig", DECL_ABSTRACT_ORIGIN (t
));
356 queue_and_dump_type (di
, t
);
357 dump_child ("scpe", DECL_CONTEXT (t
));
358 /* And a source position. */
359 xloc
= expand_location (DECL_SOURCE_LOCATION (t
));
362 const char *filename
= lbasename (xloc
.file
);
364 dump_maybe_newline (di
);
365 fprintf (di
->stream
, "srcp: %s:%-6d ", filename
,
367 di
->column
+= 6 + strlen (filename
) + 8;
369 /* And any declaration can be compiler-generated. */
370 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_COMMON
)
371 && DECL_ARTIFICIAL (t
))
372 dump_string_field (di
, "note", "artificial");
373 if (DECL_CHAIN (t
) && !dump_flag (di
, TDF_SLIM
, NULL
))
374 dump_child ("chain", DECL_CHAIN (t
));
376 else if (code_class
== tcc_type
)
378 /* All types have qualifiers. */
379 int quals
= lang_hooks
.tree_dump
.type_quals (t
);
381 if (quals
!= TYPE_UNQUALIFIED
)
383 fprintf (di
->stream
, "qual: %c%c%c ",
384 (quals
& TYPE_QUAL_CONST
) ? 'c' : ' ',
385 (quals
& TYPE_QUAL_VOLATILE
) ? 'v' : ' ',
386 (quals
& TYPE_QUAL_RESTRICT
) ? 'r' : ' ');
390 /* All types have associated declarations. */
391 dump_child ("name", TYPE_NAME (t
));
393 /* All types have a main variant. */
394 if (TYPE_MAIN_VARIANT (t
) != t
)
395 dump_child ("unql", TYPE_MAIN_VARIANT (t
));
398 dump_child ("size", TYPE_SIZE (t
));
400 /* All types have alignments. */
401 dump_int (di
, "algn", TYPE_ALIGN (t
));
403 else if (code_class
== tcc_constant
)
404 /* All constants can have types. */
405 queue_and_dump_type (di
, t
);
407 /* Give the language-specific code a chance to print something. If
408 it's completely taken care of things, don't bother printing
409 anything more ourselves. */
410 if (lang_hooks
.tree_dump
.dump_tree (di
, t
))
413 /* Now handle the various kinds of nodes. */
418 case IDENTIFIER_NODE
:
419 dump_string_field (di
, "strg", IDENTIFIER_POINTER (t
));
420 dump_int (di
, "lngt", IDENTIFIER_LENGTH (t
));
424 dump_child ("purp", TREE_PURPOSE (t
));
425 dump_child ("valu", TREE_VALUE (t
));
426 dump_child ("chan", TREE_CHAIN (t
));
431 tree_stmt_iterator it
;
432 for (i
= 0, it
= tsi_start (t
); !tsi_end_p (it
); tsi_next (&it
), i
++)
435 sprintf (buffer
, "%u", i
);
436 dump_child (buffer
, tsi_stmt (it
));
442 dump_int (di
, "lngt", TREE_VEC_LENGTH (t
));
443 for (i
= 0; i
< TREE_VEC_LENGTH (t
); ++i
)
446 sprintf (buffer
, "%u", i
);
447 dump_child (buffer
, TREE_VEC_ELT (t
, i
));
453 dump_int (di
, "prec", TYPE_PRECISION (t
));
454 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
455 dump_child ("min", TYPE_MIN_VALUE (t
));
456 dump_child ("max", TYPE_MAX_VALUE (t
));
458 if (code
== ENUMERAL_TYPE
)
459 dump_child ("csts", TYPE_VALUES (t
));
463 dump_int (di
, "prec", TYPE_PRECISION (t
));
466 case FIXED_POINT_TYPE
:
467 dump_int (di
, "prec", TYPE_PRECISION (t
));
468 dump_string_field (di
, "sign", TYPE_UNSIGNED (t
) ? "unsigned": "signed");
469 dump_string_field (di
, "saturating",
470 TYPE_SATURATING (t
) ? "saturating": "non-saturating");
474 dump_child ("ptd", TREE_TYPE (t
));
478 dump_child ("refd", TREE_TYPE (t
));
482 dump_child ("clas", TYPE_METHOD_BASETYPE (t
));
486 dump_child ("retn", TREE_TYPE (t
));
487 dump_child ("prms", TYPE_ARG_TYPES (t
));
491 dump_child ("elts", TREE_TYPE (t
));
492 dump_child ("domn", TYPE_DOMAIN (t
));
497 if (TREE_CODE (t
) == RECORD_TYPE
)
498 dump_string_field (di
, "tag", "struct");
500 dump_string_field (di
, "tag", "union");
502 dump_child ("flds", TYPE_FIELDS (t
));
503 dump_child ("fncs", TYPE_METHODS (t
));
504 queue_and_dump_index (di
, "binf", TYPE_BINFO (t
),
509 dump_child ("cnst", DECL_INITIAL (t
));
512 case DEBUG_EXPR_DECL
:
513 dump_int (di
, "-uid", DEBUG_TEMP_UID (t
));
520 if (TREE_CODE (t
) == PARM_DECL
)
521 dump_child ("argt", DECL_ARG_TYPE (t
));
523 dump_child ("init", DECL_INITIAL (t
));
524 dump_child ("size", DECL_SIZE (t
));
525 dump_int (di
, "algn", DECL_ALIGN (t
));
527 if (TREE_CODE (t
) == FIELD_DECL
)
529 if (DECL_FIELD_OFFSET (t
))
530 dump_child ("bpos", bit_position (t
));
532 else if (TREE_CODE (t
) == VAR_DECL
533 || TREE_CODE (t
) == PARM_DECL
)
535 dump_int (di
, "used", TREE_USED (t
));
536 if (DECL_REGISTER (t
))
537 dump_string_field (di
, "spec", "register");
542 dump_child ("args", DECL_ARGUMENTS (t
));
543 if (DECL_EXTERNAL (t
))
544 dump_string_field (di
, "body", "undefined");
546 dump_string_field (di
, "link", "extern");
548 dump_string_field (di
, "link", "static");
549 if (DECL_SAVED_TREE (t
) && !dump_flag (di
, TDF_SLIM
, t
))
550 dump_child ("body", DECL_SAVED_TREE (t
));
554 if (TREE_INT_CST_HIGH (t
))
555 dump_int (di
, "high", TREE_INT_CST_HIGH (t
));
556 dump_int (di
, "low", TREE_INT_CST_LOW (t
));
560 fprintf (di
->stream
, "strg: %-7s ", TREE_STRING_POINTER (t
));
561 dump_int (di
, "lngt", TREE_STRING_LENGTH (t
));
565 dump_real (di
, "valu", TREE_REAL_CST_PTR (t
));
569 dump_fixed (di
, "valu", TREE_FIXED_CST_PTR (t
));
575 case CLEANUP_POINT_EXPR
:
579 /* These nodes are unary, but do not have code class `1'. */
580 dump_child ("op 0", TREE_OPERAND (t
, 0));
583 case TRUTH_ANDIF_EXPR
:
584 case TRUTH_ORIF_EXPR
:
588 case PREDECREMENT_EXPR
:
589 case PREINCREMENT_EXPR
:
590 case POSTDECREMENT_EXPR
:
591 case POSTINCREMENT_EXPR
:
592 /* These nodes are binary, but do not have code class `2'. */
593 dump_child ("op 0", TREE_OPERAND (t
, 0));
594 dump_child ("op 1", TREE_OPERAND (t
, 1));
599 dump_child ("op 0", TREE_OPERAND (t
, 0));
600 dump_child ("op 1", TREE_OPERAND (t
, 1));
601 dump_child ("op 2", TREE_OPERAND (t
, 2));
605 case ARRAY_RANGE_REF
:
606 dump_child ("op 0", TREE_OPERAND (t
, 0));
607 dump_child ("op 1", TREE_OPERAND (t
, 1));
608 dump_child ("op 2", TREE_OPERAND (t
, 2));
609 dump_child ("op 3", TREE_OPERAND (t
, 3));
613 dump_child ("op 0", TREE_OPERAND (t
, 0));
614 dump_child ("op 1", TREE_OPERAND (t
, 1));
615 dump_child ("op 2", TREE_OPERAND (t
, 2));
618 case TRY_FINALLY_EXPR
:
619 dump_child ("op 0", TREE_OPERAND (t
, 0));
620 dump_child ("op 1", TREE_OPERAND (t
, 1));
627 call_expr_arg_iterator iter
;
628 dump_child ("fn", CALL_EXPR_FN (t
));
629 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, t
)
632 sprintf (buffer
, "%u", i
);
633 dump_child (buffer
, arg
);
641 unsigned HOST_WIDE_INT cnt
;
643 dump_int (di
, "lngt", VEC_length (constructor_elt
,
644 CONSTRUCTOR_ELTS (t
)));
645 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), cnt
, index
, value
)
647 dump_child ("idx", index
);
648 dump_child ("val", value
);
654 dump_child ("vars", TREE_OPERAND (t
, 0));
655 dump_child ("body", TREE_OPERAND (t
, 1));
659 dump_child ("body", TREE_OPERAND (t
, 0));
663 dump_child ("cond", TREE_OPERAND (t
, 0));
667 dump_child ("expr", TREE_OPERAND (t
, 0));
671 dump_child ("decl", TREE_OPERAND (t
, 0));
672 dump_child ("init", TREE_OPERAND (t
, 1));
673 dump_child ("clnp", TREE_OPERAND (t
, 2));
674 /* There really are two possible places the initializer can be.
675 After RTL expansion, the second operand is moved to the
676 position of the fourth operand, and the second operand
678 dump_child ("init", TREE_OPERAND (t
, 3));
681 case CASE_LABEL_EXPR
:
682 dump_child ("name", CASE_LABEL (t
));
685 dump_child ("low ", CASE_LOW (t
));
687 dump_child ("high", CASE_HIGH (t
));
691 dump_child ("name", TREE_OPERAND (t
,0));
694 dump_child ("labl", TREE_OPERAND (t
, 0));
697 dump_child ("cond", TREE_OPERAND (t
, 0));
698 dump_child ("body", TREE_OPERAND (t
, 1));
699 if (TREE_OPERAND (t
, 2))
701 dump_child ("labl", TREE_OPERAND (t
,2));
707 fprintf (di
->stream
, "%s\n", omp_clause_code_name
[OMP_CLAUSE_CODE (t
)]);
708 for (i
= 0; i
< omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)]; i
++)
709 dump_child ("op: ", OMP_CLAUSE_OPERAND (t
, i
));
713 /* There are no additional fields to print. */
718 if (dump_flag (di
, TDF_ADDRESS
, NULL
))
719 dump_pointer (di
, "addr", (void *)t
);
721 /* Terminate the line. */
722 fprintf (di
->stream
, "\n");
725 /* Return nonzero if FLAG has been specified for the dump, and NODE
726 is not the root node of the dump. */
728 int dump_flag (dump_info_p di
, int flag
, const_tree node
)
730 return (di
->flags
& flag
) && (node
!= di
->node
);
733 /* Dump T, and all its children, on STREAM. */
736 dump_node (const_tree t
, int flags
, FILE *stream
)
740 dump_queue_p next_dq
;
742 /* Initialize the dump-information structure. */
751 di
.nodes
= splay_tree_new (splay_tree_compare_pointers
, 0,
752 (splay_tree_delete_value_fn
) &free
);
754 /* Queue up the first node. */
755 queue (&di
, t
, DUMP_NONE
);
757 /* Until the queue is empty, keep dumping nodes. */
759 dequeue_and_dump (&di
);
762 for (dq
= di
.free_list
; dq
; dq
= next_dq
)
767 splay_tree_delete (di
.nodes
);
771 /* Table of tree dump switches. This must be consistent with the
772 tree_dump_index enumeration in tree-pass.h. */
773 static struct dump_file_info dump_files
[TDI_end
] =
775 {NULL
, NULL
, NULL
, 0, 0, 0},
776 {".cgraph", "ipa-cgraph", NULL
, TDF_IPA
, 0, 0},
777 {".tu", "translation-unit", NULL
, TDF_TREE
, 0, 1},
778 {".class", "class-hierarchy", NULL
, TDF_TREE
, 0, 2},
779 {".original", "tree-original", NULL
, TDF_TREE
, 0, 3},
780 {".gimple", "tree-gimple", NULL
, TDF_TREE
, 0, 4},
781 {".nested", "tree-nested", NULL
, TDF_TREE
, 0, 5},
782 {".vcg", "tree-vcg", NULL
, TDF_TREE
, 0, 6},
783 {".ads", "ada-spec", NULL
, 0, 0, 7},
784 #define FIRST_AUTO_NUMBERED_DUMP 8
786 {NULL
, "tree-all", NULL
, TDF_TREE
, 0, 0},
787 {NULL
, "rtl-all", NULL
, TDF_RTL
, 0, 0},
788 {NULL
, "ipa-all", NULL
, TDF_IPA
, 0, 0},
791 /* Dynamically registered tree dump files and switches. */
792 static struct dump_file_info
*extra_dump_files
;
793 static size_t extra_dump_files_in_use
;
794 static size_t extra_dump_files_alloced
;
796 /* Define a name->number mapping for a dump flag value. */
797 struct dump_option_value_info
799 const char *const name
; /* the name of the value */
800 const int value
; /* the value of the name */
803 /* Table of dump options. This must be consistent with the TDF_* flags
805 static const struct dump_option_value_info dump_options
[] =
807 {"address", TDF_ADDRESS
},
808 {"asmname", TDF_ASMNAME
},
811 {"graph", TDF_GRAPH
},
812 {"details", TDF_DETAILS
},
813 {"cselib", TDF_CSELIB
},
814 {"stats", TDF_STATS
},
815 {"blocks", TDF_BLOCKS
},
817 {"lineno", TDF_LINENO
},
819 {"stmtaddr", TDF_STMTADDR
},
820 {"memsyms", TDF_MEMSYMS
},
821 {"verbose", TDF_VERBOSE
},
823 {"alias", TDF_ALIAS
},
824 {"nouid", TDF_NOUID
},
825 {"enumerate_locals", TDF_ENUMERATE_LOCALS
},
827 {"all", ~(TDF_RAW
| TDF_SLIM
| TDF_LINENO
| TDF_TREE
| TDF_RTL
| TDF_IPA
828 | TDF_STMTADDR
| TDF_GRAPH
| TDF_DIAGNOSTIC
| TDF_VERBOSE
829 | TDF_RHS_ONLY
| TDF_NOUID
| TDF_ENUMERATE_LOCALS
| TDF_SCEV
)},
834 dump_register (const char *suffix
, const char *swtch
, const char *glob
,
837 static int next_dump
= FIRST_AUTO_NUMBERED_DUMP
;
838 int num
= next_dump
++;
840 size_t count
= extra_dump_files_in_use
++;
842 if (count
>= extra_dump_files_alloced
)
844 if (extra_dump_files_alloced
== 0)
845 extra_dump_files_alloced
= 32;
847 extra_dump_files_alloced
*= 2;
848 extra_dump_files
= XRESIZEVEC (struct dump_file_info
,
850 extra_dump_files_alloced
);
853 memset (&extra_dump_files
[count
], 0, sizeof (struct dump_file_info
));
854 extra_dump_files
[count
].suffix
= suffix
;
855 extra_dump_files
[count
].swtch
= swtch
;
856 extra_dump_files
[count
].glob
= glob
;
857 extra_dump_files
[count
].flags
= flags
;
858 extra_dump_files
[count
].num
= num
;
860 return count
+ TDI_end
;
864 /* Return the dump_file_info for the given phase. */
866 struct dump_file_info
*
867 get_dump_file_info (int phase
)
870 return &dump_files
[phase
];
871 else if ((size_t) (phase
- TDI_end
) >= extra_dump_files_in_use
)
874 return extra_dump_files
+ (phase
- TDI_end
);
878 /* Return the name of the dump file for the given phase.
879 If the dump is not enabled, returns NULL. */
882 get_dump_file_name (int phase
)
885 struct dump_file_info
*dfi
;
887 if (phase
== TDI_none
)
890 dfi
= get_dump_file_info (phase
);
899 if (dfi
->flags
& TDF_TREE
)
901 else if (dfi
->flags
& TDF_IPA
)
906 if (snprintf (dump_id
, sizeof (dump_id
), ".%03d%c", dfi
->num
, suffix
) < 0)
910 return concat (dump_base_name
, dump_id
, dfi
->suffix
, NULL
);
913 /* Begin a tree dump for PHASE. Stores any user supplied flag in
914 *FLAG_PTR and returns a stream to write to. If the dump is not
915 enabled, returns NULL.
916 Multiple calls will reopen and append to the dump file. */
919 dump_begin (int phase
, int *flag_ptr
)
922 struct dump_file_info
*dfi
;
925 if (phase
== TDI_none
|| !dump_enabled_p (phase
))
928 name
= get_dump_file_name (phase
);
929 dfi
= get_dump_file_info (phase
);
930 stream
= fopen (name
, dfi
->state
< 0 ? "w" : "a");
932 error ("could not open dump file %qs: %m", name
);
938 *flag_ptr
= dfi
->flags
;
943 /* Returns nonzero if tree dump PHASE is enabled. If PHASE is
944 TDI_tree_all, return nonzero if any dump is enabled. */
947 dump_enabled_p (int phase
)
949 if (phase
== TDI_tree_all
)
952 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
953 if (dump_files
[i
].state
)
955 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
956 if (extra_dump_files
[i
].state
)
962 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
967 /* Returns nonzero if tree dump PHASE has been initialized. */
970 dump_initialized_p (int phase
)
972 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
973 return dfi
->state
> 0;
976 /* Returns the switch name of PHASE. */
979 dump_flag_name (int phase
)
981 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
985 /* Finish a tree dump for PHASE. STREAM is the stream created by
989 dump_end (int phase ATTRIBUTE_UNUSED
, FILE *stream
)
994 /* Enable all tree dumps. Return number of enabled tree dumps. */
997 dump_enable_all (int flags
)
999 int ir_dump_type
= (flags
& (TDF_TREE
| TDF_RTL
| TDF_IPA
));
1003 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
1004 if ((dump_files
[i
].flags
& ir_dump_type
))
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
))
1014 extra_dump_files
[i
].state
= -1;
1015 extra_dump_files
[i
].flags
|= flags
;
1022 /* Parse ARG as a dump switch. Return nonzero if it is, and store the
1023 relevant details in the dump_files array. */
1026 dump_switch_p_1 (const char *arg
, struct dump_file_info
*dfi
, bool doglob
)
1028 const char *option_value
;
1032 if (doglob
&& !dfi
->glob
)
1035 option_value
= skip_leading_substring (arg
, doglob
? dfi
->glob
: dfi
->swtch
);
1039 if (*option_value
&& *option_value
!= '-')
1047 const struct dump_option_value_info
*option_ptr
;
1048 const char *end_ptr
;
1053 end_ptr
= strchr (ptr
, '-');
1055 end_ptr
= ptr
+ strlen (ptr
);
1056 length
= end_ptr
- ptr
;
1058 for (option_ptr
= dump_options
; option_ptr
->name
; option_ptr
++)
1059 if (strlen (option_ptr
->name
) == length
1060 && !memcmp (option_ptr
->name
, ptr
, length
))
1062 flags
|= option_ptr
->value
;
1065 warning (0, "ignoring unknown option %q.*s in %<-fdump-%s%>",
1066 length
, ptr
, dfi
->swtch
);
1072 dfi
->flags
|= flags
;
1074 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
1076 if (dfi
->suffix
== NULL
)
1077 dump_enable_all (dfi
->flags
);
1083 dump_switch_p (const char *arg
)
1088 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1089 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], false);
1091 /* Don't glob if we got a hit already */
1093 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
1094 any
|= dump_switch_p_1 (arg
, &dump_files
[i
], true);
1096 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1097 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], false);
1100 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
1101 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
], true);
1107 /* Dump FUNCTION_DECL FN as tree dump PHASE. */
1110 dump_function (int phase
, tree fn
)
1115 stream
= dump_begin (phase
, &flags
);
1118 dump_function_to_file (fn
, stream
, flags
);
1119 dump_end (phase
, stream
);
1124 enable_rtl_dump_file (void)
1126 return dump_enable_all (TDF_RTL
| TDF_DETAILS
| TDF_BLOCKS
) > 0;