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 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
28 /* Define the hash table of nodes already seen.
29 Such nodes are not repeated; brief cross-references are used. */
39 static struct bucket
**table
;
41 /* Print the node NODE on standard error, for debugging.
42 Most nodes referred to by this one are printed recursively
43 down to a depth of six. */
49 table
= (struct bucket
**) permalloc (HASH_SIZE
* sizeof (struct bucket
*));
50 memset ((char *) table
, 0, HASH_SIZE
* sizeof (struct bucket
*));
51 print_node (stderr
, "", node
, 0);
53 fprintf (stderr
, "\n");
56 /* Print a node in brief fashion, with just the code, address and name. */
59 print_node_brief (file
, prefix
, node
, indent
)
70 class = TREE_CODE_CLASS (TREE_CODE (node
));
72 /* Always print the slot this node is in, and its code, address and
76 fprintf (file
, "%s <%s ", prefix
, tree_code_name
[(int) TREE_CODE (node
)]);
77 fprintf (file
, HOST_PTR_PRINTF
, (char *) node
);
82 fprintf (file
, " %s", IDENTIFIER_POINTER (DECL_NAME (node
)));
84 else if (class == 't')
88 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
89 fprintf (file
, " %s", IDENTIFIER_POINTER (TYPE_NAME (node
)));
90 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
91 && DECL_NAME (TYPE_NAME (node
)))
93 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node
))));
96 if (TREE_CODE (node
) == IDENTIFIER_NODE
)
97 fprintf (file
, " %s", IDENTIFIER_POINTER (node
));
99 /* We might as well always print the value of an integer or real. */
100 if (TREE_CODE (node
) == INTEGER_CST
)
102 if (TREE_CONSTANT_OVERFLOW (node
))
103 fprintf (file
, " overflow");
106 if (TREE_INT_CST_HIGH (node
) == 0)
107 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
, TREE_INT_CST_LOW (node
));
108 else if (TREE_INT_CST_HIGH (node
) == -1
109 && TREE_INT_CST_LOW (node
) != 0)
112 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
113 -TREE_INT_CST_LOW (node
));
116 fprintf (file
, HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
117 TREE_INT_CST_HIGH (node
), TREE_INT_CST_LOW (node
));
119 if (TREE_CODE (node
) == REAL_CST
)
123 if (TREE_OVERFLOW (node
))
124 fprintf (file
, " overflow");
126 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
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
);
142 unsigned char *p
= (unsigned char *) &TREE_REAL_CST (node
);
143 fprintf (file
, " 0x");
144 for (i
= 0; i
< sizeof TREE_REAL_CST (node
); i
++)
145 fprintf (file
, "%02x", *p
++);
155 indent_to (file
, column
)
161 /* Since this is the long way, indent to desired column. */
163 fprintf (file
, "\n");
164 for (i
= 0; i
< column
; i
++)
168 /* Print the node NODE in full on file FILE, preceded by PREFIX,
169 starting in column INDENT. */
172 print_node (file
, prefix
, node
, indent
)
180 enum machine_mode mode
;
189 class = TREE_CODE_CLASS (TREE_CODE (node
));
191 /* Don't get too deep in nesting. If the user wants to see deeper,
192 it is easy to use the address of a lowest-level node
193 as an argument in another call to debug_tree. */
197 print_node_brief (file
, prefix
, node
, indent
);
201 if (indent
> 8 && (class == 't' || class == 'd'))
203 print_node_brief (file
, prefix
, node
, indent
);
207 /* It is unsafe to look at any other filds of an ERROR_MARK node. */
208 if (TREE_CODE (node
) == ERROR_MARK
)
210 print_node_brief (file
, prefix
, node
, indent
);
214 hash
= ((unsigned long) node
) % HASH_SIZE
;
216 /* If node is in the table, just mention its address. */
217 for (b
= table
[hash
]; b
; b
= b
->next
)
220 print_node_brief (file
, prefix
, node
, indent
);
224 /* Add this node to the table. */
225 b
= (struct bucket
*) permalloc (sizeof (struct bucket
));
227 b
->next
= table
[hash
];
230 /* Indent to the specified column, since this is the long form. */
231 indent_to (file
, indent
);
233 /* Print the slot this node is in, and its code, and address. */
234 fprintf (file
, "%s <%s ", prefix
, tree_code_name
[(int) TREE_CODE (node
)]);
235 fprintf (file
, HOST_PTR_PRINTF
, (char *) node
);
237 /* Print the name, if any. */
240 if (DECL_NAME (node
))
241 fprintf (file
, " %s", IDENTIFIER_POINTER (DECL_NAME (node
)));
243 else if (class == 't')
245 if (TYPE_NAME (node
))
247 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
248 fprintf (file
, " %s", IDENTIFIER_POINTER (TYPE_NAME (node
)));
249 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
250 && DECL_NAME (TYPE_NAME (node
)))
251 fprintf (file
, " %s",
252 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node
))));
255 if (TREE_CODE (node
) == IDENTIFIER_NODE
)
256 fprintf (file
, " %s", IDENTIFIER_POINTER (node
));
258 if (TREE_CODE (node
) == INTEGER_CST
)
261 print_node_brief (file
, "type", TREE_TYPE (node
), indent
+ 4);
265 print_node (file
, "type", TREE_TYPE (node
), indent
+ 4);
266 if (TREE_TYPE (node
))
267 indent_to (file
, indent
+ 3);
270 if (TREE_SIDE_EFFECTS (node
))
271 fputs (" side-effects", file
);
272 if (TREE_READONLY (node
))
273 fputs (" readonly", file
);
274 if (TREE_CONSTANT (node
))
275 fputs (" constant", file
);
276 if (TREE_ADDRESSABLE (node
))
277 fputs (" addressable", file
);
278 if (TREE_THIS_VOLATILE (node
))
279 fputs (" volatile", file
);
280 if (TREE_UNSIGNED (node
))
281 fputs (" unsigned", file
);
282 if (TREE_ASM_WRITTEN (node
))
283 fputs (" asm_written", file
);
284 if (TREE_USED (node
))
285 fputs (" used", file
);
286 if (TREE_NOTHROW (node
))
287 fputs (" nothrow", file
);
288 if (TREE_PUBLIC (node
))
289 fputs (" public", file
);
290 if (TREE_PRIVATE (node
))
291 fputs (" private", file
);
292 if (TREE_PROTECTED (node
))
293 fputs (" protected", file
);
294 if (TREE_STATIC (node
))
295 fputs (" static", file
);
296 if (TREE_LANG_FLAG_0 (node
))
297 fputs (" tree_0", file
);
298 if (TREE_LANG_FLAG_1 (node
))
299 fputs (" tree_1", file
);
300 if (TREE_LANG_FLAG_2 (node
))
301 fputs (" tree_2", file
);
302 if (TREE_LANG_FLAG_3 (node
))
303 fputs (" tree_3", file
);
304 if (TREE_LANG_FLAG_4 (node
))
305 fputs (" tree_4", file
);
306 if (TREE_LANG_FLAG_5 (node
))
307 fputs (" tree_5", file
);
308 if (TREE_LANG_FLAG_6 (node
))
309 fputs (" tree_6", file
);
311 /* DECL_ nodes have additional attributes. */
313 switch (TREE_CODE_CLASS (TREE_CODE (node
)))
316 mode
= DECL_MODE (node
);
318 if (DECL_IGNORED_P (node
))
319 fputs (" ignored", file
);
320 if (DECL_ABSTRACT (node
))
321 fputs (" abstract", file
);
322 if (DECL_IN_SYSTEM_HEADER (node
))
323 fputs (" in_system_header", file
);
324 if (DECL_COMMON (node
))
325 fputs (" common", file
);
326 if (DECL_EXTERNAL (node
))
327 fputs (" external", file
);
328 if (DECL_REGISTER (node
) && TREE_CODE (node
) != FIELD_DECL
329 && TREE_CODE (node
) != FUNCTION_DECL
330 && TREE_CODE (node
) != LABEL_DECL
)
331 fputs (" regdecl", file
);
332 if (DECL_NONLOCAL (node
))
333 fputs (" nonlocal", file
);
335 if (TREE_CODE (node
) == TYPE_DECL
&& TYPE_DECL_SUPPRESS_DEBUG (node
))
336 fputs (" suppress-debug", file
);
338 if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INLINE (node
))
339 fputs (" inline", file
);
340 if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_BUILT_IN (node
))
341 fputs (" built-in", file
);
342 if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_BUILT_IN_NONANSI (node
))
343 fputs (" built-in-nonansi", file
);
344 if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_NO_STATIC_CHAIN (node
))
345 fputs (" no-static-chain", file
);
347 if (TREE_CODE (node
) == FIELD_DECL
&& DECL_PACKED (node
))
348 fputs (" packed", file
);
349 if (TREE_CODE (node
) == FIELD_DECL
&& DECL_BIT_FIELD (node
))
350 fputs (" bit-field", file
);
351 if (TREE_CODE (node
) == FIELD_DECL
&& DECL_NONADDRESSABLE_P (node
))
352 fputs (" nonaddressable", file
);
354 if (TREE_CODE (node
) == LABEL_DECL
&& DECL_TOO_LATE (node
))
355 fputs (" too-late", file
);
356 if (TREE_CODE (node
) == LABEL_DECL
&& DECL_ERROR_ISSUED (node
))
357 fputs (" error-issued", file
);
359 if (TREE_CODE (node
) == VAR_DECL
&& DECL_IN_TEXT_SECTION (node
))
360 fputs (" in-text-section", file
);
362 if (TREE_CODE (node
) == PARM_DECL
&& DECL_TRANSPARENT_UNION (node
))
363 fputs (" transparent-union", file
);
365 if (DECL_VIRTUAL_P (node
))
366 fputs (" virtual", file
);
367 if (DECL_DEFER_OUTPUT (node
))
368 fputs (" defer-output", file
);
370 if (DECL_LANG_FLAG_0 (node
))
371 fputs (" decl_0", file
);
372 if (DECL_LANG_FLAG_1 (node
))
373 fputs (" decl_1", file
);
374 if (DECL_LANG_FLAG_2 (node
))
375 fputs (" decl_2", file
);
376 if (DECL_LANG_FLAG_3 (node
))
377 fputs (" decl_3", file
);
378 if (DECL_LANG_FLAG_4 (node
))
379 fputs (" decl_4", file
);
380 if (DECL_LANG_FLAG_5 (node
))
381 fputs (" decl_5", file
);
382 if (DECL_LANG_FLAG_6 (node
))
383 fputs (" decl_6", file
);
384 if (DECL_LANG_FLAG_7 (node
))
385 fputs (" decl_7", file
);
387 fprintf (file
, " %s", GET_MODE_NAME(mode
));
388 fprintf (file
, " file %s line %d",
389 DECL_SOURCE_FILE (node
), DECL_SOURCE_LINE (node
));
391 print_node (file
, "size", DECL_SIZE (node
), indent
+ 4);
392 print_node (file
, "unit size", DECL_SIZE_UNIT (node
), indent
+ 4);
394 if (TREE_CODE (node
) != FUNCTION_DECL
395 || DECL_INLINE (node
) || DECL_BUILT_IN (node
))
396 indent_to (file
, indent
+ 3);
398 if (TREE_CODE (node
) != FUNCTION_DECL
)
400 if (DECL_USER_ALIGN (node
))
401 fprintf (file
, " user");
403 fprintf (file
, " align %d", DECL_ALIGN (node
));
404 if (TREE_CODE (node
) == FIELD_DECL
)
406 fprintf (file
, " offset_align ");
407 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
408 DECL_OFFSET_ALIGN (node
));
411 else if (DECL_BUILT_IN (node
))
413 if (DECL_BUILT_IN_CLASS (node
) == BUILT_IN_MD
)
414 fprintf (file
, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node
));
416 fprintf (file
, " built-in %s:%s",
417 built_in_class_names
[(int) DECL_BUILT_IN_CLASS (node
)],
418 built_in_names
[(int) DECL_FUNCTION_CODE (node
)]);
421 if (DECL_POINTER_ALIAS_SET_KNOWN_P (node
))
423 fprintf (file
, " alias set ");
424 fprintf (file
, HOST_WIDE_INT_PRINT_DEC
,
425 DECL_POINTER_ALIAS_SET (node
));
428 if (TREE_CODE (node
) == FIELD_DECL
)
430 print_node (file
, "offset", DECL_FIELD_OFFSET (node
), indent
+ 4);
431 print_node (file
, "bit offset", DECL_FIELD_BIT_OFFSET (node
),
435 print_node_brief (file
, "context", DECL_CONTEXT (node
), indent
+ 4);
436 print_node_brief (file
, "machine_attributes",
437 DECL_MACHINE_ATTRIBUTES (node
), indent
+ 4);
438 print_node_brief (file
, "abstract_origin",
439 DECL_ABSTRACT_ORIGIN (node
), indent
+ 4);
441 print_node (file
, "arguments", DECL_ARGUMENTS (node
), indent
+ 4);
442 print_node (file
, "result", DECL_RESULT_FLD (node
), indent
+ 4);
443 print_node_brief (file
, "initial", DECL_INITIAL (node
), indent
+ 4);
445 print_lang_decl (file
, node
, indent
);
447 if (DECL_RTL_SET_P (node
))
449 indent_to (file
, indent
+ 4);
450 print_rtl (file
, DECL_RTL (node
));
453 if (TREE_CODE (node
) == PARM_DECL
)
455 print_node (file
, "arg-type", DECL_ARG_TYPE (node
), indent
+ 4);
456 print_node (file
, "arg-type-as-written",
457 DECL_ARG_TYPE_AS_WRITTEN (node
), indent
+ 4);
459 if (DECL_INCOMING_RTL (node
) != 0)
461 indent_to (file
, indent
+ 4);
462 fprintf (file
, "incoming-rtl ");
463 print_rtl (file
, DECL_INCOMING_RTL (node
));
466 else if (TREE_CODE (node
) == FUNCTION_DECL
467 && DECL_SAVED_INSNS (node
) != 0)
469 indent_to (file
, indent
+ 4);
470 fprintf (file
, "saved-insns ");
471 fprintf (file
, HOST_PTR_PRINTF
, (char *) DECL_SAVED_INSNS (node
));
474 /* Print the decl chain only if decl is at second level. */
476 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
478 print_node_brief (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
482 /* The no-force-blk flag is used for different things in
484 if ((TREE_CODE (node
) == RECORD_TYPE
485 || TREE_CODE (node
) == UNION_TYPE
486 || TREE_CODE (node
) == QUAL_UNION_TYPE
)
487 && TYPE_NO_FORCE_BLK (node
))
488 fputs (" no-force-blk", file
);
489 else if (TREE_CODE (node
) == INTEGER_TYPE
490 && TYPE_IS_SIZETYPE (node
))
491 fputs (" sizetype", file
);
492 else if (TREE_CODE (node
) == FUNCTION_TYPE
493 && TYPE_RETURNS_STACK_DEPRESSED (node
))
494 fputs (" returns-stack-depressed", file
);
496 if (TYPE_STRING_FLAG (node
))
497 fputs (" string-flag", file
);
498 if (TYPE_NEEDS_CONSTRUCTING (node
))
499 fputs (" needs-constructing", file
);
501 /* The transparent-union flag is used for different things in
503 if (TREE_CODE (node
) == UNION_TYPE
&& TYPE_TRANSPARENT_UNION (node
))
504 fputs (" transparent-union", file
);
505 else if (TREE_CODE (node
) == ARRAY_TYPE
506 && TYPE_NONALIASED_COMPONENT (node
))
507 fputs (" nonaliased-component", file
);
508 else if (TREE_CODE (node
) == FUNCTION_TYPE
509 && TYPE_AMBIENT_BOUNDEDNESS (node
))
510 fputs (" ambient-boundedness", file
);
512 if (TYPE_PACKED (node
))
513 fputs (" packed", file
);
515 if (TYPE_LANG_FLAG_0 (node
))
516 fputs (" type_0", file
);
517 if (TYPE_LANG_FLAG_1 (node
))
518 fputs (" type_1", file
);
519 if (TYPE_LANG_FLAG_2 (node
))
520 fputs (" type_2", file
);
521 if (TYPE_LANG_FLAG_3 (node
))
522 fputs (" type_3", file
);
523 if (TYPE_LANG_FLAG_4 (node
))
524 fputs (" type_4", file
);
525 if (TYPE_LANG_FLAG_5 (node
))
526 fputs (" type_5", file
);
527 if (TYPE_LANG_FLAG_6 (node
))
528 fputs (" type_6", file
);
530 mode
= TYPE_MODE (node
);
531 fprintf (file
, " %s", GET_MODE_NAME(mode
));
533 print_node (file
, "size", TYPE_SIZE (node
), indent
+ 4);
534 print_node (file
, "unit size", TYPE_SIZE_UNIT (node
), indent
+ 4);
535 indent_to (file
, indent
+ 3);
537 if (TYPE_USER_ALIGN (node
))
538 fprintf (file
, " user");
540 fprintf (file
, " align %d", TYPE_ALIGN (node
));
541 fprintf (file
, " symtab %d", TYPE_SYMTAB_ADDRESS (node
));
542 fprintf (file
, " alias set ");
543 fprintf (file
, HOST_WIDE_INT_PRINT_DEC
, TYPE_ALIAS_SET (node
));
545 print_node (file
, "attributes", TYPE_ATTRIBUTES (node
), indent
+ 4);
547 if (INTEGRAL_TYPE_P (node
) || TREE_CODE (node
) == REAL_TYPE
)
549 fprintf (file
, " precision %d", TYPE_PRECISION (node
));
550 print_node_brief (file
, "min", TYPE_MIN_VALUE (node
), indent
+ 4);
551 print_node_brief (file
, "max", TYPE_MAX_VALUE (node
), indent
+ 4);
554 if (TREE_CODE (node
) == ENUMERAL_TYPE
)
555 print_node (file
, "values", TYPE_VALUES (node
), indent
+ 4);
556 else if (TREE_CODE (node
) == ARRAY_TYPE
|| TREE_CODE (node
) == SET_TYPE
)
557 print_node (file
, "domain", TYPE_DOMAIN (node
), indent
+ 4);
558 else if (TREE_CODE (node
) == RECORD_TYPE
559 || TREE_CODE (node
) == UNION_TYPE
560 || TREE_CODE (node
) == QUAL_UNION_TYPE
)
561 print_node (file
, "fields", TYPE_FIELDS (node
), indent
+ 4);
562 else if (TREE_CODE (node
) == FUNCTION_TYPE
563 || TREE_CODE (node
) == METHOD_TYPE
)
565 if (TYPE_METHOD_BASETYPE (node
))
566 print_node_brief (file
, "method basetype",
567 TYPE_METHOD_BASETYPE (node
), indent
+ 4);
568 print_node (file
, "arg-types", TYPE_ARG_TYPES (node
), indent
+ 4);
570 else if (TREE_CODE (node
) == OFFSET_TYPE
)
571 print_node_brief (file
, "basetype", TYPE_OFFSET_BASETYPE (node
),
574 if (TYPE_CONTEXT (node
))
575 print_node_brief (file
, "context", TYPE_CONTEXT (node
), indent
+ 4);
577 print_lang_type (file
, node
, indent
);
579 if (TYPE_POINTER_TO (node
) || TREE_CHAIN (node
))
580 indent_to (file
, indent
+ 3);
582 print_node_brief (file
, "pointer_to_this", TYPE_POINTER_TO (node
),
584 print_node_brief (file
, "reference_to_this", TYPE_REFERENCE_TO (node
),
586 print_node_brief (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
590 print_node (file
, "vars", BLOCK_VARS (node
), indent
+ 4);
591 print_node (file
, "supercontext", BLOCK_SUPERCONTEXT (node
), indent
+ 4);
592 print_node (file
, "subblocks", BLOCK_SUBBLOCKS (node
), indent
+ 4);
593 print_node (file
, "chain", BLOCK_CHAIN (node
), indent
+ 4);
594 print_node (file
, "abstract_origin",
595 BLOCK_ABSTRACT_ORIGIN (node
), indent
+ 4);
604 if (TREE_CODE (node
) == BIND_EXPR
)
606 print_node (file
, "vars", TREE_OPERAND (node
, 0), indent
+ 4);
607 print_node (file
, "body", TREE_OPERAND (node
, 1), indent
+ 4);
608 print_node (file
, "block", TREE_OPERAND (node
, 2), indent
+ 4);
612 len
= TREE_CODE_LENGTH (TREE_CODE (node
));
614 /* Some nodes contain rtx's, not trees,
615 after a certain point. Print the rtx's as rtx's. */
616 first_rtl
= first_rtl_op (TREE_CODE (node
));
618 for (i
= 0; i
< len
; i
++)
622 indent_to (file
, indent
+ 4);
623 fprintf (file
, "rtl %d ", i
);
624 if (TREE_OPERAND (node
, i
))
625 print_rtl (file
, (struct rtx_def
*) TREE_OPERAND (node
, i
));
627 fprintf (file
, "(nil)");
628 fprintf (file
, "\n");
634 sprintf (temp
, "arg %d", i
);
635 print_node (file
, temp
, TREE_OPERAND (node
, i
), indent
+ 4);
639 if (TREE_CODE (node
) == EXPR_WITH_FILE_LOCATION
)
641 indent_to (file
, indent
+4);
642 fprintf (file
, "%s:%d:%d",
643 (EXPR_WFL_FILENAME_NODE (node
) ?
644 EXPR_WFL_FILENAME (node
) : "(no file info)"),
645 EXPR_WFL_LINENO (node
), EXPR_WFL_COLNO (node
));
647 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
652 switch (TREE_CODE (node
))
655 if (TREE_CONSTANT_OVERFLOW (node
))
656 fprintf (file
, " overflow");
659 if (TREE_INT_CST_HIGH (node
) == 0)
660 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
661 TREE_INT_CST_LOW (node
));
662 else if (TREE_INT_CST_HIGH (node
) == -1
663 && TREE_INT_CST_LOW (node
) != 0)
666 fprintf (file
, HOST_WIDE_INT_PRINT_UNSIGNED
,
667 -TREE_INT_CST_LOW (node
));
670 fprintf (file
, HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
671 TREE_INT_CST_HIGH (node
), TREE_INT_CST_LOW (node
));
678 if (TREE_OVERFLOW (node
))
679 fprintf (file
, " overflow");
681 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
682 d
= TREE_REAL_CST (node
);
683 if (REAL_VALUE_ISINF (d
))
684 fprintf (file
, " Inf");
685 else if (REAL_VALUE_ISNAN (d
))
686 fprintf (file
, " Nan");
691 REAL_VALUE_TO_DECIMAL (d
, "%e", string
);
692 fprintf (file
, " %s", string
);
697 unsigned char *p
= (unsigned char *) &TREE_REAL_CST (node
);
698 fprintf (file
, " 0x");
699 for (i
= 0; i
< sizeof TREE_REAL_CST (node
); i
++)
700 fprintf (file
, "%02x", *p
++);
708 print_node (file
, "real", TREE_REALPART (node
), indent
+ 4);
709 print_node (file
, "imag", TREE_IMAGPART (node
), indent
+ 4);
713 fprintf (file
, " \"%s\"", TREE_STRING_POINTER (node
));
714 /* Print the chain at second level. */
716 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
718 print_node_brief (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
721 case IDENTIFIER_NODE
:
722 print_lang_identifier (file
, node
, indent
);
726 print_node (file
, "purpose", TREE_PURPOSE (node
), indent
+ 4);
727 print_node (file
, "value", TREE_VALUE (node
), indent
+ 4);
728 print_node (file
, "chain", TREE_CHAIN (node
), indent
+ 4);
732 len
= TREE_VEC_LENGTH (node
);
733 for (i
= 0; i
< len
; i
++)
734 if (TREE_VEC_ELT (node
, i
))
737 sprintf (temp
, "elt %d", i
);
738 indent_to (file
, indent
+ 4);
739 print_node_brief (file
, temp
, TREE_VEC_ELT (node
, i
), 0);
744 print_node (file
, "op1", TREE_PURPOSE (node
), indent
+ 4);
745 print_node (file
, "op2", TREE_VALUE (node
), indent
+ 4);
749 if (TREE_CODE_CLASS (TREE_CODE (node
)) == 'x')
750 lang_print_xnode (file
, node
, indent
);