]>
Commit | Line | Data |
---|---|---|
de17c821 | 1 | /* Helper routines for C++ support in GDB. |
42a4f53d | 2 | Copyright (C) 2002-2019 Free Software Foundation, Inc. |
de17c821 DJ |
3 | |
4 | Contributed by MontaVista Software. | |
9219021c | 5 | Namespace support contributed by David Carlton. |
de17c821 DJ |
6 | |
7 | This file is part of GDB. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 11 | the Free Software Foundation; either version 3 of the License, or |
de17c821 DJ |
12 | (at your option) any later version. |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
de17c821 | 21 | |
9219021c DC |
22 | #ifndef CP_SUPPORT_H |
23 | #define CP_SUPPORT_H | |
24 | ||
1fcb5155 DC |
25 | /* We need this for 'domain_enum', alas... */ |
26 | ||
27 | #include "symtab.h" | |
0747795c TT |
28 | #include "common/vec.h" |
29 | #include "common/gdb_vecs.h" | |
3a93a0c2 | 30 | #include "gdb_obstack.h" |
0891c3cc PA |
31 | #include "common/array-view.h" |
32 | #include <vector> | |
32019081 | 33 | |
9219021c DC |
34 | /* Opaque declarations. */ |
35 | ||
b59661bd | 36 | struct symbol; |
9219021c | 37 | struct block; |
80e649fc | 38 | struct buildsym_compunit; |
4a4b3fed | 39 | struct objfile; |
362ff856 | 40 | struct type; |
fb4c6eba | 41 | struct demangle_component; |
22cee43f | 42 | struct using_direct; |
9219021c | 43 | |
2b1dbab0 KS |
44 | /* A string representing the name of the anonymous namespace used in GDB. */ |
45 | ||
46 | #define CP_ANONYMOUS_NAMESPACE_STR "(anonymous namespace)" | |
47 | ||
48 | /* The length of the string representing the anonymous namespace. */ | |
49 | ||
50 | #define CP_ANONYMOUS_NAMESPACE_LEN 21 | |
51 | ||
8090b426 PA |
52 | /* A string representing the start of an operator name. */ |
53 | ||
54 | #define CP_OPERATOR_STR "operator" | |
55 | ||
56 | /* The length of CP_OPERATOR_STR. */ | |
57 | ||
58 | #define CP_OPERATOR_LEN 8 | |
59 | ||
3a93a0c2 KS |
60 | /* The result of parsing a name. */ |
61 | ||
62 | struct demangle_parse_info | |
63 | { | |
c8b23b3f TT |
64 | demangle_parse_info (); |
65 | ||
66 | ~demangle_parse_info (); | |
67 | ||
3a93a0c2 KS |
68 | /* The memory used during the parse. */ |
69 | struct demangle_info *info; | |
70 | ||
71 | /* The result of the parse. */ | |
72 | struct demangle_component *tree; | |
73 | ||
74 | /* Any temporary memory used during typedef replacement. */ | |
75 | struct obstack obstack; | |
76 | }; | |
77 | ||
9219021c DC |
78 | |
79 | /* Functions from cp-support.c. */ | |
80 | ||
2f408ecb | 81 | extern std::string cp_canonicalize_string (const char *string); |
fb4c6eba | 82 | |
2f408ecb | 83 | extern std::string cp_canonicalize_string_no_typedefs (const char *string); |
3a93a0c2 | 84 | |
2621e0fd TT |
85 | typedef const char *(canonicalization_ftype) (struct type *, void *); |
86 | ||
2f408ecb PA |
87 | extern std::string cp_canonicalize_string_full (const char *string, |
88 | canonicalization_ftype *finder, | |
89 | void *data); | |
2621e0fd | 90 | |
31c27f77 | 91 | extern char *cp_class_name_from_physname (const char *physname); |
de17c821 DJ |
92 | |
93 | extern char *method_name_from_physname (const char *physname); | |
9219021c DC |
94 | |
95 | extern unsigned int cp_find_first_component (const char *name); | |
96 | ||
97 | extern unsigned int cp_entire_prefix_len (const char *name); | |
98 | ||
06d3e5b0 | 99 | extern gdb::unique_xmalloc_ptr<char> cp_func_name (const char *full_name); |
8d577d32 | 100 | |
109483d9 PA |
101 | extern gdb::unique_xmalloc_ptr<char> cp_remove_params |
102 | (const char *demanged_name); | |
3567439c | 103 | |
c62446b1 PA |
104 | /* DEMANGLED_NAME is the name of a function, (optionally) including |
105 | parameters and (optionally) a return type. Return the name of the | |
106 | function without parameters or return type, or NULL if we can not | |
107 | parse the name. If COMPLETION_MODE is true, then tolerate a | |
108 | non-existing or unbalanced parameter list. */ | |
109 | extern gdb::unique_xmalloc_ptr<char> cp_remove_params_if_any | |
110 | (const char *demangled_name, bool completion_mode); | |
111 | ||
0891c3cc PA |
112 | extern std::vector<symbol *> make_symbol_overload_list (const char *, |
113 | const char *); | |
9219021c | 114 | |
0891c3cc PA |
115 | extern void add_symbol_overload_list_adl |
116 | (gdb::array_view<type *> arg_types, | |
117 | const char *func_name, | |
118 | std::vector<symbol *> *overload_list); | |
7322dca9 | 119 | |
362ff856 | 120 | extern struct type *cp_lookup_rtti_type (const char *name, |
582942f4 | 121 | const struct block *block); |
362ff856 | 122 | |
a20714ff PA |
123 | /* Produce an unsigned hash value from SEARCH_NAME that is compatible |
124 | with cp_symbol_name_matches. Only the last component in | |
125 | "foo::bar::function()" is considered for hashing purposes (i.e., | |
126 | the entire prefix is skipped), so that later on looking up for | |
127 | "function" or "bar::function" in all namespaces is possible. */ | |
128 | extern unsigned int cp_search_name_hash (const char *search_name); | |
129 | ||
b5ec771e PA |
130 | /* Implement the "la_get_symbol_name_matcher" language_defn method for |
131 | C++. */ | |
132 | extern symbol_name_matcher_ftype *cp_get_symbol_name_matcher | |
133 | (const lookup_name_info &lookup_name); | |
134 | ||
9219021c DC |
135 | /* Functions/variables from cp-namespace.c. */ |
136 | ||
59da4d04 | 137 | extern int cp_is_in_anonymous (const char *symbol_name); |
9219021c | 138 | |
80e649fc TT |
139 | extern void cp_scan_for_anonymous_namespaces (struct buildsym_compunit *, |
140 | const struct symbol *symbol, | |
a10964d1 | 141 | struct objfile *objfile); |
9219021c | 142 | |
d12307c1 | 143 | extern struct block_symbol cp_lookup_symbol_nonlocal |
f606139a DE |
144 | (const struct language_defn *langdef, |
145 | const char *name, | |
146 | const struct block *block, | |
147 | const domain_enum domain); | |
1fcb5155 | 148 | |
d12307c1 PMR |
149 | extern struct block_symbol |
150 | cp_lookup_symbol_namespace (const char *the_namespace, | |
151 | const char *name, | |
152 | const struct block *block, | |
153 | const domain_enum domain); | |
13387711 | 154 | |
d12307c1 | 155 | extern struct block_symbol cp_lookup_symbol_imports_or_template |
34eaf542 TT |
156 | (const char *scope, |
157 | const char *name, | |
158 | const struct block *block, | |
159 | const domain_enum domain); | |
160 | ||
d12307c1 PMR |
161 | extern struct block_symbol |
162 | cp_lookup_nested_symbol (struct type *parent_type, | |
163 | const char *nested_name, | |
164 | const struct block *block, | |
165 | const domain_enum domain); | |
79c2c32d | 166 | |
b368761e DC |
167 | struct type *cp_lookup_transparent_type (const char *name); |
168 | ||
f7e3ecae KS |
169 | /* See description in cp-namespace.c. */ |
170 | ||
a07e3e18 DE |
171 | struct type *cp_find_type_baseclass_by_name (struct type *parent_type, |
172 | const char *name); | |
f7e3ecae | 173 | |
f88e9fd3 | 174 | /* Functions from cp-name-parser.y. */ |
fb4c6eba | 175 | |
c8b23b3f | 176 | extern std::unique_ptr<demangle_parse_info> cp_demangled_name_to_comp |
3513a6bb | 177 | (const char *demangled_name, std::string *errmsg); |
fb4c6eba | 178 | |
29592bde PA |
179 | extern gdb::unique_xmalloc_ptr<char> cp_comp_to_string |
180 | (struct demangle_component *result, int estimated_len); | |
fb4c6eba | 181 | |
3a93a0c2 KS |
182 | extern void cp_merge_demangle_parse_infos (struct demangle_parse_info *, |
183 | struct demangle_component *, | |
184 | struct demangle_parse_info *); | |
185 | ||
5c4e30ca DC |
186 | /* The list of "maint cplus" commands. */ |
187 | ||
188 | extern struct cmd_list_element *maint_cplus_cmd_list; | |
189 | ||
8de20a37 TT |
190 | /* A wrapper for bfd_demangle. */ |
191 | ||
192 | char *gdb_demangle (const char *name, int options); | |
193 | ||
8b302db8 TT |
194 | /* Like gdb_demangle, but suitable for use as la_sniff_from_mangled_name. */ |
195 | ||
196 | int gdb_sniff_from_mangled_name (const char *mangled, char **demangled); | |
197 | ||
9219021c | 198 | #endif /* CP_SUPPORT_H */ |