OSDN Git Service

2004-12-17 Andrew Haley <aph@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / print-tree.c
1 /* Prints out tree in human readable form - GCC
2    Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3    2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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.
11
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.
16
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.  */
21
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "real.h"
29 #include "ggc.h"
30 #include "langhooks.h"
31
32 /* Define the hash table of nodes already seen.
33    Such nodes are not repeated; brief cross-references are used.  */
34
35 #define HASH_SIZE 37
36
37 struct bucket
38 {
39   tree node;
40   struct bucket *next;
41 };
42
43 static struct bucket **table;
44
45 /* Print the node NODE on standard error, for debugging.
46    Most nodes referred to by this one are printed recursively
47    down to a depth of six.  */
48
49 void
50 debug_tree (tree node)
51 {
52   table = xcalloc (HASH_SIZE, sizeof (struct bucket *));
53   print_node (stderr, "", node, 0);
54   free (table);
55   table = 0;
56   putc ('\n', stderr);
57 }
58
59 /* Print a node in brief fashion, with just the code, address and name.  */
60
61 void
62 print_node_brief (FILE *file, const char *prefix, tree node, int indent)
63 {
64   enum tree_code_class class;
65
66   if (node == 0)
67     return;
68
69   class = TREE_CODE_CLASS (TREE_CODE (node));
70
71   /* Always print the slot this node is in, and its code, address and
72      name if any.  */
73   if (indent > 0)
74     fprintf (file, " ");
75   fprintf (file, "%s <%s " HOST_PTR_PRINTF,
76            prefix, tree_code_name[(int) TREE_CODE (node)], (char *) node);
77
78   if (class == tcc_declaration)
79     {
80       if (DECL_NAME (node))
81         fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
82     }
83   else if (class == tcc_type)
84     {
85       if (TYPE_NAME (node))
86         {
87           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
88             fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
89           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
90                    && DECL_NAME (TYPE_NAME (node)))
91             fprintf (file, " %s",
92                      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
93         }
94     }
95   if (TREE_CODE (node) == IDENTIFIER_NODE)
96     fprintf (file, " %s", IDENTIFIER_POINTER (node));
97
98   /* We might as well always print the value of an integer or real.  */
99   if (TREE_CODE (node) == INTEGER_CST)
100     {
101       if (TREE_CONSTANT_OVERFLOW (node))
102         fprintf (file, " overflow");
103
104       fprintf (file, " ");
105       if (TREE_INT_CST_HIGH (node) == 0)
106         fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED, TREE_INT_CST_LOW (node));
107       else if (TREE_INT_CST_HIGH (node) == -1
108                && TREE_INT_CST_LOW (node) != 0)
109         fprintf (file, "-" HOST_WIDE_INT_PRINT_UNSIGNED,
110                  -TREE_INT_CST_LOW (node));
111       else
112         fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
113                  TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
114     }
115   if (TREE_CODE (node) == REAL_CST)
116     {
117       REAL_VALUE_TYPE d;
118
119       if (TREE_OVERFLOW (node))
120         fprintf (file, " overflow");
121
122       d = TREE_REAL_CST (node);
123       if (REAL_VALUE_ISINF (d))
124         fprintf (file, " Inf");
125       else if (REAL_VALUE_ISNAN (d))
126         fprintf (file, " Nan");
127       else
128         {
129           char string[60];
130           real_to_decimal (string, &d, sizeof (string), 0, 1);
131           fprintf (file, " %s", string);
132         }
133     }
134
135   fprintf (file, ">");
136 }
137
138 void
139 indent_to (FILE *file, int column)
140 {
141   int i;
142
143   /* Since this is the long way, indent to desired column.  */
144   if (column > 0)
145     fprintf (file, "\n");
146   for (i = 0; i < column; i++)
147     fprintf (file, " ");
148 }
149 \f
150 /* Print the node NODE in full on file FILE, preceded by PREFIX,
151    starting in column INDENT.  */
152
153 void
154 print_node (FILE *file, const char *prefix, tree node, int indent)
155 {
156   int hash;
157   struct bucket *b;
158   enum machine_mode mode;
159   enum tree_code_class class;
160   int len;
161   int i;
162   expanded_location xloc;
163
164   if (node == 0)
165     return;
166
167   class = TREE_CODE_CLASS (TREE_CODE (node));
168
169   /* Don't get too deep in nesting.  If the user wants to see deeper,
170      it is easy to use the address of a lowest-level node
171      as an argument in another call to debug_tree.  */
172
173   if (indent > 24)
174     {
175       print_node_brief (file, prefix, node, indent);
176       return;
177     }
178
179   if (indent > 8 && (class == tcc_type || class == tcc_declaration))
180     {
181       print_node_brief (file, prefix, node, indent);
182       return;
183     }
184
185   /* It is unsafe to look at any other fields of an ERROR_MARK node.  */
186   if (TREE_CODE (node) == ERROR_MARK)
187     {
188       print_node_brief (file, prefix, node, indent);
189       return;
190     }
191
192   hash = ((unsigned long) node) % HASH_SIZE;
193
194   /* If node is in the table, just mention its address.  */
195   for (b = table[hash]; b; b = b->next)
196     if (b->node == node)
197       {
198         print_node_brief (file, prefix, node, indent);
199         return;
200       }
201
202   /* Add this node to the table.  */
203   b = xmalloc (sizeof (struct bucket));
204   b->node = node;
205   b->next = table[hash];
206   table[hash] = b;
207
208   /* Indent to the specified column, since this is the long form.  */
209   indent_to (file, indent);
210
211   /* Print the slot this node is in, and its code, and address.  */
212   fprintf (file, "%s <%s " HOST_PTR_PRINTF,
213            prefix, tree_code_name[(int) TREE_CODE (node)], (void *) node);
214
215   /* Print the name, if any.  */
216   if (class == tcc_declaration)
217     {
218       if (DECL_NAME (node))
219         fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
220     }
221   else if (class == tcc_type)
222     {
223       if (TYPE_NAME (node))
224         {
225           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
226             fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
227           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
228                    && DECL_NAME (TYPE_NAME (node)))
229             fprintf (file, " %s",
230                      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
231         }
232     }
233   if (TREE_CODE (node) == IDENTIFIER_NODE)
234     fprintf (file, " %s", IDENTIFIER_POINTER (node));
235
236   if (TREE_CODE (node) == INTEGER_CST)
237     {
238       if (indent <= 4)
239         print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
240     }
241   else
242     {
243       print_node (file, "type", TREE_TYPE (node), indent + 4);
244       if (TREE_TYPE (node))
245         indent_to (file, indent + 3);
246     }
247
248   if (!TYPE_P (node) && TREE_SIDE_EFFECTS (node))
249     fputs (" side-effects", file);
250
251   if (TYPE_P (node) ? TYPE_READONLY (node) : TREE_READONLY (node))
252     fputs (" readonly", file);
253   if (!TYPE_P (node) && TREE_CONSTANT (node))
254     fputs (" constant", file);
255   if (TREE_INVARIANT (node))
256     fputs (" invariant", file);
257   if (TREE_ADDRESSABLE (node))
258     fputs (" addressable", file);
259   if (TREE_THIS_VOLATILE (node))
260     fputs (" volatile", file);
261   if (TREE_ASM_WRITTEN (node))
262     fputs (" asm_written", file);
263   if (TREE_USED (node))
264     fputs (" used", file);
265   if (TREE_NOTHROW (node))
266     fputs (TYPE_P (node) ? " align-ok" : " nothrow", file);
267   if (TREE_PUBLIC (node))
268     fputs (" public", file);
269   if (TREE_PRIVATE (node))
270     fputs (" private", file);
271   if (TREE_PROTECTED (node))
272     fputs (" protected", file);
273   if (TREE_STATIC (node))
274     fputs (" static", file);
275   if (TREE_DEPRECATED (node))
276     fputs (" deprecated", file);
277   if (TREE_VISITED (node))
278     fputs (" visited", file);
279   if (TREE_LANG_FLAG_0 (node))
280     fputs (" tree_0", file);
281   if (TREE_LANG_FLAG_1 (node))
282     fputs (" tree_1", file);
283   if (TREE_LANG_FLAG_2 (node))
284     fputs (" tree_2", file);
285   if (TREE_LANG_FLAG_3 (node))
286     fputs (" tree_3", file);
287   if (TREE_LANG_FLAG_4 (node))
288     fputs (" tree_4", file);
289   if (TREE_LANG_FLAG_5 (node))
290     fputs (" tree_5", file);
291   if (TREE_LANG_FLAG_6 (node))
292     fputs (" tree_6", file);
293
294   /* DECL_ nodes have additional attributes.  */
295
296   switch (TREE_CODE_CLASS (TREE_CODE (node)))
297     {
298     case tcc_declaration:
299       mode = DECL_MODE (node);
300
301       if (DECL_UNSIGNED (node))
302         fputs (" unsigned", file);
303       if (DECL_IGNORED_P (node))
304         fputs (" ignored", file);
305       if (DECL_ABSTRACT (node))
306         fputs (" abstract", file);
307       if (DECL_IN_SYSTEM_HEADER (node))
308         fputs (" in_system_header", file);
309       if (DECL_COMMON (node))
310         fputs (" common", file);
311       if (DECL_EXTERNAL (node))
312         fputs (" external", file);
313       if (DECL_WEAK (node))
314         fputs (" weak", file);
315       if (DECL_REGISTER (node) && TREE_CODE (node) != FIELD_DECL
316           && TREE_CODE (node) != FUNCTION_DECL
317           && TREE_CODE (node) != LABEL_DECL)
318         fputs (" regdecl", file);
319       if (DECL_NONLOCAL (node))
320         fputs (" nonlocal", file);
321
322       if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
323         fputs (" suppress-debug", file);
324
325       if (TREE_CODE (node) == FUNCTION_DECL && DECL_INLINE (node))
326         fputs (DECL_DECLARED_INLINE_P (node) ? " inline" : " autoinline", file);
327       if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
328         fputs (" built-in", file);
329       if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
330         fputs (" no-static-chain", file);
331
332       if (TREE_CODE (node) == FIELD_DECL && DECL_PACKED (node))
333         fputs (" packed", file);
334       if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
335         fputs (" bit-field", file);
336       if (TREE_CODE (node) == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
337         fputs (" nonaddressable", file);
338
339       if (TREE_CODE (node) == LABEL_DECL && DECL_ERROR_ISSUED (node))
340         fputs (" error-issued", file);
341
342       if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
343         fputs (" in-text-section", file);
344       if (TREE_CODE (node) == VAR_DECL && DECL_THREAD_LOCAL (node))
345         fputs (" thread-local", file);
346
347       if (TREE_CODE (node) == PARM_DECL && DECL_TRANSPARENT_UNION (node))
348         fputs (" transparent-union", file);
349
350       if (DECL_VIRTUAL_P (node))
351         fputs (" virtual", file);
352       if (DECL_DEFER_OUTPUT (node))
353         fputs (" defer-output", file);
354
355       if (DECL_PRESERVE_P (node))
356         fputs (" preserve", file);
357
358       if (DECL_LANG_FLAG_0 (node))
359         fputs (" decl_0", file);
360       if (DECL_LANG_FLAG_1 (node))
361         fputs (" decl_1", file);
362       if (DECL_LANG_FLAG_2 (node))
363         fputs (" decl_2", file);
364       if (DECL_LANG_FLAG_3 (node))
365         fputs (" decl_3", file);
366       if (DECL_LANG_FLAG_4 (node))
367         fputs (" decl_4", file);
368       if (DECL_LANG_FLAG_5 (node))
369         fputs (" decl_5", file);
370       if (DECL_LANG_FLAG_6 (node))
371         fputs (" decl_6", file);
372       if (DECL_LANG_FLAG_7 (node))
373         fputs (" decl_7", file);
374
375       fprintf (file, " %s", GET_MODE_NAME (mode));
376       xloc = expand_location (DECL_SOURCE_LOCATION (node));
377       fprintf (file, " file %s line %d", xloc.file, xloc.line);
378
379       print_node (file, "size", DECL_SIZE (node), indent + 4);
380       print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4);
381
382       if (TREE_CODE (node) != FUNCTION_DECL
383           || DECL_INLINE (node) || DECL_BUILT_IN (node))
384         indent_to (file, indent + 3);
385
386       if (TREE_CODE (node) != FUNCTION_DECL)
387         {
388           if (DECL_USER_ALIGN (node))
389             fprintf (file, " user");
390
391           fprintf (file, " align %d", DECL_ALIGN (node));
392           if (TREE_CODE (node) == FIELD_DECL)
393             fprintf (file, " offset_align " HOST_WIDE_INT_PRINT_UNSIGNED,
394                      DECL_OFFSET_ALIGN (node));
395         }
396       else if (DECL_BUILT_IN (node))
397         {
398           if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
399             fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node));
400           else
401             fprintf (file, " built-in %s:%s",
402                      built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
403                      built_in_names[(int) DECL_FUNCTION_CODE (node)]);
404         }
405
406       if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
407         fprintf (file, " alias set " HOST_WIDE_INT_PRINT_DEC,
408                  DECL_POINTER_ALIAS_SET (node));
409
410       if (TREE_CODE (node) == FIELD_DECL)
411         {
412           print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
413           print_node (file, "bit offset", DECL_FIELD_BIT_OFFSET (node),
414                       indent + 4);
415         }
416
417       print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
418       print_node_brief (file, "attributes",
419                         DECL_ATTRIBUTES (node), indent + 4);
420       print_node_brief (file, "abstract_origin",
421                         DECL_ABSTRACT_ORIGIN (node), indent + 4);
422
423       print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4);
424       print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
425       print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4);
426
427       lang_hooks.print_decl (file, node, indent);
428
429       if (DECL_RTL_SET_P (node))
430         {
431           indent_to (file, indent + 4);
432           print_rtl (file, DECL_RTL (node));
433         }
434
435       if (TREE_CODE (node) == PARM_DECL)
436         {
437           print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
438           print_node (file, "arg-type-as-written",
439                       DECL_ARG_TYPE_AS_WRITTEN (node), indent + 4);
440
441           if (DECL_INCOMING_RTL (node) != 0)
442             {
443               indent_to (file, indent + 4);
444               fprintf (file, "incoming-rtl ");
445               print_rtl (file, DECL_INCOMING_RTL (node));
446             }
447         }
448       else if (TREE_CODE (node) == FUNCTION_DECL
449                && DECL_STRUCT_FUNCTION (node) != 0)
450         {
451           indent_to (file, indent + 4);
452           fprintf (file, "saved-insns " HOST_PTR_PRINTF,
453                    (void *) DECL_STRUCT_FUNCTION (node));
454         }
455
456       /* Print the decl chain only if decl is at second level.  */
457       if (indent == 4)
458         print_node (file, "chain", TREE_CHAIN (node), indent + 4);
459       else
460         print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
461       break;
462
463     case tcc_type:
464       if (TYPE_UNSIGNED (node))
465         fputs (" unsigned", file);
466
467       /* The no-force-blk flag is used for different things in
468          different types.  */
469       if ((TREE_CODE (node) == RECORD_TYPE
470            || TREE_CODE (node) == UNION_TYPE
471            || TREE_CODE (node) == QUAL_UNION_TYPE)
472           && TYPE_NO_FORCE_BLK (node))
473         fputs (" no-force-blk", file);
474       else if (TREE_CODE (node) == INTEGER_TYPE
475                && TYPE_IS_SIZETYPE (node))
476         fputs (" sizetype", file);
477       else if (TREE_CODE (node) == FUNCTION_TYPE
478                && TYPE_RETURNS_STACK_DEPRESSED (node))
479         fputs (" returns-stack-depressed", file);
480
481       if (TYPE_STRING_FLAG (node))
482         fputs (" string-flag", file);
483       if (TYPE_NEEDS_CONSTRUCTING (node))
484         fputs (" needs-constructing", file);
485
486       /* The transparent-union flag is used for different things in
487          different nodes.  */
488       if (TREE_CODE (node) == UNION_TYPE && TYPE_TRANSPARENT_UNION (node))
489         fputs (" transparent-union", file);
490       else if (TREE_CODE (node) == ARRAY_TYPE
491                && TYPE_NONALIASED_COMPONENT (node))
492         fputs (" nonaliased-component", file);
493
494       if (TYPE_PACKED (node))
495         fputs (" packed", file);
496
497       if (TYPE_RESTRICT (node))
498         fputs (" restrict", file);
499
500       if (TYPE_LANG_FLAG_0 (node))
501         fputs (" type_0", file);
502       if (TYPE_LANG_FLAG_1 (node))
503         fputs (" type_1", file);
504       if (TYPE_LANG_FLAG_2 (node))
505         fputs (" type_2", file);
506       if (TYPE_LANG_FLAG_3 (node))
507         fputs (" type_3", file);
508       if (TYPE_LANG_FLAG_4 (node))
509         fputs (" type_4", file);
510       if (TYPE_LANG_FLAG_5 (node))
511         fputs (" type_5", file);
512       if (TYPE_LANG_FLAG_6 (node))
513         fputs (" type_6", file);
514
515       mode = TYPE_MODE (node);
516       fprintf (file, " %s", GET_MODE_NAME (mode));
517
518       print_node (file, "size", TYPE_SIZE (node), indent + 4);
519       print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4);
520       indent_to (file, indent + 3);
521
522       if (TYPE_USER_ALIGN (node))
523         fprintf (file, " user");
524
525       fprintf (file, " align %d symtab %d alias set " HOST_WIDE_INT_PRINT_DEC,
526                TYPE_ALIGN (node), TYPE_SYMTAB_ADDRESS (node),
527                TYPE_ALIAS_SET (node));
528
529       print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
530
531       if (INTEGRAL_TYPE_P (node) || TREE_CODE (node) == REAL_TYPE)
532         {
533           fprintf (file, " precision %d", TYPE_PRECISION (node));
534           print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
535           print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
536         }
537
538       if (TREE_CODE (node) == ENUMERAL_TYPE)
539         print_node (file, "values", TYPE_VALUES (node), indent + 4);
540       else if (TREE_CODE (node) == ARRAY_TYPE)
541         print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
542       else if (TREE_CODE (node) == VECTOR_TYPE)
543         fprintf (file, " nunits %d", (int) TYPE_VECTOR_SUBPARTS (node));
544       else if (TREE_CODE (node) == RECORD_TYPE
545                || TREE_CODE (node) == UNION_TYPE
546                || TREE_CODE (node) == QUAL_UNION_TYPE)
547         print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
548       else if (TREE_CODE (node) == FUNCTION_TYPE
549                || TREE_CODE (node) == METHOD_TYPE)
550         {
551           if (TYPE_METHOD_BASETYPE (node))
552             print_node_brief (file, "method basetype",
553                               TYPE_METHOD_BASETYPE (node), indent + 4);
554           print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
555         }
556       else if (TREE_CODE (node) == OFFSET_TYPE)
557         print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
558                           indent + 4);
559
560       if (TYPE_CONTEXT (node))
561         print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
562
563       lang_hooks.print_type (file, node, indent);
564
565       if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
566         indent_to (file, indent + 3);
567
568       print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
569                         indent + 4);
570       print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
571                         indent + 4);
572       print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
573       break;
574
575     case tcc_expression:
576     case tcc_comparison:
577     case tcc_unary:
578     case tcc_binary:
579     case tcc_reference:
580     case tcc_statement:
581       if (TREE_CODE (node) == BIT_FIELD_REF && BIT_FIELD_REF_UNSIGNED (node))
582         fputs (" unsigned", file);
583       if (TREE_CODE (node) == BIND_EXPR)
584         {
585           print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
586           print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
587           print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
588           break;
589         }
590
591       len = TREE_CODE_LENGTH (TREE_CODE (node));
592
593       for (i = 0; i < len; i++)
594         {
595           char temp[10];
596
597           sprintf (temp, "arg %d", i);
598           print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
599         }
600
601       print_node (file, "chain", TREE_CHAIN (node), indent + 4);
602       break;
603
604     case tcc_constant:
605     case tcc_exceptional:
606       switch (TREE_CODE (node))
607         {
608         case INTEGER_CST:
609           if (TREE_CONSTANT_OVERFLOW (node))
610             fprintf (file, " overflow");
611
612           fprintf (file, " ");
613           if (TREE_INT_CST_HIGH (node) == 0)
614             fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
615                      TREE_INT_CST_LOW (node));
616           else if (TREE_INT_CST_HIGH (node) == -1
617                    && TREE_INT_CST_LOW (node) != 0)
618             fprintf (file, "-" HOST_WIDE_INT_PRINT_UNSIGNED,
619                      -TREE_INT_CST_LOW (node));
620           else
621             fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
622                      TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
623           break;
624
625         case REAL_CST:
626           {
627             REAL_VALUE_TYPE d;
628
629             if (TREE_OVERFLOW (node))
630               fprintf (file, " overflow");
631
632             d = TREE_REAL_CST (node);
633             if (REAL_VALUE_ISINF (d))
634               fprintf (file, " Inf");
635             else if (REAL_VALUE_ISNAN (d))
636               fprintf (file, " Nan");
637             else
638               {
639                 char string[64];
640                 real_to_decimal (string, &d, sizeof (string), 0, 1);
641                 fprintf (file, " %s", string);
642               }
643           }
644           break;
645
646         case VECTOR_CST:
647           {
648             tree vals = TREE_VECTOR_CST_ELTS (node);
649             char buf[10];
650             tree link;
651             int i;
652
653             i = 0;
654             for (link = vals; link; link = TREE_CHAIN (link), ++i)
655               {
656                 sprintf (buf, "elt%d: ", i);
657                 print_node (file, buf, TREE_VALUE (link), indent + 4);
658               }
659           }
660           break;
661
662         case COMPLEX_CST:
663           print_node (file, "real", TREE_REALPART (node), indent + 4);
664           print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
665           break;
666
667         case STRING_CST:
668           {
669             const char *p = TREE_STRING_POINTER (node);
670             int i = TREE_STRING_LENGTH (node);
671             fputs (" \"", file);
672             while (--i >= 0)
673               {
674                 char ch = *p++;
675                 if (ch >= ' ' && ch < 127)
676                   putc (ch, file);
677                 else
678                   fprintf(file, "\\%03o", ch & 0xFF);
679               }
680             fputc ('\"', file);
681           }
682           /* Print the chain at second level.  */
683           if (indent == 4)
684             print_node (file, "chain", TREE_CHAIN (node), indent + 4);
685           else
686             print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
687           break;
688
689         case IDENTIFIER_NODE:
690           lang_hooks.print_identifier (file, node, indent);
691           break;
692
693         case TREE_LIST:
694           print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
695           print_node (file, "value", TREE_VALUE (node), indent + 4);
696           print_node (file, "chain", TREE_CHAIN (node), indent + 4);
697           break;
698
699         case TREE_VEC:
700           len = TREE_VEC_LENGTH (node);
701           for (i = 0; i < len; i++)
702             if (TREE_VEC_ELT (node, i))
703               {
704                 char temp[10];
705                 sprintf (temp, "elt %d", i);
706                 indent_to (file, indent + 4);
707                 print_node_brief (file, temp, TREE_VEC_ELT (node, i), 0);
708               }
709           break;
710
711         case BLOCK:
712           print_node (file, "vars", BLOCK_VARS (node), indent + 4);
713           print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node),
714                       indent + 4);
715           print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
716           print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
717           print_node (file, "abstract_origin",
718                       BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
719           break;
720
721         case SSA_NAME:
722           print_node_brief (file, "var", SSA_NAME_VAR (node), indent + 4);
723           print_node_brief (file, "def_stmt",
724                             SSA_NAME_DEF_STMT (node), indent + 4);
725
726           indent_to (file, indent + 4);
727           fprintf (file, "version %u", SSA_NAME_VERSION (node));
728           if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node))
729             fprintf (file, " in-abnormal-phi");
730           if (SSA_NAME_IN_FREE_LIST (node))
731             fprintf (file, " in-free-list");
732
733           if (SSA_NAME_PTR_INFO (node)
734               || SSA_NAME_VALUE (node)
735               || SSA_NAME_AUX (node))
736             {
737               indent_to (file, indent + 3);
738               if (SSA_NAME_PTR_INFO (node))
739                 fprintf (file, " ptr-info %p",
740                          (void *) SSA_NAME_PTR_INFO (node));
741               if (SSA_NAME_VALUE (node))
742                 fprintf (file, " value %p",
743                          (void *) SSA_NAME_VALUE (node));
744               if (SSA_NAME_AUX (node))
745                 fprintf (file, " aux %p", SSA_NAME_AUX (node));
746             }
747           break;
748
749         default:
750           if (EXCEPTIONAL_CLASS_P (node))
751             lang_hooks.print_xnode (file, node, indent);
752           break;
753         }
754
755       break;
756     }
757
758   if (EXPR_HAS_LOCATION (node))
759     {
760       expanded_location xloc = expand_location (EXPR_LOCATION (node));
761       indent_to (file, indent+4);
762       fprintf (file, "%s:%d", xloc.file, xloc.line);
763     }
764
765   fprintf (file, ">");
766 }