]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/print-tree.c
Merge with trunk.
[thirdparty/gcc.git] / gcc / print-tree.c
1 /* Prints out tree in human readable form - GCC
2 Copyright (C) 1990-2013 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "ggc.h"
27 #include "langhooks.h"
28 #include "tree-iterator.h"
29 #include "diagnostic.h"
30 #include "gimple-pretty-print.h" /* FIXME */
31 #include "cgraph.h"
32 #include "tree-cfg.h"
33 #include "tree-dump.h"
34 #include "dumpfile.h"
35 #include "wide-int-print.h"
36
37 /* Define the hash table of nodes already seen.
38 Such nodes are not repeated; brief cross-references are used. */
39
40 #define HASH_SIZE 37
41
42 struct bucket
43 {
44 tree node;
45 struct bucket *next;
46 };
47
48 static struct bucket **table;
49
50 /* Print PREFIX and ADDR to FILE. */
51 void
52 dump_addr (FILE *file, const char *prefix, const void *addr)
53 {
54 if (flag_dump_noaddr || flag_dump_unnumbered)
55 fprintf (file, "%s#", prefix);
56 else
57 fprintf (file, "%s" HOST_PTR_PRINTF, prefix, addr);
58 }
59
60 /* Print a node in brief fashion, with just the code, address and name. */
61
62 void
63 print_node_brief (FILE *file, const char *prefix, const_tree node, int indent)
64 {
65 enum tree_code_class tclass;
66
67 if (node == 0)
68 return;
69
70 tclass = TREE_CODE_CLASS (TREE_CODE (node));
71
72 /* Always print the slot this node is in, and its code, address and
73 name if any. */
74 if (indent > 0)
75 fprintf (file, " ");
76 fprintf (file, "%s <%s", prefix, get_tree_code_name (TREE_CODE (node)));
77 dump_addr (file, " ", node);
78
79 if (tclass == tcc_declaration)
80 {
81 if (DECL_NAME (node))
82 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
83 else if (TREE_CODE (node) == LABEL_DECL
84 && LABEL_DECL_UID (node) != -1)
85 {
86 if (dump_flags & TDF_NOUID)
87 fprintf (file, " L.xxxx");
88 else
89 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node));
90 }
91 else
92 {
93 if (dump_flags & TDF_NOUID)
94 fprintf (file, " %c.xxxx",
95 TREE_CODE (node) == CONST_DECL ? 'C' : 'D');
96 else
97 fprintf (file, " %c.%u",
98 TREE_CODE (node) == CONST_DECL ? 'C' : 'D',
99 DECL_UID (node));
100 }
101 }
102 else if (tclass == tcc_type)
103 {
104 if (TYPE_NAME (node))
105 {
106 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
107 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
108 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
109 && DECL_NAME (TYPE_NAME (node)))
110 fprintf (file, " %s",
111 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
112 }
113 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node)))
114 fprintf (file, " address-space-%d", TYPE_ADDR_SPACE (node));
115 }
116 if (TREE_CODE (node) == IDENTIFIER_NODE)
117 fprintf (file, " %s", IDENTIFIER_POINTER (node));
118
119 /* We might as well always print the value of an integer or real. */
120 if (TREE_CODE (node) == INTEGER_CST)
121 {
122 if (TREE_OVERFLOW (node))
123 fprintf (file, " overflow");
124
125 fprintf (file, " ");
126 print_dec (node, file, TYPE_SIGN (TREE_TYPE (node)));
127 }
128 if (TREE_CODE (node) == REAL_CST)
129 {
130 REAL_VALUE_TYPE d;
131
132 if (TREE_OVERFLOW (node))
133 fprintf (file, " overflow");
134
135 d = TREE_REAL_CST (node);
136 if (REAL_VALUE_ISINF (d))
137 fprintf (file, REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf");
138 else if (REAL_VALUE_ISNAN (d))
139 fprintf (file, " Nan");
140 else
141 {
142 char string[60];
143 real_to_decimal (string, &d, sizeof (string), 0, 1);
144 fprintf (file, " %s", string);
145 }
146 }
147 if (TREE_CODE (node) == FIXED_CST)
148 {
149 FIXED_VALUE_TYPE f;
150 char string[60];
151
152 if (TREE_OVERFLOW (node))
153 fprintf (file, " overflow");
154
155 f = TREE_FIXED_CST (node);
156 fixed_to_decimal (string, &f, sizeof (string));
157 fprintf (file, " %s", string);
158 }
159
160 fprintf (file, ">");
161 }
162
163 void
164 indent_to (FILE *file, int column)
165 {
166 int i;
167
168 /* Since this is the long way, indent to desired column. */
169 if (column > 0)
170 fprintf (file, "\n");
171 for (i = 0; i < column; i++)
172 fprintf (file, " ");
173 }
174 \f
175 /* Print the node NODE in full on file FILE, preceded by PREFIX,
176 starting in column INDENT. */
177
178 void
179 print_node (FILE *file, const char *prefix, tree node, int indent)
180 {
181 int hash;
182 struct bucket *b;
183 enum machine_mode mode;
184 enum tree_code_class tclass;
185 int len;
186 int i;
187 expanded_location xloc;
188 enum tree_code code;
189
190 if (node == 0)
191 return;
192
193 code = TREE_CODE (node);
194 tclass = TREE_CODE_CLASS (code);
195
196 /* Don't get too deep in nesting. If the user wants to see deeper,
197 it is easy to use the address of a lowest-level node
198 as an argument in another call to debug_tree. */
199
200 if (indent > 24)
201 {
202 print_node_brief (file, prefix, node, indent);
203 return;
204 }
205
206 if (indent > 8 && (tclass == tcc_type || tclass == tcc_declaration))
207 {
208 print_node_brief (file, prefix, node, indent);
209 return;
210 }
211
212 /* It is unsafe to look at any other fields of an ERROR_MARK node. */
213 if (code == ERROR_MARK)
214 {
215 print_node_brief (file, prefix, node, indent);
216 return;
217 }
218
219 /* Allow this function to be called if the table is not there. */
220 if (table)
221 {
222 hash = ((uintptr_t) node) % HASH_SIZE;
223
224 /* If node is in the table, just mention its address. */
225 for (b = table[hash]; b; b = b->next)
226 if (b->node == node)
227 {
228 print_node_brief (file, prefix, node, indent);
229 return;
230 }
231
232 /* Add this node to the table. */
233 b = XNEW (struct bucket);
234 b->node = node;
235 b->next = table[hash];
236 table[hash] = b;
237 }
238
239 /* Indent to the specified column, since this is the long form. */
240 indent_to (file, indent);
241
242 /* Print the slot this node is in, and its code, and address. */
243 fprintf (file, "%s <%s", prefix, get_tree_code_name (code));
244 dump_addr (file, " ", node);
245
246 /* Print the name, if any. */
247 if (tclass == tcc_declaration)
248 {
249 if (DECL_NAME (node))
250 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
251 else if (code == LABEL_DECL
252 && LABEL_DECL_UID (node) != -1)
253 {
254 if (dump_flags & TDF_NOUID)
255 fprintf (file, " L.xxxx");
256 else
257 fprintf (file, " L.%d", (int) LABEL_DECL_UID (node));
258 }
259 else
260 {
261 if (dump_flags & TDF_NOUID)
262 fprintf (file, " %c.xxxx", code == CONST_DECL ? 'C' : 'D');
263 else
264 fprintf (file, " %c.%u", code == CONST_DECL ? 'C' : 'D',
265 DECL_UID (node));
266 }
267 }
268 else if (tclass == tcc_type)
269 {
270 if (TYPE_NAME (node))
271 {
272 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
273 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
274 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
275 && DECL_NAME (TYPE_NAME (node)))
276 fprintf (file, " %s",
277 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
278 }
279 }
280 if (code == IDENTIFIER_NODE)
281 fprintf (file, " %s", IDENTIFIER_POINTER (node));
282
283 if (code == INTEGER_CST)
284 {
285 if (indent <= 4)
286 print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
287 }
288 else if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
289 {
290 print_node (file, "type", TREE_TYPE (node), indent + 4);
291 if (TREE_TYPE (node))
292 indent_to (file, indent + 3);
293 }
294
295 if (!TYPE_P (node) && TREE_SIDE_EFFECTS (node))
296 fputs (" side-effects", file);
297
298 if (TYPE_P (node) ? TYPE_READONLY (node) : TREE_READONLY (node))
299 fputs (" readonly", file);
300 if (TYPE_P (node) && TYPE_ATOMIC (node))
301 fputs (" atomic", file);
302 if (!TYPE_P (node) && TREE_CONSTANT (node))
303 fputs (" constant", file);
304 else if (TYPE_P (node) && TYPE_SIZES_GIMPLIFIED (node))
305 fputs (" sizes-gimplified", file);
306
307 if (TYPE_P (node) && !ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (node)))
308 fprintf (file, " address-space-%d", TYPE_ADDR_SPACE (node));
309
310 if (TREE_ADDRESSABLE (node))
311 fputs (" addressable", file);
312 if (TREE_THIS_VOLATILE (node))
313 fputs (" volatile", file);
314 if (TREE_ASM_WRITTEN (node))
315 fputs (" asm_written", file);
316 if (TREE_USED (node))
317 fputs (" used", file);
318 if (TREE_NOTHROW (node))
319 fputs (TYPE_P (node) ? " align-ok" : " nothrow", file);
320 if (TREE_PUBLIC (node))
321 fputs (" public", file);
322 if (TREE_PRIVATE (node))
323 fputs (" private", file);
324 if (TREE_PROTECTED (node))
325 fputs (" protected", file);
326 if (TREE_STATIC (node))
327 fputs (" static", file);
328 if (TREE_DEPRECATED (node))
329 fputs (" deprecated", file);
330 if (TREE_VISITED (node))
331 fputs (" visited", file);
332
333 if (code != TREE_VEC && code != INTEGER_CST && code != SSA_NAME)
334 {
335 if (TREE_LANG_FLAG_0 (node))
336 fputs (" tree_0", file);
337 if (TREE_LANG_FLAG_1 (node))
338 fputs (" tree_1", file);
339 if (TREE_LANG_FLAG_2 (node))
340 fputs (" tree_2", file);
341 if (TREE_LANG_FLAG_3 (node))
342 fputs (" tree_3", file);
343 if (TREE_LANG_FLAG_4 (node))
344 fputs (" tree_4", file);
345 if (TREE_LANG_FLAG_5 (node))
346 fputs (" tree_5", file);
347 if (TREE_LANG_FLAG_6 (node))
348 fputs (" tree_6", file);
349 }
350
351 /* DECL_ nodes have additional attributes. */
352
353 switch (TREE_CODE_CLASS (code))
354 {
355 case tcc_declaration:
356 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
357 {
358 if (DECL_UNSIGNED (node))
359 fputs (" unsigned", file);
360 if (DECL_IGNORED_P (node))
361 fputs (" ignored", file);
362 if (DECL_ABSTRACT (node))
363 fputs (" abstract", file);
364 if (DECL_EXTERNAL (node))
365 fputs (" external", file);
366 if (DECL_NONLOCAL (node))
367 fputs (" nonlocal", file);
368 }
369 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
370 {
371 if (DECL_WEAK (node))
372 fputs (" weak", file);
373 if (DECL_IN_SYSTEM_HEADER (node))
374 fputs (" in_system_header", file);
375 }
376 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL)
377 && code != LABEL_DECL
378 && code != FUNCTION_DECL
379 && DECL_REGISTER (node))
380 fputs (" regdecl", file);
381
382 if (code == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
383 fputs (" suppress-debug", file);
384
385 if (code == FUNCTION_DECL
386 && DECL_FUNCTION_SPECIFIC_TARGET (node))
387 fputs (" function-specific-target", file);
388 if (code == FUNCTION_DECL
389 && DECL_FUNCTION_SPECIFIC_OPTIMIZATION (node))
390 fputs (" function-specific-opt", file);
391 if (code == FUNCTION_DECL && DECL_DECLARED_INLINE_P (node))
392 fputs (" autoinline", file);
393 if (code == FUNCTION_DECL && DECL_BUILT_IN (node))
394 fputs (" built-in", file);
395 if (code == FUNCTION_DECL && DECL_STATIC_CHAIN (node))
396 fputs (" static-chain", file);
397 if (TREE_CODE (node) == FUNCTION_DECL && decl_is_tm_clone (node))
398 fputs (" tm-clone", file);
399
400 if (code == FIELD_DECL && DECL_PACKED (node))
401 fputs (" packed", file);
402 if (code == FIELD_DECL && DECL_BIT_FIELD (node))
403 fputs (" bit-field", file);
404 if (code == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
405 fputs (" nonaddressable", file);
406
407 if (code == LABEL_DECL && EH_LANDING_PAD_NR (node))
408 fprintf (file, " landing-pad:%d", EH_LANDING_PAD_NR (node));
409
410 if (code == VAR_DECL && DECL_IN_TEXT_SECTION (node))
411 fputs (" in-text-section", file);
412 if (code == VAR_DECL && DECL_IN_CONSTANT_POOL (node))
413 fputs (" in-constant-pool", file);
414 if (code == VAR_DECL && DECL_COMMON (node))
415 fputs (" common", file);
416 if (code == VAR_DECL && DECL_THREAD_LOCAL_P (node))
417 {
418 enum tls_model kind = DECL_TLS_MODEL (node);
419 switch (kind)
420 {
421 case TLS_MODEL_GLOBAL_DYNAMIC:
422 fputs (" tls-global-dynamic", file);
423 break;
424 case TLS_MODEL_LOCAL_DYNAMIC:
425 fputs (" tls-local-dynamic", file);
426 break;
427 case TLS_MODEL_INITIAL_EXEC:
428 fputs (" tls-initial-exec", file);
429 break;
430 case TLS_MODEL_LOCAL_EXEC:
431 fputs (" tls-local-exec", file);
432 break;
433 default:
434 gcc_unreachable ();
435 }
436 }
437
438 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
439 {
440 if (DECL_VIRTUAL_P (node))
441 fputs (" virtual", file);
442 if (DECL_PRESERVE_P (node))
443 fputs (" preserve", file);
444 if (DECL_LANG_FLAG_0 (node))
445 fputs (" decl_0", file);
446 if (DECL_LANG_FLAG_1 (node))
447 fputs (" decl_1", file);
448 if (DECL_LANG_FLAG_2 (node))
449 fputs (" decl_2", file);
450 if (DECL_LANG_FLAG_3 (node))
451 fputs (" decl_3", file);
452 if (DECL_LANG_FLAG_4 (node))
453 fputs (" decl_4", file);
454 if (DECL_LANG_FLAG_5 (node))
455 fputs (" decl_5", file);
456 if (DECL_LANG_FLAG_6 (node))
457 fputs (" decl_6", file);
458 if (DECL_LANG_FLAG_7 (node))
459 fputs (" decl_7", file);
460
461 mode = DECL_MODE (node);
462 fprintf (file, " %s", GET_MODE_NAME (mode));
463 }
464
465 if ((code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
466 && DECL_BY_REFERENCE (node))
467 fputs (" passed-by-reference", file);
468
469 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS) && DECL_DEFER_OUTPUT (node))
470 fputs (" defer-output", file);
471
472
473 xloc = expand_location (DECL_SOURCE_LOCATION (node));
474 fprintf (file, " file %s line %d col %d", xloc.file, xloc.line,
475 xloc.column);
476
477 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
478 {
479 print_node (file, "size", DECL_SIZE (node), indent + 4);
480 print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4);
481
482 if (code != FUNCTION_DECL || DECL_BUILT_IN (node))
483 indent_to (file, indent + 3);
484
485 if (DECL_USER_ALIGN (node))
486 fprintf (file, " user");
487
488 fprintf (file, " align %d", DECL_ALIGN (node));
489 if (code == FIELD_DECL)
490 fprintf (file, " offset_align " HOST_WIDE_INT_PRINT_UNSIGNED,
491 DECL_OFFSET_ALIGN (node));
492
493 if (code == FUNCTION_DECL && DECL_BUILT_IN (node))
494 {
495 if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
496 fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node));
497 else
498 fprintf (file, " built-in %s:%s",
499 built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
500 built_in_names[(int) DECL_FUNCTION_CODE (node)]);
501 }
502 }
503 if (code == FIELD_DECL)
504 {
505 print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
506 print_node (file, "bit offset", DECL_FIELD_BIT_OFFSET (node),
507 indent + 4);
508 if (DECL_BIT_FIELD_TYPE (node))
509 print_node (file, "bit_field_type", DECL_BIT_FIELD_TYPE (node),
510 indent + 4);
511 }
512
513 print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
514
515 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
516 {
517 print_node_brief (file, "attributes",
518 DECL_ATTRIBUTES (node), indent + 4);
519 if (code != PARM_DECL)
520 print_node_brief (file, "initial", DECL_INITIAL (node),
521 indent + 4);
522 }
523 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
524 {
525 print_node_brief (file, "abstract_origin",
526 DECL_ABSTRACT_ORIGIN (node), indent + 4);
527 }
528 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
529 {
530 print_node (file, "arguments", DECL_ARGUMENT_FLD (node), indent + 4);
531 print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
532 }
533
534 lang_hooks.print_decl (file, node, indent);
535
536 if (DECL_RTL_SET_P (node))
537 {
538 indent_to (file, indent + 4);
539 print_rtl (file, DECL_RTL (node));
540 }
541
542 if (code == PARM_DECL)
543 {
544 print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
545
546 if (DECL_INCOMING_RTL (node) != 0)
547 {
548 indent_to (file, indent + 4);
549 fprintf (file, "incoming-rtl ");
550 print_rtl (file, DECL_INCOMING_RTL (node));
551 }
552 }
553 else if (code == FUNCTION_DECL
554 && DECL_STRUCT_FUNCTION (node) != 0)
555 {
556 indent_to (file, indent + 4);
557 dump_addr (file, "struct-function ", DECL_STRUCT_FUNCTION (node));
558 }
559
560 if ((code == VAR_DECL || code == PARM_DECL)
561 && DECL_HAS_VALUE_EXPR_P (node))
562 print_node (file, "value-expr", DECL_VALUE_EXPR (node), indent + 4);
563
564 /* Print the decl chain only if decl is at second level. */
565 if (indent == 4)
566 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
567 else
568 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
569 break;
570
571 case tcc_type:
572 if (TYPE_UNSIGNED (node))
573 fputs (" unsigned", file);
574
575 /* The no-force-blk flag is used for different things in
576 different types. */
577 if ((code == RECORD_TYPE
578 || code == UNION_TYPE
579 || code == QUAL_UNION_TYPE)
580 && TYPE_NO_FORCE_BLK (node))
581 fputs (" no-force-blk", file);
582
583 if (TYPE_STRING_FLAG (node))
584 fputs (" string-flag", file);
585 if (TYPE_NEEDS_CONSTRUCTING (node))
586 fputs (" needs-constructing", file);
587
588 /* The transparent-union flag is used for different things in
589 different nodes. */
590 if ((code == UNION_TYPE || code == RECORD_TYPE)
591 && TYPE_TRANSPARENT_AGGR (node))
592 fputs (" transparent-aggr", file);
593 else if (code == ARRAY_TYPE
594 && TYPE_NONALIASED_COMPONENT (node))
595 fputs (" nonaliased-component", file);
596
597 if (TYPE_PACKED (node))
598 fputs (" packed", file);
599
600 if (TYPE_RESTRICT (node))
601 fputs (" restrict", file);
602
603 if (TYPE_LANG_FLAG_0 (node))
604 fputs (" type_0", file);
605 if (TYPE_LANG_FLAG_1 (node))
606 fputs (" type_1", file);
607 if (TYPE_LANG_FLAG_2 (node))
608 fputs (" type_2", file);
609 if (TYPE_LANG_FLAG_3 (node))
610 fputs (" type_3", file);
611 if (TYPE_LANG_FLAG_4 (node))
612 fputs (" type_4", file);
613 if (TYPE_LANG_FLAG_5 (node))
614 fputs (" type_5", file);
615 if (TYPE_LANG_FLAG_6 (node))
616 fputs (" type_6", file);
617
618 mode = TYPE_MODE (node);
619 fprintf (file, " %s", GET_MODE_NAME (mode));
620
621 print_node (file, "size", TYPE_SIZE (node), indent + 4);
622 print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4);
623 indent_to (file, indent + 3);
624
625 if (TYPE_USER_ALIGN (node))
626 fprintf (file, " user");
627
628 fprintf (file, " align %d symtab %d alias set " HOST_WIDE_INT_PRINT_DEC,
629 TYPE_ALIGN (node), TYPE_SYMTAB_ADDRESS (node),
630 (HOST_WIDE_INT) TYPE_ALIAS_SET (node));
631
632 if (TYPE_STRUCTURAL_EQUALITY_P (node))
633 fprintf (file, " structural equality");
634 else
635 dump_addr (file, " canonical type ", TYPE_CANONICAL (node));
636
637 print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
638
639 if (INTEGRAL_TYPE_P (node) || code == REAL_TYPE
640 || code == FIXED_POINT_TYPE)
641 {
642 fprintf (file, " precision %d", TYPE_PRECISION (node));
643 print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
644 print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
645 }
646
647 if (code == ENUMERAL_TYPE)
648 print_node (file, "values", TYPE_VALUES (node), indent + 4);
649 else if (code == ARRAY_TYPE)
650 print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
651 else if (code == VECTOR_TYPE)
652 fprintf (file, " nunits %d", (int) TYPE_VECTOR_SUBPARTS (node));
653 else if (code == RECORD_TYPE
654 || code == UNION_TYPE
655 || code == QUAL_UNION_TYPE)
656 print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
657 else if (code == FUNCTION_TYPE
658 || code == METHOD_TYPE)
659 {
660 if (TYPE_METHOD_BASETYPE (node))
661 print_node_brief (file, "method basetype",
662 TYPE_METHOD_BASETYPE (node), indent + 4);
663 print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
664 }
665 else if (code == OFFSET_TYPE)
666 print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
667 indent + 4);
668
669 if (TYPE_CONTEXT (node))
670 print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
671
672 lang_hooks.print_type (file, node, indent);
673
674 if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
675 indent_to (file, indent + 3);
676
677 print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
678 indent + 4);
679 print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
680 indent + 4);
681 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
682 break;
683
684 case tcc_expression:
685 case tcc_comparison:
686 case tcc_unary:
687 case tcc_binary:
688 case tcc_reference:
689 case tcc_statement:
690 case tcc_vl_exp:
691 if (code == BIND_EXPR)
692 {
693 print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
694 print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
695 print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
696 break;
697 }
698 if (code == CALL_EXPR)
699 {
700 call_expr_arg_iterator iter;
701 tree arg;
702 print_node (file, "fn", CALL_EXPR_FN (node), indent + 4);
703 print_node (file, "static_chain", CALL_EXPR_STATIC_CHAIN (node),
704 indent + 4);
705 i = 0;
706 FOR_EACH_CALL_EXPR_ARG (arg, iter, node)
707 {
708 char temp[10];
709 sprintf (temp, "arg %d", i);
710 print_node (file, temp, arg, indent + 4);
711 i++;
712 }
713 }
714 else
715 {
716 len = TREE_OPERAND_LENGTH (node);
717
718 for (i = 0; i < len; i++)
719 {
720 char temp[10];
721
722 sprintf (temp, "arg %d", i);
723 print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
724 }
725 }
726 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
727 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
728 break;
729
730 case tcc_constant:
731 case tcc_exceptional:
732 switch (code)
733 {
734 case INTEGER_CST:
735 if (TREE_OVERFLOW (node))
736 fprintf (file, " overflow");
737
738 fprintf (file, " ");
739 print_dec (node, file, TYPE_SIGN (TREE_TYPE (node)));
740 break;
741
742 case REAL_CST:
743 {
744 REAL_VALUE_TYPE d;
745
746 if (TREE_OVERFLOW (node))
747 fprintf (file, " overflow");
748
749 d = TREE_REAL_CST (node);
750 if (REAL_VALUE_ISINF (d))
751 fprintf (file, REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf");
752 else if (REAL_VALUE_ISNAN (d))
753 fprintf (file, " Nan");
754 else
755 {
756 char string[64];
757 real_to_decimal (string, &d, sizeof (string), 0, 1);
758 fprintf (file, " %s", string);
759 }
760 }
761 break;
762
763 case FIXED_CST:
764 {
765 FIXED_VALUE_TYPE f;
766 char string[64];
767
768 if (TREE_OVERFLOW (node))
769 fprintf (file, " overflow");
770
771 f = TREE_FIXED_CST (node);
772 fixed_to_decimal (string, &f, sizeof (string));
773 fprintf (file, " %s", string);
774 }
775 break;
776
777 case VECTOR_CST:
778 {
779 char buf[10];
780 unsigned i;
781
782 for (i = 0; i < VECTOR_CST_NELTS (node); ++i)
783 {
784 sprintf (buf, "elt%u: ", i);
785 print_node (file, buf, VECTOR_CST_ELT (node, i), indent + 4);
786 }
787 }
788 break;
789
790 case COMPLEX_CST:
791 print_node (file, "real", TREE_REALPART (node), indent + 4);
792 print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
793 break;
794
795 case STRING_CST:
796 {
797 const char *p = TREE_STRING_POINTER (node);
798 int i = TREE_STRING_LENGTH (node);
799 fputs (" \"", file);
800 while (--i >= 0)
801 {
802 char ch = *p++;
803 if (ch >= ' ' && ch < 127)
804 putc (ch, file);
805 else
806 fprintf (file, "\\%03o", ch & 0xFF);
807 }
808 fputc ('\"', file);
809 }
810 break;
811
812 case IDENTIFIER_NODE:
813 lang_hooks.print_identifier (file, node, indent);
814 break;
815
816 case TREE_LIST:
817 print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
818 print_node (file, "value", TREE_VALUE (node), indent + 4);
819 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
820 break;
821
822 case TREE_VEC:
823 len = TREE_VEC_LENGTH (node);
824 for (i = 0; i < len; i++)
825 if (TREE_VEC_ELT (node, i))
826 {
827 char temp[10];
828 sprintf (temp, "elt %d", i);
829 print_node (file, temp, TREE_VEC_ELT (node, i), indent + 4);
830 }
831 break;
832
833 case CONSTRUCTOR:
834 {
835 unsigned HOST_WIDE_INT cnt;
836 tree index, value;
837 len = vec_safe_length (CONSTRUCTOR_ELTS (node));
838 fprintf (file, " lngt %d", len);
839 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (node),
840 cnt, index, value)
841 {
842 print_node (file, "idx", index, indent + 4);
843 print_node (file, "val", value, indent + 4);
844 }
845 }
846 break;
847
848 case STATEMENT_LIST:
849 dump_addr (file, " head ", node->stmt_list.head);
850 dump_addr (file, " tail ", node->stmt_list.tail);
851 fprintf (file, " stmts");
852 {
853 tree_stmt_iterator i;
854 for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i))
855 {
856 /* Not printing the addresses of the (not-a-tree)
857 'struct tree_stmt_list_node's. */
858 dump_addr (file, " ", tsi_stmt (i));
859 }
860 fprintf (file, "\n");
861 for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i))
862 {
863 /* Not printing the addresses of the (not-a-tree)
864 'struct tree_stmt_list_node's. */
865 print_node (file, "stmt", tsi_stmt (i), indent + 4);
866 }
867 }
868 break;
869
870 case BLOCK:
871 print_node (file, "vars", BLOCK_VARS (node), indent + 4);
872 print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node),
873 indent + 4);
874 print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
875 print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
876 print_node (file, "abstract_origin",
877 BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
878 break;
879
880 case SSA_NAME:
881 print_node_brief (file, "var", SSA_NAME_VAR (node), indent + 4);
882 fprintf (file, "def_stmt ");
883 print_gimple_stmt (file, SSA_NAME_DEF_STMT (node), indent + 4, 0);
884
885 indent_to (file, indent + 4);
886 fprintf (file, "version %u", SSA_NAME_VERSION (node));
887 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node))
888 fprintf (file, " in-abnormal-phi");
889 if (SSA_NAME_IN_FREE_LIST (node))
890 fprintf (file, " in-free-list");
891
892 if (SSA_NAME_PTR_INFO (node))
893 {
894 indent_to (file, indent + 3);
895 if (SSA_NAME_PTR_INFO (node))
896 dump_addr (file, " ptr-info ", SSA_NAME_PTR_INFO (node));
897 }
898 break;
899
900 case OMP_CLAUSE:
901 {
902 int i;
903 fprintf (file, " %s",
904 omp_clause_code_name[OMP_CLAUSE_CODE (node)]);
905 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (node)]; i++)
906 {
907 indent_to (file, indent + 4);
908 fprintf (file, "op %d:", i);
909 print_node_brief (file, "", OMP_CLAUSE_OPERAND (node, i), 0);
910 }
911 }
912 break;
913
914 case OPTIMIZATION_NODE:
915 cl_optimization_print (file, indent + 4, TREE_OPTIMIZATION (node));
916 break;
917
918 case TARGET_OPTION_NODE:
919 cl_target_option_print (file, indent + 4, TREE_TARGET_OPTION (node));
920 break;
921 case IMPORTED_DECL:
922 fprintf (file, " imported declaration");
923 print_node_brief (file, "associated declaration",
924 IMPORTED_DECL_ASSOCIATED_DECL (node),
925 indent + 4);
926 break;
927
928 default:
929 if (EXCEPTIONAL_CLASS_P (node))
930 lang_hooks.print_xnode (file, node, indent);
931 break;
932 }
933
934 break;
935 }
936
937 if (EXPR_HAS_LOCATION (node))
938 {
939 expanded_location xloc = expand_location (EXPR_LOCATION (node));
940 indent_to (file, indent+4);
941 fprintf (file, "%s:%d:%d", xloc.file, xloc.line, xloc.column);
942 }
943
944 fprintf (file, ">");
945 }
946
947
948 /* Print the node NODE on standard error, for debugging.
949 Most nodes referred to by this one are printed recursively
950 down to a depth of six. */
951
952 DEBUG_FUNCTION void
953 debug_tree (tree node)
954 {
955 table = XCNEWVEC (struct bucket *, HASH_SIZE);
956 print_node (stderr, "", node, 0);
957 free (table);
958 table = 0;
959 putc ('\n', stderr);
960 }
961
962 DEBUG_FUNCTION void
963 debug_raw (const tree_node &ref)
964 {
965 debug_tree (const_cast <tree> (&ref));
966 }
967
968 DEBUG_FUNCTION void
969 debug_raw (const tree_node *ptr)
970 {
971 if (ptr)
972 debug_raw (*ptr);
973 else
974 fprintf (stderr, "<nil>\n");
975 }
976
977 static void
978 dump_tree_via_hooks (const tree_node *ptr, int options)
979 {
980 if (DECL_P (ptr))
981 lang_hooks.print_decl (stderr, const_cast <tree_node*> (ptr), 0);
982 else if (TYPE_P (ptr))
983 lang_hooks.print_type (stderr, const_cast <tree_node*> (ptr), 0);
984 else if (TREE_CODE (ptr) == IDENTIFIER_NODE)
985 lang_hooks.print_identifier (stderr, const_cast <tree_node*> (ptr), 0);
986 else
987 print_generic_expr (stderr, const_cast <tree_node*> (ptr), options);
988 fprintf (stderr, "\n");
989 }
990
991 DEBUG_FUNCTION void
992 debug (const tree_node &ref)
993 {
994 dump_tree_via_hooks (&ref, 0);
995 }
996
997 DEBUG_FUNCTION void
998 debug (const tree_node *ptr)
999 {
1000 if (ptr)
1001 debug (*ptr);
1002 else
1003 fprintf (stderr, "<nil>\n");
1004 }
1005
1006 DEBUG_FUNCTION void
1007 debug_verbose (const tree_node &ref)
1008 {
1009 dump_tree_via_hooks (&ref, TDF_VERBOSE);
1010 }
1011
1012 DEBUG_FUNCTION void
1013 debug_verbose (const tree_node *ptr)
1014 {
1015 if (ptr)
1016 debug_verbose (*ptr);
1017 else
1018 fprintf (stderr, "<nil>\n");
1019 }
1020
1021 DEBUG_FUNCTION void
1022 debug_head (const tree_node &ref)
1023 {
1024 debug (ref);
1025 }
1026
1027 DEBUG_FUNCTION void
1028 debug_head (const tree_node *ptr)
1029 {
1030 if (ptr)
1031 debug_head (*ptr);
1032 else
1033 fprintf (stderr, "<nil>\n");
1034 }
1035
1036 DEBUG_FUNCTION void
1037 debug_body (const tree_node &ref)
1038 {
1039 if (TREE_CODE (&ref) == FUNCTION_DECL)
1040 dump_function_to_file (const_cast <tree_node*> (&ref), stderr, 0);
1041 else
1042 debug (ref);
1043 }
1044
1045 DEBUG_FUNCTION void
1046 debug_body (const tree_node *ptr)
1047 {
1048 if (ptr)
1049 debug_body (*ptr);
1050 else
1051 fprintf (stderr, "<nil>\n");
1052 }
1053
1054 /* Print the vector of trees VEC on standard error, for debugging.
1055 Most nodes referred to by this one are printed recursively
1056 down to a depth of six. */
1057
1058 DEBUG_FUNCTION void
1059 debug_raw (vec<tree, va_gc> &ref)
1060 {
1061 tree elt;
1062 unsigned ix;
1063
1064 /* Print the slot this node is in, and its code, and address. */
1065 fprintf (stderr, "<VEC");
1066 dump_addr (stderr, " ", ref.address ());
1067
1068 FOR_EACH_VEC_ELT (ref, ix, elt)
1069 {
1070 fprintf (stderr, "elt %d ", ix);
1071 debug_raw (elt);
1072 }
1073 }
1074
1075 DEBUG_FUNCTION void
1076 debug (vec<tree, va_gc> &ref)
1077 {
1078 tree elt;
1079 unsigned ix;
1080
1081 /* Print the slot this node is in, and its code, and address. */
1082 fprintf (stderr, "<VEC");
1083 dump_addr (stderr, " ", ref.address ());
1084
1085 FOR_EACH_VEC_ELT (ref, ix, elt)
1086 {
1087 fprintf (stderr, "elt %d ", ix);
1088 debug (elt);
1089 }
1090 }
1091
1092 DEBUG_FUNCTION void
1093 debug (vec<tree, va_gc> *ptr)
1094 {
1095 if (ptr)
1096 debug (*ptr);
1097 else
1098 fprintf (stderr, "<nil>\n");
1099 }
1100
1101 DEBUG_FUNCTION void
1102 debug_raw (vec<tree, va_gc> *ptr)
1103 {
1104 if (ptr)
1105 debug_raw (*ptr);
1106 else
1107 fprintf (stderr, "<nil>\n");
1108 }
1109
1110 DEBUG_FUNCTION void
1111 debug_vec_tree (vec<tree, va_gc> *vec)
1112 {
1113 debug_raw (vec);
1114 }