1 /* Tree-dumping functionality for intermediate representation.
2 Copyright (C) 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
3 Written by Mark Mitchell <mark@codesourcery.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
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 static unsigned int queue (dump_info_p
, tree
, int);
36 static void dump_index (dump_info_p
, unsigned int);
37 static void dequeue_and_dump (dump_info_p
);
38 static void dump_new_line (dump_info_p
);
39 static void dump_maybe_newline (dump_info_p
);
40 static void dump_string_field (dump_info_p
, const char *, const char *);
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
) *accesses
= BINFO_BASE_ACCESSES (t
);
258 dump_child ("type", BINFO_TYPE (t
));
260 if (BINFO_VIRTUAL_P (t
))
261 dump_string (di
, "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 (di
, 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
));
325 queue_and_dump_type (di
, t
);
326 dump_child ("scpe", DECL_CONTEXT (t
));
327 /* And a source position. */
328 xloc
= expand_location (DECL_SOURCE_LOCATION (t
));
331 const char *filename
= strrchr (xloc
.file
, '/');
333 filename
= xloc
.file
;
335 /* Skip the slash. */
338 dump_maybe_newline (di
);
339 fprintf (di
->stream
, "srcp: %s:%-6d ", filename
,
341 di
->column
+= 6 + strlen (filename
) + 8;
343 /* And any declaration can be compiler-generated. */
344 if (DECL_ARTIFICIAL (t
))
345 dump_string (di
, "artificial");
346 if (TREE_CHAIN (t
) && !dump_flag (di
, TDF_SLIM
, NULL
))
347 dump_child ("chan", TREE_CHAIN (t
));
349 else if (code_class
== tcc_type
)
351 /* All types have qualifiers. */
352 int quals
= lang_hooks
.tree_dump
.type_quals (t
);
354 if (quals
!= TYPE_UNQUALIFIED
)
356 fprintf (di
->stream
, "qual: %c%c%c ",
357 (quals
& TYPE_QUAL_CONST
) ? 'c' : ' ',
358 (quals
& TYPE_QUAL_VOLATILE
) ? 'v' : ' ',
359 (quals
& TYPE_QUAL_RESTRICT
) ? 'r' : ' ');
363 /* All types have associated declarations. */
364 dump_child ("name", TYPE_NAME (t
));
366 /* All types have a main variant. */
367 if (TYPE_MAIN_VARIANT (t
) != t
)
368 dump_child ("unql", TYPE_MAIN_VARIANT (t
));
371 dump_child ("size", TYPE_SIZE (t
));
373 /* All types have alignments. */
374 dump_int (di
, "algn", TYPE_ALIGN (t
));
376 else if (code_class
== tcc_constant
)
377 /* All constants can have types. */
378 queue_and_dump_type (di
, t
);
380 /* Give the language-specific code a chance to print something. If
381 it's completely taken care of things, don't bother printing
382 anything more ourselves. */
383 if (lang_hooks
.tree_dump
.dump_tree (di
, t
))
386 /* Now handle the various kinds of nodes. */
391 case IDENTIFIER_NODE
:
392 dump_string_field (di
, "strg", IDENTIFIER_POINTER (t
));
393 dump_int (di
, "lngt", IDENTIFIER_LENGTH (t
));
397 dump_child ("purp", TREE_PURPOSE (t
));
398 dump_child ("valu", TREE_VALUE (t
));
399 dump_child ("chan", TREE_CHAIN (t
));
404 tree_stmt_iterator it
;
405 for (i
= 0, it
= tsi_start (t
); !tsi_end_p (it
); tsi_next (&it
), i
++)
408 sprintf (buffer
, "%u", i
);
409 dump_child (buffer
, tsi_stmt (it
));
415 dump_int (di
, "lngt", TREE_VEC_LENGTH (t
));
416 for (i
= 0; i
< TREE_VEC_LENGTH (t
); ++i
)
419 sprintf (buffer
, "%u", i
);
420 dump_child (buffer
, TREE_VEC_ELT (t
, i
));
426 dump_int (di
, "prec", TYPE_PRECISION (t
));
427 if (TYPE_UNSIGNED (t
))
428 dump_string (di
, "unsigned");
429 dump_child ("min", TYPE_MIN_VALUE (t
));
430 dump_child ("max", TYPE_MAX_VALUE (t
));
432 if (code
== ENUMERAL_TYPE
)
433 dump_child ("csts", TYPE_VALUES (t
));
437 dump_int (di
, "prec", TYPE_PRECISION (t
));
441 dump_child ("ptd", TREE_TYPE (t
));
445 dump_child ("refd", TREE_TYPE (t
));
449 dump_child ("clas", TYPE_METHOD_BASETYPE (t
));
453 dump_child ("retn", TREE_TYPE (t
));
454 dump_child ("prms", TYPE_ARG_TYPES (t
));
458 dump_child ("elts", TREE_TYPE (t
));
459 dump_child ("domn", TYPE_DOMAIN (t
));
464 if (TREE_CODE (t
) == RECORD_TYPE
)
465 dump_string (di
, "struct");
467 dump_string (di
, "union");
469 dump_child ("flds", TYPE_FIELDS (t
));
470 dump_child ("fncs", TYPE_METHODS (t
));
471 queue_and_dump_index (di
, "binf", TYPE_BINFO (t
),
476 dump_child ("cnst", DECL_INITIAL (t
));
483 if (TREE_CODE (t
) == PARM_DECL
)
484 dump_child ("argt", DECL_ARG_TYPE (t
));
486 dump_child ("init", DECL_INITIAL (t
));
487 dump_child ("size", DECL_SIZE (t
));
488 dump_int (di
, "algn", DECL_ALIGN (t
));
490 if (TREE_CODE (t
) == FIELD_DECL
)
492 if (DECL_FIELD_OFFSET (t
))
493 dump_child ("bpos", bit_position (t
));
495 else if (TREE_CODE (t
) == VAR_DECL
496 || TREE_CODE (t
) == PARM_DECL
)
498 dump_int (di
, "used", TREE_USED (t
));
499 if (DECL_REGISTER (t
))
500 dump_string (di
, "register");
505 dump_child ("args", DECL_ARGUMENTS (t
));
506 if (DECL_EXTERNAL (t
))
507 dump_string (di
, "undefined");
509 dump_string (di
, "extern");
511 dump_string (di
, "static");
512 if (DECL_LANG_SPECIFIC (t
) && !dump_flag (di
, TDF_SLIM
, t
))
513 dump_child ("body", DECL_SAVED_TREE (t
));
517 if (TREE_INT_CST_HIGH (t
))
518 dump_int (di
, "high", TREE_INT_CST_HIGH (t
));
519 dump_int (di
, "low", TREE_INT_CST_LOW (t
));
523 fprintf (di
->stream
, "strg: %-7s ", TREE_STRING_POINTER (t
));
524 dump_int (di
, "lngt", TREE_STRING_LENGTH (t
));
530 case ALIGN_INDIRECT_REF
:
531 case MISALIGNED_INDIRECT_REF
:
532 case CLEANUP_POINT_EXPR
:
536 /* These nodes are unary, but do not have code class `1'. */
537 dump_child ("op 0", TREE_OPERAND (t
, 0));
540 case TRUTH_ANDIF_EXPR
:
541 case TRUTH_ORIF_EXPR
:
545 case PREDECREMENT_EXPR
:
546 case PREINCREMENT_EXPR
:
547 case POSTDECREMENT_EXPR
:
548 case POSTINCREMENT_EXPR
:
549 /* These nodes are binary, but do not have code class `2'. */
550 dump_child ("op 0", TREE_OPERAND (t
, 0));
551 dump_child ("op 1", TREE_OPERAND (t
, 1));
555 dump_child ("op 0", TREE_OPERAND (t
, 0));
556 dump_child ("op 1", TREE_OPERAND (t
, 1));
557 dump_child ("op 2", TREE_OPERAND (t
, 2));
561 case ARRAY_RANGE_REF
:
562 dump_child ("op 0", TREE_OPERAND (t
, 0));
563 dump_child ("op 1", TREE_OPERAND (t
, 1));
564 dump_child ("op 2", TREE_OPERAND (t
, 2));
565 dump_child ("op 3", TREE_OPERAND (t
, 3));
569 dump_child ("op 0", TREE_OPERAND (t
, 0));
570 dump_child ("op 1", TREE_OPERAND (t
, 1));
571 dump_child ("op 2", TREE_OPERAND (t
, 2));
575 dump_child ("fn", TREE_OPERAND (t
, 0));
576 dump_child ("args", TREE_OPERAND (t
, 1));
580 dump_child ("elts", CONSTRUCTOR_ELTS (t
));
584 dump_child ("vars", TREE_OPERAND (t
, 0));
585 dump_child ("body", TREE_OPERAND (t
, 1));
589 dump_child ("body", TREE_OPERAND (t
, 0));
593 dump_child ("cond", TREE_OPERAND (t
, 0));
597 dump_child ("decl", TREE_OPERAND (t
, 0));
598 dump_child ("init", TREE_OPERAND (t
, 1));
599 dump_child ("clnp", TREE_OPERAND (t
, 2));
600 /* There really are two possible places the initializer can be.
601 After RTL expansion, the second operand is moved to the
602 position of the fourth operand, and the second operand
604 dump_child ("init", TREE_OPERAND (t
, 3));
608 /* There are no additional fields to print. */
613 if (dump_flag (di
, TDF_ADDRESS
, NULL
))
614 dump_pointer (di
, "addr", (void *)t
);
616 /* Terminate the line. */
617 fprintf (di
->stream
, "\n");
620 /* Return nonzero if FLAG has been specified for the dump, and NODE
621 is not the root node of the dump. */
623 int dump_flag (dump_info_p di
, int flag
, tree node
)
625 return (di
->flags
& flag
) && (node
!= di
->node
);
628 /* Dump T, and all its children, on STREAM. */
631 dump_node (tree t
, int flags
, FILE *stream
)
635 dump_queue_p next_dq
;
637 /* Initialize the dump-information structure. */
646 di
.nodes
= splay_tree_new (splay_tree_compare_pointers
, 0,
647 (splay_tree_delete_value_fn
) &free
);
649 /* Queue up the first node. */
650 queue (&di
, t
, DUMP_NONE
);
652 /* Until the queue is empty, keep dumping nodes. */
654 dequeue_and_dump (&di
);
657 for (dq
= di
.free_list
; dq
; dq
= next_dq
)
662 splay_tree_delete (di
.nodes
);
666 /* Table of tree dump switches. This must be consistent with the
667 TREE_DUMP_INDEX enumeration in tree.h */
668 static struct dump_file_info dump_files
[TDI_end
] =
670 {NULL
, NULL
, 0, 0, 0, 0},
671 {".tu", "translation-unit", TDF_TREE
, 0, 0, 0},
672 {".class", "class-hierarchy", TDF_TREE
, 0, 1, 0},
673 {".original", "tree-original", TDF_TREE
, 0, 2, 0},
674 {".generic", "tree-generic", TDF_TREE
, 0, 3, 0},
675 {".nested", "tree-nested", TDF_TREE
, 0, 4, 0},
676 {".inlined", "tree-inlined", TDF_TREE
, 0, 5, 0},
677 {".vcg", "tree-vcg", TDF_TREE
, 0, 6, 0},
678 {NULL
, "tree-all", TDF_TREE
, 0, 0, 0},
679 {NULL
, "rtl-all", TDF_RTL
, 0, 0, 0},
680 {NULL
, "ipa-all", TDF_IPA
, 0, 0, 0},
682 { ".cgraph", "ipa-cgraph", TDF_IPA
, 0, 1, 0},
684 { ".sibling", "rtl-sibling", TDF_RTL
, 0, 1, 'i'},
685 { ".eh", "rtl-eh", TDF_RTL
, 0, 2, 'h'},
686 { ".jump", "rtl-jump", TDF_RTL
, 0, 3, 'j'},
687 { ".cse", "rtl-cse", TDF_RTL
, 0, 4, 's'},
688 { ".gcse", "rtl-gcse", TDF_RTL
, 0, 5, 'G'},
689 { ".loop", "rtl-loop", TDF_RTL
, 0, 6, 'L'},
690 { ".bypass", "rtl-bypass", TDF_RTL
, 0, 7, 'G'},
691 { ".cfg", "rtl-cfg", TDF_RTL
, 0, 8, 'f'},
692 { ".bp", "rtl-bp", TDF_RTL
, 0, 9, 'b'},
693 { ".vpt", "rtl-vpt", TDF_RTL
, 0, 10, 'V'},
694 { ".ce1", "rtl-ce1", TDF_RTL
, 0, 11, 'C'},
695 { ".tracer", "rtl-tracer", TDF_RTL
, 0, 12, 'T'},
696 { ".loop2", "rtl-loop2", TDF_RTL
, 0, 13, 'L'},
697 { ".web", "rtl-web", TDF_RTL
, 0, 14, 'Z'},
698 { ".cse2", "rtl-cse2", TDF_RTL
, 0, 15, 't'},
699 { ".life", "rtl-life", TDF_RTL
, 0, 16, 'f'},
700 { ".combine", "rtl-combine", TDF_RTL
, 0, 17, 'c'},
701 { ".ce2", "rtl-ce2", TDF_RTL
, 0, 18, 'C'},
702 { ".regmove", "rtl-regmove", TDF_RTL
, 0, 19, 'N'},
703 { ".sms", "rtl-sms", TDF_RTL
, 0, 20, 'm'},
704 { ".sched", "rtl-sched", TDF_RTL
, 0, 21, 'S'},
705 { ".lreg", "rtl-lreg", TDF_RTL
, 0, 22, 'l'},
706 { ".greg", "rtl-greg", TDF_RTL
, 0, 23, 'g'},
707 { ".postreload", "rtl-postreload", TDF_RTL
, 0, 24, 'o'},
708 { ".gcse2", "rtl-gcse2", TDF_RTL
, 0, 25, 'J'},
709 { ".flow2", "rtl-flow2", TDF_RTL
, 0, 26, 'w'},
710 { ".peephole2", "rtl-peephole2", TDF_RTL
, 0, 27, 'z'},
711 { ".ce3", "rtl-ce3", TDF_RTL
, 0, 28, 'E'},
712 { ".rnreg", "rtl-rnreg", TDF_RTL
, 0, 29, 'n'},
713 { ".bbro", "rtl-bbro", TDF_RTL
, 0, 30, 'B'},
714 { ".btl", "rtl-btl", TDF_RTL
, 0, 31, 'd'},
715 { ".sched2", "rtl-sched2", TDF_RTL
, 0, 32, 'R'},
716 { ".stack", "rtl-stack", TDF_RTL
, 0, 33, 'k'},
717 { ".vartrack", "rtl-vartrack", TDF_RTL
, 0, 34, 'V'},
718 { ".mach", "rtl-mach", TDF_RTL
, 0, 35, 'M'},
719 { ".dbr", "rtl-dbr", TDF_RTL
, 0, 36, 'd'}
722 /* Dynamically registered tree dump files and switches. */
723 static struct dump_file_info
*extra_dump_files
;
724 static size_t extra_dump_files_in_use
;
725 static size_t extra_dump_files_alloced
;
727 /* Define a name->number mapping for a dump flag value. */
728 struct dump_option_value_info
730 const char *const name
; /* the name of the value */
731 const int value
; /* the value of the name */
734 /* Table of dump options. This must be consistent with the TDF_* flags
736 static const struct dump_option_value_info dump_options
[] =
738 {"address", TDF_ADDRESS
},
741 {"details", TDF_DETAILS
},
742 {"stats", TDF_STATS
},
743 {"blocks", TDF_BLOCKS
},
745 {"lineno", TDF_LINENO
},
747 {"all", ~(TDF_RAW
| TDF_SLIM
| TDF_LINENO
| TDF_TREE
| TDF_RTL
| TDF_IPA
)},
752 dump_register (const char *suffix
, const char *swtch
, int flags
,
753 unsigned int num
, int letter
)
755 size_t this = extra_dump_files_in_use
++;
757 if (this >= extra_dump_files_alloced
)
759 if (extra_dump_files_alloced
== 0)
760 extra_dump_files_alloced
= 32;
762 extra_dump_files_alloced
*= 2;
763 extra_dump_files
= xrealloc (extra_dump_files
,
764 sizeof (struct dump_file_info
)
765 * extra_dump_files_alloced
);
768 memset (&extra_dump_files
[this], 0, sizeof (struct dump_file_info
));
769 extra_dump_files
[this].suffix
= suffix
;
770 extra_dump_files
[this].swtch
= swtch
;
771 extra_dump_files
[this].flags
= flags
;
772 extra_dump_files
[this].num
= num
;
773 extra_dump_files
[this].letter
= letter
;
775 return this + TDI_end
;
779 /* Return the dump_file_info for the given phase. */
781 struct dump_file_info
*
782 get_dump_file_info (enum tree_dump_index phase
)
785 return &dump_files
[phase
];
786 else if (phase
- TDI_end
>= extra_dump_files_in_use
)
789 return extra_dump_files
+ (phase
- TDI_end
);
793 /* Return the name of the dump file for the given phase.
794 If the dump is not enabled, returns NULL. */
797 get_dump_file_name (enum tree_dump_index phase
)
800 struct dump_file_info
*dfi
;
802 if (phase
== TDI_none
)
805 dfi
= get_dump_file_info (phase
);
813 const char *template;
814 if (dfi
->flags
& TDF_TREE
)
816 else if (dfi
->flags
& TDF_IPA
)
821 if (snprintf (dump_id
, sizeof (dump_id
), template, dfi
->num
) < 0)
825 return concat (dump_base_name
, dump_id
, dfi
->suffix
, NULL
);
828 /* Begin a tree dump for PHASE. Stores any user supplied flag in
829 *FLAG_PTR and returns a stream to write to. If the dump is not
830 enabled, returns NULL.
831 Multiple calls will reopen and append to the dump file. */
834 dump_begin (enum tree_dump_index phase
, int *flag_ptr
)
837 struct dump_file_info
*dfi
;
840 if (phase
== TDI_none
|| !dump_enabled_p (phase
))
843 name
= get_dump_file_name (phase
);
844 dfi
= get_dump_file_info (phase
);
845 stream
= fopen (name
, dfi
->state
< 0 ? "w" : "a");
847 error ("could not open dump file %qs: %s", name
, strerror (errno
));
853 *flag_ptr
= dfi
->flags
;
858 /* Returns nonzero if tree dump PHASE is enabled. */
861 dump_enabled_p (enum tree_dump_index phase
)
863 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
867 /* Returns nonzero if tree dump PHASE has been initialized. */
870 dump_initialized_p (enum tree_dump_index phase
)
872 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
873 return dfi
->state
> 0;
876 /* Returns the switch name of PHASE. */
879 dump_flag_name (enum tree_dump_index phase
)
881 struct dump_file_info
*dfi
= get_dump_file_info (phase
);
885 /* Finish a tree dump for PHASE. STREAM is the stream created by
889 dump_end (enum tree_dump_index phase ATTRIBUTE_UNUSED
, FILE *stream
)
894 /* Enable all tree dumps. Return number of enabled tree dumps. */
897 dump_enable_all (int flags
, int letter
)
902 for (i
= TDI_none
+ 1; i
< (size_t) TDI_end
; i
++)
903 if ((dump_files
[i
].flags
& flags
)
904 && (letter
== 0 || letter
== dump_files
[i
].letter
))
906 dump_files
[i
].state
= -1;
907 dump_files
[i
].flags
= flags
;
911 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
912 if ((extra_dump_files
[i
].flags
& flags
)
913 && (letter
== 0 || letter
== extra_dump_files
[i
].letter
))
915 extra_dump_files
[i
].state
= -1;
916 extra_dump_files
[i
].flags
= flags
;
923 /* Parse ARG as a dump switch. Return nonzero if it is, and store the
924 relevant details in the dump_files array. */
927 dump_switch_p_1 (const char *arg
, struct dump_file_info
*dfi
)
929 const char *option_value
;
933 option_value
= skip_leading_substring (arg
, dfi
->swtch
);
942 const struct dump_option_value_info
*option_ptr
;
948 end_ptr
= strchr (ptr
, '-');
950 end_ptr
= ptr
+ strlen (ptr
);
951 length
= end_ptr
- ptr
;
953 for (option_ptr
= dump_options
; option_ptr
->name
; option_ptr
++)
954 if (strlen (option_ptr
->name
) == length
955 && !memcmp (option_ptr
->name
, ptr
, length
))
957 flags
|= option_ptr
->value
;
960 warning ("ignoring unknown option %q.*s in %<-fdump-%s%>",
961 length
, ptr
, dfi
->swtch
);
969 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
971 if (dfi
->suffix
== NULL
)
972 dump_enable_all (dfi
->flags
, 0);
978 dump_switch_p (const char *arg
)
983 for (i
= TDI_none
+ 1; i
!= TDI_end
; i
++)
984 any
|= dump_switch_p_1 (arg
, &dump_files
[i
]);
986 for (i
= 0; i
< extra_dump_files_in_use
; i
++)
987 any
|= dump_switch_p_1 (arg
, &extra_dump_files
[i
]);
992 /* Dump FUNCTION_DECL FN as tree dump PHASE. */
995 dump_function (enum tree_dump_index phase
, tree fn
)
1000 stream
= dump_begin (phase
, &flags
);
1003 dump_function_to_file (fn
, stream
, flags
);
1004 dump_end (phase
, stream
);
1009 enable_rtl_dump_file (int letter
)
1014 return dump_enable_all (TDF_RTL
, letter
) > 0;