* emit-rtl.c (adjust_address_1): Always copy address to avoid
[official-gcc.git] / gcc / print-tree.c
blob4cef3f5e7a58f7186489182e4d0d8cbd381c6ee2
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 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_LANG_FLAG_0 (node))
298 fputs (" tree_0", file);
299 if (TREE_LANG_FLAG_1 (node))
300 fputs (" tree_1", file);
301 if (TREE_LANG_FLAG_2 (node))
302 fputs (" tree_2", file);
303 if (TREE_LANG_FLAG_3 (node))
304 fputs (" tree_3", file);
305 if (TREE_LANG_FLAG_4 (node))
306 fputs (" tree_4", file);
307 if (TREE_LANG_FLAG_5 (node))
308 fputs (" tree_5", file);
309 if (TREE_LANG_FLAG_6 (node))
310 fputs (" tree_6", file);
312 /* DECL_ nodes have additional attributes. */
314 switch (TREE_CODE_CLASS (TREE_CODE (node)))
316 case 'd':
317 mode = DECL_MODE (node);
319 if (DECL_IGNORED_P (node))
320 fputs (" ignored", file);
321 if (DECL_ABSTRACT (node))
322 fputs (" abstract", file);
323 if (DECL_IN_SYSTEM_HEADER (node))
324 fputs (" in_system_header", file);
325 if (DECL_COMMON (node))
326 fputs (" common", file);
327 if (DECL_EXTERNAL (node))
328 fputs (" external", file);
329 if (DECL_REGISTER (node) && TREE_CODE (node) != FIELD_DECL
330 && TREE_CODE (node) != FUNCTION_DECL
331 && TREE_CODE (node) != LABEL_DECL)
332 fputs (" regdecl", file);
333 if (DECL_NONLOCAL (node))
334 fputs (" nonlocal", file);
336 if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
337 fputs (" suppress-debug", file);
339 if (TREE_CODE (node) == FUNCTION_DECL && DECL_INLINE (node))
340 fputs (" inline", file);
341 if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
342 fputs (" built-in", file);
343 if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
344 fputs (" built-in-nonansi", file);
345 if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
346 fputs (" no-static-chain", file);
348 if (TREE_CODE (node) == FIELD_DECL && DECL_PACKED (node))
349 fputs (" packed", file);
350 if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
351 fputs (" bit-field", file);
352 if (TREE_CODE (node) == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
353 fputs (" nonaddressable", file);
355 if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
356 fputs (" too-late", file);
357 if (TREE_CODE (node) == LABEL_DECL && DECL_ERROR_ISSUED (node))
358 fputs (" error-issued", file);
360 if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
361 fputs (" in-text-section", file);
363 if (TREE_CODE (node) == PARM_DECL && DECL_TRANSPARENT_UNION (node))
364 fputs (" transparent-union", file);
366 if (DECL_VIRTUAL_P (node))
367 fputs (" virtual", file);
368 if (DECL_DEFER_OUTPUT (node))
369 fputs (" defer-output", file);
371 if (DECL_LANG_FLAG_0 (node))
372 fputs (" decl_0", file);
373 if (DECL_LANG_FLAG_1 (node))
374 fputs (" decl_1", file);
375 if (DECL_LANG_FLAG_2 (node))
376 fputs (" decl_2", file);
377 if (DECL_LANG_FLAG_3 (node))
378 fputs (" decl_3", file);
379 if (DECL_LANG_FLAG_4 (node))
380 fputs (" decl_4", file);
381 if (DECL_LANG_FLAG_5 (node))
382 fputs (" decl_5", file);
383 if (DECL_LANG_FLAG_6 (node))
384 fputs (" decl_6", file);
385 if (DECL_LANG_FLAG_7 (node))
386 fputs (" decl_7", file);
388 fprintf (file, " %s", GET_MODE_NAME(mode));
389 fprintf (file, " file %s line %d",
390 DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
392 print_node (file, "size", DECL_SIZE (node), indent + 4);
393 print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4);
395 if (TREE_CODE (node) != FUNCTION_DECL
396 || DECL_INLINE (node) || DECL_BUILT_IN (node))
397 indent_to (file, indent + 3);
399 if (TREE_CODE (node) != FUNCTION_DECL)
401 if (DECL_USER_ALIGN (node))
402 fprintf (file, " user");
404 fprintf (file, " align %d", DECL_ALIGN (node));
405 if (TREE_CODE (node) == FIELD_DECL)
407 fprintf (file, " offset_align ");
408 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
409 DECL_OFFSET_ALIGN (node));
412 else if (DECL_BUILT_IN (node))
414 if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
415 fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node));
416 else
417 fprintf (file, " built-in %s:%s",
418 built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
419 built_in_names[(int) DECL_FUNCTION_CODE (node)]);
422 if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
424 fprintf (file, " alias set ");
425 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
426 DECL_POINTER_ALIAS_SET (node));
429 if (TREE_CODE (node) == FIELD_DECL)
431 print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
432 print_node (file, "bit offset", DECL_FIELD_BIT_OFFSET (node),
433 indent + 4);
436 print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
437 print_node_brief (file, "attributes",
438 DECL_ATTRIBUTES (node), indent + 4);
439 print_node_brief (file, "abstract_origin",
440 DECL_ABSTRACT_ORIGIN (node), indent + 4);
442 print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4);
443 print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
444 print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4);
446 (*lang_hooks.print_decl) (file, node, indent);
448 if (DECL_RTL_SET_P (node))
450 indent_to (file, indent + 4);
451 print_rtl (file, DECL_RTL (node));
454 if (TREE_CODE (node) == PARM_DECL)
456 print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
457 print_node (file, "arg-type-as-written",
458 DECL_ARG_TYPE_AS_WRITTEN (node), indent + 4);
460 if (DECL_INCOMING_RTL (node) != 0)
462 indent_to (file, indent + 4);
463 fprintf (file, "incoming-rtl ");
464 print_rtl (file, DECL_INCOMING_RTL (node));
467 else if (TREE_CODE (node) == FUNCTION_DECL
468 && DECL_SAVED_INSNS (node) != 0)
470 indent_to (file, indent + 4);
471 fprintf (file, "saved-insns ");
472 fprintf (file, HOST_PTR_PRINTF, (char *) DECL_SAVED_INSNS (node));
475 /* Print the decl chain only if decl is at second level. */
476 if (indent == 4)
477 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
478 else
479 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
480 break;
482 case 't':
483 /* The no-force-blk flag is used for different things in
484 different types. */
485 if ((TREE_CODE (node) == RECORD_TYPE
486 || TREE_CODE (node) == UNION_TYPE
487 || TREE_CODE (node) == QUAL_UNION_TYPE)
488 && TYPE_NO_FORCE_BLK (node))
489 fputs (" no-force-blk", file);
490 else if (TREE_CODE (node) == INTEGER_TYPE
491 && TYPE_IS_SIZETYPE (node))
492 fputs (" sizetype", file);
493 else if (TREE_CODE (node) == FUNCTION_TYPE
494 && TYPE_RETURNS_STACK_DEPRESSED (node))
495 fputs (" returns-stack-depressed", file);
497 if (TYPE_STRING_FLAG (node))
498 fputs (" string-flag", file);
499 if (TYPE_NEEDS_CONSTRUCTING (node))
500 fputs (" needs-constructing", file);
502 /* The transparent-union flag is used for different things in
503 different nodes. */
504 if (TREE_CODE (node) == UNION_TYPE && TYPE_TRANSPARENT_UNION (node))
505 fputs (" transparent-union", file);
506 else if (TREE_CODE (node) == ARRAY_TYPE
507 && TYPE_NONALIASED_COMPONENT (node))
508 fputs (" nonaliased-component", file);
509 else if (TREE_CODE (node) == FUNCTION_TYPE
510 && TYPE_AMBIENT_BOUNDEDNESS (node))
511 fputs (" ambient-boundedness", file);
513 if (TYPE_PACKED (node))
514 fputs (" packed", file);
516 if (TYPE_LANG_FLAG_0 (node))
517 fputs (" type_0", file);
518 if (TYPE_LANG_FLAG_1 (node))
519 fputs (" type_1", file);
520 if (TYPE_LANG_FLAG_2 (node))
521 fputs (" type_2", file);
522 if (TYPE_LANG_FLAG_3 (node))
523 fputs (" type_3", file);
524 if (TYPE_LANG_FLAG_4 (node))
525 fputs (" type_4", file);
526 if (TYPE_LANG_FLAG_5 (node))
527 fputs (" type_5", file);
528 if (TYPE_LANG_FLAG_6 (node))
529 fputs (" type_6", file);
531 mode = TYPE_MODE (node);
532 fprintf (file, " %s", GET_MODE_NAME(mode));
534 print_node (file, "size", TYPE_SIZE (node), indent + 4);
535 print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4);
536 indent_to (file, indent + 3);
538 if (TYPE_USER_ALIGN (node))
539 fprintf (file, " user");
541 fprintf (file, " align %d", TYPE_ALIGN (node));
542 fprintf (file, " symtab %d", TYPE_SYMTAB_ADDRESS (node));
543 fprintf (file, " alias set ");
544 fprintf (file, HOST_WIDE_INT_PRINT_DEC, TYPE_ALIAS_SET (node));
546 print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
548 if (INTEGRAL_TYPE_P (node) || TREE_CODE (node) == REAL_TYPE)
550 fprintf (file, " precision %d", TYPE_PRECISION (node));
551 print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
552 print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
555 if (TREE_CODE (node) == ENUMERAL_TYPE)
556 print_node (file, "values", TYPE_VALUES (node), indent + 4);
557 else if (TREE_CODE (node) == ARRAY_TYPE || TREE_CODE (node) == SET_TYPE)
558 print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
559 else if (TREE_CODE (node) == RECORD_TYPE
560 || TREE_CODE (node) == UNION_TYPE
561 || TREE_CODE (node) == QUAL_UNION_TYPE)
562 print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
563 else if (TREE_CODE (node) == FUNCTION_TYPE
564 || TREE_CODE (node) == METHOD_TYPE)
566 if (TYPE_METHOD_BASETYPE (node))
567 print_node_brief (file, "method basetype",
568 TYPE_METHOD_BASETYPE (node), indent + 4);
569 print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
571 else if (TREE_CODE (node) == OFFSET_TYPE)
572 print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
573 indent + 4);
575 if (TYPE_CONTEXT (node))
576 print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
578 (*lang_hooks.print_type) (file, node, indent);
580 if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
581 indent_to (file, indent + 3);
583 print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
584 indent + 4);
585 print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
586 indent + 4);
587 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
588 break;
590 case 'b':
591 print_node (file, "vars", BLOCK_VARS (node), indent + 4);
592 print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node), indent + 4);
593 print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
594 print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
595 print_node (file, "abstract_origin",
596 BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
597 break;
599 case 'e':
600 case '<':
601 case '1':
602 case '2':
603 case 'r':
604 case 's':
605 if (TREE_CODE (node) == BIND_EXPR)
607 print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
608 print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
609 print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
610 break;
613 len = TREE_CODE_LENGTH (TREE_CODE (node));
615 /* Some nodes contain rtx's, not trees,
616 after a certain point. Print the rtx's as rtx's. */
617 first_rtl = first_rtl_op (TREE_CODE (node));
619 for (i = 0; i < len; i++)
621 if (i >= first_rtl)
623 indent_to (file, indent + 4);
624 fprintf (file, "rtl %d ", i);
625 if (TREE_OPERAND (node, i))
626 print_rtl (file, (struct rtx_def *) TREE_OPERAND (node, i));
627 else
628 fprintf (file, "(nil)");
629 fprintf (file, "\n");
631 else
633 char temp[10];
635 sprintf (temp, "arg %d", i);
636 print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
640 if (TREE_CODE (node) == EXPR_WITH_FILE_LOCATION)
642 indent_to (file, indent+4);
643 fprintf (file, "%s:%d:%d",
644 (EXPR_WFL_FILENAME_NODE (node ) ?
645 EXPR_WFL_FILENAME (node) : "(no file info)"),
646 EXPR_WFL_LINENO (node), EXPR_WFL_COLNO (node));
648 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
649 break;
651 case 'c':
652 case 'x':
653 switch (TREE_CODE (node))
655 case INTEGER_CST:
656 if (TREE_CONSTANT_OVERFLOW (node))
657 fprintf (file, " overflow");
659 fprintf (file, " ");
660 if (TREE_INT_CST_HIGH (node) == 0)
661 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
662 TREE_INT_CST_LOW (node));
663 else if (TREE_INT_CST_HIGH (node) == -1
664 && TREE_INT_CST_LOW (node) != 0)
666 fprintf (file, "-");
667 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
668 -TREE_INT_CST_LOW (node));
670 else
671 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
672 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
673 break;
675 case REAL_CST:
677 REAL_VALUE_TYPE d;
679 if (TREE_OVERFLOW (node))
680 fprintf (file, " overflow");
682 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
683 d = TREE_REAL_CST (node);
684 if (REAL_VALUE_ISINF (d))
685 fprintf (file, " Inf");
686 else if (REAL_VALUE_ISNAN (d))
687 fprintf (file, " Nan");
688 else
690 char string[100];
692 REAL_VALUE_TO_DECIMAL (d, "%e", string);
693 fprintf (file, " %s", string);
695 #else
697 int i;
698 unsigned char *p = (unsigned char *) &TREE_REAL_CST (node);
699 fprintf (file, " 0x");
700 for (i = 0; i < sizeof TREE_REAL_CST (node); i++)
701 fprintf (file, "%02x", *p++);
702 fprintf (file, "");
704 #endif
706 break;
708 case COMPLEX_CST:
709 print_node (file, "real", TREE_REALPART (node), indent + 4);
710 print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
711 break;
713 case STRING_CST:
714 fprintf (file, " \"%s\"", TREE_STRING_POINTER (node));
715 /* Print the chain at second level. */
716 if (indent == 4)
717 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
718 else
719 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
720 break;
722 case IDENTIFIER_NODE:
723 (*lang_hooks.print_identifier) (file, node, indent);
724 break;
726 case TREE_LIST:
727 print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
728 print_node (file, "value", TREE_VALUE (node), indent + 4);
729 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
730 break;
732 case TREE_VEC:
733 len = TREE_VEC_LENGTH (node);
734 for (i = 0; i < len; i++)
735 if (TREE_VEC_ELT (node, i))
737 char temp[10];
738 sprintf (temp, "elt %d", i);
739 indent_to (file, indent + 4);
740 print_node_brief (file, temp, TREE_VEC_ELT (node, i), 0);
742 break;
744 default:
745 if (TREE_CODE_CLASS (TREE_CODE (node)) == 'x')
746 (*lang_hooks.print_xnode) (file, node, indent);
747 break;
750 break;
753 fprintf (file, ">");