OSDN Git Service

* config/i386/i386.md (absneg): New code iterator.
[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, 2005, 2006, 2007, 2008 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 3, 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 COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
20
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "real.h"
28 #include "fixed-value.h"
29 #include "ggc.h"
30 #include "langhooks.h"
31 #include "tree-iterator.h"
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 (tree node)
52 {
53   table = XCNEWVEC (struct bucket *, HASH_SIZE);
54   print_node (stderr, "", node, 0);
55   free (table);
56   table = 0;
57   putc ('\n', stderr);
58 }
59
60 /* Print PREFIX and ADDR to FILE.  */
61 void
62 dump_addr (FILE *file, const char *prefix, const void *addr)
63 {
64   if (flag_dump_noaddr || flag_dump_unnumbered)
65     fprintf (file, "%s#", prefix);
66   else
67     fprintf (file, "%s%p", prefix, addr);
68 }
69
70 /* Print a node in brief fashion, with just the code, address and name.  */
71
72 void
73 print_node_brief (FILE *file, const char *prefix, const_tree node, int indent)
74 {
75   enum tree_code_class class;
76
77   if (node == 0)
78     return;
79
80   class = TREE_CODE_CLASS (TREE_CODE (node));
81
82   /* Always print the slot this node is in, and its code, address and
83      name if any.  */
84   if (indent > 0)
85     fprintf (file, " ");
86   fprintf (file, "%s <%s", prefix, tree_code_name[(int) TREE_CODE (node)]);
87   dump_addr (file, " ", node);
88
89   if (class == tcc_declaration)
90     {
91       if (DECL_NAME (node))
92         fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
93       else if (TREE_CODE (node) == LABEL_DECL
94                && LABEL_DECL_UID (node) != -1)
95         fprintf (file, " L.%d", (int) LABEL_DECL_UID (node));
96       else
97         fprintf (file, " %c.%u", TREE_CODE (node) == CONST_DECL ? 'C' : 'D',
98                  DECL_UID (node));
99     }
100   else if (class == tcc_type)
101     {
102       if (TYPE_NAME (node))
103         {
104           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
105             fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
106           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
107                    && DECL_NAME (TYPE_NAME (node)))
108             fprintf (file, " %s",
109                      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
110         }
111     }
112   if (TREE_CODE (node) == IDENTIFIER_NODE)
113     fprintf (file, " %s", IDENTIFIER_POINTER (node));
114
115   /* We might as well always print the value of an integer or real.  */
116   if (TREE_CODE (node) == INTEGER_CST)
117     {
118       if (TREE_OVERFLOW (node))
119         fprintf (file, " overflow");
120
121       fprintf (file, " ");
122       if (TREE_INT_CST_HIGH (node) == 0)
123         fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED, TREE_INT_CST_LOW (node));
124       else if (TREE_INT_CST_HIGH (node) == -1
125                && TREE_INT_CST_LOW (node) != 0)
126         fprintf (file, "-" HOST_WIDE_INT_PRINT_UNSIGNED,
127                  -TREE_INT_CST_LOW (node));
128       else
129         fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
130                  TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
131     }
132   if (TREE_CODE (node) == REAL_CST)
133     {
134       REAL_VALUE_TYPE d;
135
136       if (TREE_OVERFLOW (node))
137         fprintf (file, " overflow");
138
139       d = TREE_REAL_CST (node);
140       if (REAL_VALUE_ISINF (d))
141         fprintf (file,  REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf");
142       else if (REAL_VALUE_ISNAN (d))
143         fprintf (file, " Nan");
144       else
145         {
146           char string[60];
147           real_to_decimal (string, &d, sizeof (string), 0, 1);
148           fprintf (file, " %s", string);
149         }
150     }
151   if (TREE_CODE (node) == FIXED_CST)
152     {
153       FIXED_VALUE_TYPE f;
154       char string[60];
155
156       if (TREE_OVERFLOW (node))
157         fprintf (file, " overflow");
158
159       f = TREE_FIXED_CST (node);
160       fixed_to_decimal (string, &f, sizeof (string));
161       fprintf (file, " %s", string);
162     }
163
164   fprintf (file, ">");
165 }
166
167 void
168 indent_to (FILE *file, int column)
169 {
170   int i;
171
172   /* Since this is the long way, indent to desired column.  */
173   if (column > 0)
174     fprintf (file, "\n");
175   for (i = 0; i < column; i++)
176     fprintf (file, " ");
177 }
178 \f
179 /* Print the node NODE in full on file FILE, preceded by PREFIX,
180    starting in column INDENT.  */
181
182 void
183 print_node (FILE *file, const char *prefix, tree node, int indent)
184 {
185   int hash;
186   struct bucket *b;
187   enum machine_mode mode;
188   enum tree_code_class class;
189   int len;
190   int i;
191   expanded_location xloc;
192   enum tree_code code;
193
194   if (node == 0)
195     return;
196   
197   code = TREE_CODE (node);
198   class = TREE_CODE_CLASS (code);
199
200   /* Don't get too deep in nesting.  If the user wants to see deeper,
201      it is easy to use the address of a lowest-level node
202      as an argument in another call to debug_tree.  */
203
204   if (indent > 24)
205     {
206       print_node_brief (file, prefix, node, indent);
207       return;
208     }
209
210   if (indent > 8 && (class == tcc_type || class == tcc_declaration))
211     {
212       print_node_brief (file, prefix, node, indent);
213       return;
214     }
215
216   /* It is unsafe to look at any other fields of an ERROR_MARK node.  */
217   if (TREE_CODE (node) == ERROR_MARK)
218     {
219       print_node_brief (file, prefix, node, indent);
220       return;
221     }
222
223   hash = ((unsigned long) node) % HASH_SIZE;
224
225   /* If node is in the table, just mention its address.  */
226   for (b = table[hash]; b; b = b->next)
227     if (b->node == node)
228       {
229         print_node_brief (file, prefix, node, indent);
230         return;
231       }
232
233   /* Add this node to the table.  */
234   b = XNEW (struct bucket);
235   b->node = node;
236   b->next = table[hash];
237   table[hash] = b;
238
239   /* Indent to the specified column, since this is the long form.  */
240   indent_to (file, indent);
241
242   /* Print the slot this node is in, and its code, and address.  */
243   fprintf (file, "%s <%s", prefix, tree_code_name[(int) TREE_CODE (node)]);
244   dump_addr (file, " ", node);
245
246   /* Print the name, if any.  */
247   if (class == tcc_declaration)
248     {
249       if (DECL_NAME (node))
250         fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
251       else if (TREE_CODE (node) == LABEL_DECL
252                && LABEL_DECL_UID (node) != -1)
253         fprintf (file, " L.%d", (int) LABEL_DECL_UID (node));
254       else
255         fprintf (file, " %c.%u", TREE_CODE (node) == CONST_DECL ? 'C' : 'D',
256                  DECL_UID (node));
257     }
258   else if (class == tcc_type)
259     {
260       if (TYPE_NAME (node))
261         {
262           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
263             fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
264           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
265                    && DECL_NAME (TYPE_NAME (node)))
266             fprintf (file, " %s",
267                      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node))));
268         }
269     }
270   if (TREE_CODE (node) == IDENTIFIER_NODE)
271     fprintf (file, " %s", IDENTIFIER_POINTER (node));
272
273   if (TREE_CODE (node) == INTEGER_CST)
274     {
275       if (indent <= 4)
276         print_node_brief (file, "type", TREE_TYPE (node), indent + 4);
277     }
278   else if (!GIMPLE_TUPLE_P (node))
279     {
280       print_node (file, "type", TREE_TYPE (node), indent + 4);
281       if (TREE_TYPE (node))
282         indent_to (file, indent + 3);
283     }
284
285   if (!TYPE_P (node) && TREE_SIDE_EFFECTS (node))
286     fputs (" side-effects", file);
287
288   if (TYPE_P (node) ? TYPE_READONLY (node) : TREE_READONLY (node))
289     fputs (" readonly", file);
290   if (!TYPE_P (node) && TREE_CONSTANT (node))
291     fputs (" constant", file);
292   else if (TYPE_P (node) && TYPE_SIZES_GIMPLIFIED (node))
293     fputs (" sizes-gimplified", file);
294
295   if (TREE_INVARIANT (node))
296     fputs (" invariant", file);
297   if (TREE_ADDRESSABLE (node))
298     fputs (" addressable", file);
299   if (TREE_THIS_VOLATILE (node))
300     fputs (" volatile", file);
301   if (TREE_ASM_WRITTEN (node))
302     fputs (" asm_written", file);
303   if (TREE_USED (node))
304     fputs (" used", file);
305   if (TREE_NOTHROW (node))
306     fputs (TYPE_P (node) ? " align-ok" : " nothrow", file);
307   if (TREE_PUBLIC (node))
308     fputs (" public", file);
309   if (TREE_PRIVATE (node))
310     fputs (" private", file);
311   if (TREE_PROTECTED (node))
312     fputs (" protected", file);
313   if (TREE_STATIC (node))
314     fputs (" static", file);
315   if (TREE_DEPRECATED (node))
316     fputs (" deprecated", file);
317   if (TREE_VISITED (node))
318     fputs (" visited", file);
319   if (TREE_LANG_FLAG_0 (node))
320     fputs (" tree_0", file);
321   if (TREE_LANG_FLAG_1 (node))
322     fputs (" tree_1", file);
323   if (TREE_LANG_FLAG_2 (node))
324     fputs (" tree_2", file);
325   if (TREE_LANG_FLAG_3 (node))
326     fputs (" tree_3", file);
327   if (TREE_LANG_FLAG_4 (node))
328     fputs (" tree_4", file);
329   if (TREE_LANG_FLAG_5 (node))
330     fputs (" tree_5", file);
331   if (TREE_LANG_FLAG_6 (node))
332     fputs (" tree_6", file);
333
334   /* DECL_ nodes have additional attributes.  */
335
336   switch (TREE_CODE_CLASS (TREE_CODE (node)))
337     {
338     case tcc_declaration:
339       if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
340         {
341           if (DECL_UNSIGNED (node))
342             fputs (" unsigned", file);
343           if (DECL_IGNORED_P (node))
344             fputs (" ignored", file);
345           if (DECL_ABSTRACT (node))
346             fputs (" abstract", file);      
347           if (DECL_EXTERNAL (node))
348             fputs (" external", file);
349           if (DECL_NONLOCAL (node))
350             fputs (" nonlocal", file);
351         }
352       if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
353         {
354           if (DECL_WEAK (node))
355             fputs (" weak", file);
356           if (DECL_IN_SYSTEM_HEADER (node))
357             fputs (" in_system_header", file);
358         }
359       if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL)
360           && TREE_CODE (node) != LABEL_DECL
361           && TREE_CODE (node) != FUNCTION_DECL
362           && DECL_REGISTER (node))
363         fputs (" regdecl", file);
364
365       if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
366         fputs (" suppress-debug", file);
367
368       if (TREE_CODE (node) == FUNCTION_DECL && DECL_INLINE (node))
369         fputs (DECL_DECLARED_INLINE_P (node) ? " inline" : " autoinline", file);
370       if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
371         fputs (" built-in", file);
372       if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
373         fputs (" no-static-chain", file);
374
375       if (TREE_CODE (node) == FIELD_DECL && DECL_PACKED (node))
376         fputs (" packed", file);
377       if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
378         fputs (" bit-field", file);
379       if (TREE_CODE (node) == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
380         fputs (" nonaddressable", file);
381
382       if (TREE_CODE (node) == LABEL_DECL && DECL_ERROR_ISSUED (node))
383         fputs (" error-issued", file);
384
385       if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
386         fputs (" in-text-section", file);
387       if (TREE_CODE (node) == VAR_DECL && DECL_COMMON (node))
388         fputs (" common", file);
389       if (TREE_CODE (node) == VAR_DECL && DECL_THREAD_LOCAL_P (node))
390         {
391           enum tls_model kind = DECL_TLS_MODEL (node);
392           switch (kind)
393             {
394               case TLS_MODEL_GLOBAL_DYNAMIC:
395                 fputs (" tls-global-dynamic", file);
396                 break;
397               case TLS_MODEL_LOCAL_DYNAMIC:
398                 fputs (" tls-local-dynamic", file);
399                 break;
400               case TLS_MODEL_INITIAL_EXEC:
401                 fputs (" tls-initial-exec", file);
402                 break;
403               case TLS_MODEL_LOCAL_EXEC:
404                 fputs (" tls-local-exec", file);
405                 break;
406               default:
407                 gcc_unreachable ();
408             }
409         }
410
411       if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
412         {         
413           if (DECL_VIRTUAL_P (node))
414             fputs (" virtual", file);
415           if (DECL_PRESERVE_P (node))
416             fputs (" preserve", file);
417           if (DECL_NO_TBAA_P (node))
418             fputs (" no-tbaa", file);
419           if (DECL_LANG_FLAG_0 (node))
420             fputs (" decl_0", file);
421           if (DECL_LANG_FLAG_1 (node))
422             fputs (" decl_1", file);
423           if (DECL_LANG_FLAG_2 (node))
424             fputs (" decl_2", file);
425           if (DECL_LANG_FLAG_3 (node))
426             fputs (" decl_3", file);
427           if (DECL_LANG_FLAG_4 (node))
428             fputs (" decl_4", file);
429           if (DECL_LANG_FLAG_5 (node))
430             fputs (" decl_5", file);
431           if (DECL_LANG_FLAG_6 (node))
432             fputs (" decl_6", file);
433           if (DECL_LANG_FLAG_7 (node))
434             fputs (" decl_7", file);
435           
436           mode = DECL_MODE (node);
437           fprintf (file, " %s", GET_MODE_NAME (mode));
438         }
439
440       if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS)  && DECL_DEFER_OUTPUT (node))
441         fputs (" defer-output", file);
442
443
444       xloc = expand_location (DECL_SOURCE_LOCATION (node));
445       fprintf (file, " file %s line %d col %d", xloc.file, xloc.line,
446                xloc.column);
447
448       if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
449         {         
450           print_node (file, "size", DECL_SIZE (node), indent + 4);
451           print_node (file, "unit size", DECL_SIZE_UNIT (node), indent + 4);
452           
453           if (TREE_CODE (node) != FUNCTION_DECL
454               || DECL_INLINE (node) || DECL_BUILT_IN (node))
455             indent_to (file, indent + 3);
456           
457           if (DECL_USER_ALIGN (node))
458             fprintf (file, " user");
459           
460           fprintf (file, " align %d", DECL_ALIGN (node));
461           if (TREE_CODE (node) == FIELD_DECL)
462             fprintf (file, " offset_align " HOST_WIDE_INT_PRINT_UNSIGNED,
463                      DECL_OFFSET_ALIGN (node));
464
465           if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
466             {
467               if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD)
468                 fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node));
469               else
470                 fprintf (file, " built-in %s:%s",
471                          built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
472                          built_in_names[(int) DECL_FUNCTION_CODE (node)]);
473             }
474           
475           if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
476             fprintf (file, " alias set " HOST_WIDE_INT_PRINT_DEC,
477                      (HOST_WIDE_INT) DECL_POINTER_ALIAS_SET (node));
478         }
479       if (TREE_CODE (node) == FIELD_DECL)
480         {
481           print_node (file, "offset", DECL_FIELD_OFFSET (node), indent + 4);
482           print_node (file, "bit offset", DECL_FIELD_BIT_OFFSET (node),
483                       indent + 4);
484           if (DECL_BIT_FIELD_TYPE (node))
485             print_node (file, "bit_field_type", DECL_BIT_FIELD_TYPE (node),
486                         indent + 4);
487         }
488
489       print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4);
490
491       if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))  
492         {
493           print_node_brief (file, "attributes",
494                             DECL_ATTRIBUTES (node), indent + 4);
495           print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4);
496         }
497       if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
498         {
499           print_node_brief (file, "abstract_origin",
500                             DECL_ABSTRACT_ORIGIN (node), indent + 4);
501         }
502       if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
503         {
504           print_node (file, "arguments", DECL_ARGUMENT_FLD (node), indent + 4);
505           print_node (file, "result", DECL_RESULT_FLD (node), indent + 4);
506         }
507
508       lang_hooks.print_decl (file, node, indent);
509
510       if (DECL_RTL_SET_P (node))
511         {
512           indent_to (file, indent + 4);
513           print_rtl (file, DECL_RTL (node));
514         }
515
516       if (TREE_CODE (node) == PARM_DECL)
517         {
518           print_node (file, "arg-type", DECL_ARG_TYPE (node), indent + 4);
519
520           if (DECL_INCOMING_RTL (node) != 0)
521             {
522               indent_to (file, indent + 4);
523               fprintf (file, "incoming-rtl ");
524               print_rtl (file, DECL_INCOMING_RTL (node));
525             }
526         }
527       else if (TREE_CODE (node) == FUNCTION_DECL
528                && DECL_STRUCT_FUNCTION (node) != 0)
529         {
530           indent_to (file, indent + 4);
531           dump_addr (file, "saved-insns ", DECL_STRUCT_FUNCTION (node));
532         }
533
534       if ((TREE_CODE (node) == VAR_DECL || TREE_CODE (node) == PARM_DECL)
535           && DECL_HAS_VALUE_EXPR_P (node))
536         print_node (file, "value-expr", DECL_VALUE_EXPR (node), indent + 4);
537
538       if (TREE_CODE (node) == STRUCT_FIELD_TAG)
539         {
540           fprintf (file, " sft size " HOST_WIDE_INT_PRINT_DEC, 
541                    SFT_SIZE (node));
542           fprintf (file, " sft offset " HOST_WIDE_INT_PRINT_DEC,
543                    SFT_OFFSET (node));
544           print_node_brief (file, "parent var", SFT_PARENT_VAR (node), 
545                             indent + 4);
546         }
547       /* Print the decl chain only if decl is at second level.  */
548       if (indent == 4)
549         print_node (file, "chain", TREE_CHAIN (node), indent + 4);
550       else
551         print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
552       break;
553
554     case tcc_type:
555       if (TYPE_UNSIGNED (node))
556         fputs (" unsigned", file);
557
558       /* The no-force-blk flag is used for different things in
559          different types.  */
560       if ((TREE_CODE (node) == RECORD_TYPE
561            || TREE_CODE (node) == UNION_TYPE
562            || TREE_CODE (node) == QUAL_UNION_TYPE)
563           && TYPE_NO_FORCE_BLK (node))
564         fputs (" no-force-blk", file);
565       else if (TREE_CODE (node) == INTEGER_TYPE
566                && TYPE_IS_SIZETYPE (node))
567         fputs (" sizetype", file);
568
569       if (TYPE_STRING_FLAG (node))
570         fputs (" string-flag", file);
571       if (TYPE_NEEDS_CONSTRUCTING (node))
572         fputs (" needs-constructing", file);
573
574       /* The transparent-union flag is used for different things in
575          different nodes.  */
576       if (TREE_CODE (node) == UNION_TYPE && TYPE_TRANSPARENT_UNION (node))
577         fputs (" transparent-union", file);
578       else if (TREE_CODE (node) == ARRAY_TYPE
579                && TYPE_NONALIASED_COMPONENT (node))
580         fputs (" nonaliased-component", file);
581
582       if (TYPE_PACKED (node))
583         fputs (" packed", file);
584
585       if (TYPE_RESTRICT (node))
586         fputs (" restrict", file);
587
588       if (TYPE_LANG_FLAG_0 (node))
589         fputs (" type_0", file);
590       if (TYPE_LANG_FLAG_1 (node))
591         fputs (" type_1", file);
592       if (TYPE_LANG_FLAG_2 (node))
593         fputs (" type_2", file);
594       if (TYPE_LANG_FLAG_3 (node))
595         fputs (" type_3", file);
596       if (TYPE_LANG_FLAG_4 (node))
597         fputs (" type_4", file);
598       if (TYPE_LANG_FLAG_5 (node))
599         fputs (" type_5", file);
600       if (TYPE_LANG_FLAG_6 (node))
601         fputs (" type_6", file);
602
603       mode = TYPE_MODE (node);
604       fprintf (file, " %s", GET_MODE_NAME (mode));
605
606       print_node (file, "size", TYPE_SIZE (node), indent + 4);
607       print_node (file, "unit size", TYPE_SIZE_UNIT (node), indent + 4);
608       indent_to (file, indent + 3);
609
610       if (TYPE_USER_ALIGN (node))
611         fprintf (file, " user");
612
613       fprintf (file, " align %d symtab %d alias set " HOST_WIDE_INT_PRINT_DEC,
614                TYPE_ALIGN (node), TYPE_SYMTAB_ADDRESS (node),
615                (HOST_WIDE_INT) TYPE_ALIAS_SET (node));
616
617       if (TYPE_STRUCTURAL_EQUALITY_P (node))
618         fprintf (file, " structural equality");
619       else
620         dump_addr (file, " canonical type ", TYPE_CANONICAL (node));
621       
622       print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
623
624       if (INTEGRAL_TYPE_P (node) || TREE_CODE (node) == REAL_TYPE
625           || TREE_CODE (node) == FIXED_POINT_TYPE)
626         {
627           fprintf (file, " precision %d", TYPE_PRECISION (node));
628           print_node_brief (file, "min", TYPE_MIN_VALUE (node), indent + 4);
629           print_node_brief (file, "max", TYPE_MAX_VALUE (node), indent + 4);
630         }
631
632       if (TREE_CODE (node) == ENUMERAL_TYPE)
633         print_node (file, "values", TYPE_VALUES (node), indent + 4);
634       else if (TREE_CODE (node) == ARRAY_TYPE)
635         print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
636       else if (TREE_CODE (node) == VECTOR_TYPE)
637         fprintf (file, " nunits %d", (int) TYPE_VECTOR_SUBPARTS (node));
638       else if (TREE_CODE (node) == RECORD_TYPE
639                || TREE_CODE (node) == UNION_TYPE
640                || TREE_CODE (node) == QUAL_UNION_TYPE)
641         print_node (file, "fields", TYPE_FIELDS (node), indent + 4);
642       else if (TREE_CODE (node) == FUNCTION_TYPE
643                || TREE_CODE (node) == METHOD_TYPE)
644         {
645           if (TYPE_METHOD_BASETYPE (node))
646             print_node_brief (file, "method basetype",
647                               TYPE_METHOD_BASETYPE (node), indent + 4);
648           print_node (file, "arg-types", TYPE_ARG_TYPES (node), indent + 4);
649         }
650       else if (TREE_CODE (node) == OFFSET_TYPE)
651         print_node_brief (file, "basetype", TYPE_OFFSET_BASETYPE (node),
652                           indent + 4);
653
654       if (TYPE_CONTEXT (node))
655         print_node_brief (file, "context", TYPE_CONTEXT (node), indent + 4);
656
657       lang_hooks.print_type (file, node, indent);
658
659       if (TYPE_POINTER_TO (node) || TREE_CHAIN (node))
660         indent_to (file, indent + 3);
661
662       print_node_brief (file, "pointer_to_this", TYPE_POINTER_TO (node),
663                         indent + 4);
664       print_node_brief (file, "reference_to_this", TYPE_REFERENCE_TO (node),
665                         indent + 4);
666       print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
667       break;
668
669     case tcc_expression:
670     case tcc_comparison:
671     case tcc_unary:
672     case tcc_binary:
673     case tcc_reference:
674     case tcc_statement:
675     case tcc_vl_exp:
676       if (TREE_CODE (node) == BIND_EXPR)
677         {
678           print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4);
679           print_node (file, "body", TREE_OPERAND (node, 1), indent + 4);
680           print_node (file, "block", TREE_OPERAND (node, 2), indent + 4);
681           break;
682         }
683       if (TREE_CODE (node) == CALL_EXPR)
684         {
685           call_expr_arg_iterator iter;
686           tree arg;
687           print_node (file, "fn", CALL_EXPR_FN (node), indent + 4);
688           print_node (file, "static_chain", CALL_EXPR_STATIC_CHAIN (node),
689                       indent + 4);
690           i = 0;
691           FOR_EACH_CALL_EXPR_ARG (arg, iter, node)
692             {
693               char temp[10];
694               sprintf (temp, "arg %d", i);
695               print_node (file, temp, arg, indent + 4);
696               i++;
697             }
698         }
699       else
700         {
701           len = TREE_OPERAND_LENGTH (node);
702
703           for (i = 0; i < len; i++)
704             {
705               char temp[10];
706               
707               sprintf (temp, "arg %d", i);
708               print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
709             }
710         }
711       print_node (file, "chain", TREE_CHAIN (node), indent + 4);
712       break;
713
714     case tcc_gimple_stmt:
715       len = TREE_CODE_LENGTH (TREE_CODE (node));
716
717       for (i = 0; i < len; i++)
718         {
719           char temp[10];
720
721           sprintf (temp, "arg %d", i);
722           print_node (file, temp, GIMPLE_STMT_OPERAND (node, i), indent + 4);
723         }
724       break;
725
726     case tcc_constant:
727     case tcc_exceptional:
728       switch (TREE_CODE (node))
729         {
730         case INTEGER_CST:
731           if (TREE_OVERFLOW (node))
732             fprintf (file, " overflow");
733
734           fprintf (file, " ");
735           if (TREE_INT_CST_HIGH (node) == 0)
736             fprintf (file, HOST_WIDE_INT_PRINT_UNSIGNED,
737                      TREE_INT_CST_LOW (node));
738           else if (TREE_INT_CST_HIGH (node) == -1
739                    && TREE_INT_CST_LOW (node) != 0)
740             fprintf (file, "-" HOST_WIDE_INT_PRINT_UNSIGNED,
741                      -TREE_INT_CST_LOW (node));
742           else
743             fprintf (file, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
744                      TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
745           break;
746
747         case REAL_CST:
748           {
749             REAL_VALUE_TYPE d;
750
751             if (TREE_OVERFLOW (node))
752               fprintf (file, " overflow");
753
754             d = TREE_REAL_CST (node);
755             if (REAL_VALUE_ISINF (d))
756               fprintf (file,  REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf");
757             else if (REAL_VALUE_ISNAN (d))
758               fprintf (file, " Nan");
759             else
760               {
761                 char string[64];
762                 real_to_decimal (string, &d, sizeof (string), 0, 1);
763                 fprintf (file, " %s", string);
764               }
765           }
766           break;
767
768         case FIXED_CST:
769           {
770             FIXED_VALUE_TYPE f;
771             char string[64];
772
773             if (TREE_OVERFLOW (node))
774               fprintf (file, " overflow");
775
776             f = TREE_FIXED_CST (node);
777             fixed_to_decimal (string, &f, sizeof (string));
778             fprintf (file, " %s", string);
779           }
780           break;
781
782         case VECTOR_CST:
783           {
784             tree vals = TREE_VECTOR_CST_ELTS (node);
785             char buf[10];
786             tree link;
787             int i;
788
789             i = 0;
790             for (link = vals; link; link = TREE_CHAIN (link), ++i)
791               {
792                 sprintf (buf, "elt%d: ", i);
793                 print_node (file, buf, TREE_VALUE (link), indent + 4);
794               }
795           }
796           break;
797
798         case COMPLEX_CST:
799           print_node (file, "real", TREE_REALPART (node), indent + 4);
800           print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
801           break;
802
803         case STRING_CST:
804           {
805             const char *p = TREE_STRING_POINTER (node);
806             int i = TREE_STRING_LENGTH (node);
807             fputs (" \"", file);
808             while (--i >= 0)
809               {
810                 char ch = *p++;
811                 if (ch >= ' ' && ch < 127)
812                   putc (ch, file);
813                 else
814                   fprintf(file, "\\%03o", ch & 0xFF);
815               }
816             fputc ('\"', file);
817           }
818           /* Print the chain at second level.  */
819           if (indent == 4)
820             print_node (file, "chain", TREE_CHAIN (node), indent + 4);
821           else
822             print_node_brief (file, "chain", TREE_CHAIN (node), indent + 4);
823           break;
824
825         case IDENTIFIER_NODE:
826           lang_hooks.print_identifier (file, node, indent);
827           break;
828
829         case TREE_LIST:
830           print_node (file, "purpose", TREE_PURPOSE (node), indent + 4);
831           print_node (file, "value", TREE_VALUE (node), indent + 4);
832           print_node (file, "chain", TREE_CHAIN (node), indent + 4);
833           break;
834
835         case TREE_VEC:
836           len = TREE_VEC_LENGTH (node);
837           for (i = 0; i < len; i++)
838             if (TREE_VEC_ELT (node, i))
839               {
840                 char temp[10];
841                 sprintf (temp, "elt %d", i);
842                 indent_to (file, indent + 4);
843                 print_node_brief (file, temp, TREE_VEC_ELT (node, i), 0);
844               }
845           break;
846
847         case CONSTRUCTOR:
848           {
849             unsigned HOST_WIDE_INT cnt;
850             tree index, value;
851             len = VEC_length (constructor_elt, CONSTRUCTOR_ELTS (node));
852             fprintf (file, " lngt %d", len);
853             FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (node),
854                                       cnt, index, value)
855               {
856                 print_node (file, "idx", index, indent + 4);
857                 print_node (file, "val", value, indent + 4);
858               }
859           }
860           break;
861
862         case STATEMENT_LIST:
863           dump_addr (file, " head ", node->stmt_list.head);
864           dump_addr (file, " tail ", node->stmt_list.tail);
865           fprintf (file, " stmts");
866           {
867             tree_stmt_iterator i;
868             for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i))
869               {
870                 /* Not printing the addresses of the (not-a-tree)
871                    'struct tree_stmt_list_node's.  */
872                 dump_addr (file, " ", tsi_stmt (i));
873               }
874             fprintf (file, "\n");
875             for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i))
876               {
877                 /* Not printing the addresses of the (not-a-tree)
878                    'struct tree_stmt_list_node's.  */
879                 print_node (file, "stmt", tsi_stmt (i), indent + 4);
880               }
881           }
882           print_node (file, "chain", TREE_CHAIN (node), indent + 4);
883           break;
884
885         case BLOCK:
886           print_node (file, "vars", BLOCK_VARS (node), indent + 4);
887           print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node),
888                       indent + 4);
889           print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);
890           print_node (file, "chain", BLOCK_CHAIN (node), indent + 4);
891           print_node (file, "abstract_origin",
892                       BLOCK_ABSTRACT_ORIGIN (node), indent + 4);
893           break;
894
895         case SSA_NAME:
896           print_node_brief (file, "var", SSA_NAME_VAR (node), indent + 4);
897           print_node_brief (file, "def_stmt",
898                             SSA_NAME_DEF_STMT (node), indent + 4);
899
900           indent_to (file, indent + 4);
901           fprintf (file, "version %u", SSA_NAME_VERSION (node));
902           if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (node))
903             fprintf (file, " in-abnormal-phi");
904           if (SSA_NAME_IN_FREE_LIST (node))
905             fprintf (file, " in-free-list");
906
907           if (SSA_NAME_PTR_INFO (node)
908               || SSA_NAME_VALUE (node))
909             {
910               indent_to (file, indent + 3);
911               if (SSA_NAME_PTR_INFO (node))
912                 dump_addr (file, " ptr-info ", SSA_NAME_PTR_INFO (node));
913               if (SSA_NAME_VALUE (node))
914                 dump_addr (file, " value ", SSA_NAME_VALUE (node));
915             }
916           break;
917
918         case OMP_CLAUSE:
919             {
920               int i;
921               fprintf (file, " %s",
922                        omp_clause_code_name[OMP_CLAUSE_CODE (node)]);
923               for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (node)]; i++)
924                 {
925                   indent_to (file, indent + 4);
926                   fprintf (file, "op %d:", i);
927                   print_node_brief (file, "", OMP_CLAUSE_OPERAND (node, i), 0);
928                 }
929             }
930           break;
931
932         default:
933           if (EXCEPTIONAL_CLASS_P (node))
934             lang_hooks.print_xnode (file, node, indent);
935           break;
936         }
937
938       break;
939     }
940
941   if (EXPR_HAS_LOCATION (node))
942     {
943       expanded_location xloc = expand_location (EXPR_LOCATION (node));
944       indent_to (file, indent+4);
945       fprintf (file, "%s:%d:%d", xloc.file, xloc.line, xloc.column);
946     }
947
948   fprintf (file, ">");
949 }