2002-08-22 Paolo Carlini <pcarlini@unitus.it>
[official-gcc.git] / gcc / print-tree.c
blob3104f1be214820fc8d33ad05e1f17ea8e8f97bb0
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 "real.h"
27 #include "ggc.h"
28 #include "langhooks.h"
30 /* Define the hash table of nodes already seen.
31 Such nodes are not repeated; brief cross-references are used. */
33 #define HASH_SIZE 37
35 struct bucket
37 tree node;
38 struct bucket *next;
41 static struct bucket **table;
43 /* Print the node NODE on standard error, for debugging.
44 Most nodes referred to by this one are printed recursively
45 down to a depth of six. */
47 void
48 debug_tree (node)
49 tree node;
51 table = (struct bucket **) xcalloc (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 d = TREE_REAL_CST (node);
128 if (REAL_VALUE_ISINF (d))
129 fprintf (file, " Inf");
130 else if (REAL_VALUE_ISNAN (d))
131 fprintf (file, " Nan");
132 else
134 char string[100];
136 REAL_VALUE_TO_DECIMAL (d, "%e", string);
137 fprintf (file, " %s", string);
141 fprintf (file, ">");
144 void
145 indent_to (file, column)
146 FILE *file;
147 int column;
149 int i;
151 /* Since this is the long way, indent to desired column. */
152 if (column > 0)
153 fprintf (file, "\n");
154 for (i = 0; i < column; i++)
155 fprintf (file, " ");
158 /* Print the node NODE in full on file FILE, preceded by PREFIX,
159 starting in column INDENT. */
161 void
162 print_node (file, prefix, node, indent)
163 FILE *file;
164 const char *prefix;
165 tree node;
166 int indent;
168 int hash;
169 struct bucket *b;
170 enum machine_mode mode;
171 char class;
172 int len;
173 int first_rtl;
174 int i;
176 if (node == 0)
177 return;
179 class = TREE_CODE_CLASS (TREE_CODE (node));
181 /* Don't get too deep in nesting. If the user wants to see deeper,
182 it is easy to use the address of a lowest-level node
183 as an argument in another call to debug_tree. */
185 if (indent > 24)
187 print_node_brief (file, prefix, node, indent);
188 return;
191 if (indent > 8 && (class == 't' || class == 'd'))
193 print_node_brief (file, prefix, node, indent);
194 return;
197 /* It is unsafe to look at any other filds of an ERROR_MARK node. */
198 if (TREE_CODE (node) == ERROR_MARK)
200 print_node_brief (file, prefix, node, indent);
201 return;
204 hash = ((unsigned long) node) % HASH_SIZE;
206 /* If node is in the table, just mention its address. */
207 for (b = table[hash]; b; b = b->next)
208 if (b->node == node)
210 print_node_brief (file, prefix, node, indent);
211 return;
214 /* Add this node to the table. */
215 b = (struct bucket *) xmalloc (sizeof (struct bucket));
216 b->node = node;
217 b->next = table[hash];
218 table[hash] = b;
220 /* Indent to the specified column, since this is the long form. */
221 indent_to (file, indent);
223 /* Print the slot this node is in, and its code, and address. */
224 fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]);
225 fprintf (file, HOST_PTR_PRINTF, (char *) node);
227 /* Print the name, if any. */
228 if (class == 'd')
230 if (DECL_NAME (node))
231 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
233 else if (class == 't')
235 if (TYPE_NAME (node))
237 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
238 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
239 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
240 && DECL_NAME (TYPE_NAME (node)))
241 fprintf (file, " %s",
242 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
245 if (TREE_CODE (node) == IDENTIFIER_NODE)
246 fprintf (file, " %s", IDENTIFIER_POINTER (node));
248 if (TREE_CODE (node) == INTEGER_CST)
250 if (indent <= 4)
251 print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
253 else
255 print_node (file, "type", TREE_TYPE (node), indent + 4);
256 if (TREE_TYPE (node))
257 indent_to (file, indent + 3);
260 if (TREE_SIDE_EFFECTS (node))
261 fputs (" side-effects", file);
262 if (TREE_READONLY (node))
263 fputs (" readonly", file);
264 if (TREE_CONSTANT (node))
265 fputs (" constant", file);
266 if (TREE_ADDRESSABLE (node))
267 fputs (" addressable", file);
268 if (TREE_THIS_VOLATILE (node))
269 fputs (" volatile", file);
270 if (TREE_UNSIGNED (node))
271 fputs (" unsigned", file);
272 if (TREE_ASM_WRITTEN (node))
273 fputs (" asm_written", file);
274 if (TREE_USED (node))
275 fputs (" used", file);
276 if (TREE_NOTHROW (node))
277 fputs (" nothrow", file);
278 if (TREE_PUBLIC (node))
279 fputs (" public", file);
280 if (TREE_PRIVATE (node))
281 fputs (" private", file);
282 if (TREE_PROTECTED (node))
283 fputs (" protected", file);
284 if (TREE_STATIC (node))
285 fputs (" static", file);
286 if (TREE_DEPRECATED (node))
287 fputs (" deprecated", file);
288 if (TREE_LANG_FLAG_0 (node))
289 fputs (" tree_0", file);
290 if (TREE_LANG_FLAG_1 (node))
291 fputs (" tree_1", file);
292 if (TREE_LANG_FLAG_2 (node))
293 fputs (" tree_2", file);
294 if (TREE_LANG_FLAG_3 (node))
295 fputs (" tree_3", file);
296 if (TREE_LANG_FLAG_4 (node))
297 fputs (" tree_4", file);
298 if (TREE_LANG_FLAG_5 (node))
299 fputs (" tree_5", file);
300 if (TREE_LANG_FLAG_6 (node))
301 fputs (" tree_6", file);
303 /* DECL_ nodes have additional attributes. */
305 switch (TREE_CODE_CLASS (TREE_CODE (node)))
307 case 'd':
308 mode = DECL_MODE (node);
310 if (DECL_IGNORED_P (node))
311 fputs (" ignored", file);
312 if (DECL_ABSTRACT (node))
313 fputs (" abstract", file);
314 if (DECL_IN_SYSTEM_HEADER (node))
315 fputs (" in_system_header", file);
316 if (DECL_COMMON (node))
317 fputs (" common", file);
318 if (DECL_EXTERNAL (node))
319 fputs (" external", file);
320 if (DECL_WEAK (node))
321 fputs (" weak", file);
322 if (DECL_REGISTER (node) && TREE_CODE (node) != FIELD_DECL
323 && TREE_CODE (node) != FUNCTION_DECL
324 && TREE_CODE (node) != LABEL_DECL)
325 fputs (" regdecl", file);
326 if (DECL_NONLOCAL (node))
327 fputs (" nonlocal", file);
329 if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
330 fputs (" suppress-debug", file);
332 if (TREE_CODE (node) == FUNCTION_DECL && DECL_INLINE (node))
333 fputs (" inline", file);
334 if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
335 fputs (" built-in", file);
336 if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
337 fputs (" built-in-nonansi", file);
338 if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
339 fputs (" no-static-chain", file);
341 if (TREE_CODE (node) == FIELD_DECL && DECL_PACKED (node))
342 fputs (" packed", file);
343 if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
344 fputs (" bit-field", file);
345 if (TREE_CODE (node) == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
346 fputs (" nonaddressable", file);
348 if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
349 fputs (" too-late", file);
350 if (TREE_CODE (node) == LABEL_DECL && DECL_ERROR_ISSUED (node))
351 fputs (" error-issued", file);
353 if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
354 fputs (" in-text-section", file);
355 if (TREE_CODE (node) == VAR_DECL && DECL_THREAD_LOCAL (node))
356 fputs (" thread-local", file);
358 if (TREE_CODE (node) == PARM_DECL && DECL_TRANSPARENT_UNION (node))
359 fputs (" transparent-union", file);
361 if (DECL_VIRTUAL_P (node))
362 fputs (" virtual", file);
363 if (DECL_DEFER_OUTPUT (node))
364 fputs (" defer-output", file);
366 if (DECL_LANG_FLAG_0 (node))
367 fputs (" decl_0", file);
368 if (DECL_LANG_FLAG_1 (node))
369 fputs (" decl_1", file);
370 if (DECL_LANG_FLAG_2 (node))
371 fputs (" decl_2", file);
372 if (DECL_LANG_FLAG_3 (node))
373 fputs (" decl_3", file);
374 if (DECL_LANG_FLAG_4 (node))
375 fputs (" decl_4", file);
376 if (DECL_LANG_FLAG_5 (node))
377 fputs (" decl_5", file);
378 if (DECL_LANG_FLAG_6 (node))
379 fputs (" decl_6", file);
380 if (DECL_LANG_FLAG_7 (node))
381 fputs (" decl_7", file);
383 fprintf (file, " %s", GET_MODE_NAME (mode));
384 fprintf (file, " file %s line %d",
385 DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
387 print_node (file, "size", DECL_SIZE (node), indent + 4);
388 print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4);
390 if (TREE_CODE (node) != FUNCTION_DECL
391 || DECL_INLINE (node) || DECL_BUILT_IN (node))
392 indent_to (file, indent + 3);
394 if (TREE_CODE (node) != FUNCTION_DECL)
396 if (DECL_USER_ALIGN (node))
397 fprintf (file, " user");
399 fprintf (file, " align %d", DECL_ALIGN (node));
400 if (TREE_CODE (node) == FIELD_DECL)
402 fprintf (file, " offset_align ");
403 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
404 DECL_OFFSET_ALIGN (node));
407 else if (DECL_BUILT_IN (node))
409 if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
410 fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node));
411 else
412 fprintf (file, " built-in %s:%s",
413 built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
414 built_in_names[(int) DECL_FUNCTION_CODE (node)]);
417 if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
419 fprintf (file, " alias set ");
420 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
421 DECL_POINTER_ALIAS_SET (node));
424 if (TREE_CODE (node) == FIELD_DECL)
426 print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
427 print_node (file, "bit offset", DECL_FIELD_BIT_OFFSET (node),
428 indent + 4);
431 print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
432 print_node_brief (file, "attributes",
433 DECL_ATTRIBUTES (node), indent + 4);
434 print_node_brief (file, "abstract_origin",
435 DECL_ABSTRACT_ORIGIN (node), indent + 4);
437 print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4);
438 print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
439 print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4);
441 (*lang_hooks.print_decl) (file, node, indent);
443 if (DECL_RTL_SET_P (node))
445 indent_to (file, indent + 4);
446 print_rtl (file, DECL_RTL (node));
449 if (TREE_CODE (node) == PARM_DECL)
451 print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
452 print_node (file, "arg-type-as-written",
453 DECL_ARG_TYPE_AS_WRITTEN (node), indent + 4);
455 if (DECL_INCOMING_RTL (node) != 0)
457 indent_to (file, indent + 4);
458 fprintf (file, "incoming-rtl ");
459 print_rtl (file, DECL_INCOMING_RTL (node));
462 else if (TREE_CODE (node) == FUNCTION_DECL
463 && DECL_SAVED_INSNS (node) != 0)
465 indent_to (file, indent + 4);
466 fprintf (file, "saved-insns ");
467 fprintf (file, HOST_PTR_PRINTF, (char *) DECL_SAVED_INSNS (node));
470 /* Print the decl chain only if decl is at second level. */
471 if (indent == 4)
472 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
473 else
474 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
475 break;
477 case 't':
478 /* The no-force-blk flag is used for different things in
479 different types. */
480 if ((TREE_CODE (node) == RECORD_TYPE
481 || TREE_CODE (node) == UNION_TYPE
482 || TREE_CODE (node) == QUAL_UNION_TYPE)
483 && TYPE_NO_FORCE_BLK (node))
484 fputs (" no-force-blk", file);
485 else if (TREE_CODE (node) == INTEGER_TYPE
486 && TYPE_IS_SIZETYPE (node))
487 fputs (" sizetype", file);
488 else if (TREE_CODE (node) == FUNCTION_TYPE
489 && TYPE_RETURNS_STACK_DEPRESSED (node))
490 fputs (" returns-stack-depressed", file);
492 if (TYPE_STRING_FLAG (node))
493 fputs (" string-flag", file);
494 if (TYPE_NEEDS_CONSTRUCTING (node))
495 fputs (" needs-constructing", file);
497 /* The transparent-union flag is used for different things in
498 different nodes. */
499 if (TREE_CODE (node) == UNION_TYPE && TYPE_TRANSPARENT_UNION (node))
500 fputs (" transparent-union", file);
501 else if (TREE_CODE (node) == ARRAY_TYPE
502 && TYPE_NONALIASED_COMPONENT (node))
503 fputs (" nonaliased-component", file);
504 else if (TREE_CODE (node) == FUNCTION_TYPE
505 && TYPE_AMBIENT_BOUNDEDNESS (node))
506 fputs (" ambient-boundedness", file);
508 if (TYPE_PACKED (node))
509 fputs (" packed", file);
511 if (TYPE_LANG_FLAG_0 (node))
512 fputs (" type_0", file);
513 if (TYPE_LANG_FLAG_1 (node))
514 fputs (" type_1", file);
515 if (TYPE_LANG_FLAG_2 (node))
516 fputs (" type_2", file);
517 if (TYPE_LANG_FLAG_3 (node))
518 fputs (" type_3", file);
519 if (TYPE_LANG_FLAG_4 (node))
520 fputs (" type_4", file);
521 if (TYPE_LANG_FLAG_5 (node))
522 fputs (" type_5", file);
523 if (TYPE_LANG_FLAG_6 (node))
524 fputs (" type_6", file);
526 mode = TYPE_MODE (node);
527 fprintf (file, " %s", GET_MODE_NAME (mode));
529 print_node (file, "size", TYPE_SIZE (node), indent + 4);
530 print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4);
531 indent_to (file, indent + 3);
533 if (TYPE_USER_ALIGN (node))
534 fprintf (file, " user");
536 fprintf (file, " align %d", TYPE_ALIGN (node));
537 fprintf (file, " symtab %d", TYPE_SYMTAB_ADDRESS (node));
538 fprintf (file, " alias set ");
539 fprintf (file, HOST_WIDE_INT_PRINT_DEC, TYPE_ALIAS_SET (node));
541 print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
543 if (INTEGRAL_TYPE_P (node) || TREE_CODE (node) == REAL_TYPE)
545 fprintf (file, " precision %d", TYPE_PRECISION (node));
546 print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
547 print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
550 if (TREE_CODE (node) == ENUMERAL_TYPE)
551 print_node (file, "values", TYPE_VALUES (node), indent + 4);
552 else if (TREE_CODE (node) == ARRAY_TYPE || TREE_CODE (node) == SET_TYPE)
553 print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
554 else if (TREE_CODE (node) == RECORD_TYPE
555 || TREE_CODE (node) == UNION_TYPE
556 || TREE_CODE (node) == QUAL_UNION_TYPE)
557 print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
558 else if (TREE_CODE (node) == FUNCTION_TYPE
559 || TREE_CODE (node) == METHOD_TYPE)
561 if (TYPE_METHOD_BASETYPE (node))
562 print_node_brief (file, "method basetype",
563 TYPE_METHOD_BASETYPE (node), indent + 4);
564 print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
566 else if (TREE_CODE (node) == OFFSET_TYPE)
567 print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
568 indent + 4);
570 if (TYPE_CONTEXT (node))
571 print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
573 (*lang_hooks.print_type) (file, node, indent);
575 if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
576 indent_to (file, indent + 3);
578 print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
579 indent + 4);
580 print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
581 indent + 4);
582 print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
583 break;
585 case 'b':
586 print_node (file, "vars", BLOCK_VARS (node), indent + 4);
587 print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node), indent + 4);
588 print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
589 print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
590 print_node (file, "abstract_origin",
591 BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
592 break;
594 case 'e':
595 case '<':
596 case '1':
597 case '2':
598 case 'r':
599 case 's':
600 if (TREE_CODE (node) == BIND_EXPR)
602 print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
603 print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
604 print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
605 break;
608 len = TREE_CODE_LENGTH (TREE_CODE (node));
610 /* Some nodes contain rtx's, not trees,
611 after a certain point. Print the rtx's as rtx's. */
612 first_rtl = first_rtl_op (TREE_CODE (node));
614 for (i = 0; i < len; i++)
616 if (i >= first_rtl)
618 indent_to (file, indent + 4);
619 fprintf (file, "rtl %d ", i);
620 if (TREE_OPERAND (node, i))
621 print_rtl (file, (struct rtx_def *) TREE_OPERAND (node, i));
622 else
623 fprintf (file, "(nil)");
624 fprintf (file, "\n");
626 else
628 char temp[10];
630 sprintf (temp, "arg %d", i);
631 print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
635 if (TREE_CODE (node) == EXPR_WITH_FILE_LOCATION)
637 indent_to (file, indent+4);
638 fprintf (file, "%s:%d:%d",
639 (EXPR_WFL_FILENAME_NODE (node ) ?
640 EXPR_WFL_FILENAME (node) : "(no file info)"),
641 EXPR_WFL_LINENO (node), EXPR_WFL_COLNO (node));
643 print_node (file, "chain", TREE_CHAIN (node), indent + 4);
644 break;
646 case 'c':
647 case 'x':
648 switch (TREE_CODE (node))
650 case INTEGER_CST:
651 if (TREE_CONSTANT_OVERFLOW (node))
652 fprintf (file, " overflow");
654 fprintf (file, " ");
655 if (TREE_INT_CST_HIGH (node) == 0)
656 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
657 TREE_INT_CST_LOW (node));
658 else if (TREE_INT_CST_HIGH (node) == -1
659 && TREE_INT_CST_LOW (node) != 0)
661 fprintf (file, "-");
662 fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
663 -TREE_INT_CST_LOW (node));
665 else
666 fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
667 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
668 break;
670 case REAL_CST:
672 REAL_VALUE_TYPE d;
674 if (TREE_OVERFLOW (node))
675 fprintf (file, " overflow");
677 d = TREE_REAL_CST (node);
678 if (REAL_VALUE_ISINF (d))
679 fprintf (file, " Inf");
680 else if (REAL_VALUE_ISNAN (d))
681 fprintf (file, " Nan");
682 else
684 char string[100];
686 REAL_VALUE_TO_DECIMAL (d, "%e", string);
687 fprintf (file, " %s", string);
690 break;
692 case VECTOR_CST:
694 tree vals = TREE_VECTOR_CST_ELTS (node);
695 char buf[10];
696 tree link;
697 int i;
699 i = 0;
700 for (link = vals; link; link = TREE_CHAIN (link), ++i)
702 sprintf (buf, "elt%d: ", i);
703 print_node (file, buf, TREE_VALUE (link), indent + 4);
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, ">");