1 /* Header file for GDB compile C++ language support.
2 Copyright (C) 2016-2025 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 #ifndef GDB_COMPILE_COMPILE_CPLUS_H
18 #define GDB_COMPILE_COMPILE_CPLUS_H
20 #include "compile/compile.h"
21 #include "gdbsupport/enum-flags.h"
22 #include "gcc-cp-plugin.h"
28 /* enum-flags wrapper */
29 DEF_ENUM_FLAGS_TYPE (enum gcc_cp_qualifiers
, gcc_cp_qualifiers_flags
);
30 DEF_ENUM_FLAGS_TYPE (enum gcc_cp_ref_qualifiers
, gcc_cp_ref_qualifiers_flags
);
31 DEF_ENUM_FLAGS_TYPE (enum gcc_cp_symbol_kind
, gcc_cp_symbol_kind_flags
);
33 class compile_cplus_instance
;
35 /* A single component of a type's scope. Type names are broken into
36 "components," a series of unqualified names comprising the type name,
37 e.g., "namespace1", "namespace2", "myclass". */
39 struct scope_component
41 /* The unqualified name of this scope. */
44 /* The block symbol for this type/scope. */
45 struct block_symbol bsymbol
;
48 /* Comparison operators for scope_components. */
50 bool operator== (const scope_component
&lhs
, const scope_component
&rhs
);
51 bool operator!= (const scope_component
&lhs
, const scope_component
&rhs
);
54 /* A single compiler scope used to define a type.
56 A compile_scope is a list of scope_components, where all leading
57 scope_components are namespaces, followed by a single non-namespace
58 type component (the actual type we are converting). */
60 class compile_scope
: private std::vector
<scope_component
>
64 using std::vector
<scope_component
>::push_back
;
65 using std::vector
<scope_component
>::pop_back
;
66 using std::vector
<scope_component
>::back
;
67 using std::vector
<scope_component
>::empty
;
68 using std::vector
<scope_component
>::size
;
69 using std::vector
<scope_component
>::begin
;
70 using std::vector
<scope_component
>::end
;
71 using std::vector
<scope_component
>::operator[];
74 : m_nested_type (GCC_TYPE_NONE
), m_pushed (false)
78 /* Return the gcc_type of the type if it is a nested definition.
79 Returns GCC_TYPE_NONE if this type was not nested. */
80 gcc_type
nested_type ()
87 /* compile_cplus_instance is a friend class so that it can set the
88 following private members when compile_scopes are created. */
89 friend compile_cplus_instance
;
91 /* If the type was actually a nested type, this will hold that nested
92 type after the scope is pushed. */
93 gcc_type m_nested_type
;
95 /* If true, this scope was pushed to the compiler and all namespaces
96 must be popped when leaving the scope. */
100 /* Comparison operators for compile_scopes. */
102 bool operator== (const compile_scope
&lhs
, const compile_scope
&rhs
);
103 bool operator!= (const compile_scope
&lhs
, const compile_scope
&rhs
);
105 /* Convert TYPENAME into a vector of namespace and top-most/super
108 For example, for the input "Namespace::classB::classInner", the
109 resultant vector will contain the tokens "Namespace" and
112 compile_scope
type_name_to_scope (const char *type_name
,
113 const struct block
*block
);
115 /* A callback suitable for use as the GCC C++ symbol oracle. */
117 extern gcc_cp_oracle_function gcc_cplus_convert_symbol
;
119 /* A callback suitable for use as the GCC C++ address oracle. */
121 extern gcc_cp_symbol_address_function gcc_cplus_symbol_address
;
123 /* A subclass of compile_instance that is specific to the C++ front
126 class compile_cplus_instance
: public compile_instance
130 explicit compile_cplus_instance (struct gcc_cp_context
*gcc_cp
)
131 : compile_instance (&gcc_cp
->base
, m_default_cflags
),
134 m_plugin
.set_callbacks (gcc_cplus_convert_symbol
,
135 gcc_cplus_symbol_address
,
136 gcc_cplus_enter_scope
, gcc_cplus_leave_scope
,
140 /* Convert a gdb type, TYPE, to a GCC type.
142 If this type was defined in another type, NESTED_ACCESS should indicate
143 the accessibility of this type (or GCC_CP_ACCESS_NONE if not a nested
144 type). GCC_CP_ACCESS_NONE is the default nested access.
146 The new GCC type is returned. */
147 gcc_type convert_type
149 enum gcc_cp_symbol_kind nested_access
= GCC_CP_ACCESS_NONE
);
151 /* Return a handle for the GCC plug-in. */
152 gcc_cp_plugin
&plugin () { return m_plugin
; }
154 /* Factory method to create a new scope based on TYPE with name TYPE_NAME.
155 [TYPE_NAME could be TYPE_NAME or SYMBOL_NATURAL_NAME.]
157 If TYPE is a nested or local definition, nested_type () will return
158 the gcc_type of the conversion.
160 Otherwise, nested_type () is GCC_TYPE_NONE. */
161 compile_scope
new_scope (const char *type_name
, struct type
*type
);
163 /* Enter the given NEW_SCOPE. */
164 void enter_scope (compile_scope
&&scope
);
166 /* Leave the current scope. */
169 /* Add the qualifiers given by QUALS to BASE. */
170 gcc_type
convert_qualified_base (gcc_type base
,
171 gcc_cp_qualifiers_flags quals
);
173 /* Convert TARGET into a pointer type. */
174 gcc_type
convert_pointer_base (gcc_type target
);
176 /* Convert BASE into a reference type. RQUALS describes the reference. */
177 gcc_type
convert_reference_base (gcc_type base
,
178 enum gcc_cp_ref_qualifiers rquals
);
180 /* Return the declaration name of the symbol named NATURAL.
181 This returns a name with no function arguments or template parameters,
182 suitable for passing to the compiler plug-in. */
183 static gdb::unique_xmalloc_ptr
<char> decl_name (const char *natural
);
187 /* Callbacks suitable for use as the GCC C++ enter/leave scope requests. */
188 static gcc_cp_enter_leave_user_expr_scope_function gcc_cplus_enter_scope
;
189 static gcc_cp_enter_leave_user_expr_scope_function gcc_cplus_leave_scope
;
191 /* Default compiler flags for C++. */
192 static const char *m_default_cflags
;
194 /* The GCC plug-in. */
195 gcc_cp_plugin m_plugin
;
197 /* A list of scopes we are processing. */
198 std::vector
<compile_scope
> m_scopes
;
201 /* Get the access flag for the NUM'th method of TYPE's FNI'th
204 enum gcc_cp_symbol_kind
get_method_access_flag (const struct type
*type
,
207 #endif /* GDB_COMPILE_COMPILE_CPLUS_H */