* m32c/gdb-if.c (m32c_signal_to_host): Rename to
[gdb/SamB.git] / gdb / cp-support.h
blob837ca6c55a3bf43bcb09133bfa10da5eeb123815
1 /* Helper routines for C++ support in GDB.
2 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009
3 Free Software Foundation, Inc.
5 Contributed by MontaVista Software.
6 Namespace support contributed by David Carlton.
8 This file is part of GDB.
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
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
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.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #ifndef CP_SUPPORT_H
24 #define CP_SUPPORT_H
26 /* We need this for 'domain_enum', alas... */
28 #include "symtab.h"
30 /* Opaque declarations. */
32 struct symbol;
33 struct obstack;
34 struct block;
35 struct objfile;
36 struct type;
37 struct demangle_component;
39 /* This struct is designed to store data from using directives. It
40 says that names from namespace INNER should be visible within
41 namespace OUTER. OUTER should always be a strict initial substring
42 of INNER. These form a linked list; NEXT is the next element of
43 the list. */
45 struct using_direct
47 char *inner;
48 char *outer;
49 struct using_direct *next;
53 /* Functions from cp-support.c. */
55 extern char *cp_canonicalize_string (const char *string);
57 extern char *cp_class_name_from_physname (const char *physname);
59 extern char *method_name_from_physname (const char *physname);
61 extern unsigned int cp_find_first_component (const char *name);
63 extern unsigned int cp_entire_prefix_len (const char *name);
65 extern char *cp_func_name (const char *full_name);
67 extern char *cp_remove_params (const char *demangled_name);
69 extern struct symbol **make_symbol_overload_list (const char *,
70 const char *);
72 extern struct type *cp_lookup_rtti_type (const char *name,
73 struct block *block);
75 /* Functions/variables from cp-namespace.c. */
77 extern int cp_is_anonymous (const char *namespace);
79 extern void cp_add_using_directive (const char *name,
80 unsigned int outer_length,
81 unsigned int inner_length);
83 extern void cp_initialize_namespace (void);
85 extern void cp_finalize_namespace (struct block *static_block,
86 struct obstack *obstack);
88 extern void cp_set_block_scope (const struct symbol *symbol,
89 struct block *block,
90 struct obstack *obstack,
91 const char *processing_current_prefix,
92 int processing_has_namespace_info);
94 extern void cp_scan_for_anonymous_namespaces (const struct symbol *symbol);
96 extern struct symbol *cp_lookup_symbol_nonlocal (const char *name,
97 const char *linkage_name,
98 const struct block *block,
99 const domain_enum domain);
101 extern struct symbol *cp_lookup_symbol_namespace (const char *namespace,
102 const char *name,
103 const char *linkage_name,
104 const struct block *block,
105 const domain_enum domain);
107 extern struct type *cp_lookup_nested_type (struct type *parent_type,
108 const char *nested_name,
109 const struct block *block);
111 extern void cp_check_possible_namespace_symbols (const char *name,
112 struct objfile *objfile);
114 struct type *cp_lookup_transparent_type (const char *name);
116 /* Functions from cp-name-parser.y. */
118 extern struct demangle_component *cp_demangled_name_to_comp
119 (const char *demangled_name, const char **errmsg);
121 extern char *cp_comp_to_string (struct demangle_component *result,
122 int estimated_len);
124 /* The list of "maint cplus" commands. */
126 extern struct cmd_list_element *maint_cplus_cmd_list;
128 #endif /* CP_SUPPORT_H */