Update .po files.
[official-gcc.git] / gcc / print-tree.c
blob30c8d721433728b152f3bdbb711283cd988077b2
1 /* Prints out tree in human readable form - GCC
2 Copyright (C) 1990-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "cgraph.h"
27 #include "diagnostic.h"
28 #include "varasm.h"
29 #include "print-rtl.h"
30 #include "stor-layout.h"
31 #include "langhooks.h"
32 #include "tree-iterator.h"
33 #include "gimple-pretty-print.h" /* FIXME */
34 #include "tree-cfg.h"
35 #include "dumpfile.h"
36 #include "print-tree.h"
38 /* Define the hash table of nodes already seen.
39 Such nodes are not repeated; brief cross-references are used. */
41 #define HASH_SIZE 37
43 static hash_set<tree> *table = NULL;
45 /* Print PREFIX and ADDR to FILE. */
46 void
47 dump_addr (FILE *file, const char *prefix, const void *addr)
49 if (flag_dump_noaddr || flag_dump_unnumbered)
50 fprintf (file, "%s#", prefix);
51 else
52 fprintf (file, "%s" HOST_PTR_PRINTF, prefix, addr);
55 /* Print a node in brief fashion, with just the code, address and name. */
57 void
58 print_node_brief (FILE *file, const char *prefix, const_tree node, int indent)
60 enum tree_code_class tclass;
62 if (node == 0)
63 return;
65 tclass = TREE_CODE_CLASS (TREE_CODE (node));
67 /* Always print the slot this node is in, and its code, address and
68 name if any. */
69 if (indent > 0)
70 fprintf (file, " ");
71 fprintf (file, "%s <%s", prefix, get_tree_code_name (TREE_CODE (node)));
72 dump_addr (file, " ", node);
74 if (tclass == tcc_declaration)
76 if (DECL_NAME (node))
77 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
78 else if (TREE_CODE (node) == LABEL_DECL
79 && LABEL_DECL_UID (node) != -1)
81 if (dump_flags & TDF_NOUID)
82 fprintf (file, " L.xxxx");
83 else
84 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node));
86 else
88 if (dump_flags & TDF_NOUID)
89 fprintf (file, " %c.xxxx",
90 TREE_CODE (node) == CONST_DECL ? 'C' : 'D');
91 else
92 fprintf (file, " %c.%u",
93 TREE_CODE (node) == CONST_DECL ? 'C' : 'D',
94 DECL_UID (node));
97 else if (tclass == tcc_type)
99 if (TYPE_NAME (node))
101 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
102 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
103 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
104 && DECL_NAME (TYPE_NAME (node)))
105 fprintf (file, " %s",
106 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
108 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node)))
109 fprintf (file, " address-space-%d", TYPE_ADDR_SPACE (node));
111 if (TREE_CODE (node) == IDENTIFIER_NODE)
112 fprintf (file, " %s", IDENTIFIER_POINTER (node));
114 /* We might as well always print the value of an integer or real. */
115 if (TREE_CODE (node) == INTEGER_CST)
117 if (TREE_OVERFLOW (node))
118 fprintf (file, " overflow");
120 fprintf (file, " ");
121 print_dec (node, file, TYPE_SIGN (TREE_TYPE (node)));
123 if (TREE_CODE (node) == REAL_CST)
125 REAL_VALUE_TYPE d;
127 if (TREE_OVERFLOW (node))
128 fprintf (file, " overflow");
130 d = TREE_REAL_CST (node);
131 if (REAL_VALUE_ISINF (d))
132 fprintf (file, REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf");
133 else if (REAL_VALUE_ISNAN (d))
134 fprintf (file, " Nan");
135 else
137 char string[60];
138 real_to_decimal (string, &d, sizeof (string), 0, 1);
139 fprintf (file, " %s", string);
142 if (TREE_CODE (node) == FIXED_CST)
144 FIXED_VALUE_TYPE f;
145 char string[60];
147 if (TREE_OVERFLOW (node))
148 fprintf (file, " overflow");
150 f = TREE_FIXED_CST (node);
151 fixed_to_decimal (string, &f, sizeof (string));
152 fprintf (file, " %s", string);
155 fprintf (file, ">");
158 void
159 indent_to (FILE *file, int column)
161 int i;
163 /* Since this is the long way, indent to desired column. */
164 if (column > 0)
165 fprintf (file, "\n");
166 for (i = 0; i < column; i++)
167 fprintf (file, " ");
170 /* Print the node NODE in full on file FILE, preceded by PREFIX,
171 starting in column INDENT. */
173 void
174 print_node (FILE *file, const char *prefix, tree node, int indent,
175 bool brief_for_visited)
177 machine_mode mode;
178 enum tree_code_class tclass;
179 int len;
180 int i;
181 expanded_location xloc;
182 enum tree_code code;
184 if (node == 0)
185 return;
187 code = TREE_CODE (node);
188 tclass = TREE_CODE_CLASS (code);
190 /* Don't get too deep in nesting. If the user wants to see deeper,
191 it is easy to use the address of a lowest-level node
192 as an argument in another call to debug_tree. */
194 if (indent > 24)
196 print_node_brief (file, prefix, node, indent);
197 return;
200 if (indent > 8 && (tclass == tcc_type || tclass == tcc_declaration))
202 print_node_brief (file, prefix, node, indent);
203 return;
206 /* It is unsafe to look at any other fields of an ERROR_MARK node. */
207 if (code == ERROR_MARK)
209 print_node_brief (file, prefix, node, indent);
210 return;
213 /* Allow this function to be called if the table is not there. */
214 if (table)
216 /* If node is in the table, just mention its address. */
217 if (table->contains (node) && brief_for_visited)
219 print_node_brief (file, prefix, node, indent);
220 return;
223 table->add (node);
226 /* Indent to the specified column, since this is the long form. */
227 indent_to (file, indent);
229 /* Print the slot this node is in, and its code, and address. */
230 fprintf (file, "%s <%s", prefix, get_tree_code_name (code));
231 dump_addr (file, " ", node);
233 /* Print the name, if any. */
234 if (tclass == tcc_declaration)
236 if (DECL_NAME (node))
237 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
238 else if (code == LABEL_DECL
239 && LABEL_DECL_UID (node) != -1)
241 if (dump_flags & TDF_NOUID)
242 fprintf (file, " L.xxxx");
243 else
244 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node));
246 else
248 if (dump_flags & TDF_NOUID)
249 fprintf (file, " %c.xxxx", code == CONST_DECL ? 'C' : 'D');
250 else
251 fprintf (file, " %c.%u", code == CONST_DECL ? 'C' : 'D',
252 DECL_UID (node));
255 else if (tclass == tcc_type)
257 if (TYPE_NAME (node))
259 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
260 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
261 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
262 && DECL_NAME (TYPE_NAME (node)))
263 fprintf (file, " %s",
264 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
267 if (code == IDENTIFIER_NODE)
268 fprintf (file, " %s", IDENTIFIER_POINTER (node));
270 if (code == INTEGER_CST)
272 if (indent <= 4)
273 print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
275 else if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
277 print_node (file, "type", TREE_TYPE (node), indent + 4);
278 if (TREE_TYPE (node))
279 indent_to (file, indent + 3);
282 if (!TYPE_P (node) && TREE_SIDE_EFFECTS (node))
283 fputs (" side-effects", file);
285 if (TYPE_P (node) ? TYPE_READONLY (node) : TREE_READONLY (node))
286 fputs (" readonly", file);
287 if (TYPE_P (node) && TYPE_ATOMIC (node))
288 fputs (" atomic", file);
289 if (!TYPE_P (node) && TREE_CONSTANT (node))
290 fputs (" constant", file);
291 else if (TYPE_P (node) && TYPE_SIZES_GIMPLIFIED (node))
292 fputs (" sizes-gimplified", file);
294 if (TYPE_P (node) && !ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node)))
295 fprintf (file, " address-space-%d", TYPE_ADDR_SPACE (node));
297 if (TREE_ADDRESSABLE (node))
298 fputs (" addressable", file);
299 if (TREE_THIS_VOLATILE (node))
300 fputs (" volatile", file);
301 if (TREE_ASM_WRITTEN (node))
302 fputs (" asm_written", file);
303 if (TREE_USED (node))
304 fputs (" used", file);
305 if (TREE_NOTHROW (node))
306 fputs (" nothrow", file);
307 if (TREE_PUBLIC (node))
308 fputs (" public", file);
309 if (TREE_PRIVATE (node))
310 fputs (" private", file);
311 if (TREE_PROTECTED (node))
312 fputs (" protected", file);
313 if (TREE_STATIC (node))
314 fputs (code == CALL_EXPR ? " must-tail-call" : " static", file);
315 if (TREE_DEPRECATED (node))
316 fputs (" deprecated", file);
317 if (TREE_VISITED (node))
318 fputs (" visited", file);
320 if (code != TREE_VEC && code != INTEGER_CST && code != SSA_NAME)
322 if (TREE_LANG_FLAG_0 (node))
323 fputs (" tree_0", file);
324 if (TREE_LANG_FLAG_1 (node))
325 fputs (" tree_1", file);
326 if (TREE_LANG_FLAG_2 (node))
327 fputs (" tree_2", file);
328 if (TREE_LANG_FLAG_3 (node))
329 fputs (" tree_3", file);
330 if (TREE_LANG_FLAG_4 (node))
331 fputs (" tree_4", file);
332 if (TREE_LANG_FLAG_5 (node))
333 fputs (" tree_5", file);
334 if (TREE_LANG_FLAG_6 (node))
335 fputs (" tree_6", file);
338 /* DECL_ nodes have additional attributes. */
340 switch (TREE_CODE_CLASS (code))
342 case tcc_declaration:
343 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
345 if (DECL_UNSIGNED (node))
346 fputs (" unsigned", file);
347 if (DECL_IGNORED_P (node))
348 fputs (" ignored", file);
349 if (DECL_ABSTRACT_P (node))
350 fputs (" abstract", file);
351 if (DECL_EXTERNAL (node))
352 fputs (" external", file);
353 if (DECL_NONLOCAL (node))
354 fputs (" nonlocal", file);
356 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
358 if (DECL_WEAK (node))
359 fputs (" weak", file);
360 if (DECL_IN_SYSTEM_HEADER (node))
361 fputs (" in_system_header", file);
363 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL)
364 && code != LABEL_DECL
365 && code != FUNCTION_DECL
366 && DECL_REGISTER (node))
367 fputs (" regdecl", file);
369 if (code == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
370 fputs (" suppress-debug", file);
372 if (code == FUNCTION_DECL
373 && DECL_FUNCTION_SPECIFIC_TARGET (node))
374 fputs (" function-specific-target", file);
375 if (code == FUNCTION_DECL
376 && DECL_FUNCTION_SPECIFIC_OPTIMIZATION (node))
377 fputs (" function-specific-opt", file);
378 if (code == FUNCTION_DECL && DECL_DECLARED_INLINE_P (node))
379 fputs (" autoinline", file);
380 if (code == FUNCTION_DECL && DECL_BUILT_IN (node))
381 fputs (" built-in", file);
382 if (code == FUNCTION_DECL && DECL_STATIC_CHAIN (node))
383 fputs (" static-chain", file);
384 if (TREE_CODE (node) == FUNCTION_DECL && decl_is_tm_clone (node))
385 fputs (" tm-clone", file);
387 if (code == FIELD_DECL && DECL_PACKED (node))
388 fputs (" packed", file);
389 if (code == FIELD_DECL && DECL_BIT_FIELD (node))
390 fputs (" bit-field", file);
391 if (code == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
392 fputs (" nonaddressable", file);
394 if (code == LABEL_DECL && EH_LANDING_PAD_NR (node))
395 fprintf (file, " landing-pad:%d", EH_LANDING_PAD_NR (node));
397 if (code == VAR_DECL && DECL_IN_TEXT_SECTION (node))
398 fputs (" in-text-section", file);
399 if (code == VAR_DECL && DECL_IN_CONSTANT_POOL (node))
400 fputs (" in-constant-pool", file);
401 if (code == VAR_DECL && DECL_COMMON (node))
402 fputs (" common", file);
403 if ((code == VAR_DECL || code == PARM_DECL) && DECL_READ_P (node))
404 fputs (" read", file);
405 if (code == VAR_DECL && DECL_THREAD_LOCAL_P (node))
407 fputs (" ", file);
408 fputs (tls_model_names[DECL_TLS_MODEL (node)], file);
411 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
413 if (DECL_VIRTUAL_P (node))
414 fputs (" virtual", file);
415 if (DECL_PRESERVE_P (node))
416 fputs (" preserve", file);
417 if (DECL_LANG_FLAG_0 (node))
418 fputs (" decl_0", file);
419 if (DECL_LANG_FLAG_1 (node))
420 fputs (" decl_1", file);
421 if (DECL_LANG_FLAG_2 (node))
422 fputs (" decl_2", file);
423 if (DECL_LANG_FLAG_3 (node))
424 fputs (" decl_3", file);
425 if (DECL_LANG_FLAG_4 (node))
426 fputs (" decl_4", file);
427 if (DECL_LANG_FLAG_5 (node))
428 fputs (" decl_5", file);
429 if (DECL_LANG_FLAG_6 (node))
430 fputs (" decl_6", file);
431 if (DECL_LANG_FLAG_7 (node))
432 fputs (" decl_7", file);
434 mode = DECL_MODE (node);
435 fprintf (file, " %s", GET_MODE_NAME (mode));
438 if ((code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
439 && DECL_BY_REFERENCE (node))
440 fputs (" passed-by-reference", file);
442 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS) && DECL_DEFER_OUTPUT (node))
443 fputs (" defer-output", file);
446 xloc = expand_location (DECL_SOURCE_LOCATION (node));
447 fprintf (file, " %s:%d:%d", xloc.file, xloc.line,
448 xloc.column);
450 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
452 print_node (file, "size", DECL_SIZE (node), indent + 4);
453 print_node (file, "unit-size", DECL_SIZE_UNIT (node), indent + 4);
455 if (code != FUNCTION_DECL || DECL_BUILT_IN (node))
456 indent_to (file, indent + 3);
458 if (DECL_USER_ALIGN (node))
459 fprintf (file, " user");
461 fprintf (file, " align:%d", DECL_ALIGN (node));
462 if (code == FIELD_DECL)
463 fprintf (file, " offset_align " HOST_WIDE_INT_PRINT_UNSIGNED,
464 DECL_OFFSET_ALIGN (node));
466 if (code == FUNCTION_DECL && DECL_BUILT_IN (node))
468 if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
469 fprintf (file, " built-in: BUILT_IN_MD:%d", DECL_FUNCTION_CODE (node));
470 else
471 fprintf (file, " built-in: %s:%s",
472 built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
473 built_in_names[(int) DECL_FUNCTION_CODE (node)]);
476 if (code == FIELD_DECL)
478 print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
479 print_node (file, "bit-offset", DECL_FIELD_BIT_OFFSET (node),
480 indent + 4);
481 if (DECL_BIT_FIELD_TYPE (node))
482 print_node (file, "bit_field_type", DECL_BIT_FIELD_TYPE (node),
483 indent + 4);
486 print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
488 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
490 print_node (file, "attributes",
491 DECL_ATTRIBUTES (node), indent + 4);
492 if (code != PARM_DECL)
493 print_node_brief (file, "initial", DECL_INITIAL (node),
494 indent + 4);
496 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
498 print_node_brief (file, "abstract_origin",
499 DECL_ABSTRACT_ORIGIN (node), indent + 4);
501 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
503 print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
506 lang_hooks.print_decl (file, node, indent);
508 if (DECL_RTL_SET_P (node))
510 indent_to (file, indent + 4);
511 print_rtl (file, DECL_RTL (node));
514 if (code == PARM_DECL)
516 print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
518 if (DECL_INCOMING_RTL (node) != 0)
520 indent_to (file, indent + 4);
521 fprintf (file, "incoming-rtl ");
522 print_rtl (file, DECL_INCOMING_RTL (node));
525 else if (code == FUNCTION_DECL
526 && DECL_STRUCT_FUNCTION (node) != 0)
528 print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4);
529 indent_to (file, indent + 4);
530 dump_addr (file, "struct-function ", DECL_STRUCT_FUNCTION (node));
533 if ((code == VAR_DECL || code == PARM_DECL)
534 && DECL_HAS_VALUE_EXPR_P (node))
535 print_node (file, "value-expr", DECL_VALUE_EXPR (node), indent + 4);
537 /* Print the decl chain only if decl is at second level. */
538 if (indent == 4)
539 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
540 else
541 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
542 break;
544 case tcc_type:
545 if (TYPE_UNSIGNED (node))
546 fputs (" unsigned", file);
548 if (TYPE_NO_FORCE_BLK (node))
549 fputs (" no-force-blk", file);
551 if (TYPE_STRING_FLAG (node))
552 fputs (" string-flag", file);
554 if (TYPE_NEEDS_CONSTRUCTING (node))
555 fputs (" needs-constructing", file);
557 if ((code == RECORD_TYPE
558 || code == UNION_TYPE
559 || code == QUAL_UNION_TYPE
560 || code == ARRAY_TYPE)
561 && TYPE_REVERSE_STORAGE_ORDER (node))
562 fputs (" reverse-storage-order", file);
564 /* The transparent-union flag is used for different things in
565 different nodes. */
566 if ((code == UNION_TYPE || code == RECORD_TYPE)
567 && TYPE_TRANSPARENT_AGGR (node))
568 fputs (" transparent-aggr", file);
569 else if (code == ARRAY_TYPE
570 && TYPE_NONALIASED_COMPONENT (node))
571 fputs (" nonaliased-component", file);
573 if (TYPE_PACKED (node))
574 fputs (" packed", file);
576 if (TYPE_RESTRICT (node))
577 fputs (" restrict", file);
579 if (TYPE_LANG_FLAG_0 (node))
580 fputs (" type_0", file);
581 if (TYPE_LANG_FLAG_1 (node))
582 fputs (" type_1", file);
583 if (TYPE_LANG_FLAG_2 (node))
584 fputs (" type_2", file);
585 if (TYPE_LANG_FLAG_3 (node))
586 fputs (" type_3", file);
587 if (TYPE_LANG_FLAG_4 (node))
588 fputs (" type_4", file);
589 if (TYPE_LANG_FLAG_5 (node))
590 fputs (" type_5", file);
591 if (TYPE_LANG_FLAG_6 (node))
592 fputs (" type_6", file);
593 if (TYPE_LANG_FLAG_7 (node))
594 fputs (" type_7", file);
596 mode = TYPE_MODE (node);
597 fprintf (file, " %s", GET_MODE_NAME (mode));
599 print_node (file, "size", TYPE_SIZE (node), indent + 4);
600 print_node (file, "unit-size", TYPE_SIZE_UNIT (node), indent + 4);
601 indent_to (file, indent + 3);
603 if (TYPE_USER_ALIGN (node))
604 fprintf (file, " user");
606 fprintf (file, " align:%d symtab:%d alias-set " HOST_WIDE_INT_PRINT_DEC,
607 TYPE_ALIGN (node), TYPE_SYMTAB_ADDRESS (node),
608 (HOST_WIDE_INT) TYPE_ALIAS_SET (node));
610 if (TYPE_STRUCTURAL_EQUALITY_P (node))
611 fprintf (file, " structural-equality");
612 else
613 dump_addr (file, " canonical-type ", TYPE_CANONICAL (node));
615 print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
617 if (INTEGRAL_TYPE_P (node) || code == REAL_TYPE
618 || code == FIXED_POINT_TYPE)
620 fprintf (file, " precision:%d", TYPE_PRECISION (node));
621 print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
622 print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
625 if (code == ENUMERAL_TYPE)
626 print_node (file, "values", TYPE_VALUES (node), indent + 4);
627 else if (code == ARRAY_TYPE)
628 print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
629 else if (code == VECTOR_TYPE)
630 fprintf (file, " nunits:%d", (int) TYPE_VECTOR_SUBPARTS (node));
631 else if (code == RECORD_TYPE
632 || code == UNION_TYPE
633 || code == QUAL_UNION_TYPE)
634 print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
635 else if (code == FUNCTION_TYPE
636 || code == METHOD_TYPE)
638 if (TYPE_METHOD_BASETYPE (node))
639 print_node_brief (file, "method basetype",
640 TYPE_METHOD_BASETYPE (node), indent + 4);
641 print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
643 else if (code == OFFSET_TYPE)
644 print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
645 indent + 4);
647 if (TYPE_CONTEXT (node))
648 print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
650 lang_hooks.print_type (file, node, indent);
652 if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
653 indent_to (file, indent + 3);
655 print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
656 indent + 4);
657 print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
658 indent + 4);
659 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
660 break;
662 case tcc_expression:
663 case tcc_comparison:
664 case tcc_unary:
665 case tcc_binary:
666 case tcc_reference:
667 case tcc_statement:
668 case tcc_vl_exp:
669 if (code == BIND_EXPR)
671 print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
672 print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
673 print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
674 break;
676 if (code == CALL_EXPR)
678 call_expr_arg_iterator iter;
679 tree arg;
680 print_node (file, "fn", CALL_EXPR_FN (node), indent + 4);
681 print_node (file, "static_chain", CALL_EXPR_STATIC_CHAIN (node),
682 indent + 4);
683 i = 0;
684 FOR_EACH_CALL_EXPR_ARG (arg, iter, node)
686 /* Buffer big enough to format a 32-bit UINT_MAX into, plus
687 the text. */
688 char temp[15];
689 sprintf (temp, "arg:%u", i);
690 print_node (file, temp, arg, indent + 4);
691 i++;
694 else
696 len = TREE_OPERAND_LENGTH (node);
698 for (i = 0; i < len; i++)
700 /* Buffer big enough to format a 32-bit UINT_MAX into, plus
701 the text. */
702 char temp[15];
704 sprintf (temp, "arg:%d", i);
705 print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
708 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
709 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
710 break;
712 case tcc_constant:
713 case tcc_exceptional:
714 switch (code)
716 case INTEGER_CST:
717 if (TREE_OVERFLOW (node))
718 fprintf (file, " overflow");
720 fprintf (file, " ");
721 print_dec (node, file, TYPE_SIGN (TREE_TYPE (node)));
722 break;
724 case REAL_CST:
726 REAL_VALUE_TYPE d;
728 if (TREE_OVERFLOW (node))
729 fprintf (file, " overflow");
731 d = TREE_REAL_CST (node);
732 if (REAL_VALUE_ISINF (d))
733 fprintf (file, REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf");
734 else if (REAL_VALUE_ISNAN (d))
735 fprintf (file, " Nan");
736 else
738 char string[64];
739 real_to_decimal (string, &d, sizeof (string), 0, 1);
740 fprintf (file, " %s", string);
743 break;
745 case FIXED_CST:
747 FIXED_VALUE_TYPE f;
748 char string[64];
750 if (TREE_OVERFLOW (node))
751 fprintf (file, " overflow");
753 f = TREE_FIXED_CST (node);
754 fixed_to_decimal (string, &f, sizeof (string));
755 fprintf (file, " %s", string);
757 break;
759 case VECTOR_CST:
761 /* Big enough for 2 UINT_MAX plus the string below. */
762 char buf[32];
763 unsigned i;
765 for (i = 0; i < VECTOR_CST_NELTS (node); ++i)
767 unsigned j;
768 /* Coalesce the output of identical consecutive elements. */
769 for (j = i + 1; j < VECTOR_CST_NELTS (node); j++)
770 if (VECTOR_CST_ELT (node, j) != VECTOR_CST_ELT (node, i))
771 break;
772 j--;
773 if (i == j)
774 sprintf (buf, "elt:%u: ", i);
775 else
776 sprintf (buf, "elt:%u...%u: ", i, j);
777 print_node (file, buf, VECTOR_CST_ELT (node, i), indent + 4);
778 i = j;
781 break;
783 case COMPLEX_CST:
784 print_node (file, "real", TREE_REALPART (node), indent + 4);
785 print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
786 break;
788 case STRING_CST:
790 const char *p = TREE_STRING_POINTER (node);
791 int i = TREE_STRING_LENGTH (node);
792 fputs (" \"", file);
793 while (--i >= 0)
795 char ch = *p++;
796 if (ch >= ' ' && ch < 127)
797 putc (ch, file);
798 else
799 fprintf (file, "\\%03o", ch & 0xFF);
801 fputc ('\"', file);
803 break;
805 case IDENTIFIER_NODE:
806 lang_hooks.print_identifier (file, node, indent);
807 break;
809 case TREE_LIST:
810 print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
811 print_node (file, "value", TREE_VALUE (node), indent + 4);
812 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
813 break;
815 case TREE_VEC:
816 len = TREE_VEC_LENGTH (node);
817 fprintf (file, " length:%d", len);
818 for (i = 0; i < len; i++)
819 if (TREE_VEC_ELT (node, i))
821 /* Buffer big enough to format a 32-bit UINT_MAX into, plus
822 the text. */
823 char temp[15];
824 sprintf (temp, "elt:%d", i);
825 print_node (file, temp, TREE_VEC_ELT (node, i), indent + 4);
827 break;
829 case CONSTRUCTOR:
831 unsigned HOST_WIDE_INT cnt;
832 tree index, value;
833 len = CONSTRUCTOR_NELTS (node);
834 fprintf (file, " length:%d", len);
835 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (node),
836 cnt, index, value)
838 print_node (file, "idx", index, indent + 4, false);
839 print_node (file, "val", value, indent + 4, false);
842 break;
844 case STATEMENT_LIST:
845 dump_addr (file, " head ", node->stmt_list.head);
846 dump_addr (file, " tail ", node->stmt_list.tail);
847 fprintf (file, " stmts");
849 tree_stmt_iterator i;
850 for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i))
852 /* Not printing the addresses of the (not-a-tree)
853 'struct tree_stmt_list_node's. */
854 dump_addr (file, " ", tsi_stmt (i));
856 fprintf (file, "\n");
857 for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i))
859 /* Not printing the addresses of the (not-a-tree)
860 'struct tree_stmt_list_node's. */
861 print_node (file, "stmt", tsi_stmt (i), indent + 4);
864 break;
866 case BLOCK:
867 print_node (file, "vars", BLOCK_VARS (node), indent + 4);
868 print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node),
869 indent + 4);
870 print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
871 print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
872 print_node (file, "abstract_origin",
873 BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
874 break;
876 case SSA_NAME:
877 print_node_brief (file, "var", SSA_NAME_VAR (node), indent + 4);
878 indent_to (file, indent + 4);
879 fprintf (file, "def_stmt ");
881 pretty_printer buffer;
882 buffer.buffer->stream = file;
883 pp_gimple_stmt_1 (&buffer, SSA_NAME_DEF_STMT (node), indent + 4, 0);
884 pp_flush (&buffer);
887 indent_to (file, indent + 4);
888 fprintf (file, "version:%u", SSA_NAME_VERSION (node));
889 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node))
890 fprintf (file, " in-abnormal-phi");
891 if (SSA_NAME_IN_FREE_LIST (node))
892 fprintf (file, " in-free-list");
894 if (SSA_NAME_PTR_INFO (node))
896 indent_to (file, indent + 3);
897 if (SSA_NAME_PTR_INFO (node))
898 dump_addr (file, " ptr-info ", SSA_NAME_PTR_INFO (node));
900 break;
902 case OMP_CLAUSE:
904 int i;
905 fprintf (file, " %s",
906 omp_clause_code_name[OMP_CLAUSE_CODE (node)]);
907 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (node)]; i++)
909 indent_to (file, indent + 4);
910 fprintf (file, "op-%d:", i);
911 print_node_brief (file, "", OMP_CLAUSE_OPERAND (node, i), 0);
914 break;
916 case OPTIMIZATION_NODE:
917 cl_optimization_print (file, indent + 4, TREE_OPTIMIZATION (node));
918 break;
920 case TARGET_OPTION_NODE:
921 cl_target_option_print (file, indent + 4, TREE_TARGET_OPTION (node));
922 break;
923 case IMPORTED_DECL:
924 fprintf (file, " imported-declaration");
925 print_node_brief (file, "associated-declaration",
926 IMPORTED_DECL_ASSOCIATED_DECL (node),
927 indent + 4);
928 break;
930 case TREE_BINFO:
931 fprintf (file, " bases:%d",
932 vec_safe_length (BINFO_BASE_BINFOS (node)));
933 print_node_brief (file, "offset", BINFO_OFFSET (node), indent + 4);
934 print_node_brief (file, "virtuals", BINFO_VIRTUALS (node),
935 indent + 4);
936 print_node_brief (file, "inheritance-chain",
937 BINFO_INHERITANCE_CHAIN (node),
938 indent + 4);
939 break;
941 default:
942 if (EXCEPTIONAL_CLASS_P (node))
943 lang_hooks.print_xnode (file, node, indent);
944 break;
947 break;
950 if (EXPR_HAS_LOCATION (node))
952 expanded_location xloc = expand_location (EXPR_LOCATION (node));
953 indent_to (file, indent+4);
954 fprintf (file, "%s:%d:%d", xloc.file, xloc.line, xloc.column);
956 /* Print the range, if any */
957 source_range r = EXPR_LOCATION_RANGE (node);
958 if (r.m_start)
960 xloc = expand_location (r.m_start);
961 fprintf (file, " start: %s:%d:%d", xloc.file, xloc.line, xloc.column);
963 else
965 fprintf (file, " start: unknown");
967 if (r.m_finish)
969 xloc = expand_location (r.m_finish);
970 fprintf (file, " finish: %s:%d:%d", xloc.file, xloc.line, xloc.column);
972 else
974 fprintf (file, " finish: unknown");
978 fprintf (file, ">");
982 /* Print the node NODE on standard error, for debugging.
983 Most nodes referred to by this one are printed recursively
984 down to a depth of six. */
986 DEBUG_FUNCTION void
987 debug_tree (tree node)
989 table = new hash_set<tree> (HASH_SIZE);
990 print_node (stderr, "", node, 0);
991 delete table;
992 table = NULL;
993 putc ('\n', stderr);
996 DEBUG_FUNCTION void
997 debug_raw (const tree_node &ref)
999 debug_tree (const_cast <tree> (&ref));
1002 DEBUG_FUNCTION void
1003 debug_raw (const tree_node *ptr)
1005 if (ptr)
1006 debug_raw (*ptr);
1007 else
1008 fprintf (stderr, "<nil>\n");
1011 static void
1012 dump_tree_via_hooks (const tree_node *ptr, dump_flags_t options)
1014 if (DECL_P (ptr))
1015 lang_hooks.print_decl (stderr, const_cast <tree_node*> (ptr), 0);
1016 else if (TYPE_P (ptr))
1017 lang_hooks.print_type (stderr, const_cast <tree_node*> (ptr), 0);
1018 else if (TREE_CODE (ptr) == IDENTIFIER_NODE)
1019 lang_hooks.print_identifier (stderr, const_cast <tree_node*> (ptr), 0);
1020 else
1021 print_generic_expr (stderr, const_cast <tree_node*> (ptr), options);
1022 fprintf (stderr, "\n");
1025 DEBUG_FUNCTION void
1026 debug (const tree_node &ref)
1028 dump_tree_via_hooks (&ref, 0);
1031 DEBUG_FUNCTION void
1032 debug (const tree_node *ptr)
1034 if (ptr)
1035 debug (*ptr);
1036 else
1037 fprintf (stderr, "<nil>\n");
1040 DEBUG_FUNCTION void
1041 debug_head (const tree_node &ref)
1043 debug (ref);
1046 DEBUG_FUNCTION void
1047 debug_head (const tree_node *ptr)
1049 if (ptr)
1050 debug_head (*ptr);
1051 else
1052 fprintf (stderr, "<nil>\n");
1055 DEBUG_FUNCTION void
1056 debug_body (const tree_node &ref)
1058 if (TREE_CODE (&ref) == FUNCTION_DECL)
1059 dump_function_to_file (const_cast <tree_node*> (&ref), stderr, 0);
1060 else
1061 debug (ref);
1064 DEBUG_FUNCTION void
1065 debug_body (const tree_node *ptr)
1067 if (ptr)
1068 debug_body (*ptr);
1069 else
1070 fprintf (stderr, "<nil>\n");
1073 /* Print the vector of trees VEC on standard error, for debugging.
1074 Most nodes referred to by this one are printed recursively
1075 down to a depth of six. */
1077 DEBUG_FUNCTION void
1078 debug_raw (vec<tree, va_gc> &ref)
1080 tree elt;
1081 unsigned ix;
1083 /* Print the slot this node is in, and its code, and address. */
1084 fprintf (stderr, "<VEC");
1085 dump_addr (stderr, " ", ref.address ());
1087 FOR_EACH_VEC_ELT (ref, ix, elt)
1089 fprintf (stderr, "elt:%d ", ix);
1090 debug_raw (elt);
1094 DEBUG_FUNCTION void
1095 debug (vec<tree, va_gc> &ref)
1097 tree elt;
1098 unsigned ix;
1100 /* Print the slot this node is in, and its code, and address. */
1101 fprintf (stderr, "<VEC");
1102 dump_addr (stderr, " ", ref.address ());
1104 FOR_EACH_VEC_ELT (ref, ix, elt)
1106 fprintf (stderr, "elt:%d ", ix);
1107 debug (elt);
1111 DEBUG_FUNCTION void
1112 debug (vec<tree, va_gc> *ptr)
1114 if (ptr)
1115 debug (*ptr);
1116 else
1117 fprintf (stderr, "<nil>\n");
1120 DEBUG_FUNCTION void
1121 debug_raw (vec<tree, va_gc> *ptr)
1123 if (ptr)
1124 debug_raw (*ptr);
1125 else
1126 fprintf (stderr, "<nil>\n");
1129 DEBUG_FUNCTION void
1130 debug_vec_tree (vec<tree, va_gc> *vec)
1132 debug_raw (vec);