1 /* Prints out trees in human readable form.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
6 This file is part of GCC.
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)
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.
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. */
26 #include "coretypes.h"
32 cxx_print_decl (FILE *file
, tree node
, int indent
)
34 if (TREE_CODE (node
) == FIELD_DECL
)
36 if (DECL_MUTABLE_P (node
))
38 indent_to (file
, indent
+ 3);
39 fprintf (file
, " mutable ");
44 if (!DECL_LANG_SPECIFIC (node
))
46 indent_to (file
, indent
+ 3);
47 if (TREE_CODE (node
) == FUNCTION_DECL
48 && DECL_PENDING_INLINE_INFO (node
))
49 fprintf (file
, " pending-inline-info " HOST_PTR_PRINTF
,
50 (void *) DECL_PENDING_INLINE_INFO (node
));
51 if (TREE_CODE (node
) == TYPE_DECL
52 && DECL_SORTED_FIELDS (node
))
53 fprintf (file
, " sorted-fields " HOST_PTR_PRINTF
,
54 (void *) DECL_SORTED_FIELDS (node
));
55 if ((TREE_CODE (node
) == FUNCTION_DECL
|| TREE_CODE (node
) == VAR_DECL
)
56 && DECL_TEMPLATE_INFO (node
))
57 fprintf (file
, " template-info " HOST_PTR_PRINTF
,
58 (void *) DECL_TEMPLATE_INFO (node
));
62 cxx_print_type (FILE *file
, tree node
, int indent
)
64 switch (TREE_CODE (node
))
66 case TEMPLATE_TYPE_PARM
:
67 case TEMPLATE_TEMPLATE_PARM
:
68 case BOUND_TEMPLATE_TEMPLATE_PARM
:
69 indent_to (file
, indent
+ 3);
70 fprintf (file
, "index " HOST_WIDE_INT_PRINT_DEC
" level "
71 HOST_WIDE_INT_PRINT_DEC
" orig_level " HOST_WIDE_INT_PRINT_DEC
,
72 TEMPLATE_TYPE_IDX (node
), TEMPLATE_TYPE_LEVEL (node
),
73 TEMPLATE_TYPE_ORIG_LEVEL (node
));
78 if (TYPE_RAISES_EXCEPTIONS (node
))
79 print_node (file
, "throws", TYPE_RAISES_EXCEPTIONS (node
), indent
+ 4);
90 if (TYPE_PTRMEMFUNC_P (node
))
91 print_node (file
, "ptrmemfunc fn type", TYPE_PTRMEMFUNC_FN_TYPE (node
),
94 if (! CLASS_TYPE_P (node
))
97 indent_to (file
, indent
+ 3);
99 if (TYPE_NEEDS_CONSTRUCTING (node
))
100 fputs ( "needs-constructor", file
);
101 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (node
))
102 fputs (" needs-destructor", file
);
103 if (TYPE_HAS_DESTRUCTOR (node
))
104 fputs (" ~X()", file
);
105 if (TYPE_HAS_DEFAULT_CONSTRUCTOR (node
))
106 fputs (" X()", file
);
107 if (TYPE_HAS_CONVERSION (node
))
108 fputs (" has-type-conversion", file
);
109 if (TYPE_HAS_INIT_REF (node
))
111 if (TYPE_HAS_CONST_INIT_REF (node
))
112 fputs (" X(constX&)", file
);
114 fputs (" X(X&)", file
);
116 if (TYPE_HAS_NEW_OPERATOR (node
))
117 fputs (" new", file
);
118 if (TYPE_HAS_ARRAY_NEW_OPERATOR (node
))
119 fputs (" new[]", file
);
120 if (TYPE_GETS_DELETE (node
) & 1)
121 fputs (" delete", file
);
122 if (TYPE_GETS_DELETE (node
) & 2)
123 fputs (" delete[]", file
);
124 if (TYPE_HAS_ASSIGN_REF (node
))
125 fputs (" this=(X&)", file
);
126 if (TYPE_USES_MULTIPLE_INHERITANCE (node
))
127 fputs (" uses-multiple-inheritance", file
);
129 if (TREE_CODE (node
) == RECORD_TYPE
)
131 fprintf (file
, " n_parents %d", BINFO_N_BASE_BINFOS (TYPE_BINFO (node
)));
132 fprintf (file
, " use_template=%d", CLASSTYPE_USE_TEMPLATE (node
));
133 if (CLASSTYPE_INTERFACE_ONLY (node
))
134 fprintf (file
, " interface-only");
135 if (CLASSTYPE_INTERFACE_UNKNOWN (node
))
136 fprintf (file
, " interface-unknown");
137 print_node (file
, "member-functions", CLASSTYPE_METHOD_VEC (node
),
144 cxx_print_binding (FILE *stream
, cxx_binding
*binding
, const char *prefix
)
146 fprintf (stream
, "%s <" HOST_PTR_PRINTF
">",
147 prefix
, (void *) binding
);
151 cxx_print_identifier (FILE *file
, tree node
, int indent
)
153 indent_to (file
, indent
);
154 cxx_print_binding (file
, IDENTIFIER_NAMESPACE_BINDINGS (node
), "bindings");
155 print_node (file
, "class", IDENTIFIER_CLASS_VALUE (node
), indent
+ 4);
156 indent_to (file
, indent
);
157 cxx_print_binding (file
, IDENTIFIER_BINDING (node
), "local bindings");
158 print_node (file
, "label", IDENTIFIER_LABEL_VALUE (node
), indent
+ 4);
159 print_node (file
, "template", IDENTIFIER_TEMPLATE (node
), indent
+ 4);
163 cxx_print_xnode (FILE *file
, tree node
, int indent
)
165 switch (TREE_CODE (node
))
168 print_node (file
, "function", OVL_FUNCTION (node
), indent
+4);
169 print_node (file
, "chain", TREE_CHAIN (node
), indent
+4);
171 case TEMPLATE_PARM_INDEX
:
172 indent_to (file
, indent
+ 3);
173 fprintf (file
, "index " HOST_WIDE_INT_PRINT_DEC
" level "
174 HOST_WIDE_INT_PRINT_DEC
" orig_level " HOST_WIDE_INT_PRINT_DEC
,
175 TEMPLATE_PARM_IDX (node
), TEMPLATE_PARM_LEVEL (node
),
176 TEMPLATE_PARM_ORIG_LEVEL (node
));