gdb/
[deliverable/binutils-gdb.git] / gdb / cp-support.h
CommitLineData
de17c821 1/* Helper routines for C++ support in GDB.
4c38e0a4 2 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
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
9219021c
DC
30/* Opaque declarations. */
31
b59661bd 32struct symbol;
9219021c
DC
33struct obstack;
34struct block;
4a4b3fed 35struct objfile;
362ff856 36struct type;
fb4c6eba 37struct demangle_component;
9219021c
DC
38
39/* This struct is designed to store data from using directives. It
1ac77ea1
JK
40 says that names from namespace IMPORT_SRC should be visible within namespace
41 IMPORT_DEST. These form a linked list; NEXT is the next element of the
42 list. If the imported namespace or declaration has been aliased within the
43 IMPORT_DEST namespace, ALIAS is set to a string representing the alias.
44 Otherwise, ALIAS is NULL. DECLARATION is the name of the imported
45 declaration, if this import statement represents one. Otherwise DECLARATION
46 is NULL and this import statement represents a namespace.
47
48 C++: using namespace A;
49 Fortran: use A
50 import_src = "A"
51 import_dest = local scope of the import statement even such as ""
52 alias = NULL
53 declaration = NULL
54
55 C++: using A::x;
56 Fortran: use A, only: x
57 import_src = "A"
58 import_dest = local scope of the import statement even such as ""
59 alias = NULL
60 declaration = "x"
61 The declaration will get imported as import_dest::x.
62
63 C++: namespace LOCALNS = A;
64 Fortran has no way to address non-local namespace/module.
65 import_src = "A"
66 import_dest = local scope of the import statement even such as ""
67 alias = "LOCALNS"
68 declaration = NULL
69 The namespace will get imported as the import_dest::LOCALNS namespace.
70
71 C++ cannot express it, it would be something like: using localname = A::x;
72 Fortran: use A, only localname => x
73 import_src = "A"
74 import_dest = local scope of the import statement even such as ""
75 alias = "localname"
76 declaration = "x"
77 The declaration will get imported as localname or `import_dest`localname. */
9219021c
DC
78
79struct using_direct
80{
8c902bb1
SW
81 char *import_src;
82 char *import_dest;
82856980
SW
83
84 char *alias;
13387711 85 char *declaration;
82856980 86
9219021c 87 struct using_direct *next;
b14e635e
SW
88
89 /* Used during import search to temporarily mark this node as searched. */
90 int searched;
9219021c
DC
91};
92
93
94/* Functions from cp-support.c. */
95
fb4c6eba
DJ
96extern char *cp_canonicalize_string (const char *string);
97
31c27f77 98extern char *cp_class_name_from_physname (const char *physname);
de17c821
DJ
99
100extern char *method_name_from_physname (const char *physname);
9219021c
DC
101
102extern unsigned int cp_find_first_component (const char *name);
103
104extern unsigned int cp_entire_prefix_len (const char *name);
105
8d577d32
DC
106extern char *cp_func_name (const char *full_name);
107
3567439c
DJ
108extern char *cp_remove_params (const char *demangled_name);
109
8d577d32
DC
110extern struct symbol **make_symbol_overload_list (const char *,
111 const char *);
9219021c 112
362ff856
MC
113extern struct type *cp_lookup_rtti_type (const char *name,
114 struct block *block);
115
12907978
KS
116extern int cp_validate_operator (const char *input);
117
9219021c
DC
118/* Functions/variables from cp-namespace.c. */
119
9219021c
DC
120extern int cp_is_anonymous (const char *namespace);
121
8c902bb1 122extern void cp_add_using_directive (const char *dest,
82856980 123 const char *src,
c0cc3a76 124 const char *alias,
13387711 125 const char *declaration,
c0cc3a76 126 struct obstack *obstack);
27aa8d6a 127
b9362cc7 128extern void cp_initialize_namespace (void);
9219021c
DC
129
130extern void cp_finalize_namespace (struct block *static_block,
131 struct obstack *obstack);
132
133extern void cp_set_block_scope (const struct symbol *symbol,
134 struct block *block,
df8a16a1
DJ
135 struct obstack *obstack,
136 const char *processing_current_prefix,
137 int processing_has_namespace_info);
9219021c
DC
138
139extern void cp_scan_for_anonymous_namespaces (const struct symbol *symbol);
140
1fcb5155 141extern struct symbol *cp_lookup_symbol_nonlocal (const char *name,
1fcb5155 142 const struct block *block,
21b556f4 143 const domain_enum domain);
1fcb5155
DC
144
145extern struct symbol *cp_lookup_symbol_namespace (const char *namespace,
146 const char *name,
1fcb5155 147 const struct block *block,
13387711
SW
148 const domain_enum domain);
149
150extern struct symbol *cp_lookup_symbol_imports (const char *scope,
151 const char *name,
152 const struct block *block,
153 const domain_enum domain,
154 const int declaration_only,
155 const int search_parents);
1fcb5155 156
79c2c32d
DC
157extern struct type *cp_lookup_nested_type (struct type *parent_type,
158 const char *nested_name,
159 const struct block *block);
160
5c4e30ca
DC
161extern void cp_check_possible_namespace_symbols (const char *name,
162 struct objfile *objfile);
163
b368761e
DC
164struct type *cp_lookup_transparent_type (const char *name);
165
f88e9fd3 166/* Functions from cp-name-parser.y. */
fb4c6eba
DJ
167
168extern struct demangle_component *cp_demangled_name_to_comp
f88e9fd3 169 (const char *demangled_name, const char **errmsg);
fb4c6eba
DJ
170
171extern char *cp_comp_to_string (struct demangle_component *result,
172 int estimated_len);
173
5c4e30ca
DC
174/* The list of "maint cplus" commands. */
175
176extern struct cmd_list_element *maint_cplus_cmd_list;
177
9219021c 178#endif /* CP_SUPPORT_H */
This page took 0.547658 seconds and 4 git commands to generate.