]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-dump.c
2008-03-19 Richard Guenther <rguenther@suse.de>
[thirdparty/gcc.git] / gcc / tree-dump.c
CommitLineData
74338ff6 1/* Tree-dumping functionality for intermediate representation.
de9ebaea 2 Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008
2107381f 3 Free Software Foundation, Inc.
74338ff6 4 Written by Mark Mitchell <mark@codesourcery.com>
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
8c4c00c1 10Software Foundation; either version 3, or (at your option) any later
74338ff6 11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
8c4c00c1 19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
74338ff6 21
22#include "config.h"
23#include "system.h"
805e22b2 24#include "coretypes.h"
25#include "tm.h"
74338ff6 26#include "tree.h"
74338ff6 27#include "splay-tree.h"
28#include "diagnostic.h"
29#include "toplev.h"
3119c950 30#include "tree-dump.h"
0f9005dd 31#include "tree-pass.h"
74338ff6 32#include "langhooks.h"
e8c5dd3c 33#include "tree-iterator.h"
905582c1 34#include "real.h"
06f0b99c 35#include "fixed-value.h"
74338ff6 36
9f627b1a 37static unsigned int queue (dump_info_p, const_tree, int);
d598ad0d 38static void dump_index (dump_info_p, unsigned int);
39static void dequeue_and_dump (dump_info_p);
40static void dump_new_line (dump_info_p);
41static void dump_maybe_newline (dump_info_p);
0f9005dd 42static int dump_enable_all (int, int);
74338ff6 43
44/* Add T to the end of the queue of nodes to dump. Returns the index
45 assigned to T. */
46
47static unsigned int
9f627b1a 48queue (dump_info_p di, const_tree t, int flags)
74338ff6 49{
50 dump_queue_p dq;
51 dump_node_info_p dni;
52 unsigned int index;
53
54 /* Assign the next available index to T. */
55 index = ++di->index;
56
57 /* Obtain a new queue node. */
58 if (di->free_list)
59 {
60 dq = di->free_list;
61 di->free_list = dq->next;
62 }
63 else
4c36ffe6 64 dq = XNEW (struct dump_queue);
74338ff6 65
66 /* Create a new entry in the splay-tree. */
4c36ffe6 67 dni = XNEW (struct dump_node_info);
74338ff6 68 dni->index = index;
69 dni->binfo_p = ((flags & DUMP_BINFO) != 0);
40570cc2 70 dq->node = splay_tree_insert (di->nodes, (splay_tree_key) t,
74338ff6 71 (splay_tree_value) dni);
72
73 /* Add it to the end of the queue. */
74 dq->next = 0;
75 if (!di->queue_end)
76 di->queue = dq;
77 else
78 di->queue_end->next = dq;
79 di->queue_end = dq;
80
81 /* Return the index. */
82 return index;
83}
84
85static void
d598ad0d 86dump_index (dump_info_p di, unsigned int index)
74338ff6 87{
88 fprintf (di->stream, "@%-6u ", index);
89 di->column += 8;
90}
91
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. */
95
96void
9f627b1a 97queue_and_dump_index (dump_info_p di, const char *field, const_tree t, int flags)
74338ff6 98{
99 unsigned int index;
100 splay_tree_node n;
101
102 /* If there's no node, just return. This makes for fewer checks in
103 our callers. */
104 if (!t)
105 return;
106
107 /* See if we've already queued or dumped this node. */
108 n = splay_tree_lookup (di->nodes, (splay_tree_key) t);
109 if (n)
110 index = ((dump_node_info_p) n->value)->index;
111 else
112 /* If we haven't, add it to the queue. */
113 index = queue (di, t, flags);
114
115 /* Print the index of the node. */
116 dump_maybe_newline (di);
117 fprintf (di->stream, "%-4s: ", field);
118 di->column += 6;
119 dump_index (di, index);
120}
121
122/* Dump the type of T. */
123
124void
9f627b1a 125queue_and_dump_type (dump_info_p di, const_tree t)
74338ff6 126{
127 queue_and_dump_index (di, "type", TREE_TYPE (t), DUMP_NONE);
128}
129
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. */
134
135/* Insert a new line in the dump output, and indent to an appropriate
136 place to start printing more fields. */
137
138static void
d598ad0d 139dump_new_line (dump_info_p di)
74338ff6 140{
141 fprintf (di->stream, "\n%*s", SOL_COLUMN, "");
142 di->column = SOL_COLUMN;
143}
144
145/* If necessary, insert a new line. */
146
147static void
d598ad0d 148dump_maybe_newline (dump_info_p di)
74338ff6 149{
150 int extra;
40570cc2 151
74338ff6 152 /* See if we need a new line. */
153 if (di->column > EOL_COLUMN)
154 dump_new_line (di);
155 /* See if we need any padding. */
156 else if ((extra = (di->column - SOL_COLUMN) % COLUMN_ALIGNMENT) != 0)
157 {
158 fprintf (di->stream, "%*s", COLUMN_ALIGNMENT - extra, "");
159 di->column += COLUMN_ALIGNMENT - extra;
160 }
161}
162
163/* Dump pointer PTR using FIELD to identify it. */
164
165void
d598ad0d 166dump_pointer (dump_info_p di, const char *field, void *ptr)
74338ff6 167{
168 dump_maybe_newline (di);
de064be9 169 fprintf (di->stream, "%-4s: %-8lx ", field, (unsigned long) ptr);
74338ff6 170 di->column += 15;
171}
172
173/* Dump integer I using FIELD to identify it. */
174
175void
d598ad0d 176dump_int (dump_info_p di, const char *field, int i)
74338ff6 177{
178 dump_maybe_newline (di);
179 fprintf (di->stream, "%-4s: %-7d ", field, i);
180 di->column += 14;
181}
182
905582c1 183/* Dump the floating point value R, using FIELD to identify it. */
184
185static void
186dump_real (dump_info_p di, const char *field, const REAL_VALUE_TYPE *r)
187{
188 char buf[32];
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;
193}
194
06f0b99c 195/* Dump the fixed-point value F, using FIELD to identify it. */
196
197static void
198dump_fixed (dump_info_p di, const char *field, const FIXED_VALUE_TYPE *f)
199{
200 char buf[32];
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;
205}
206
905582c1 207
74338ff6 208/* Dump the string S. */
209
210void
d598ad0d 211dump_string (dump_info_p di, const char *string)
74338ff6 212{
213 dump_maybe_newline (di);
214 fprintf (di->stream, "%-13s ", string);
215 if (strlen (string) > 13)
216 di->column += strlen (string) + 1;
217 else
218 di->column += 14;
219}
220
221/* Dump the string field S. */
222
5a471c32 223void
d598ad0d 224dump_string_field (dump_info_p di, const char *field, const char *string)
74338ff6 225{
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;
230 else
231 di->column += 14;
232}
233
74338ff6 234/* Dump the next node in the queue. */
235
40570cc2 236static void
d598ad0d 237dequeue_and_dump (dump_info_p di)
74338ff6 238{
239 dump_queue_p dq;
240 splay_tree_node stn;
241 dump_node_info_p dni;
242 tree t;
243 unsigned int index;
244 enum tree_code code;
ce45a448 245 enum tree_code_class code_class;
74338ff6 246 const char* code_name;
247
248 /* Get the next node from the queue. */
249 dq = di->queue;
250 stn = dq->node;
251 t = (tree) stn->key;
252 dni = (dump_node_info_p) stn->value;
253 index = dni->index;
254
255 /* Remove the node from the queue, and put it on the free list. */
256 di->queue = dq->next;
257 if (!di->queue)
258 di->queue_end = 0;
259 dq->next = di->free_list;
260 di->free_list = dq;
261
262 /* Print the node index. */
263 dump_index (di, index);
264 /* And the type of node this is. */
265 if (dni->binfo_p)
266 code_name = "binfo";
267 else
268 code_name = tree_code_name[(int) TREE_CODE (t)];
269 fprintf (di->stream, "%-16s ", code_name);
270 di->column = 25;
271
272 /* Figure out what kind of node this is. */
273 code = TREE_CODE (t);
274 code_class = TREE_CODE_CLASS (code);
275
276 /* Although BINFOs are TREE_VECs, we dump them specially so as to be
277 more informative. */
278 if (dni->binfo_p)
279 {
95f3173a 280 unsigned ix;
f6cc6a08 281 tree base;
046bfc77 282 VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (t);
d598ad0d 283
95f3173a 284 dump_child ("type", BINFO_TYPE (t));
285
57c28194 286 if (BINFO_VIRTUAL_P (t))
5a471c32 287 dump_string_field (di, "spec", "virt");
40570cc2 288
f6cc6a08 289 dump_int (di, "bases", BINFO_N_BASE_BINFOS (t));
290 for (ix = 0; BINFO_BASE_ITERATE (t, ix, base); ix++)
95f3173a 291 {
db77fe17 292 tree access = (accesses ? VEC_index (tree, accesses, ix)
95f3173a 293 : access_public_node);
294 const char *string = NULL;
295
296 if (access == access_public_node)
297 string = "pub";
298 else if (access == access_protected_node)
299 string = "prot";
300 else if (access == access_private_node)
301 string = "priv";
302 else
8c0963c4 303 gcc_unreachable ();
d598ad0d 304
5a471c32 305 dump_string_field (di, "accs", string);
95f3173a 306 queue_and_dump_index (di, "binf", base, DUMP_BINFO);
307 }
d598ad0d 308
74338ff6 309 goto done;
310 }
311
312 /* We can knock off a bunch of expression nodes in exactly the same
313 way. */
314 if (IS_EXPR_CODE_CLASS (code_class))
315 {
316 /* If we're dumping children, dump them now. */
317 queue_and_dump_type (di, t);
318
319 switch (code_class)
320 {
ce45a448 321 case tcc_unary:
74338ff6 322 dump_child ("op 0", TREE_OPERAND (t, 0));
323 break;
40570cc2 324
ce45a448 325 case tcc_binary:
326 case tcc_comparison:
74338ff6 327 dump_child ("op 0", TREE_OPERAND (t, 0));
328 dump_child ("op 1", TREE_OPERAND (t, 1));
329 break;
40570cc2 330
ce45a448 331 case tcc_expression:
332 case tcc_reference:
333 case tcc_statement:
f43a1a60 334 case tcc_vl_exp:
74338ff6 335 /* These nodes are handled explicitly below. */
336 break;
40570cc2 337
74338ff6 338 default:
8c0963c4 339 gcc_unreachable ();
74338ff6 340 }
341 }
342 else if (DECL_P (t))
343 {
2ed8b5d0 344 expanded_location xloc;
74338ff6 345 /* All declarations have names. */
346 if (DECL_NAME (t))
347 dump_child ("name", DECL_NAME (t));
40570cc2 348 if (DECL_ASSEMBLER_NAME_SET_P (t)
74338ff6 349 && DECL_ASSEMBLER_NAME (t) != DECL_NAME (t))
350 dump_child ("mngl", DECL_ASSEMBLER_NAME (t));
9021d2da 351 if (DECL_ABSTRACT_ORIGIN (t))
352 dump_child ("orig", DECL_ABSTRACT_ORIGIN (t));
74338ff6 353 /* And types. */
354 queue_and_dump_type (di, t);
355 dump_child ("scpe", DECL_CONTEXT (t));
356 /* And a source position. */
2ed8b5d0 357 xloc = expand_location (DECL_SOURCE_LOCATION (t));
358 if (xloc.file)
74338ff6 359 {
2ed8b5d0 360 const char *filename = strrchr (xloc.file, '/');
74338ff6 361 if (!filename)
2ed8b5d0 362 filename = xloc.file;
74338ff6 363 else
364 /* Skip the slash. */
365 ++filename;
366
367 dump_maybe_newline (di);
40570cc2 368 fprintf (di->stream, "srcp: %s:%-6d ", filename,
2ed8b5d0 369 xloc.line);
74338ff6 370 di->column += 6 + strlen (filename) + 8;
371 }
372 /* And any declaration can be compiler-generated. */
437f5d6b 373 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_COMMON)
374 && DECL_ARTIFICIAL (t))
5a471c32 375 dump_string_field (di, "note", "artificial");
74338ff6 376 if (TREE_CHAIN (t) && !dump_flag (di, TDF_SLIM, NULL))
377 dump_child ("chan", TREE_CHAIN (t));
378 }
ce45a448 379 else if (code_class == tcc_type)
74338ff6 380 {
381 /* All types have qualifiers. */
dc24ddbd 382 int quals = lang_hooks.tree_dump.type_quals (t);
40570cc2 383
74338ff6 384 if (quals != TYPE_UNQUALIFIED)
385 {
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' : ' ');
390 di->column += 14;
391 }
392
393 /* All types have associated declarations. */
394 dump_child ("name", TYPE_NAME (t));
395
396 /* All types have a main variant. */
397 if (TYPE_MAIN_VARIANT (t) != t)
398 dump_child ("unql", TYPE_MAIN_VARIANT (t));
40570cc2 399
74338ff6 400 /* And sizes. */
401 dump_child ("size", TYPE_SIZE (t));
402
403 /* All types have alignments. */
404 dump_int (di, "algn", TYPE_ALIGN (t));
405 }
ce45a448 406 else if (code_class == tcc_constant)
74338ff6 407 /* All constants can have types. */
408 queue_and_dump_type (di, t);
409
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. */
dc24ddbd 413 if (lang_hooks.tree_dump.dump_tree (di, t))
74338ff6 414 goto done;
415
416 /* Now handle the various kinds of nodes. */
417 switch (code)
418 {
419 int i;
420
421 case IDENTIFIER_NODE:
422 dump_string_field (di, "strg", IDENTIFIER_POINTER (t));
423 dump_int (di, "lngt", IDENTIFIER_LENGTH (t));
424 break;
425
426 case TREE_LIST:
427 dump_child ("purp", TREE_PURPOSE (t));
428 dump_child ("valu", TREE_VALUE (t));
429 dump_child ("chan", TREE_CHAIN (t));
430 break;
431
e8c5dd3c 432 case STATEMENT_LIST:
433 {
434 tree_stmt_iterator it;
435 for (i = 0, it = tsi_start (t); !tsi_end_p (it); tsi_next (&it), i++)
436 {
437 char buffer[32];
438 sprintf (buffer, "%u", i);
439 dump_child (buffer, tsi_stmt (it));
440 }
441 }
442 break;
443
74338ff6 444 case TREE_VEC:
445 dump_int (di, "lngt", TREE_VEC_LENGTH (t));
446 for (i = 0; i < TREE_VEC_LENGTH (t); ++i)
447 {
448 char buffer[32];
449 sprintf (buffer, "%u", i);
450 dump_child (buffer, TREE_VEC_ELT (t, i));
451 }
452 break;
453
454 case INTEGER_TYPE:
455 case ENUMERAL_TYPE:
456 dump_int (di, "prec", TYPE_PRECISION (t));
5a471c32 457 dump_string_field (di, "sign", TYPE_UNSIGNED (t) ? "unsigned": "signed");
74338ff6 458 dump_child ("min", TYPE_MIN_VALUE (t));
459 dump_child ("max", TYPE_MAX_VALUE (t));
460
461 if (code == ENUMERAL_TYPE)
462 dump_child ("csts", TYPE_VALUES (t));
463 break;
464
465 case REAL_TYPE:
466 dump_int (di, "prec", TYPE_PRECISION (t));
467 break;
468
06f0b99c 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");
474 break;
475
74338ff6 476 case POINTER_TYPE:
477 dump_child ("ptd", TREE_TYPE (t));
478 break;
479
480 case REFERENCE_TYPE:
481 dump_child ("refd", TREE_TYPE (t));
482 break;
483
484 case METHOD_TYPE:
485 dump_child ("clas", TYPE_METHOD_BASETYPE (t));
486 /* Fall through. */
487
488 case FUNCTION_TYPE:
489 dump_child ("retn", TREE_TYPE (t));
490 dump_child ("prms", TYPE_ARG_TYPES (t));
491 break;
492
493 case ARRAY_TYPE:
494 dump_child ("elts", TREE_TYPE (t));
495 dump_child ("domn", TYPE_DOMAIN (t));
496 break;
497
498 case RECORD_TYPE:
499 case UNION_TYPE:
500 if (TREE_CODE (t) == RECORD_TYPE)
5a471c32 501 dump_string_field (di, "tag", "struct");
74338ff6 502 else
5a471c32 503 dump_string_field (di, "tag", "union");
40570cc2 504
74338ff6 505 dump_child ("flds", TYPE_FIELDS (t));
506 dump_child ("fncs", TYPE_METHODS (t));
40570cc2 507 queue_and_dump_index (di, "binf", TYPE_BINFO (t),
74338ff6 508 DUMP_BINFO);
509 break;
510
511 case CONST_DECL:
512 dump_child ("cnst", DECL_INITIAL (t));
513 break;
437f5d6b 514
eff665b7 515 case SYMBOL_MEMORY_TAG:
437f5d6b 516 case NAME_MEMORY_TAG:
517 case STRUCT_FIELD_TAG:
518 break;
74338ff6 519
520 case VAR_DECL:
521 case PARM_DECL:
522 case FIELD_DECL:
523 case RESULT_DECL:
524 if (TREE_CODE (t) == PARM_DECL)
525 dump_child ("argt", DECL_ARG_TYPE (t));
526 else
527 dump_child ("init", DECL_INITIAL (t));
528 dump_child ("size", DECL_SIZE (t));
529 dump_int (di, "algn", DECL_ALIGN (t));
530
531 if (TREE_CODE (t) == FIELD_DECL)
532 {
74338ff6 533 if (DECL_FIELD_OFFSET (t))
534 dump_child ("bpos", bit_position (t));
535 }
40570cc2 536 else if (TREE_CODE (t) == VAR_DECL
74338ff6 537 || TREE_CODE (t) == PARM_DECL)
538 {
539 dump_int (di, "used", TREE_USED (t));
540 if (DECL_REGISTER (t))
5a471c32 541 dump_string_field (di, "spec", "register");
74338ff6 542 }
543 break;
544
545 case FUNCTION_DECL:
546 dump_child ("args", DECL_ARGUMENTS (t));
547 if (DECL_EXTERNAL (t))
5a471c32 548 dump_string_field (di, "body", "undefined");
74338ff6 549 if (TREE_PUBLIC (t))
5a471c32 550 dump_string_field (di, "link", "extern");
74338ff6 551 else
5a471c32 552 dump_string_field (di, "link", "static");
de9ebaea 553 if (DECL_SAVED_TREE (t) && !dump_flag (di, TDF_SLIM, t))
74338ff6 554 dump_child ("body", DECL_SAVED_TREE (t));
555 break;
556
74338ff6 557 case INTEGER_CST:
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));
561 break;
562
563 case STRING_CST:
564 fprintf (di->stream, "strg: %-7s ", TREE_STRING_POINTER (t));
565 dump_int (di, "lngt", TREE_STRING_LENGTH (t));
566 break;
567
905582c1 568 case REAL_CST:
569 dump_real (di, "valu", TREE_REAL_CST_PTR (t));
570 break;
571
06f0b99c 572 case FIXED_CST:
573 dump_fixed (di, "valu", TREE_FIXED_CST_PTR (t));
574 break;
575
74338ff6 576 case TRUTH_NOT_EXPR:
577 case ADDR_EXPR:
578 case INDIRECT_REF:
b056d812 579 case ALIGN_INDIRECT_REF:
580 case MISALIGNED_INDIRECT_REF:
74338ff6 581 case CLEANUP_POINT_EXPR:
582 case SAVE_EXPR:
b25de375 583 case REALPART_EXPR:
584 case IMAGPART_EXPR:
74338ff6 585 /* These nodes are unary, but do not have code class `1'. */
586 dump_child ("op 0", TREE_OPERAND (t, 0));
587 break;
588
589 case TRUTH_ANDIF_EXPR:
590 case TRUTH_ORIF_EXPR:
591 case INIT_EXPR:
592 case MODIFY_EXPR:
74338ff6 593 case COMPOUND_EXPR:
74338ff6 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));
601 break;
602
35cc02b5 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));
606 break;
607
6374121b 608 case COMPONENT_REF:
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));
612 break;
613
614 case ARRAY_REF:
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));
620 break;
621
74338ff6 622 case COND_EXPR:
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));
626 break;
627
9021d2da 628 case TRY_FINALLY_EXPR:
629 dump_child ("op 0", TREE_OPERAND (t, 0));
630 dump_child ("op 1", TREE_OPERAND (t, 1));
631 break;
632
74338ff6 633 case CALL_EXPR:
c2f47e15 634 {
635 int i = 0;
636 tree arg;
637 call_expr_arg_iterator iter;
638 dump_child ("fn", CALL_EXPR_FN (t));
639 FOR_EACH_CALL_EXPR_ARG (arg, iter, t)
640 {
641 char buffer[32];
642 sprintf (buffer, "%u", i);
643 dump_child (buffer, arg);
644 i++;
645 }
646 }
74338ff6 647 break;
648
649 case CONSTRUCTOR:
c75b4594 650 {
651 unsigned HOST_WIDE_INT cnt;
652 tree index, value;
653 dump_int (di, "lngt", VEC_length (constructor_elt,
654 CONSTRUCTOR_ELTS (t)));
655 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), cnt, index, value)
656 {
657 dump_child ("idx", index);
658 dump_child ("val", value);
659 }
660 }
74338ff6 661 break;
662
74338ff6 663 case BIND_EXPR:
664 dump_child ("vars", TREE_OPERAND (t, 0));
665 dump_child ("body", TREE_OPERAND (t, 1));
666 break;
667
668 case LOOP_EXPR:
669 dump_child ("body", TREE_OPERAND (t, 0));
670 break;
671
672 case EXIT_EXPR:
673 dump_child ("cond", TREE_OPERAND (t, 0));
674 break;
675
9021d2da 676 case RETURN_EXPR:
677 dump_child ("expr", TREE_OPERAND (t, 0));
678 break;
679
74338ff6 680 case TARGET_EXPR:
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
687 becomes NULL. */
688 dump_child ("init", TREE_OPERAND (t, 3));
689 break;
40570cc2 690
9021d2da 691 case CASE_LABEL_EXPR:
692 dump_child ("name", CASE_LABEL (t));
7d4c98bc 693 if (CASE_LOW (t))
694 {
695 dump_child ("low ", CASE_LOW (t));
696 if (CASE_HIGH (t))
697 dump_child ("high", CASE_HIGH (t));
9021d2da 698 }
9021d2da 699 break;
700 case LABEL_EXPR:
701 dump_child ("name", TREE_OPERAND (t,0));
702 break;
703 case GOTO_EXPR:
704 dump_child ("labl", TREE_OPERAND (t, 0));
705 break;
706 case SWITCH_EXPR:
707 dump_child ("cond", TREE_OPERAND (t, 0));
708 dump_child ("body", TREE_OPERAND (t, 1));
709 if (TREE_OPERAND (t, 2))
710 {
711 dump_child ("labl", TREE_OPERAND (t,2));
712 }
713 break;
55d6e7cd 714 case OMP_CLAUSE:
715 {
716 int i;
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));
720 }
721 break;
74338ff6 722 default:
723 /* There are no additional fields to print. */
724 break;
725 }
726
727 done:
728 if (dump_flag (di, TDF_ADDRESS, NULL))
729 dump_pointer (di, "addr", (void *)t);
40570cc2 730
74338ff6 731 /* Terminate the line. */
732 fprintf (di->stream, "\n");
733}
734
f712a0dc 735/* Return nonzero if FLAG has been specified for the dump, and NODE
74338ff6 736 is not the root node of the dump. */
737
9f627b1a 738int dump_flag (dump_info_p di, int flag, const_tree node)
74338ff6 739{
740 return (di->flags & flag) && (node != di->node);
741}
742
743/* Dump T, and all its children, on STREAM. */
744
745void
9f627b1a 746dump_node (const_tree t, int flags, FILE *stream)
74338ff6 747{
748 struct dump_info di;
749 dump_queue_p dq;
750 dump_queue_p next_dq;
751
752 /* Initialize the dump-information structure. */
753 di.stream = stream;
754 di.index = 0;
755 di.column = 0;
756 di.queue = 0;
757 di.queue_end = 0;
758 di.free_list = 0;
759 di.flags = flags;
760 di.node = t;
40570cc2 761 di.nodes = splay_tree_new (splay_tree_compare_pointers, 0,
74338ff6 762 (splay_tree_delete_value_fn) &free);
763
764 /* Queue up the first node. */
765 queue (&di, t, DUMP_NONE);
766
767 /* Until the queue is empty, keep dumping nodes. */
768 while (di.queue)
769 dequeue_and_dump (&di);
770
771 /* Now, clean up. */
772 for (dq = di.free_list; dq; dq = next_dq)
773 {
774 next_dq = dq->next;
775 free (dq);
776 }
777 splay_tree_delete (di.nodes);
778}
0f9005dd 779\f
74338ff6 780
781/* Table of tree dump switches. This must be consistent with the
fb5b6d1b 782 tree_dump_index enumeration in tree-pass.h. */
74338ff6 783static struct dump_file_info dump_files[TDI_end] =
784{
53907817 785 {NULL, NULL, NULL, 0, 0, 0, 0},
6354626c 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},
bfce1236 792 {".vcg", "tree-vcg", NULL, TDF_TREE, 0, 6, 0},
793#define FIRST_AUTO_NUMBERED_DUMP 7
6354626c 794
53907817 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},
74338ff6 798};
799
4ee9c684 800/* Dynamically registered tree dump files and switches. */
801static struct dump_file_info *extra_dump_files;
802static size_t extra_dump_files_in_use;
803static size_t extra_dump_files_alloced;
804
74338ff6 805/* Define a name->number mapping for a dump flag value. */
806struct dump_option_value_info
807{
808 const char *const name; /* the name of the value */
809 const int value; /* the value of the name */
810};
811
812/* Table of dump options. This must be consistent with the TDF_* flags
813 in tree.h */
814static const struct dump_option_value_info dump_options[] =
815{
816 {"address", TDF_ADDRESS},
817 {"slim", TDF_SLIM},
4ee9c684 818 {"raw", TDF_RAW},
819 {"details", TDF_DETAILS},
820 {"stats", TDF_STATS},
821 {"blocks", TDF_BLOCKS},
822 {"vops", TDF_VOPS},
823 {"lineno", TDF_LINENO},
824 {"uid", TDF_UID},
22aa74c4 825 {"stmtaddr", TDF_STMTADDR},
4fb5e5ca 826 {"memsyms", TDF_MEMSYMS},
22aa74c4 827 {"all", ~(TDF_RAW | TDF_SLIM | TDF_LINENO | TDF_TREE | TDF_RTL | TDF_IPA
1b2b0409 828 | TDF_STMTADDR | TDF_GRAPH | TDF_DIAGNOSTIC)},
74338ff6 829 {NULL, 0}
830};
831
4ee9c684 832unsigned int
53907817 833dump_register (const char *suffix, const char *swtch, const char *glob,
6354626c 834 int flags, int letter)
4ee9c684 835{
6354626c 836 static int next_dump = FIRST_AUTO_NUMBERED_DUMP;
837 int num = next_dump++;
838
4ee9c684 839 size_t this = extra_dump_files_in_use++;
840
841 if (this >= extra_dump_files_alloced)
842 {
843 if (extra_dump_files_alloced == 0)
844 extra_dump_files_alloced = 32;
845 else
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);
850 }
851
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;
53907817 855 extra_dump_files[this].glob = glob;
0f9005dd 856 extra_dump_files[this].flags = flags;
857 extra_dump_files[this].num = num;
858 extra_dump_files[this].letter = letter;
4ee9c684 859
860 return this + TDI_end;
861}
862
0f9005dd 863
4ee9c684 864/* Return the dump_file_info for the given phase. */
865
0f9005dd 866struct dump_file_info *
4ee9c684 867get_dump_file_info (enum tree_dump_index phase)
868{
869 if (phase < TDI_end)
870 return &dump_files[phase];
871 else if (phase - TDI_end >= extra_dump_files_in_use)
0f9005dd 872 return NULL;
4ee9c684 873 else
874 return extra_dump_files + (phase - TDI_end);
875}
876
877
0f9005dd 878/* Return the name of the dump file for the given phase.
879 If the dump is not enabled, returns NULL. */
880
881char *
882get_dump_file_name (enum tree_dump_index phase)
883{
6354626c 884 char dump_id[10];
0f9005dd 885 struct dump_file_info *dfi;
886
887 if (phase == TDI_none)
888 return NULL;
889
890 dfi = get_dump_file_info (phase);
891 if (dfi->state == 0)
892 return NULL;
893
121f3051 894 if (dfi->num < 0)
0f9005dd 895 dump_id[0] = '\0';
121f3051 896 else
897 {
6354626c 898 char suffix;
121f3051 899 if (dfi->flags & TDF_TREE)
6354626c 900 suffix = 't';
121f3051 901 else if (dfi->flags & TDF_IPA)
6354626c 902 suffix = 'i';
121f3051 903 else
6354626c 904 suffix = 'r';
121f3051 905
6354626c 906 if (snprintf (dump_id, sizeof (dump_id), ".%03d%c", dfi->num, suffix) < 0)
121f3051 907 dump_id[0] = '\0';
908 }
0f9005dd 909
910 return concat (dump_base_name, dump_id, dfi->suffix, NULL);
911}
912
74338ff6 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. */
917
918FILE *
d598ad0d 919dump_begin (enum tree_dump_index phase, int *flag_ptr)
74338ff6 920{
74338ff6 921 char *name;
4ee9c684 922 struct dump_file_info *dfi;
0f9005dd 923 FILE *stream;
40570cc2 924
0f9005dd 925 if (phase == TDI_none || !dump_enabled_p (phase))
74338ff6 926 return NULL;
40570cc2 927
0f9005dd 928 name = get_dump_file_name (phase);
4ee9c684 929 dfi = get_dump_file_info (phase);
4ee9c684 930 stream = fopen (name, dfi->state < 0 ? "w" : "a");
74338ff6 931 if (!stream)
eb586f2c 932 error ("could not open dump file %qs: %s", name, strerror (errno));
74338ff6 933 else
4ee9c684 934 dfi->state = 1;
74338ff6 935 free (name);
4ee9c684 936
74338ff6 937 if (flag_ptr)
4ee9c684 938 *flag_ptr = dfi->flags;
40570cc2 939
74338ff6 940 return stream;
941}
942
9021d2da 943/* Returns nonzero if tree dump PHASE is enabled. If PHASE is
944 TDI_tree_all, return nonzero if any dump is enabled. */
74338ff6 945
946int
d598ad0d 947dump_enabled_p (enum tree_dump_index phase)
74338ff6 948{
9021d2da 949 if (phase == TDI_tree_all)
950 {
951 size_t i;
952 for (i = TDI_none + 1; i < (size_t) TDI_end; i++)
953 if (dump_files[i].state)
954 return 1;
955 for (i = 0; i < extra_dump_files_in_use; i++)
956 if (extra_dump_files[i].state)
957 return 1;
958 return 0;
959 }
960 else
961 {
962 struct dump_file_info *dfi = get_dump_file_info (phase);
963 return dfi->state;
964 }
74338ff6 965}
966
0f9005dd 967/* Returns nonzero if tree dump PHASE has been initialized. */
968
969int
970dump_initialized_p (enum tree_dump_index phase)
971{
972 struct dump_file_info *dfi = get_dump_file_info (phase);
973 return dfi->state > 0;
974}
975
74338ff6 976/* Returns the switch name of PHASE. */
977
978const char *
d598ad0d 979dump_flag_name (enum tree_dump_index phase)
74338ff6 980{
4ee9c684 981 struct dump_file_info *dfi = get_dump_file_info (phase);
982 return dfi->swtch;
74338ff6 983}
984
985/* Finish a tree dump for PHASE. STREAM is the stream created by
986 dump_begin. */
987
988void
d598ad0d 989dump_end (enum tree_dump_index phase ATTRIBUTE_UNUSED, FILE *stream)
74338ff6 990{
991 fclose (stream);
992}
993
0f9005dd 994/* Enable all tree dumps. Return number of enabled tree dumps. */
4ee9c684 995
0f9005dd 996static int
997dump_enable_all (int flags, int letter)
4ee9c684 998{
15b8fe07 999 int ir_dump_type = (flags & (TDF_TREE | TDF_RTL | TDF_IPA));
0f9005dd 1000 int n = 0;
4ee9c684 1001 size_t i;
1002
1003 for (i = TDI_none + 1; i < (size_t) TDI_end; i++)
15b8fe07 1004 if ((dump_files[i].flags & ir_dump_type)
0f9005dd 1005 && (letter == 0 || letter == dump_files[i].letter))
1006 {
1007 dump_files[i].state = -1;
75ab26dc 1008 dump_files[i].flags |= flags;
0f9005dd 1009 n++;
1010 }
4ee9c684 1011
1012 for (i = 0; i < extra_dump_files_in_use; i++)
15b8fe07 1013 if ((extra_dump_files[i].flags & ir_dump_type)
0f9005dd 1014 && (letter == 0 || letter == extra_dump_files[i].letter))
1015 {
1016 extra_dump_files[i].state = -1;
75ab26dc 1017 extra_dump_files[i].flags |= flags;
0f9005dd 1018 n++;
1019 }
4ee9c684 1020
0f9005dd 1021 return n;
4ee9c684 1022}
1023
f712a0dc 1024/* Parse ARG as a dump switch. Return nonzero if it is, and store the
74338ff6 1025 relevant details in the dump_files array. */
1026
4ee9c684 1027static int
53907817 1028dump_switch_p_1 (const char *arg, struct dump_file_info *dfi, bool doglob)
74338ff6 1029{
74338ff6 1030 const char *option_value;
4ee9c684 1031 const char *ptr;
1032 int flags;
53907817 1033
1034 if (doglob && !dfi->glob)
1035 return 0;
40570cc2 1036
53907817 1037 option_value = skip_leading_substring (arg, doglob ? dfi->glob : dfi->swtch);
4ee9c684 1038 if (!option_value)
1039 return 0;
40570cc2 1040
2b304bd2 1041 if (*option_value && *option_value != '-')
1042 return 0;
1043
4ee9c684 1044 ptr = option_value;
1045 flags = 0;
1046
1047 while (*ptr)
1048 {
1049 const struct dump_option_value_info *option_ptr;
1050 const char *end_ptr;
1051 unsigned length;
1052
1053 while (*ptr == '-')
1054 ptr++;
1055 end_ptr = strchr (ptr, '-');
1056 if (!end_ptr)
1057 end_ptr = ptr + strlen (ptr);
1058 length = end_ptr - ptr;
1059
1060 for (option_ptr = dump_options; option_ptr->name; option_ptr++)
1061 if (strlen (option_ptr->name) == length
1062 && !memcmp (option_ptr->name, ptr, length))
74338ff6 1063 {
4ee9c684 1064 flags |= option_ptr->value;
1065 goto found;
74338ff6 1066 }
c3ceba8e 1067 warning (0, "ignoring unknown option %q.*s in %<-fdump-%s%>",
4ee9c684 1068 length, ptr, dfi->swtch);
1069 found:;
1070 ptr = end_ptr;
1071 }
1072
1073 dfi->state = -1;
0f9005dd 1074 dfi->flags |= flags;
4ee9c684 1075
0f9005dd 1076 /* Process -fdump-tree-all and -fdump-rtl-all, by enabling all the
1077 known dumps. */
4ee9c684 1078 if (dfi->suffix == NULL)
0f9005dd 1079 dump_enable_all (dfi->flags, 0);
4ee9c684 1080
1081 return 1;
1082}
40570cc2 1083
4ee9c684 1084int
1085dump_switch_p (const char *arg)
1086{
1087 size_t i;
1088 int any = 0;
1089
1090 for (i = TDI_none + 1; i != TDI_end; i++)
53907817 1091 any |= dump_switch_p_1 (arg, &dump_files[i], false);
1092
1093 /* Don't glob if we got a hit already */
1094 if (!any)
1095 for (i = TDI_none + 1; i != TDI_end; i++)
1096 any |= dump_switch_p_1 (arg, &dump_files[i], true);
4ee9c684 1097
1098 for (i = 0; i < extra_dump_files_in_use; i++)
53907817 1099 any |= dump_switch_p_1 (arg, &extra_dump_files[i], false);
1100
1101 if (!any)
1102 for (i = 0; i < extra_dump_files_in_use; i++)
1103 any |= dump_switch_p_1 (arg, &extra_dump_files[i], true);
1104
4ee9c684 1105
1106 return any;
1107}
40570cc2 1108
4ee9c684 1109/* Dump FUNCTION_DECL FN as tree dump PHASE. */
1110
1111void
1112dump_function (enum tree_dump_index phase, tree fn)
1113{
1114 FILE *stream;
1115 int flags;
1116
1117 stream = dump_begin (phase, &flags);
1118 if (stream)
1119 {
1120 dump_function_to_file (fn, stream, flags);
1121 dump_end (phase, stream);
1122 }
74338ff6 1123}
0f9005dd 1124
1125bool
1126enable_rtl_dump_file (int letter)
1127{
1128 if (letter == 'a')
1129 letter = 0;
1130
562d71e8 1131 return dump_enable_all (TDF_RTL | TDF_DETAILS | TDF_BLOCKS, letter) > 0;
0f9005dd 1132}
1133
1134