HAMMER: MFC to 2.0
[dragonfly.git] / contrib / gdb-6.2.1 / gdb / cp-support.h
blob569aeacb7d214c87f64ab64385d4ddef918d010c
1 /* Helper routines for C++ support in GDB.
2 Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
4 Contributed by MontaVista Software.
5 Namespace support contributed by David Carlton.
7 This file is part of GDB.
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
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 #ifndef CP_SUPPORT_H
25 #define CP_SUPPORT_H
27 /* We need this for 'domain_enum', alas... */
29 #include "symtab.h"
31 /* Opaque declarations. */
33 struct symbol;
34 struct obstack;
35 struct block;
36 struct objfile;
37 struct type;
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_class_name_from_physname (const char *physname);
57 extern char *method_name_from_physname (const char *physname);
59 extern unsigned int cp_find_first_component (const char *name);
61 extern unsigned int cp_entire_prefix_len (const char *name);
63 extern char *cp_func_name (const char *full_name);
65 extern struct symbol **make_symbol_overload_list (const char *,
66 const char *);
68 extern struct type *cp_lookup_rtti_type (const char *name,
69 struct block *block);
71 /* Functions/variables from cp-namespace.c. */
73 extern unsigned char processing_has_namespace_info;
75 extern const char *processing_current_prefix;
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);
92 extern void cp_scan_for_anonymous_namespaces (const struct symbol *symbol);
94 extern struct symbol *cp_lookup_symbol_nonlocal (const char *name,
95 const char *linkage_name,
96 const struct block *block,
97 const domain_enum domain,
98 struct symtab **symtab);
100 extern struct symbol *cp_lookup_symbol_namespace (const char *namespace,
101 const char *name,
102 const char *linkage_name,
103 const struct block *block,
104 const domain_enum domain,
105 struct symtab **symtab);
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 /* The list of "maint cplus" commands. */
118 extern struct cmd_list_element *maint_cplus_cmd_list;
120 #endif /* CP_SUPPORT_H */