Daily bump.
[official-gcc.git] / gcc / print-tree.c
blobf5353738ebdc97afc7cc821e995a6aa020a0c076
1 /* Prints out tree in human readable form - GNU C-compiler
2 Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "tree.h"
26 #include "ggc.h"
27 #include "langhooks.h"
29 /* Define the hash table of nodes already seen.
30 Such nodes are not repeated; brief cross-references are used. */
32 #define HASH_SIZE 37
34 struct bucket
36 tree node;
37 struct bucket *next;
40 static struct bucket **table;
42 /* Print the node NODE on standard error, for debugging.
43 Most nodes referred to by this one are printed recursively
44 down to a depth of six. */
46 void
47 debug_tree (node)
48 tree node;
50 table = (struct bucket **) permalloc (HASH_SIZE * sizeof (struct bucket *));
51 memset ((char *) table, 0, HASH_SIZE * sizeof (struct bucket *));
52 print_node (stderr, "", node, 0);
53 table = 0;
54 fprintf (stderr, "\n");
57 /* Print a node in brief fashion, with just the code, address and name. */
59 void
60 print_node_brief (file, prefix, node, indent)
61 FILE *file;
62 const char *prefix;
63 tree node;
64 int indent;
66 char class;
68 if (node == 0)
69 return;
71 class = TREE_CODE_CLASS (TREE_CODE (node));
73 /* Always print the slot this node is in, and its code, address and
74 name if any. */
75 if (indent > 0)
76 fprintf (file, " ");
77 fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]);
78 fprintf (file, HOST_PTR_PRINTF, (char *) node);
80 if (class == 'd')
82 if (DECL_NAME (node))
83 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
85 else if (class == 't')
87 if (TYPE_NAME (node))
89 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
90 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
91 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
92 && DECL_NAME (TYPE_NAME (node)))
93 fprintf (file, " %s",
94 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
97 if (TREE_CODE (node) == IDENTIFIER_NODE)
98 fprintf (file, " %s", IDENTIFIER_POINTER (node));
100 /* We might as well always print the value of an integer or real. */
101 if (TREE_CODE (node) == INTEGER_CST)
103 if (TREE_CONSTANT_OVERFLOW (node))
104 fprintf (file, " overflow");
106 fprintf (file, " ");
107 if (TREE_INT_CST_HIGH (node) == 0)
108 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED, TREE_INT_CST_LOW (node));
109 else if (TREE_INT_CST_HIGH (node) == -1
110 && TREE_INT_CST_LOW (node) != 0)
112 fprintf (file, "-");
113 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
114 -TREE_INT_CST_LOW (node));
116 else
117 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
118 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
120 if (TREE_CODE (node) == REAL_CST)
122 REAL_VALUE_TYPE d;
124 if (TREE_OVERFLOW (node))
125 fprintf (file, " overflow");
127 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
128 d = TREE_REAL_CST (node);
129 if (REAL_VALUE_ISINF (d))
130 fprintf (file, " Inf");
131 else if (REAL_VALUE_ISNAN (d))
132 fprintf (file, " Nan");
133 else
135 char string[100];
137 REAL_VALUE_TO_DECIMAL (d, "%e", string);
138 fprintf (file, " %s", string);
140 #else
142 int i;
143 unsigned char *p = (unsigned char *) &TREE_REAL_CST (node);
144 fprintf (file, " 0x");
145 for (i = 0; i < sizeof TREE_REAL_CST (node); i++)
146 fprintf (file, "%02x", *p++);
147 fprintf (file, "");
149 #endif
152 fprintf (file, ">");
155 void
156 indent_to (file, column)
157 FILE *file;
158 int column;
160 int i;
162 /* Since this is the long way, indent to desired column. */
163 if (column > 0)
164 fprintf (file, "\n");
165 for (i = 0; i < column; i++)
166 fprintf (file, " ");
169 /* Print the node NODE in full on file FILE, preceded by PREFIX,
170 starting in column INDENT. */
172 void
173 print_node (file, prefix, node, indent)
174 FILE *file;
175 const char *prefix;
176 tree node;
177 int indent;
179 int hash;
180 struct bucket *b;
181 enum machine_mode mode;
182 char class;
183 int len;
184 int first_rtl;
185 int i;
187 if (node == 0)
188 return;
190 class = TREE_CODE_CLASS (TREE_CODE (node));
192 /* Don't get too deep in nesting. If the user wants to see deeper,
193 it is easy to use the address of a lowest-level node
194 as an argument in another call to debug_tree. */
196 if (indent > 24)
198 print_node_brief (file, prefix, node, indent);
199 return;
202 if (indent > 8 && (class == 't' || class == 'd'))
204 print_node_brief (file, prefix, node, indent);
205 return;
208 /* It is unsafe to look at any other filds of an ERROR_MARK node. */
209 if (TREE_CODE (node) == ERROR_MARK)
211 print_node_brief (file, prefix, node, indent);
212 return;
215 hash = ((unsigned long) node) % HASH_SIZE;
217 /* If node is in the table, just mention its address. */
218 for (b = table[hash]; b; b = b->next)
219 if (b->node == node)
221 print_node_brief (file, prefix, node, indent);
222 return;
225 /* Add this node to the table. */
226 b = (struct bucket *) permalloc (sizeof (struct bucket));
227 b->node = node;
228 b->next = table[hash];
229 table[hash] = b;
231 /* Indent to the specified column, since this is the long form. */
232 indent_to (file, indent);
234 /* Print the slot this node is in, and its code, and address. */
235 fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]);
236 fprintf (file, HOST_PTR_PRINTF, (char *) node);
238 /* Print the name, if any. */
239 if (class == 'd')
241 if (DECL_NAME (node))
242 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
244 else if (class == 't')
246 if (TYPE_NAME (node))
248 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
249 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
250 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
251 && DECL_NAME (TYPE_NAME (node)))
252 fprintf (file, " %s",
253 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
256 if (TREE_CODE (node) == IDENTIFIER_NODE)
257 fprintf (file, " %s", IDENTIFIER_POINTER (node));
259 if (TREE_CODE (node) == INTEGER_CST)
261 if (indent <= 4)
262 print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
264 else
266 print_node (file, "type", TREE_TYPE (node), indent + 4);
267 if (TREE_TYPE (node))
268 indent_to (file, indent + 3);
271 if (TREE_SIDE_EFFECTS (node))
272 fputs (" side-effects", file);
273 if (TREE_READONLY (node))
274 fputs (" readonly", file);
275 if (TREE_CONSTANT (node))
276 fputs (" constant", file);
277 if (TREE_ADDRESSABLE (node))
278 fputs (" addressable", file);
279 if (TREE_THIS_VOLATILE (node))
280 fputs (" volatile", file);
281 if (TREE_UNSIGNED (node))
282 fputs (" unsigned", file);
283 if (TREE_ASM_WRITTEN (node))
284 fputs (" asm_written", file);
285 if (TREE_USED (node))
286 fputs (" used", file);
287 if (TREE_NOTHROW (node))
288 fputs (" nothrow", file);
289 if (TREE_PUBLIC (node))
290 fputs (" public", file);
291 if (TREE_PRIVATE (node))
292 fputs (" private", file);
293 if (TREE_PROTECTED (node))
294 fputs (" protected", file);
295 if (TREE_STATIC (node))
296 fputs (" static", file);
297 if (TREE_DEPRECATED (node))
298 fputs (" deprecated", file);
299 if (TREE_LANG_FLAG_0 (node))
300 fputs (" tree_0", file);
301 if (TREE_LANG_FLAG_1 (node))
302 fputs (" tree_1", file);
303 if (TREE_LANG_FLAG_2 (node))
304 fputs (" tree_2", file);
305 if (TREE_LANG_FLAG_3 (node))
306 fputs (" tree_3", file);
307 if (TREE_LANG_FLAG_4 (node))
308 fputs (" tree_4", file);
309 if (TREE_LANG_FLAG_5 (node))
310 fputs (" tree_5", file);
311 if (TREE_LANG_FLAG_6 (node))
312 fputs (" tree_6", file);
314 /* DECL_ nodes have additional attributes. */
316 switch (TREE_CODE_CLASS (TREE_CODE (node)))
318 case 'd':
319 mode = DECL_MODE (node);
321 if (DECL_IGNORED_P (node))
322 fputs (" ignored", file);
323 if (DECL_ABSTRACT (node))
324 fputs (" abstract", file);
325 if (DECL_IN_SYSTEM_HEADER (node))
326 fputs (" in_system_header", file);
327 if (DECL_COMMON (node))
328 fputs (" common", file);
329 if (DECL_EXTERNAL (node))
330 fputs (" external", file);
331 if (DECL_WEAK (node))
332 fputs (" weak", file);
333 if (DECL_REGISTER (node) && TREE_CODE (node) != FIELD_DECL
334 && TREE_CODE (node) != FUNCTION_DECL
335 && TREE_CODE (node) != LABEL_DECL)
336 fputs (" regdecl", file);
337 if (DECL_NONLOCAL (node))
338 fputs (" nonlocal", file);
340 if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
341 fputs (" suppress-debug", file);
343 if (TREE_CODE (node) == FUNCTION_DECL && DECL_INLINE (node))
344 fputs (" inline", file);
345 if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
346 fputs (" built-in", file);
347 if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
348 fputs (" built-in-nonansi", file);
349 if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
350 fputs (" no-static-chain", file);
352 if (TREE_CODE (node) == FIELD_DECL && DECL_PACKED (node))
353 fputs (" packed", file);
354 if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
355 fputs (" bit-field", file);
356 if (TREE_CODE (node) == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
357 fputs (" nonaddressable", file);
359 if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
360 fputs (" too-late", file);
361 if (TREE_CODE (node) == LABEL_DECL && DECL_ERROR_ISSUED (node))
362 fputs (" error-issued", file);
364 if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
365 fputs (" in-text-section", file);
367 if (TREE_CODE (node) == PARM_DECL && DECL_TRANSPARENT_UNION (node))
368 fputs (" transparent-union", file);
370 if (DECL_VIRTUAL_P (node))
371 fputs (" virtual", file);
372 if (DECL_DEFER_OUTPUT (node))
373 fputs (" defer-output", file);
375 if (DECL_LANG_FLAG_0 (node))
376 fputs (" decl_0", file);
377 if (DECL_LANG_FLAG_1 (node))
378 fputs (" decl_1", file);
379 if (DECL_LANG_FLAG_2 (node))
380 fputs (" decl_2", file);
381 if (DECL_LANG_FLAG_3 (node))
382 fputs (" decl_3", file);
383 if (DECL_LANG_FLAG_4 (node))
384 fputs (" decl_4", file);
385 if (DECL_LANG_FLAG_5 (node))
386 fputs (" decl_5", file);
387 if (DECL_LANG_FLAG_6 (node))
388 fputs (" decl_6", file);
389 if (DECL_LANG_FLAG_7 (node))
390 fputs (" decl_7", file);
392 fprintf (file, " %s", GET_MODE_NAME (mode));
393 fprintf (file, " file %s line %d",
394 DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
396 print_node (file, "size", DECL_SIZE (node), indent + 4);
397 print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4);
399 if (TREE_CODE (node) != FUNCTION_DECL
400 || DECL_INLINE (node) || DECL_BUILT_IN (node))
401 indent_to (file, indent + 3);
403 if (TREE_CODE (node) != FUNCTION_DECL)
405 if (DECL_USER_ALIGN (node))
406 fprintf (file, " user");
408 fprintf (file, " align %d", DECL_ALIGN (node));
409 if (TREE_CODE (node) == FIELD_DECL)
411 fprintf (file, " offset_align ");
412 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
413 DECL_OFFSET_ALIGN (node));
416 else if (DECL_BUILT_IN (node))
418 if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
419 fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node));
420 else
421 fprintf (file, " built-in %s:%s",
422 built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
423 built_in_names[(int) DECL_FUNCTION_CODE (node)]);
426 if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
428 fprintf (file, " alias set ");
429 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
430 DECL_POINTER_ALIAS_SET (node));
433 if (TREE_CODE (node) == FIELD_DECL)
435 print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
436 print_node (file, "bit offset", DECL_FIELD_BIT_OFFSET (node),
437 indent + 4);
440 print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
441 print_node_brief (file, "attributes",
442 DECL_ATTRIBUTES (node), indent + 4);
443 print_node_brief (file, "abstract_origin",
444 DECL_ABSTRACT_ORIGIN (node), indent + 4);
446 print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4);
447 print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
448 print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4);
450 (*lang_hooks.print_decl) (file, node, indent);
452 if (DECL_RTL_SET_P (node))
454 indent_to (file, indent + 4);
455 print_rtl (file, DECL_RTL (node));
458 if (TREE_CODE (node) == PARM_DECL)
460 print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
461 print_node (file, "arg-type-as-written",
462 DECL_ARG_TYPE_AS_WRITTEN (node), indent + 4);
464 if (DECL_INCOMING_RTL (node) != 0)
466 indent_to (file, indent + 4);
467 fprintf (file, "incoming-rtl ");
468 print_rtl (file, DECL_INCOMING_RTL (node));
471 else if (TREE_CODE (node) == FUNCTION_DECL
472 && DECL_SAVED_INSNS (node) != 0)
474 indent_to (file, indent + 4);
475 fprintf (file, "saved-insns ");
476 fprintf (file, HOST_PTR_PRINTF, (char *) DECL_SAVED_INSNS (node));
479 /* Print the decl chain only if decl is at second level. */
480 if (indent == 4)
481 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
482 else
483 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
484 break;
486 case 't':
487 /* The no-force-blk flag is used for different things in
488 different types. */
489 if ((TREE_CODE (node) == RECORD_TYPE
490 || TREE_CODE (node) == UNION_TYPE
491 || TREE_CODE (node) == QUAL_UNION_TYPE)
492 && TYPE_NO_FORCE_BLK (node))
493 fputs (" no-force-blk", file);
494 else if (TREE_CODE (node) == INTEGER_TYPE
495 && TYPE_IS_SIZETYPE (node))
496 fputs (" sizetype", file);
497 else if (TREE_CODE (node) == FUNCTION_TYPE
498 && TYPE_RETURNS_STACK_DEPRESSED (node))
499 fputs (" returns-stack-depressed", file);
501 if (TYPE_STRING_FLAG (node))
502 fputs (" string-flag", file);
503 if (TYPE_NEEDS_CONSTRUCTING (node))
504 fputs (" needs-constructing", file);
506 /* The transparent-union flag is used for different things in
507 different nodes. */
508 if (TREE_CODE (node) == UNION_TYPE && TYPE_TRANSPARENT_UNION (node))
509 fputs (" transparent-union", file);
510 else if (TREE_CODE (node) == ARRAY_TYPE
511 && TYPE_NONALIASED_COMPONENT (node))
512 fputs (" nonaliased-component", file);
513 else if (TREE_CODE (node) == FUNCTION_TYPE
514 && TYPE_AMBIENT_BOUNDEDNESS (node))
515 fputs (" ambient-boundedness", file);
517 if (TYPE_PACKED (node))
518 fputs (" packed", file);
520 if (TYPE_LANG_FLAG_0 (node))
521 fputs (" type_0", file);
522 if (TYPE_LANG_FLAG_1 (node))
523 fputs (" type_1", file);
524 if (TYPE_LANG_FLAG_2 (node))
525 fputs (" type_2", file);
526 if (TYPE_LANG_FLAG_3 (node))
527 fputs (" type_3", file);
528 if (TYPE_LANG_FLAG_4 (node))
529 fputs (" type_4", file);
530 if (TYPE_LANG_FLAG_5 (node))
531 fputs (" type_5", file);
532 if (TYPE_LANG_FLAG_6 (node))
533 fputs (" type_6", file);
535 mode = TYPE_MODE (node);
536 fprintf (file, " %s", GET_MODE_NAME (mode));
538 print_node (file, "size", TYPE_SIZE (node), indent + 4);
539 print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4);
540 indent_to (file, indent + 3);
542 if (TYPE_USER_ALIGN (node))
543 fprintf (file, " user");
545 fprintf (file, " align %d", TYPE_ALIGN (node));
546 fprintf (file, " symtab %d", TYPE_SYMTAB_ADDRESS (node));
547 fprintf (file, " alias set ");
548 fprintf (file, HOST_WIDE_INT_PRINT_DEC, TYPE_ALIAS_SET (node));
550 print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
552 if (INTEGRAL_TYPE_P (node) || TREE_CODE (node) == REAL_TYPE)
554 fprintf (file, " precision %d", TYPE_PRECISION (node));
555 print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
556 print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
559 if (TREE_CODE (node) == ENUMERAL_TYPE)
560 print_node (file, "values", TYPE_VALUES (node), indent + 4);
561 else if (TREE_CODE (node) == ARRAY_TYPE || TREE_CODE (node) == SET_TYPE)
562 print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
563 else if (TREE_CODE (node) == RECORD_TYPE
564 || TREE_CODE (node) == UNION_TYPE
565 || TREE_CODE (node) == QUAL_UNION_TYPE)
566 print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
567 else if (TREE_CODE (node) == FUNCTION_TYPE
568 || TREE_CODE (node) == METHOD_TYPE)
570 if (TYPE_METHOD_BASETYPE (node))
571 print_node_brief (file, "method basetype",
572 TYPE_METHOD_BASETYPE (node), indent + 4);
573 print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
575 else if (TREE_CODE (node) == OFFSET_TYPE)
576 print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
577 indent + 4);
579 if (TYPE_CONTEXT (node))
580 print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
582 (*lang_hooks.print_type) (file, node, indent);
584 if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
585 indent_to (file, indent + 3);
587 print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
588 indent + 4);
589 print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
590 indent + 4);
591 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
592 break;
594 case 'b':
595 print_node (file, "vars", BLOCK_VARS (node), indent + 4);
596 print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node), indent + 4);
597 print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
598 print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
599 print_node (file, "abstract_origin",
600 BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
601 break;
603 case 'e':
604 case '<':
605 case '1':
606 case '2':
607 case 'r':
608 case 's':
609 if (TREE_CODE (node) == BIND_EXPR)
611 print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
612 print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
613 print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
614 break;
617 len = TREE_CODE_LENGTH (TREE_CODE (node));
619 /* Some nodes contain rtx's, not trees,
620 after a certain point. Print the rtx's as rtx's. */
621 first_rtl = first_rtl_op (TREE_CODE (node));
623 for (i = 0; i < len; i++)
625 if (i >= first_rtl)
627 indent_to (file, indent + 4);
628 fprintf (file, "rtl %d ", i);
629 if (TREE_OPERAND (node, i))
630 print_rtl (file, (struct rtx_def *) TREE_OPERAND (node, i));
631 else
632 fprintf (file, "(nil)");
633 fprintf (file, "\n");
635 else
637 char temp[10];
639 sprintf (temp, "arg %d", i);
640 print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
644 if (TREE_CODE (node) == EXPR_WITH_FILE_LOCATION)
646 indent_to (file, indent+4);
647 fprintf (file, "%s:%d:%d",
648 (EXPR_WFL_FILENAME_NODE (node ) ?
649 EXPR_WFL_FILENAME (node) : "(no file info)"),
650 EXPR_WFL_LINENO (node), EXPR_WFL_COLNO (node));
652 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
653 break;
655 case 'c':
656 case 'x':
657 switch (TREE_CODE (node))
659 case INTEGER_CST:
660 if (TREE_CONSTANT_OVERFLOW (node))
661 fprintf (file, " overflow");
663 fprintf (file, " ");
664 if (TREE_INT_CST_HIGH (node) == 0)
665 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
666 TREE_INT_CST_LOW (node));
667 else if (TREE_INT_CST_HIGH (node) == -1
668 && TREE_INT_CST_LOW (node) != 0)
670 fprintf (file, "-");
671 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
672 -TREE_INT_CST_LOW (node));
674 else
675 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
676 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
677 break;
679 case REAL_CST:
681 REAL_VALUE_TYPE d;
683 if (TREE_OVERFLOW (node))
684 fprintf (file, " overflow");
686 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
687 d = TREE_REAL_CST (node);
688 if (REAL_VALUE_ISINF (d))
689 fprintf (file, " Inf");
690 else if (REAL_VALUE_ISNAN (d))
691 fprintf (file, " Nan");
692 else
694 char string[100];
696 REAL_VALUE_TO_DECIMAL (d, "%e", string);
697 fprintf (file, " %s", string);
699 #else
701 int i;
702 unsigned char *p = (unsigned char *) &TREE_REAL_CST (node);
703 fprintf (file, " 0x");
704 for (i = 0; i < sizeof TREE_REAL_CST (node); i++)
705 fprintf (file, "%02x", *p++);
706 fprintf (file, "");
708 #endif
710 break;
712 case VECTOR_CST:
714 tree vals = TREE_VECTOR_CST_ELTS (node);
715 char buf[10];
716 tree link;
717 int i;
719 i = 0;
720 for (link = vals; link; link = TREE_CHAIN (link), ++i)
722 sprintf (buf, "elt%d: ", i);
723 print_node (file, buf, TREE_VALUE (link), indent + 4);
726 break;
728 case COMPLEX_CST:
729 print_node (file, "real", TREE_REALPART (node), indent + 4);
730 print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
731 break;
733 case STRING_CST:
734 fprintf (file, " \"%s\"", TREE_STRING_POINTER (node));
735 /* Print the chain at second level. */
736 if (indent == 4)
737 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
738 else
739 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
740 break;
742 case IDENTIFIER_NODE:
743 (*lang_hooks.print_identifier) (file, node, indent);
744 break;
746 case TREE_LIST:
747 print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
748 print_node (file, "value", TREE_VALUE (node), indent + 4);
749 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
750 break;
752 case TREE_VEC:
753 len = TREE_VEC_LENGTH (node);
754 for (i = 0; i < len; i++)
755 if (TREE_VEC_ELT (node, i))
757 char temp[10];
758 sprintf (temp, "elt %d", i);
759 indent_to (file, indent + 4);
760 print_node_brief (file, temp, TREE_VEC_ELT (node, i), 0);
762 break;
764 default:
765 if (TREE_CODE_CLASS (TREE_CODE (node)) == 'x')
766 (*lang_hooks.print_xnode) (file, node, indent);
767 break;
770 break;
773 fprintf (file, ">");