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
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
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
27 #include "langhooks.h"
29 /* Define the hash table of nodes already seen.
30 Such nodes are not repeated; brief cross-references are used. */
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. */
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);
54 fprintf (stderr
, "\n");
57 /* Print a node in brief fashion, with just the code, address and name. */
60 print_node_brief (file
, prefix
, node
, indent
)
71 class = TREE_CODE_CLASS (TREE_CODE (node
));
73 /* Always print the slot this node is in, and its code, address and
77 fprintf (file
, "%s <%s ", prefix
, tree_code_name
[(int) TREE_CODE (node
)]);
78 fprintf (file
, HOST_PTR_PRINTF
, (char *) node
);
83 fprintf (file
, " %s", IDENTIFIER_POINTER (DECL_NAME (node
)));
85 else if (class == 't')
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
)))
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");
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)
113 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
114 -TREE_INT_CST_LOW (node
));
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
)
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");
136 REAL_VALUE_TO_DECIMAL (d
, "%e", string
);
137 fprintf (file
, " %s", string
);
145 indent_to (file
, column
)
151 /* Since this is the long way, indent to desired column. */
153 fprintf (file
, "\n");
154 for (i
= 0; i
< column
; i
++)
158 /* Print the node NODE in full on file FILE, preceded by PREFIX,
159 starting in column INDENT. */
162 print_node (file
, prefix
, node
, indent
)
170 enum machine_mode mode
;
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. */
187 print_node_brief (file
, prefix
, node
, indent
);
191 if (indent
> 8 && (class == 't' || class == 'd'))
193 print_node_brief (file
, prefix
, node
, indent
);
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
);
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
)
210 print_node_brief (file
, prefix
, node
, indent
);
214 /* Add this node to the table. */
215 b
= (struct bucket
*) permalloc (sizeof (struct bucket
));
217 b
->next
= table
[hash
];
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. */
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
)
251 print_node_brief (file
, "type", TREE_TYPE (node
), indent
+ 4);
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
)))
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
);
356 if (TREE_CODE (node
) == PARM_DECL
&& DECL_TRANSPARENT_UNION (node
))
357 fputs (" transparent-union", file
);
359 if (DECL_VIRTUAL_P (node
))
360 fputs (" virtual", file
);
361 if (DECL_DEFER_OUTPUT (node
))
362 fputs (" defer-output", file
);
364 if (DECL_LANG_FLAG_0 (node
))
365 fputs (" decl_0", file
);
366 if (DECL_LANG_FLAG_1 (node
))
367 fputs (" decl_1", file
);
368 if (DECL_LANG_FLAG_2 (node
))
369 fputs (" decl_2", file
);
370 if (DECL_LANG_FLAG_3 (node
))
371 fputs (" decl_3", file
);
372 if (DECL_LANG_FLAG_4 (node
))
373 fputs (" decl_4", file
);
374 if (DECL_LANG_FLAG_5 (node
))
375 fputs (" decl_5", file
);
376 if (DECL_LANG_FLAG_6 (node
))
377 fputs (" decl_6", file
);
378 if (DECL_LANG_FLAG_7 (node
))
379 fputs (" decl_7", file
);
381 fprintf (file
, " %s", GET_MODE_NAME (mode
));
382 fprintf (file
, " file %s line %d",
383 DECL_SOURCE_FILE (node
), DECL_SOURCE_LINE (node
));
385 print_node (file
, "size", DECL_SIZE (node
), indent
+ 4);
386 print_node (file
, "unit size", DECL_SIZE_UNIT (node
), indent
+ 4);
388 if (TREE_CODE (node
) != FUNCTION_DECL
389 || DECL_INLINE (node
) || DECL_BUILT_IN (node
))
390 indent_to (file
, indent
+ 3);
392 if (TREE_CODE (node
) != FUNCTION_DECL
)
394 if (DECL_USER_ALIGN (node
))
395 fprintf (file
, " user");
397 fprintf (file
, " align %d", DECL_ALIGN (node
));
398 if (TREE_CODE (node
) == FIELD_DECL
)
400 fprintf (file
, " offset_align ");
401 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
402 DECL_OFFSET_ALIGN (node
));
405 else if (DECL_BUILT_IN (node
))
407 if (DECL_BUILT_IN_CLASS (node
) == BUILT_IN_MD
)
408 fprintf (file
, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node
));
410 fprintf (file
, " built-in %s:%s",
411 built_in_class_names
[(int) DECL_BUILT_IN_CLASS (node
)],
412 built_in_names
[(int) DECL_FUNCTION_CODE (node
)]);
415 if (DECL_POINTER_ALIAS_SET_KNOWN_P (node
))
417 fprintf (file
, " alias set ");
418 fprintf (file
, HOST_WIDE_INT_PRINT_DEC
,
419 DECL_POINTER_ALIAS_SET (node
));
422 if (TREE_CODE (node
) == FIELD_DECL
)
424 print_node (file
, "offset", DECL_FIELD_OFFSET (node
), indent
+ 4);
425 print_node (file
, "bit offset", DECL_FIELD_BIT_OFFSET (node
),
429 print_node_brief (file
, "context", DECL_CONTEXT (node
), indent
+ 4);
430 print_node_brief (file
, "attributes",
431 DECL_ATTRIBUTES (node
), indent
+ 4);
432 print_node_brief (file
, "abstract_origin",
433 DECL_ABSTRACT_ORIGIN (node
), indent
+ 4);
435 print_node (file
, "arguments", DECL_ARGUMENTS (node
), indent
+ 4);
436 print_node (file
, "result", DECL_RESULT_FLD (node
), indent
+ 4);
437 print_node_brief (file
, "initial", DECL_INITIAL (node
), indent
+ 4);
439 (*lang_hooks
.print_decl
) (file
, node
, indent
);
441 if (DECL_RTL_SET_P (node
))
443 indent_to (file
, indent
+ 4);
444 print_rtl (file
, DECL_RTL (node
));
447 if (TREE_CODE (node
) == PARM_DECL
)
449 print_node (file
, "arg-type", DECL_ARG_TYPE (node
), indent
+ 4);
450 print_node (file
, "arg-type-as-written",
451 DECL_ARG_TYPE_AS_WRITTEN (node
), indent
+ 4);
453 if (DECL_INCOMING_RTL (node
) != 0)
455 indent_to (file
, indent
+ 4);
456 fprintf (file
, "incoming-rtl ");
457 print_rtl (file
, DECL_INCOMING_RTL (node
));
460 else if (TREE_CODE (node
) == FUNCTION_DECL
461 && DECL_SAVED_INSNS (node
) != 0)
463 indent_to (file
, indent
+ 4);
464 fprintf (file
, "saved-insns ");
465 fprintf (file
, HOST_PTR_PRINTF
, (char *) DECL_SAVED_INSNS (node
));
468 /* Print the decl chain only if decl is at second level. */
470 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
472 print_node_brief (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
476 /* The no-force-blk flag is used for different things in
478 if ((TREE_CODE (node
) == RECORD_TYPE
479 || TREE_CODE (node
) == UNION_TYPE
480 || TREE_CODE (node
) == QUAL_UNION_TYPE
)
481 && TYPE_NO_FORCE_BLK (node
))
482 fputs (" no-force-blk", file
);
483 else if (TREE_CODE (node
) == INTEGER_TYPE
484 && TYPE_IS_SIZETYPE (node
))
485 fputs (" sizetype", file
);
486 else if (TREE_CODE (node
) == FUNCTION_TYPE
487 && TYPE_RETURNS_STACK_DEPRESSED (node
))
488 fputs (" returns-stack-depressed", file
);
490 if (TYPE_STRING_FLAG (node
))
491 fputs (" string-flag", file
);
492 if (TYPE_NEEDS_CONSTRUCTING (node
))
493 fputs (" needs-constructing", file
);
495 /* The transparent-union flag is used for different things in
497 if (TREE_CODE (node
) == UNION_TYPE
&& TYPE_TRANSPARENT_UNION (node
))
498 fputs (" transparent-union", file
);
499 else if (TREE_CODE (node
) == ARRAY_TYPE
500 && TYPE_NONALIASED_COMPONENT (node
))
501 fputs (" nonaliased-component", file
);
502 else if (TREE_CODE (node
) == FUNCTION_TYPE
503 && TYPE_AMBIENT_BOUNDEDNESS (node
))
504 fputs (" ambient-boundedness", file
);
506 if (TYPE_PACKED (node
))
507 fputs (" packed", file
);
509 if (TYPE_LANG_FLAG_0 (node
))
510 fputs (" type_0", file
);
511 if (TYPE_LANG_FLAG_1 (node
))
512 fputs (" type_1", file
);
513 if (TYPE_LANG_FLAG_2 (node
))
514 fputs (" type_2", file
);
515 if (TYPE_LANG_FLAG_3 (node
))
516 fputs (" type_3", file
);
517 if (TYPE_LANG_FLAG_4 (node
))
518 fputs (" type_4", file
);
519 if (TYPE_LANG_FLAG_5 (node
))
520 fputs (" type_5", file
);
521 if (TYPE_LANG_FLAG_6 (node
))
522 fputs (" type_6", file
);
524 mode
= TYPE_MODE (node
);
525 fprintf (file
, " %s", GET_MODE_NAME (mode
));
527 print_node (file
, "size", TYPE_SIZE (node
), indent
+ 4);
528 print_node (file
, "unit size", TYPE_SIZE_UNIT (node
), indent
+ 4);
529 indent_to (file
, indent
+ 3);
531 if (TYPE_USER_ALIGN (node
))
532 fprintf (file
, " user");
534 fprintf (file
, " align %d", TYPE_ALIGN (node
));
535 fprintf (file
, " symtab %d", TYPE_SYMTAB_ADDRESS (node
));
536 fprintf (file
, " alias set ");
537 fprintf (file
, HOST_WIDE_INT_PRINT_DEC
, TYPE_ALIAS_SET (node
));
539 print_node (file
, "attributes", TYPE_ATTRIBUTES (node
), indent
+ 4);
541 if (INTEGRAL_TYPE_P (node
) || TREE_CODE (node
) == REAL_TYPE
)
543 fprintf (file
, " precision %d", TYPE_PRECISION (node
));
544 print_node_brief (file
, "min", TYPE_MIN_VALUE (node
), indent
+ 4);
545 print_node_brief (file
, "max", TYPE_MAX_VALUE (node
), indent
+ 4);
548 if (TREE_CODE (node
) == ENUMERAL_TYPE
)
549 print_node (file
, "values", TYPE_VALUES (node
), indent
+ 4);
550 else if (TREE_CODE (node
) == ARRAY_TYPE
|| TREE_CODE (node
) == SET_TYPE
)
551 print_node (file
, "domain", TYPE_DOMAIN (node
), indent
+ 4);
552 else if (TREE_CODE (node
) == RECORD_TYPE
553 || TREE_CODE (node
) == UNION_TYPE
554 || TREE_CODE (node
) == QUAL_UNION_TYPE
)
555 print_node (file
, "fields", TYPE_FIELDS (node
), indent
+ 4);
556 else if (TREE_CODE (node
) == FUNCTION_TYPE
557 || TREE_CODE (node
) == METHOD_TYPE
)
559 if (TYPE_METHOD_BASETYPE (node
))
560 print_node_brief (file
, "method basetype",
561 TYPE_METHOD_BASETYPE (node
), indent
+ 4);
562 print_node (file
, "arg-types", TYPE_ARG_TYPES (node
), indent
+ 4);
564 else if (TREE_CODE (node
) == OFFSET_TYPE
)
565 print_node_brief (file
, "basetype", TYPE_OFFSET_BASETYPE (node
),
568 if (TYPE_CONTEXT (node
))
569 print_node_brief (file
, "context", TYPE_CONTEXT (node
), indent
+ 4);
571 (*lang_hooks
.print_type
) (file
, node
, indent
);
573 if (TYPE_POINTER_TO (node
) || TREE_CHAIN (node
))
574 indent_to (file
, indent
+ 3);
576 print_node_brief (file
, "pointer_to_this", TYPE_POINTER_TO (node
),
578 print_node_brief (file
, "reference_to_this", TYPE_REFERENCE_TO (node
),
580 print_node_brief (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
584 print_node (file
, "vars", BLOCK_VARS (node
), indent
+ 4);
585 print_node (file
, "supercontext", BLOCK_SUPERCONTEXT (node
), indent
+ 4);
586 print_node (file
, "subblocks", BLOCK_SUBBLOCKS (node
), indent
+ 4);
587 print_node (file
, "chain", BLOCK_CHAIN (node
), indent
+ 4);
588 print_node (file
, "abstract_origin",
589 BLOCK_ABSTRACT_ORIGIN (node
), indent
+ 4);
598 if (TREE_CODE (node
) == BIND_EXPR
)
600 print_node (file
, "vars", TREE_OPERAND (node
, 0), indent
+ 4);
601 print_node (file
, "body", TREE_OPERAND (node
, 1), indent
+ 4);
602 print_node (file
, "block", TREE_OPERAND (node
, 2), indent
+ 4);
606 len
= TREE_CODE_LENGTH (TREE_CODE (node
));
608 /* Some nodes contain rtx's, not trees,
609 after a certain point. Print the rtx's as rtx's. */
610 first_rtl
= first_rtl_op (TREE_CODE (node
));
612 for (i
= 0; i
< len
; i
++)
616 indent_to (file
, indent
+ 4);
617 fprintf (file
, "rtl %d ", i
);
618 if (TREE_OPERAND (node
, i
))
619 print_rtl (file
, (struct rtx_def
*) TREE_OPERAND (node
, i
));
621 fprintf (file
, "(nil)");
622 fprintf (file
, "\n");
628 sprintf (temp
, "arg %d", i
);
629 print_node (file
, temp
, TREE_OPERAND (node
, i
), indent
+ 4);
633 if (TREE_CODE (node
) == EXPR_WITH_FILE_LOCATION
)
635 indent_to (file
, indent
+4);
636 fprintf (file
, "%s:%d:%d",
637 (EXPR_WFL_FILENAME_NODE (node
) ?
638 EXPR_WFL_FILENAME (node
) : "(no file info)"),
639 EXPR_WFL_LINENO (node
), EXPR_WFL_COLNO (node
));
641 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
646 switch (TREE_CODE (node
))
649 if (TREE_CONSTANT_OVERFLOW (node
))
650 fprintf (file
, " overflow");
653 if (TREE_INT_CST_HIGH (node
) == 0)
654 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
655 TREE_INT_CST_LOW (node
));
656 else if (TREE_INT_CST_HIGH (node
) == -1
657 && TREE_INT_CST_LOW (node
) != 0)
660 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
661 -TREE_INT_CST_LOW (node
));
664 fprintf (file
, HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
665 TREE_INT_CST_HIGH (node
), TREE_INT_CST_LOW (node
));
672 if (TREE_OVERFLOW (node
))
673 fprintf (file
, " overflow");
675 d
= TREE_REAL_CST (node
);
676 if (REAL_VALUE_ISINF (d
))
677 fprintf (file
, " Inf");
678 else if (REAL_VALUE_ISNAN (d
))
679 fprintf (file
, " Nan");
684 REAL_VALUE_TO_DECIMAL (d
, "%e", string
);
685 fprintf (file
, " %s", string
);
692 tree vals
= TREE_VECTOR_CST_ELTS (node
);
698 for (link
= vals
; link
; link
= TREE_CHAIN (link
), ++i
)
700 sprintf (buf
, "elt%d: ", i
);
701 print_node (file
, buf
, TREE_VALUE (link
), indent
+ 4);
707 print_node (file
, "real", TREE_REALPART (node
), indent
+ 4);
708 print_node (file
, "imag", TREE_IMAGPART (node
), indent
+ 4);
712 fprintf (file
, " \"%s\"", TREE_STRING_POINTER (node
));
713 /* Print the chain at second level. */
715 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
717 print_node_brief (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
720 case IDENTIFIER_NODE
:
721 (*lang_hooks
.print_identifier
) (file
, node
, indent
);
725 print_node (file
, "purpose", TREE_PURPOSE (node
), indent
+ 4);
726 print_node (file
, "value", TREE_VALUE (node
), indent
+ 4);
727 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
731 len
= TREE_VEC_LENGTH (node
);
732 for (i
= 0; i
< len
; i
++)
733 if (TREE_VEC_ELT (node
, i
))
736 sprintf (temp
, "elt %d", i
);
737 indent_to (file
, indent
+ 4);
738 print_node_brief (file
, temp
, TREE_VEC_ELT (node
, i
), 0);
743 if (TREE_CODE_CLASS (TREE_CODE (node
)) == 'x')
744 (*lang_hooks
.print_xnode
) (file
, node
, indent
);