OSDN Git Service

(print_node{,_brief}, case INTEGER_CST): Use HOST_WIDE_INT_PRINT_*.
[pf3gnuchains/gcc-fork.git] / gcc / print-tree.c
1 /* Prints out tree in human readable form - GNU C-compiler
2    Copyright (C) 1990, 91, 93, 94, 95, 1996 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 #include "config.h"
23 #include "tree.h"
24 #include <stdio.h>
25
26 extern char **tree_code_name;
27
28 extern char *mode_name[];
29
30 void print_node ();
31 void indent_to ();
32
33 /* Define the hash table of nodes already seen.
34    Such nodes are not repeated; brief cross-references are used.  */
35
36 #define HASH_SIZE 37
37
38 struct bucket
39 {
40   tree node;
41   struct bucket *next;
42 };
43
44 static struct bucket **table;
45
46 /* Print the node NODE on standard error, for debugging.
47    Most nodes referred to by this one are printed recursively
48    down to a depth of six.  */
49
50 void
51 debug_tree (node)
52      tree node;
53 {
54   char *object = (char *) oballoc (0);
55
56   table = (struct bucket **) oballoc (HASH_SIZE * sizeof (struct bucket *));
57   bzero ((char *) table, HASH_SIZE * sizeof (struct bucket *));
58   print_node (stderr, "", node, 0);
59   table = 0;
60   obfree (object);
61   fprintf (stderr, "\n");
62 }
63
64 /* Print a node in brief fashion, with just the code, address and name.  */
65
66 void
67 print_node_brief (file, prefix, node, indent)
68      FILE *file;
69      char *prefix;
70      tree node;
71      int indent;
72 {
73   char class;
74
75   if (node == 0)
76     return;
77
78   class = TREE_CODE_CLASS (TREE_CODE (node));
79
80   /* Always print the slot this node is in, and its code, address and
81      name if any.  */
82   if (indent > 0)
83     fprintf (file, " ");
84   fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]);
85   fprintf (file, HOST_PTR_PRINTF, (HOST_WIDE_INT) node);
86
87   if (class == 'd')
88     {
89       if (DECL_NAME (node))
90         fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
91     }
92   else if (class == 't')
93     {
94       if (TYPE_NAME (node))
95         {
96           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
97             fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
98           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
99                    && DECL_NAME (TYPE_NAME (node)))
100             fprintf (file, " %s",
101                      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
102         }
103     }
104   if (TREE_CODE (node) == IDENTIFIER_NODE)
105     fprintf (file, " %s", IDENTIFIER_POINTER (node));
106   /* We might as well always print the value of an integer.  */
107   if (TREE_CODE (node) == INTEGER_CST)
108     {
109       if (TREE_CONSTANT_OVERFLOW (node))
110         fprintf (file, " overflow");
111
112       fprintf (file, " ");
113       if (TREE_INT_CST_HIGH (node) == 0)
114         fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED, TREE_INT_CST_LOW (node));
115       else if (TREE_INT_CST_HIGH (node) == -1
116                && TREE_INT_CST_LOW (node) != 0)
117         {
118           fprintf (file, "-");
119           fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
120                  -TREE_INT_CST_LOW (node));
121         }
122       else
123         fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
124                  TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
125     }
126   if (TREE_CODE (node) == REAL_CST)
127     {
128       REAL_VALUE_TYPE d;
129
130       if (TREE_OVERFLOW (node))
131         fprintf (file, " overflow");
132
133 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
134       d = TREE_REAL_CST (node);
135       if (REAL_VALUE_ISINF (d))
136         fprintf (file, " Inf");
137       else if (REAL_VALUE_ISNAN (d))
138         fprintf (file, " Nan");
139       else
140         {
141           char string[100];
142
143           REAL_VALUE_TO_DECIMAL (d, "%e", string);
144           fprintf (file, " %s", string);
145         }
146 #else
147       {
148         int i;
149         unsigned char *p = (unsigned char *) &TREE_REAL_CST (node);
150         fprintf (file, " 0x");
151         for (i = 0; i < sizeof TREE_REAL_CST (node); i++)
152           fprintf (file, "%02x", *p++);
153         fprintf (file, "");
154       }
155 #endif
156     }
157
158   fprintf (file, ">");
159 }
160
161 void
162 indent_to (file, column)
163      FILE *file;
164      int column;
165 {
166   int i;
167
168   /* Since this is the long way, indent to desired column.  */
169   if (column > 0)
170     fprintf (file, "\n");
171   for (i = 0; i < column; i++)
172     fprintf (file, " ");
173 }
174 \f
175 /* Print the node NODE in full on file FILE, preceded by PREFIX,
176    starting in column INDENT.  */
177
178 void
179 print_node (file, prefix, node, indent)
180      FILE *file;
181      char *prefix;
182      tree node;
183      int indent;
184 {
185   int hash;
186   struct bucket *b;
187   enum machine_mode mode;
188   char class;
189   int len;
190   int first_rtl;
191   int i;
192
193   if (node == 0)
194     return;
195
196   class = TREE_CODE_CLASS (TREE_CODE (node));
197
198   /* Don't get too deep in nesting.  If the user wants to see deeper,
199      it is easy to use the address of a lowest-level node
200      as an argument in another call to debug_tree.  */
201
202   if (indent > 24)
203     {
204       print_node_brief (file, prefix, node, indent);
205       return;
206     }
207
208   if (indent > 8 && (class == 't' || class == 'd'))
209     {
210       print_node_brief (file, prefix, node, indent);
211       return;
212     }
213
214   /* It is unsafe to look at any other filds of an ERROR_MARK node.  */
215   if (TREE_CODE (node) == ERROR_MARK)
216     {
217       print_node_brief (file, prefix, node, indent);
218       return;
219     }
220
221   hash = ((unsigned HOST_WIDE_INT) node) % HASH_SIZE;
222
223   /* If node is in the table, just mention its address.  */
224   for (b = table[hash]; b; b = b->next)
225     if (b->node == node)
226       {
227         print_node_brief (file, prefix, node, indent);
228         return;
229       }
230
231   /* Add this node to the table.  */
232   b = (struct bucket *) oballoc (sizeof (struct bucket));
233   b->node = node;
234   b->next = table[hash];
235   table[hash] = b;
236
237   /* Indent to the specified column, since this is the long form.  */
238   indent_to (file, indent);
239
240   /* Print the slot this node is in, and its code, and address.  */
241   fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]);
242   fprintf (file, HOST_PTR_PRINTF, (HOST_WIDE_INT) node);
243
244   /* Print the name, if any.  */
245   if (class == 'd')
246     {
247       if (DECL_NAME (node))
248         fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
249     }
250   else if (class == 't')
251     {
252       if (TYPE_NAME (node))
253         {
254           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
255             fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
256           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
257                    && DECL_NAME (TYPE_NAME (node)))
258             fprintf (file, " %s",
259                      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
260         }
261     }
262   if (TREE_CODE (node) == IDENTIFIER_NODE)
263     fprintf (file, " %s", IDENTIFIER_POINTER (node));
264
265   if (TREE_CODE (node) == INTEGER_CST)
266     {
267       if (indent <= 4)
268         print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
269     }
270   else
271     {
272       print_node (file, "type", TREE_TYPE (node), indent + 4);
273       if (TREE_TYPE (node))
274         indent_to (file, indent + 3);
275
276       print_obstack_name ((char *) node, file, "");
277       indent_to (file, indent + 3);
278     }
279
280   /* If a permanent object is in the wrong obstack, or the reverse, warn.  */
281   if (object_permanent_p (node) != TREE_PERMANENT (node))
282     {
283       if (TREE_PERMANENT (node))
284         fputs (" !!permanent object in non-permanent obstack!!", file);
285       else
286         fputs (" !!non-permanent object in permanent obstack!!", file);
287       indent_to (file, indent + 3);
288     }
289
290   if (TREE_SIDE_EFFECTS (node))
291     fputs (" side-effects", file);
292   if (TREE_READONLY (node))
293     fputs (" readonly", file);
294   if (TREE_CONSTANT (node))
295     fputs (" constant", file);
296   if (TREE_ADDRESSABLE (node))
297     fputs (" addressable", file);
298   if (TREE_THIS_VOLATILE (node))
299     fputs (" volatile", file);
300   if (TREE_UNSIGNED (node))
301     fputs (" unsigned", file);
302   if (TREE_ASM_WRITTEN (node))
303     fputs (" asm_written", file);
304   if (TREE_USED (node))
305     fputs (" used", file);
306   if (TREE_RAISES (node))
307     fputs (" raises", file);
308   if (TREE_PERMANENT (node))
309     fputs (" permanent", file);
310   if (TREE_PUBLIC (node))
311     fputs (" public", file);
312   if (TREE_STATIC (node))
313     fputs (" static", file);
314   if (TREE_LANG_FLAG_0 (node))
315     fputs (" tree_0", file);
316   if (TREE_LANG_FLAG_1 (node))
317     fputs (" tree_1", file);
318   if (TREE_LANG_FLAG_2 (node))
319     fputs (" tree_2", file);
320   if (TREE_LANG_FLAG_3 (node))
321     fputs (" tree_3", file);
322   if (TREE_LANG_FLAG_4 (node))
323     fputs (" tree_4", file);
324   if (TREE_LANG_FLAG_5 (node))
325     fputs (" tree_5", file);
326   if (TREE_LANG_FLAG_6 (node))
327     fputs (" tree_6", file);
328
329   /* DECL_ nodes have additional attributes.  */
330
331   switch (TREE_CODE_CLASS (TREE_CODE (node)))
332     {
333     case 'd':
334       mode = DECL_MODE (node);
335
336       if (DECL_IGNORED_P (node))
337         fputs (" ignored", file);
338       if (DECL_ABSTRACT (node))
339         fputs (" abstract", file);
340       if (DECL_IN_SYSTEM_HEADER (node))
341         fputs (" in_system_header", file);
342       if (DECL_COMMON (node))
343         fputs (" common", file);
344       if (DECL_EXTERNAL (node))
345         fputs (" external", file);
346       if (DECL_REGISTER (node))
347         fputs (" regdecl", file);
348       if (DECL_PACKED (node))
349         fputs (" packed", file);
350       if (DECL_NONLOCAL (node))
351         fputs (" nonlocal", file);
352       if (DECL_INLINE (node))
353         fputs (" inline", file);
354
355       if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
356         fputs (" suppress-debug", file);
357
358       if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
359         fputs (" built-in", file);
360       if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
361         fputs (" built-in-nonansi", file);
362
363       if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
364         fputs (" bit-field", file);
365       if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
366         fputs (" too-late", file);
367       if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
368         fputs (" in-text-section", file);
369
370       if (DECL_VIRTUAL_P (node))
371         fputs (" virtual", file);
372       if (DECL_DEFER_OUTPUT (node))
373         fputs (" defer-output", file);
374       if (DECL_TRANSPARENT_UNION (node))
375         fputs (" transparent-union", file);
376
377       if (DECL_LANG_FLAG_0 (node))
378         fputs (" decl_0", file);
379       if (DECL_LANG_FLAG_1 (node))
380         fputs (" decl_1", file);
381       if (DECL_LANG_FLAG_2 (node))
382         fputs (" decl_2", file);
383       if (DECL_LANG_FLAG_3 (node))
384         fputs (" decl_3", file);
385       if (DECL_LANG_FLAG_4 (node))
386         fputs (" decl_4", file);
387       if (DECL_LANG_FLAG_5 (node))
388         fputs (" decl_5", file);
389       if (DECL_LANG_FLAG_6 (node))
390         fputs (" decl_6", file);
391       if (DECL_LANG_FLAG_7 (node))
392         fputs (" decl_7", file);
393
394       fprintf (file, " %s", mode_name[(int) mode]);
395
396       fprintf (file, " file %s line %d",
397                DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
398
399       print_node (file, "size", DECL_SIZE (node), indent + 4);
400       print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
401       indent_to (file, indent + 3);
402       if (TREE_CODE (node) != FUNCTION_DECL)
403         fprintf (file, " align %d", DECL_ALIGN (node));
404       else if (DECL_INLINE (node))
405         fprintf (file, " frame_size %d", DECL_FRAME_SIZE (node));
406       else if (DECL_BUILT_IN (node))
407         fprintf (file, " built-in code %d", DECL_FUNCTION_CODE (node));
408       if (TREE_CODE (node) == FIELD_DECL)
409         print_node (file, "bitpos", DECL_FIELD_BITPOS (node), indent + 4);
410       print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
411       print_node_brief (file, "machine_attributes", DECL_MACHINE_ATTRIBUTES (node), indent + 4);
412       print_node_brief (file, "abstract_origin",
413                         DECL_ABSTRACT_ORIGIN (node), indent + 4);
414
415       print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4);
416       print_node (file, "result", DECL_RESULT (node), indent + 4);
417       print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4);
418
419       print_lang_decl (file, node, indent);
420
421       if (DECL_RTL (node) != 0)
422         {
423           indent_to (file, indent + 4);
424           print_rtl (file, DECL_RTL (node));
425         }
426
427       if (DECL_SAVED_INSNS (node) != 0)
428         {
429           indent_to (file, indent + 4);
430           if (TREE_CODE (node) == PARM_DECL)
431             {
432               fprintf (file, "incoming-rtl ");
433               print_rtl (file, DECL_INCOMING_RTL (node));
434             }
435           else if (TREE_CODE (node) == FUNCTION_DECL)
436             {
437               fprintf (file, "saved-insns ");
438               fprintf (file, HOST_PTR_PRINTF,
439                        (HOST_WIDE_INT) DECL_SAVED_INSNS (node));
440             }
441         }
442
443       /* Print the decl chain only if decl is at second level.  */
444       if (indent == 4)
445         print_node (file, "chain", TREE_CHAIN (node), indent + 4);
446       else
447         print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
448       break;
449
450     case 't':
451       if (TYPE_NO_FORCE_BLK (node))
452         fputs (" no-force-blk", file);
453       if (TYPE_STRING_FLAG (node))
454         fputs (" string-flag", file);
455       if (TYPE_NEEDS_CONSTRUCTING (node))
456         fputs (" needs-constructing", file);
457       if (TYPE_TRANSPARENT_UNION (node))
458         fputs (" transparent-union", file);
459       if (TYPE_PACKED (node))
460         fputs (" packed", file);
461
462       if (TYPE_LANG_FLAG_0 (node))
463         fputs (" type_0", file);
464       if (TYPE_LANG_FLAG_1 (node))
465         fputs (" type_1", file);
466       if (TYPE_LANG_FLAG_2 (node))
467         fputs (" type_2", file);
468       if (TYPE_LANG_FLAG_3 (node))
469         fputs (" type_3", file);
470       if (TYPE_LANG_FLAG_4 (node))
471         fputs (" type_4", file);
472       if (TYPE_LANG_FLAG_5 (node))
473         fputs (" type_5", file);
474       if (TYPE_LANG_FLAG_6 (node))
475         fputs (" type_6", file);
476
477       mode = TYPE_MODE (node);
478       fprintf (file, " %s", mode_name[(int) mode]);
479
480       print_node (file, "size", TYPE_SIZE (node), indent + 4);
481       indent_to (file, indent + 3);
482
483       fprintf (file, " align %d", TYPE_ALIGN (node));
484       fprintf (file, " symtab %d", TYPE_SYMTAB_ADDRESS (node));
485
486       print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
487
488       if (TREE_CODE (node) == ARRAY_TYPE || TREE_CODE (node) == SET_TYPE)
489         print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
490       else if (TREE_CODE (node) == INTEGER_TYPE
491                || TREE_CODE (node) == BOOLEAN_TYPE
492                || TREE_CODE (node) == CHAR_TYPE)
493         {
494           fprintf (file, " precision %d", TYPE_PRECISION (node));
495           print_node (file, "min", TYPE_MIN_VALUE (node), indent + 4);
496           print_node (file, "max", TYPE_MAX_VALUE (node), indent + 4);
497         }
498       else if (TREE_CODE (node) == ENUMERAL_TYPE)
499         {
500           fprintf (file, " precision %d", TYPE_PRECISION (node));
501           print_node (file, "min", TYPE_MIN_VALUE (node), indent + 4);
502           print_node (file, "max", TYPE_MAX_VALUE (node), indent + 4);
503           print_node (file, "values", TYPE_VALUES (node), indent + 4);
504         }
505       else if (TREE_CODE (node) == REAL_TYPE)
506         fprintf (file, " precision %d", TYPE_PRECISION (node));
507       else if (TREE_CODE (node) == RECORD_TYPE
508                || TREE_CODE (node) == UNION_TYPE
509                || TREE_CODE (node) == QUAL_UNION_TYPE)
510         print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
511       else if (TREE_CODE (node) == FUNCTION_TYPE || TREE_CODE (node) == METHOD_TYPE)
512         {
513           if (TYPE_METHOD_BASETYPE (node))
514             print_node_brief (file, "method basetype", TYPE_METHOD_BASETYPE (node), indent + 4);
515           print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
516         }
517       if (TYPE_CONTEXT (node))
518         print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
519
520       print_lang_type (file, node, indent);
521
522       if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
523         indent_to (file, indent + 3);
524       print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node), indent + 4);
525       print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node), indent + 4);
526       print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
527       break;
528
529     case 'b':
530       print_node (file, "vars", BLOCK_VARS (node), indent + 4);
531       print_node (file, "tags", BLOCK_TYPE_TAGS (node), indent + 4);
532       print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node), indent + 4);
533       print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
534       print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
535       print_node (file, "abstract_origin",
536                   BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
537       return;
538
539     case 'e':
540     case '<':
541     case '1':
542     case '2':
543     case 'r':
544     case 's':
545       switch (TREE_CODE (node))
546         {
547         case BIND_EXPR:
548           print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
549           print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
550           print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
551           return;
552         }
553
554       first_rtl = len = tree_code_length[(int) TREE_CODE (node)];
555       /* These kinds of nodes contain rtx's, not trees,
556          after a certain point.  Print the rtx's as rtx's.  */
557       switch (TREE_CODE (node))
558         {
559         case SAVE_EXPR:
560           first_rtl = 2;
561           break;
562         case CALL_EXPR:
563           first_rtl = 2;
564           break;
565         case METHOD_CALL_EXPR:
566           first_rtl = 3;
567           break;
568         case WITH_CLEANUP_EXPR:
569           /* Should be defined to be 2.  */
570           first_rtl = 1;
571           break;
572         case RTL_EXPR:
573           first_rtl = 0;
574         }
575       for (i = 0; i < len; i++)
576         {
577           if (i >= first_rtl)
578             {
579               indent_to (file, indent + 4);
580               fprintf (file, "rtl %d ", i);
581               if (TREE_OPERAND (node, i))
582                 print_rtl (file, (struct rtx_def *) TREE_OPERAND (node, i));
583               else
584                 fprintf (file, "(nil)");
585               fprintf (file, "\n");
586             }
587           else
588             {
589               char temp[10];
590
591               sprintf (temp, "arg %d", i);
592               print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
593             }
594         }
595       break;
596
597     case 'c':
598     case 'x':
599       switch (TREE_CODE (node))
600         {
601         case INTEGER_CST:
602           if (TREE_CONSTANT_OVERFLOW (node))
603             fprintf (file, " overflow");
604
605           fprintf (file, " ");
606           if (TREE_INT_CST_HIGH (node) == 0)
607             fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
608                      TREE_INT_CST_LOW (node));
609           else if (TREE_INT_CST_HIGH (node) == -1
610                    && TREE_INT_CST_LOW (node) != 0)
611             {
612               fprintf (file, "-");
613               fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
614                        -TREE_INT_CST_LOW (node));
615             }
616           else
617             fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
618                      TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
619           break;
620
621         case REAL_CST:
622           {
623             REAL_VALUE_TYPE d;
624
625             if (TREE_OVERFLOW (node))
626               fprintf (file, " overflow");
627
628 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
629             d = TREE_REAL_CST (node);
630             if (REAL_VALUE_ISINF (d))
631               fprintf (file, " Inf");
632             else if (REAL_VALUE_ISNAN (d))
633               fprintf (file, " Nan");
634             else
635               {
636                 char string[100];
637
638                 REAL_VALUE_TO_DECIMAL (d, "%e", string);
639                 fprintf (file, " %s", string);
640               }
641 #else
642             {
643               int i;
644               unsigned char *p = (unsigned char *) &TREE_REAL_CST (node);
645               fprintf (file, " 0x");
646               for (i = 0; i < sizeof TREE_REAL_CST (node); i++)
647                 fprintf (file, "%02x", *p++);
648               fprintf (file, "");
649             }
650 #endif
651           }
652           break;
653
654         case COMPLEX_CST:
655           print_node (file, "real", TREE_REALPART (node), indent + 4);
656           print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
657           break;
658
659         case STRING_CST:
660           fprintf (file, " \"%s\"", TREE_STRING_POINTER (node));
661           /* Print the chain at second level.  */
662           if (indent == 4)
663             print_node (file, "chain", TREE_CHAIN (node), indent + 4);
664           else
665             print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
666           break;
667
668         case IDENTIFIER_NODE:
669           print_lang_identifier (file, node, indent);
670           break;
671
672         case TREE_LIST:
673           print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
674           print_node (file, "value", TREE_VALUE (node), indent + 4);
675           print_node (file, "chain", TREE_CHAIN (node), indent + 4);
676           break;
677
678         case TREE_VEC:
679           len = TREE_VEC_LENGTH (node);
680           for (i = 0; i < len; i++)
681             if (TREE_VEC_ELT (node, i))
682               {
683                 char temp[10];
684                 sprintf (temp, "elt %d", i);
685                 indent_to (file, indent + 4);
686                 print_node_brief (file, temp, TREE_VEC_ELT (node, i), 0);
687               }
688           break;
689
690         case OP_IDENTIFIER:
691           print_node (file, "op1", TREE_PURPOSE (node), indent + 4);
692           print_node (file, "op2", TREE_VALUE (node), indent + 4);
693         }
694
695       break;
696     }
697
698   fprintf (file, ">");
699 }