Deleted Added
full compact
ptree.c (132748) ptree.c (169699)
1/* Prints out trees in human readable form.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998,
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.
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
13GCC is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING. If not, write to
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
13GCC is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING. If not, write to
20the Free Software Foundation, 59 Temple Place - Suite 330,
21Boston, MA 02111-1307, USA. */
20the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21Boston, MA 02110-1301, USA. */
22
22
23/* $FreeBSD: head/contrib/gcc/cp/ptree.c 132748 2004-07-28 05:06:59Z kan $ */
23/* $FreeBSD: head/contrib/gcc/cp/ptree.c 169699 2007-05-19 02:12:21Z kan $ */
24
25#include "config.h"
26#include "system.h"
27#include "coretypes.h"
28#include "tm.h"
29#include "tree.h"
30#include "cp-tree.h"
31
24
25#include "config.h"
26#include "system.h"
27#include "coretypes.h"
28#include "tm.h"
29#include "tree.h"
30#include "cp-tree.h"
31
32#ifndef HOST_PTR_PRINTF_FORMAT
33#define HOST_PTR_PRINTF_FORMAT HOST_PTR_PRINTF
34#endif
35#ifndef HOST_PTR_PRINTF_TYPE
36#define HOST_PTR_PRINTF_TYPE (void *)
37#endif
38
39void
40cxx_print_decl (FILE *file, tree node, int indent)
41{
42 if (TREE_CODE (node) == FIELD_DECL)
43 {
44 if (DECL_MUTABLE_P (node))
45 {
46 indent_to (file, indent + 3);
47 fprintf (file, " mutable ");
48 }
49 return;
50 }
51
32void
33cxx_print_decl (FILE *file, tree node, int indent)
34{
35 if (TREE_CODE (node) == FIELD_DECL)
36 {
37 if (DECL_MUTABLE_P (node))
38 {
39 indent_to (file, indent + 3);
40 fprintf (file, " mutable ");
41 }
42 return;
43 }
44
52 if (!DECL_LANG_SPECIFIC (node))
45 if (!CODE_CONTAINS_STRUCT (TREE_CODE (node), TS_DECL_COMMON)
46 || !DECL_LANG_SPECIFIC (node))
53 return;
54 indent_to (file, indent + 3);
55 if (TREE_CODE (node) == FUNCTION_DECL
56 && DECL_PENDING_INLINE_INFO (node))
47 return;
48 indent_to (file, indent + 3);
49 if (TREE_CODE (node) == FUNCTION_DECL
50 && DECL_PENDING_INLINE_INFO (node))
57 fprintf (file, " pending-inline-info " HOST_PTR_PRINTF_FORMAT,
58 HOST_PTR_PRINTF_TYPE DECL_PENDING_INLINE_INFO (node));
51 fprintf (file, " pending-inline-info %p",
52 (void *) DECL_PENDING_INLINE_INFO (node));
59 if (TREE_CODE (node) == TYPE_DECL
60 && DECL_SORTED_FIELDS (node))
53 if (TREE_CODE (node) == TYPE_DECL
54 && DECL_SORTED_FIELDS (node))
61 fprintf (file, " sorted-fields " HOST_PTR_PRINTF_FORMAT,
62 HOST_PTR_PRINTF_TYPE DECL_SORTED_FIELDS (node));
55 fprintf (file, " sorted-fields %p",
56 (void *) DECL_SORTED_FIELDS (node));
63 if ((TREE_CODE (node) == FUNCTION_DECL || TREE_CODE (node) == VAR_DECL)
64 && DECL_TEMPLATE_INFO (node))
57 if ((TREE_CODE (node) == FUNCTION_DECL || TREE_CODE (node) == VAR_DECL)
58 && DECL_TEMPLATE_INFO (node))
65 fprintf (file, " template-info " HOST_PTR_PRINTF_FORMAT,
66 HOST_PTR_PRINTF_TYPE DECL_TEMPLATE_INFO (node));
59 fprintf (file, " template-info %p",
60 (void *) DECL_TEMPLATE_INFO (node));
67}
68
69void
70cxx_print_type (FILE *file, tree node, int indent)
71{
72 switch (TREE_CODE (node))
73 {
74 case TEMPLATE_TYPE_PARM:

--- 28 unchanged lines hidden (view full) ---

103 return;
104
105 indent_to (file, indent + 3);
106
107 if (TYPE_NEEDS_CONSTRUCTING (node))
108 fputs ( "needs-constructor", file);
109 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (node))
110 fputs (" needs-destructor", file);
61}
62
63void
64cxx_print_type (FILE *file, tree node, int indent)
65{
66 switch (TREE_CODE (node))
67 {
68 case TEMPLATE_TYPE_PARM:

--- 28 unchanged lines hidden (view full) ---

97 return;
98
99 indent_to (file, indent + 3);
100
101 if (TYPE_NEEDS_CONSTRUCTING (node))
102 fputs ( "needs-constructor", file);
103 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (node))
104 fputs (" needs-destructor", file);
111 if (TYPE_HAS_DESTRUCTOR (node))
112 fputs (" ~X()", file);
113 if (TYPE_HAS_DEFAULT_CONSTRUCTOR (node))
114 fputs (" X()", file);
115 if (TYPE_HAS_CONVERSION (node))
116 fputs (" has-type-conversion", file);
117 if (TYPE_HAS_INIT_REF (node))
118 {
119 if (TYPE_HAS_CONST_INIT_REF (node))
120 fputs (" X(constX&)", file);

--- 5 unchanged lines hidden (view full) ---

126 if (TYPE_HAS_ARRAY_NEW_OPERATOR (node))
127 fputs (" new[]", file);
128 if (TYPE_GETS_DELETE (node) & 1)
129 fputs (" delete", file);
130 if (TYPE_GETS_DELETE (node) & 2)
131 fputs (" delete[]", file);
132 if (TYPE_HAS_ASSIGN_REF (node))
133 fputs (" this=(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))
110 {
111 if (TYPE_HAS_CONST_INIT_REF (node))
112 fputs (" X(constX&)", file);

--- 5 unchanged lines hidden (view full) ---

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);
134 if (TYPE_USES_MULTIPLE_INHERITANCE (node))
135 fputs (" uses-multiple-inheritance", file);
136
137 if (TREE_CODE (node) == RECORD_TYPE)
138 {
126
127 if (TREE_CODE (node) == RECORD_TYPE)
128 {
139 fprintf (file, " n_parents %d", CLASSTYPE_N_BASECLASSES (node));
129 if (TYPE_BINFO (node))
130 fprintf (file, " n_parents=%d",
131 BINFO_N_BASE_BINFOS (TYPE_BINFO (node)));
132 else
133 fprintf (file, " no-binfo");
134
140 fprintf (file, " use_template=%d", CLASSTYPE_USE_TEMPLATE (node));
141 if (CLASSTYPE_INTERFACE_ONLY (node))
142 fprintf (file, " interface-only");
143 if (CLASSTYPE_INTERFACE_UNKNOWN (node))
144 fprintf (file, " interface-unknown");
135 fprintf (file, " use_template=%d", CLASSTYPE_USE_TEMPLATE (node));
136 if (CLASSTYPE_INTERFACE_ONLY (node))
137 fprintf (file, " interface-only");
138 if (CLASSTYPE_INTERFACE_UNKNOWN (node))
139 fprintf (file, " interface-unknown");
145 print_node (file, "member-functions", CLASSTYPE_METHOD_VEC (node),
146 indent + 4);
147 }
148}
149
150
151static void
152cxx_print_binding (FILE *stream, cxx_binding *binding, const char *prefix)
153{
140 }
141}
142
143
144static void
145cxx_print_binding (FILE *stream, cxx_binding *binding, const char *prefix)
146{
154 fprintf (stream, "%s <" HOST_PTR_PRINTF_FORMAT ">",
155 prefix, HOST_PTR_PRINTF_TYPE binding);
147 fprintf (stream, "%s <%p>",
148 prefix, (void *) binding);
156}
157
158void
159cxx_print_identifier (FILE *file, tree node, int indent)
160{
149}
150
151void
152cxx_print_identifier (FILE *file, tree node, int indent)
153{
161 indent_to (file, indent);
154 if (indent == 0)
155 fprintf (file, " ");
156 else
157 indent_to (file, indent);
162 cxx_print_binding (file, IDENTIFIER_NAMESPACE_BINDINGS (node), "bindings");
158 cxx_print_binding (file, IDENTIFIER_NAMESPACE_BINDINGS (node), "bindings");
163 print_node (file, "class", IDENTIFIER_CLASS_VALUE (node), indent + 4);
164 indent_to (file, indent);
159 if (indent == 0)
160 fprintf (file, " ");
161 else
162 indent_to (file, indent);
165 cxx_print_binding (file, IDENTIFIER_BINDING (node), "local bindings");
166 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
167 print_node (file, "template", IDENTIFIER_TEMPLATE (node), indent + 4);
163 cxx_print_binding (file, IDENTIFIER_BINDING (node), "local bindings");
164 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
165 print_node (file, "template", IDENTIFIER_TEMPLATE (node), indent + 4);
168 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
169 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
170}
171
172void
173cxx_print_xnode (FILE *file, tree node, int indent)
174{
175 switch (TREE_CODE (node))
176 {
166}
167
168void
169cxx_print_xnode (FILE *file, tree node, int indent)
170{
171 switch (TREE_CODE (node))
172 {
173 case BASELINK:
174 print_node (file, "functions", BASELINK_FUNCTIONS (node), indent + 4);
175 print_node (file, "binfo", BASELINK_BINFO (node), indent + 4);
176 print_node (file, "access_binfo", BASELINK_ACCESS_BINFO (node),
177 indent + 4);
178 break;
177 case OVERLOAD:
178 print_node (file, "function", OVL_FUNCTION (node), indent+4);
179 print_node (file, "chain", TREE_CHAIN (node), indent+4);
180 break;
181 case TEMPLATE_PARM_INDEX:
182 indent_to (file, indent + 3);
183 fprintf (file, "index " HOST_WIDE_INT_PRINT_DEC " level "
184 HOST_WIDE_INT_PRINT_DEC " orig_level " HOST_WIDE_INT_PRINT_DEC,
185 TEMPLATE_PARM_IDX (node), TEMPLATE_PARM_LEVEL (node),
186 TEMPLATE_PARM_ORIG_LEVEL (node));
187 break;
188 default:
189 break;
190 }
191}
179 case OVERLOAD:
180 print_node (file, "function", OVL_FUNCTION (node), indent+4);
181 print_node (file, "chain", TREE_CHAIN (node), indent+4);
182 break;
183 case TEMPLATE_PARM_INDEX:
184 indent_to (file, indent + 3);
185 fprintf (file, "index " HOST_WIDE_INT_PRINT_DEC " level "
186 HOST_WIDE_INT_PRINT_DEC " orig_level " HOST_WIDE_INT_PRINT_DEC,
187 TEMPLATE_PARM_IDX (node), TEMPLATE_PARM_LEVEL (node),
188 TEMPLATE_PARM_ORIG_LEVEL (node));
189 break;
190 default:
191 break;
192 }
193}