ptree.c revision 51412
1/* Prints out trees in human readable form.
2   Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3   Hacked by Michael Tiemann (tiemann@cygnus.com)
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING.  If not, write to
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA.  */
21
22/* $FreeBSD: head/contrib/gcc/cp/ptree.c 51412 1999-09-19 11:00:01Z obrien $ */
23
24
25#include "config.h"
26#include "system.h"
27#include "tree.h"
28#include "cp-tree.h"
29
30void
31print_lang_decl (file, node, indent)
32     FILE *file;
33     tree node;
34     int indent;
35{
36  if (!DECL_LANG_SPECIFIC (node))
37    return;
38  /* A FIELD_DECL only has the flags structure, which we aren't displaying
39     anyways.  */
40  if (DECL_MUTABLE_P (node))
41    {
42      indent_to (file, indent + 3);
43      fprintf (file, " mutable ");
44    }
45  if (TREE_CODE (node) == FIELD_DECL)
46    return;
47  indent_to (file, indent + 3);
48  if (DECL_MAIN_VARIANT (node))
49    {
50      fprintf (file, " decl-main-variant ");
51      fprintf (file, HOST_PTR_PRINTF, (void *) DECL_MAIN_VARIANT (node));
52    }
53  if (DECL_PENDING_INLINE_INFO (node))
54    {
55      fprintf (file, " pending-inline-info ");
56      fprintf (file, HOST_PTR_PRINTF, (void *) DECL_PENDING_INLINE_INFO (node));
57    }
58  if (DECL_TEMPLATE_INFO (node))
59    {
60      fprintf (file, " template-info ");
61      fprintf (file, HOST_PTR_PRINTF, (void *) DECL_TEMPLATE_INFO (node));
62    }
63}
64
65void
66print_lang_type (file, node, indent)
67     FILE *file;
68     register tree node;
69     int indent;
70{
71  if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
72      || TREE_CODE (node) == TEMPLATE_TEMPLATE_PARM)
73    {
74      indent_to (file, indent + 3);
75      fputs ("index ", file);
76      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TEMPLATE_TYPE_IDX (node));
77      fputs (" level ", file);
78      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TEMPLATE_TYPE_LEVEL (node));
79      fputs (" orig_level ", file);
80      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TEMPLATE_TYPE_ORIG_LEVEL (node));
81      return;
82    }
83
84  if (! (TREE_CODE (node) == RECORD_TYPE
85	 || TREE_CODE (node) == UNION_TYPE))
86    return;
87
88  if (!TYPE_LANG_SPECIFIC (node))
89    return;
90
91  indent_to (file, indent + 3);
92
93  if (TYPE_NEEDS_CONSTRUCTING (node))
94    fputs ( "needs-constructor", file);
95  if (TYPE_NEEDS_DESTRUCTOR (node))
96    fputs (" needs-destructor", file);
97  if (TYPE_HAS_DESTRUCTOR (node))
98    fputs (" ~X()", file);
99  if (TYPE_HAS_DEFAULT_CONSTRUCTOR (node))
100    fputs (" X()", file);
101  if (TYPE_HAS_CONVERSION (node))
102    fputs (" has-type-conversion", file);
103  if (TYPE_HAS_INIT_REF (node))
104    {
105      if (TYPE_HAS_CONST_INIT_REF (node))
106	fputs (" X(constX&)", file);
107      else
108	fputs (" X(X&)", file);
109    }
110  if (TYPE_GETS_NEW (node) & 1)
111    fputs (" new", file);
112  if (TYPE_GETS_NEW (node) & 2)
113    fputs (" new[]", file);
114  if (TYPE_GETS_DELETE (node) & 1)
115    fputs (" delete", file);
116  if (TYPE_GETS_DELETE (node) & 2)
117    fputs (" delete[]", file);
118  if (TYPE_HAS_ASSIGNMENT (node))
119    fputs (" has=", file);
120  if (TYPE_HAS_ASSIGN_REF (node))
121    fputs (" this=(X&)", file);
122  if (TYPE_OVERLOADS_CALL_EXPR (node))
123    fputs (" op()", file);
124  if (TYPE_OVERLOADS_ARRAY_REF (node))
125    fputs (" op[]", file);
126  if (TYPE_OVERLOADS_ARROW (node))
127    fputs (" op->", file);
128  if (TYPE_USES_MULTIPLE_INHERITANCE (node))
129    fputs (" uses-multiple-inheritance", file);
130
131  if (TREE_CODE (node) == RECORD_TYPE)
132    {
133      fprintf (file, " n_parents %d n_ancestors %d",
134	       CLASSTYPE_N_BASECLASSES (node),
135	       CLASSTYPE_N_SUPERCLASSES (node));
136      fprintf (file, " use_template=%d", CLASSTYPE_USE_TEMPLATE (node));
137      if (CLASSTYPE_INTERFACE_ONLY (node))
138	fprintf (file, " interface-only");
139      if (CLASSTYPE_INTERFACE_UNKNOWN (node))
140	fprintf (file, " interface-unknown");
141      print_node (file, "member-functions", CLASSTYPE_METHOD_VEC (node),
142		  indent + 4);
143      print_node (file, "baselinks",
144		  TYPE_BINFO_BASETYPES (node) ? CLASSTYPE_BASELINK_VEC (node) : NULL_TREE,
145		  indent + 4);
146    }
147}
148
149void
150print_lang_identifier (file, node, indent)
151     FILE *file;
152     tree node;
153     int indent;
154{
155  print_node (file, "bindings", IDENTIFIER_NAMESPACE_BINDINGS (node), indent + 4);
156  print_node (file, "class", IDENTIFIER_CLASS_VALUE (node), indent + 4);
157  print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
158  print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
159  print_node (file, "template", IDENTIFIER_TEMPLATE (node), indent + 4);
160  print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
161  print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
162}
163
164void
165lang_print_xnode (file, node, indent)
166     FILE *file;
167     tree node;
168     int indent;
169{
170  switch (TREE_CODE (node))
171    {
172    case CPLUS_BINDING:
173      print_node (file, "scope", BINDING_SCOPE (node), indent+4);
174      print_node (file, "value", BINDING_VALUE (node), indent+4);
175      print_node (file, "chain", TREE_CHAIN (node), indent+4);
176      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      fputs ("index ", file);
184      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TEMPLATE_PARM_IDX (node));
185      fputs (" level ", file);
186      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TEMPLATE_PARM_LEVEL (node));
187      fputs (" orig_level ", file);
188      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TEMPLATE_PARM_ORIG_LEVEL (node));
189      break;
190    default:
191      break;
192    }
193}
194