OSDN Git Service

* c-decl.c (c_init_decl_processing): Clear input_file_name
[pf3gnuchains/gcc-fork.git] / gcc / cp / ptree.c
1 /* Prints out trees in human readable form.
2    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998,
3    1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4    Hacked by Michael Tiemann (tiemann@cygnus.com)
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "cp-tree.h"
30
31 void
32 cxx_print_decl (FILE *file, tree node, int indent)
33 {
34   if (TREE_CODE (node) == FIELD_DECL)
35     {
36       if (DECL_MUTABLE_P (node))
37         {
38           indent_to (file, indent + 3);
39           fprintf (file, " mutable ");
40         }
41       return;
42     }
43
44   if (!DECL_LANG_SPECIFIC (node))
45     return;
46   indent_to (file, indent + 3);
47   if (TREE_CODE (node) == FUNCTION_DECL
48       && DECL_PENDING_INLINE_INFO (node))
49     {
50       fprintf (file, " pending-inline-info ");
51       fprintf (file, HOST_PTR_PRINTF, (void *) DECL_PENDING_INLINE_INFO (node));
52     }
53   if (TREE_CODE (node) == TYPE_DECL
54       && DECL_SORTED_FIELDS (node))
55     {
56       fprintf (file, " sorted-fields ");
57       fprintf (file, HOST_PTR_PRINTF, (void *) DECL_SORTED_FIELDS (node));
58     }
59   if ((TREE_CODE (node) == FUNCTION_DECL || TREE_CODE (node) == VAR_DECL)
60       && DECL_TEMPLATE_INFO (node))
61     {
62       fprintf (file, " template-info ");
63       fprintf (file, HOST_PTR_PRINTF, (void *) DECL_TEMPLATE_INFO (node));
64     }
65 }
66
67 void
68 cxx_print_type (FILE *file, tree node, int indent)
69 {
70   switch (TREE_CODE (node))
71     {
72     case TEMPLATE_TYPE_PARM:
73     case TEMPLATE_TEMPLATE_PARM:
74     case BOUND_TEMPLATE_TEMPLATE_PARM:
75       indent_to (file, indent + 3);
76       fprintf (file, "index " HOST_WIDE_INT_PRINT_DEC " level "
77                HOST_WIDE_INT_PRINT_DEC " orig_level " HOST_WIDE_INT_PRINT_DEC,
78                TEMPLATE_TYPE_IDX (node), TEMPLATE_TYPE_LEVEL (node),
79                TEMPLATE_TYPE_ORIG_LEVEL (node));
80       return;
81
82     case FUNCTION_TYPE:
83     case METHOD_TYPE:
84       if (TYPE_RAISES_EXCEPTIONS (node))
85         print_node (file, "throws", TYPE_RAISES_EXCEPTIONS (node), indent + 4);
86       return;
87
88     case RECORD_TYPE:
89     case UNION_TYPE:
90       break;
91
92     default:
93       return;
94     }
95
96   if (TYPE_PTRMEMFUNC_P (node))
97     print_node (file, "ptrmemfunc fn type", TYPE_PTRMEMFUNC_FN_TYPE (node),
98                 indent + 4);
99
100   if (! CLASS_TYPE_P (node))
101     return;
102
103   indent_to (file, indent + 3);
104
105   if (TYPE_NEEDS_CONSTRUCTING (node))
106     fputs ( "needs-constructor", file);
107   if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (node))
108     fputs (" needs-destructor", file);
109   if (TYPE_HAS_DESTRUCTOR (node))
110     fputs (" ~X()", file);
111   if (TYPE_HAS_DEFAULT_CONSTRUCTOR (node))
112     fputs (" X()", file);
113   if (TYPE_HAS_CONVERSION (node))
114     fputs (" has-type-conversion", file);
115   if (TYPE_HAS_INIT_REF (node))
116     {
117       if (TYPE_HAS_CONST_INIT_REF (node))
118         fputs (" X(constX&)", file);
119       else
120         fputs (" X(X&)", file);
121     }
122   if (TYPE_HAS_NEW_OPERATOR (node))
123     fputs (" new", file);
124   if (TYPE_HAS_ARRAY_NEW_OPERATOR (node))
125     fputs (" new[]", file);
126   if (TYPE_GETS_DELETE (node) & 1)
127     fputs (" delete", file);
128   if (TYPE_GETS_DELETE (node) & 2)
129     fputs (" delete[]", file);
130   if (TYPE_HAS_ASSIGN_REF (node))
131     fputs (" this=(X&)", file);
132   if (TYPE_OVERLOADS_CALL_EXPR (node))
133     fputs (" op()", file);
134   if (TYPE_OVERLOADS_ARRAY_REF (node))
135     fputs (" op[]", file);
136   if (TYPE_OVERLOADS_ARROW (node))
137     fputs (" op->", file);
138   if (TYPE_USES_MULTIPLE_INHERITANCE (node))
139     fputs (" uses-multiple-inheritance", file);
140
141   if (TREE_CODE (node) == RECORD_TYPE)
142     {
143       fprintf (file, " n_parents %d", CLASSTYPE_N_BASECLASSES (node));
144       fprintf (file, " use_template=%d", CLASSTYPE_USE_TEMPLATE (node));
145       if (CLASSTYPE_INTERFACE_ONLY (node))
146         fprintf (file, " interface-only");
147       if (CLASSTYPE_INTERFACE_UNKNOWN (node))
148         fprintf (file, " interface-unknown");
149       print_node (file, "member-functions", CLASSTYPE_METHOD_VEC (node),
150                   indent + 4);
151     }
152 }
153
154
155 static void
156 cxx_print_binding (FILE *stream, cxx_binding *binding, const char *prefix)
157 {
158   fprintf (stream, "%s <", prefix);
159   fprintf (stream, HOST_PTR_PRINTF, (char *) binding);
160   fprintf (stream, ">");
161 }
162
163 void
164 cxx_print_identifier (FILE *file, tree node, int indent)
165 {
166   cxx_print_binding (file, IDENTIFIER_NAMESPACE_BINDINGS (node), "bindings");
167   print_node (file, "class", IDENTIFIER_CLASS_VALUE (node), indent + 4);
168   cxx_print_binding (file, IDENTIFIER_BINDING (node), "local bindings");
169   print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
170   print_node (file, "template", IDENTIFIER_TEMPLATE (node), indent + 4);
171   print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
172   print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
173 }
174
175 void
176 cxx_print_xnode (FILE *file, tree node, int indent)
177 {
178   switch (TREE_CODE (node))
179     {
180     case OVERLOAD:
181       print_node (file, "function", OVL_FUNCTION (node), indent+4);
182       print_node (file, "chain", TREE_CHAIN (node), indent+4);
183       break;
184     case TEMPLATE_PARM_INDEX:
185       indent_to (file, indent + 3);
186       fprintf (file, "index " HOST_WIDE_INT_PRINT_DEC " level "
187                HOST_WIDE_INT_PRINT_DEC " orig_level " HOST_WIDE_INT_PRINT_DEC,
188                TEMPLATE_PARM_IDX (node), TEMPLATE_PARM_LEVEL (node),
189                TEMPLATE_PARM_ORIG_LEVEL (node));
190       break;
191     default:
192       break;
193     }
194 }