gdb/
[deliverable/binutils-gdb.git] / gdb / cp-support.h
CommitLineData
de17c821 1/* Helper routines for C++ support in GDB.
7b6bb8da 2 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
9b254dd1 3 Free Software Foundation, Inc.
de17c821
DJ
4
5 Contributed by MontaVista Software.
9219021c 6 Namespace support contributed by David Carlton.
de17c821
DJ
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
de17c821
DJ
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
de17c821 22
9219021c
DC
23#ifndef CP_SUPPORT_H
24#define CP_SUPPORT_H
25
1fcb5155
DC
26/* We need this for 'domain_enum', alas... */
27
28#include "symtab.h"
32019081 29#include "vec.h"
3a93a0c2 30#include "gdb_obstack.h"
32019081 31
9219021c
DC
32/* Opaque declarations. */
33
b59661bd 34struct symbol;
9219021c 35struct block;
4a4b3fed 36struct objfile;
362ff856 37struct type;
fb4c6eba 38struct demangle_component;
9219021c 39
2b1dbab0
KS
40/* A string representing the name of the anonymous namespace used in GDB. */
41
42#define CP_ANONYMOUS_NAMESPACE_STR "(anonymous namespace)"
43
44/* The length of the string representing the anonymous namespace. */
45
46#define CP_ANONYMOUS_NAMESPACE_LEN 21
47
3a93a0c2
KS
48/* The result of parsing a name. */
49
50struct demangle_parse_info
51{
52 /* The memory used during the parse. */
53 struct demangle_info *info;
54
55 /* The result of the parse. */
56 struct demangle_component *tree;
57
58 /* Any temporary memory used during typedef replacement. */
59 struct obstack obstack;
60};
61
9219021c 62/* This struct is designed to store data from using directives. It
aff410f1
MS
63 says that names from namespace IMPORT_SRC should be visible within
64 namespace IMPORT_DEST. These form a linked list; NEXT is the next
65 element of the list. If the imported namespace or declaration has
66 been aliased within the IMPORT_DEST namespace, ALIAS is set to a
67 string representing the alias. Otherwise, ALIAS is NULL.
68 DECLARATION is the name of the imported declaration, if this import
69 statement represents one. Otherwise DECLARATION is NULL and this
70 import statement represents a namespace.
1ac77ea1
JK
71
72 C++: using namespace A;
73 Fortran: use A
74 import_src = "A"
75 import_dest = local scope of the import statement even such as ""
76 alias = NULL
77 declaration = NULL
32019081 78 excludes = NULL
1ac77ea1
JK
79
80 C++: using A::x;
81 Fortran: use A, only: x
82 import_src = "A"
83 import_dest = local scope of the import statement even such as ""
84 alias = NULL
85 declaration = "x"
32019081 86 excludes = NULL
1ac77ea1
JK
87 The declaration will get imported as import_dest::x.
88
32019081
JK
89 C++ has no way to import all names except those listed ones.
90 Fortran: use A, localname => x
91 import_src = "A"
92 import_dest = local scope of the import statement even such as ""
93 alias = "localname"
94 declaration = "x"
95 excludes = NULL
96 +
97 import_src = "A"
98 import_dest = local scope of the import statement even such as ""
99 alias = NULL
100 declaration = NULL
101 excludes = ["x"]
102 All the entries of A get imported except of "x". "x" gets imported as
103 "localname". "x" is not defined as a local name by this statement.
104
1ac77ea1
JK
105 C++: namespace LOCALNS = A;
106 Fortran has no way to address non-local namespace/module.
107 import_src = "A"
108 import_dest = local scope of the import statement even such as ""
109 alias = "LOCALNS"
110 declaration = NULL
32019081 111 excludes = NULL
aff410f1
MS
112 The namespace will get imported as the import_dest::LOCALNS
113 namespace.
1ac77ea1 114
aff410f1
MS
115 C++ cannot express it, it would be something like: using localname
116 = A::x;
1ac77ea1
JK
117 Fortran: use A, only localname => x
118 import_src = "A"
119 import_dest = local scope of the import statement even such as ""
120 alias = "localname"
121 declaration = "x"
32019081 122 excludes = NULL
aff410f1
MS
123 The declaration will get imported as localname or
124 `import_dest`localname. */
9219021c
DC
125
126struct using_direct
127{
8c902bb1
SW
128 char *import_src;
129 char *import_dest;
82856980
SW
130
131 char *alias;
13387711 132 char *declaration;
82856980 133
9219021c 134 struct using_direct *next;
b14e635e 135
aff410f1
MS
136 /* Used during import search to temporarily mark this node as
137 searched. */
b14e635e 138 int searched;
32019081
JK
139
140 /* USING_DIRECT has variable allocation size according to the number of
141 EXCLUDES entries, the last entry is NULL. */
142 const char *excludes[1];
9219021c
DC
143};
144
145
146/* Functions from cp-support.c. */
147
fb4c6eba
DJ
148extern char *cp_canonicalize_string (const char *string);
149
3a93a0c2
KS
150extern char *cp_canonicalize_string_no_typedefs (const char *string);
151
31c27f77 152extern char *cp_class_name_from_physname (const char *physname);
de17c821
DJ
153
154extern char *method_name_from_physname (const char *physname);
9219021c
DC
155
156extern unsigned int cp_find_first_component (const char *name);
157
158extern unsigned int cp_entire_prefix_len (const char *name);
159
8d577d32
DC
160extern char *cp_func_name (const char *full_name);
161
3567439c
DJ
162extern char *cp_remove_params (const char *demangled_name);
163
8d577d32
DC
164extern struct symbol **make_symbol_overload_list (const char *,
165 const char *);
9219021c 166
7322dca9
SW
167extern struct symbol **make_symbol_overload_list_adl (struct type **arg_types,
168 int nargs,
169 const char *func_name);
170
362ff856
MC
171extern struct type *cp_lookup_rtti_type (const char *name,
172 struct block *block);
173
12907978
KS
174extern int cp_validate_operator (const char *input);
175
9219021c
DC
176/* Functions/variables from cp-namespace.c. */
177
9219021c
DC
178extern int cp_is_anonymous (const char *namespace);
179
32019081
JK
180DEF_VEC_P (const_char_ptr);
181
8c902bb1 182extern void cp_add_using_directive (const char *dest,
82856980 183 const char *src,
c0cc3a76 184 const char *alias,
13387711 185 const char *declaration,
32019081 186 VEC (const_char_ptr) *excludes,
c0cc3a76 187 struct obstack *obstack);
27aa8d6a 188
b9362cc7 189extern void cp_initialize_namespace (void);
9219021c
DC
190
191extern void cp_finalize_namespace (struct block *static_block,
192 struct obstack *obstack);
193
194extern void cp_set_block_scope (const struct symbol *symbol,
195 struct block *block,
df8a16a1
DJ
196 struct obstack *obstack,
197 const char *processing_current_prefix,
198 int processing_has_namespace_info);
9219021c
DC
199
200extern void cp_scan_for_anonymous_namespaces (const struct symbol *symbol);
201
1fcb5155 202extern struct symbol *cp_lookup_symbol_nonlocal (const char *name,
1fcb5155 203 const struct block *block,
21b556f4 204 const domain_enum domain);
1fcb5155
DC
205
206extern struct symbol *cp_lookup_symbol_namespace (const char *namespace,
207 const char *name,
1fcb5155 208 const struct block *block,
13387711
SW
209 const domain_enum domain);
210
211extern struct symbol *cp_lookup_symbol_imports (const char *scope,
212 const char *name,
213 const struct block *block,
214 const domain_enum domain,
215 const int declaration_only,
216 const int search_parents);
1fcb5155 217
34eaf542
TT
218extern struct symbol *cp_lookup_symbol_imports_or_template
219 (const char *scope,
220 const char *name,
221 const struct block *block,
222 const domain_enum domain);
223
79c2c32d
DC
224extern struct type *cp_lookup_nested_type (struct type *parent_type,
225 const char *nested_name,
226 const struct block *block);
227
b368761e
DC
228struct type *cp_lookup_transparent_type (const char *name);
229
f88e9fd3 230/* Functions from cp-name-parser.y. */
fb4c6eba 231
3a93a0c2
KS
232extern struct demangle_parse_info *cp_demangled_name_to_comp
233 (const char *demangled_name, const char **errmsg);
fb4c6eba
DJ
234
235extern char *cp_comp_to_string (struct demangle_component *result,
236 int estimated_len);
237
3a93a0c2
KS
238extern void cp_demangled_name_parse_free (struct demangle_parse_info *);
239extern struct cleanup *make_cleanup_cp_demangled_name_parse_free
240 (struct demangle_parse_info *);
241extern void cp_merge_demangle_parse_infos (struct demangle_parse_info *,
242 struct demangle_component *,
243 struct demangle_parse_info *);
244
245extern struct demangle_parse_info *cp_new_demangle_parse_info (void);
246
5c4e30ca
DC
247/* The list of "maint cplus" commands. */
248
249extern struct cmd_list_element *maint_cplus_cmd_list;
250
9219021c 251#endif /* CP_SUPPORT_H */
This page took 0.579049 seconds and 4 git commands to generate.