* write.c (resolve_reloc_expr_symbols): Convert local symbols
[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"
29
32019081
JK
30#include "vec.h"
31
9219021c
DC
32/* Opaque declarations. */
33
b59661bd 34struct symbol;
9219021c
DC
35struct obstack;
36struct block;
4a4b3fed 37struct objfile;
362ff856 38struct type;
fb4c6eba 39struct demangle_component;
9219021c 40
2b1dbab0
KS
41/* A string representing the name of the anonymous namespace used in GDB. */
42
43#define CP_ANONYMOUS_NAMESPACE_STR "(anonymous namespace)"
44
45/* The length of the string representing the anonymous namespace. */
46
47#define CP_ANONYMOUS_NAMESPACE_LEN 21
48
9219021c 49/* This struct is designed to store data from using directives. It
aff410f1
MS
50 says that names from namespace IMPORT_SRC should be visible within
51 namespace IMPORT_DEST. These form a linked list; NEXT is the next
52 element of the list. If the imported namespace or declaration has
53 been aliased within the IMPORT_DEST namespace, ALIAS is set to a
54 string representing the alias. Otherwise, ALIAS is NULL.
55 DECLARATION is the name of the imported declaration, if this import
56 statement represents one. Otherwise DECLARATION is NULL and this
57 import statement represents a namespace.
1ac77ea1
JK
58
59 C++: using namespace A;
60 Fortran: use A
61 import_src = "A"
62 import_dest = local scope of the import statement even such as ""
63 alias = NULL
64 declaration = NULL
32019081 65 excludes = NULL
1ac77ea1
JK
66
67 C++: using A::x;
68 Fortran: use A, only: x
69 import_src = "A"
70 import_dest = local scope of the import statement even such as ""
71 alias = NULL
72 declaration = "x"
32019081 73 excludes = NULL
1ac77ea1
JK
74 The declaration will get imported as import_dest::x.
75
32019081
JK
76 C++ has no way to import all names except those listed ones.
77 Fortran: use A, localname => x
78 import_src = "A"
79 import_dest = local scope of the import statement even such as ""
80 alias = "localname"
81 declaration = "x"
82 excludes = NULL
83 +
84 import_src = "A"
85 import_dest = local scope of the import statement even such as ""
86 alias = NULL
87 declaration = NULL
88 excludes = ["x"]
89 All the entries of A get imported except of "x". "x" gets imported as
90 "localname". "x" is not defined as a local name by this statement.
91
1ac77ea1
JK
92 C++: namespace LOCALNS = A;
93 Fortran has no way to address non-local namespace/module.
94 import_src = "A"
95 import_dest = local scope of the import statement even such as ""
96 alias = "LOCALNS"
97 declaration = NULL
32019081 98 excludes = NULL
aff410f1
MS
99 The namespace will get imported as the import_dest::LOCALNS
100 namespace.
1ac77ea1 101
aff410f1
MS
102 C++ cannot express it, it would be something like: using localname
103 = A::x;
1ac77ea1
JK
104 Fortran: use A, only localname => x
105 import_src = "A"
106 import_dest = local scope of the import statement even such as ""
107 alias = "localname"
108 declaration = "x"
32019081 109 excludes = NULL
aff410f1
MS
110 The declaration will get imported as localname or
111 `import_dest`localname. */
9219021c
DC
112
113struct using_direct
114{
8c902bb1
SW
115 char *import_src;
116 char *import_dest;
82856980
SW
117
118 char *alias;
13387711 119 char *declaration;
82856980 120
9219021c 121 struct using_direct *next;
b14e635e 122
aff410f1
MS
123 /* Used during import search to temporarily mark this node as
124 searched. */
b14e635e 125 int searched;
32019081
JK
126
127 /* USING_DIRECT has variable allocation size according to the number of
128 EXCLUDES entries, the last entry is NULL. */
129 const char *excludes[1];
9219021c
DC
130};
131
132
133/* Functions from cp-support.c. */
134
fb4c6eba
DJ
135extern char *cp_canonicalize_string (const char *string);
136
31c27f77 137extern char *cp_class_name_from_physname (const char *physname);
de17c821
DJ
138
139extern char *method_name_from_physname (const char *physname);
9219021c
DC
140
141extern unsigned int cp_find_first_component (const char *name);
142
143extern unsigned int cp_entire_prefix_len (const char *name);
144
8d577d32
DC
145extern char *cp_func_name (const char *full_name);
146
3567439c
DJ
147extern char *cp_remove_params (const char *demangled_name);
148
8d577d32
DC
149extern struct symbol **make_symbol_overload_list (const char *,
150 const char *);
9219021c 151
7322dca9
SW
152extern struct symbol **make_symbol_overload_list_adl (struct type **arg_types,
153 int nargs,
154 const char *func_name);
155
362ff856
MC
156extern struct type *cp_lookup_rtti_type (const char *name,
157 struct block *block);
158
12907978
KS
159extern int cp_validate_operator (const char *input);
160
9219021c
DC
161/* Functions/variables from cp-namespace.c. */
162
9219021c
DC
163extern int cp_is_anonymous (const char *namespace);
164
32019081
JK
165DEF_VEC_P (const_char_ptr);
166
8c902bb1 167extern void cp_add_using_directive (const char *dest,
82856980 168 const char *src,
c0cc3a76 169 const char *alias,
13387711 170 const char *declaration,
32019081 171 VEC (const_char_ptr) *excludes,
c0cc3a76 172 struct obstack *obstack);
27aa8d6a 173
b9362cc7 174extern void cp_initialize_namespace (void);
9219021c
DC
175
176extern void cp_finalize_namespace (struct block *static_block,
177 struct obstack *obstack);
178
179extern void cp_set_block_scope (const struct symbol *symbol,
180 struct block *block,
df8a16a1
DJ
181 struct obstack *obstack,
182 const char *processing_current_prefix,
183 int processing_has_namespace_info);
9219021c
DC
184
185extern void cp_scan_for_anonymous_namespaces (const struct symbol *symbol);
186
1fcb5155 187extern struct symbol *cp_lookup_symbol_nonlocal (const char *name,
1fcb5155 188 const struct block *block,
21b556f4 189 const domain_enum domain);
1fcb5155
DC
190
191extern struct symbol *cp_lookup_symbol_namespace (const char *namespace,
192 const char *name,
1fcb5155 193 const struct block *block,
13387711
SW
194 const domain_enum domain);
195
196extern struct symbol *cp_lookup_symbol_imports (const char *scope,
197 const char *name,
198 const struct block *block,
199 const domain_enum domain,
200 const int declaration_only,
201 const int search_parents);
1fcb5155 202
34eaf542
TT
203extern struct symbol *cp_lookup_symbol_imports_or_template
204 (const char *scope,
205 const char *name,
206 const struct block *block,
207 const domain_enum domain);
208
79c2c32d
DC
209extern struct type *cp_lookup_nested_type (struct type *parent_type,
210 const char *nested_name,
211 const struct block *block);
212
b368761e
DC
213struct type *cp_lookup_transparent_type (const char *name);
214
f88e9fd3 215/* Functions from cp-name-parser.y. */
fb4c6eba
DJ
216
217extern struct demangle_component *cp_demangled_name_to_comp
f88e9fd3 218 (const char *demangled_name, const char **errmsg);
fb4c6eba
DJ
219
220extern char *cp_comp_to_string (struct demangle_component *result,
221 int estimated_len);
222
5c4e30ca
DC
223/* The list of "maint cplus" commands. */
224
225extern struct cmd_list_element *maint_cplus_cmd_list;
226
9219021c 227#endif /* CP_SUPPORT_H */
This page took 0.60391 seconds and 4 git commands to generate.