1 /* Internal demangler interface for g++ V3 ABI.
2 Copyright (C) 2003-2024 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@wasabisystems.com>.
5 This file is part of the libiberty library, which is part of GCC.
7 This file is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combined
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
31 /* This file provides some definitions shared by cp-demangle.c and
32 cp-demint.c. It should not be included by any other files. */
34 /* Information we keep for operators. */
36 struct demangle_operator_info
42 /* Length of real name. */
44 /* Number of arguments. */
48 /* How to print the value of a builtin type. */
50 enum d_builtin_type_print
52 /* Print as (type)val. */
54 /* Print as integer. */
56 /* Print as unsigned integer, with trailing "u". */
58 /* Print as long, with trailing "l". */
60 /* Print as unsigned long, with trailing "ul". */
61 D_PRINT_UNSIGNED_LONG
,
62 /* Print as long long, with trailing "ll". */
64 /* Print as unsigned long long, with trailing "ull". */
65 D_PRINT_UNSIGNED_LONG_LONG
,
68 /* Print as float--put value in square brackets. */
70 /* Print in usual way, but here to detect void. */
74 /* Information we keep for a builtin type. */
76 struct demangle_builtin_type_info
80 /* Length of type name. */
82 /* Type name when using Java. */
83 const char *java_name
;
84 /* Length of java name. */
86 /* How to print a value of this type. */
87 enum d_builtin_type_print print
;
90 /* The information structure we pass around. */
94 /* The string we are demangling. */
96 /* The end of the string we are demangling. */
98 /* The options passed to the demangler. */
100 /* The next character in the string to consider. */
102 /* The array of components. */
103 struct demangle_component
*comps
;
104 /* The index of the next available component. */
106 /* The number of available component structures. */
108 /* The array of substitutions. */
109 struct demangle_component
**subs
;
110 /* The index of the next substitution. */
112 /* The number of available entries in the subs array. */
114 /* The last name we saw, for constructors and destructors. */
115 struct demangle_component
*last_name
;
116 /* A running total of the length of large expansions from the
117 mangled name to the demangled name, such as standard
118 substitutions and builtin types. */
120 /* Non-zero if we are parsing an expression. */
122 /* Non-zero if we are parsing the type operand of a conversion
123 operator, but not when in an expression. */
125 /* 1: using new unresolved-name grammar.
126 -1: using new unresolved-name grammar and saw an unresolved-name.
127 0: using old unresolved-name grammar. */
128 int unresolved_name_state
;
129 /* If DMGL_NO_RECURSE_LIMIT is not active then this is set to
130 the current recursion level. */
131 unsigned int recursion_level
;
134 /* To avoid running past the ending '\0', don't:
135 - call d_peek_next_char if d_peek_char returned '\0'
136 - call d_advance with an 'i' that is too large
137 - call d_check_char(di, '\0')
138 Everything else is safe. */
139 #define d_peek_char(di) (*((di)->n))
140 #ifndef CHECK_DEMANGLER
141 # define d_peek_next_char(di) ((di)->n[1])
142 # define d_advance(di, i) ((di)->n += (i))
144 #define d_check_char(di, c) (d_peek_char(di) == c ? ((di)->n++, 1) : 0)
145 #define d_next_char(di) (d_peek_char(di) == '\0' ? '\0' : *((di)->n++))
146 #define d_str(di) ((di)->n)
148 #ifdef CHECK_DEMANGLER
150 d_peek_next_char (const struct d_info
*di
)
158 d_advance (struct d_info
*di
, int i
)
171 /* Functions and arrays in cp-demangle.c which are referenced by
172 functions in cp-demint.c. */
174 #define CP_STATIC_IF_GLIBCPP_V3 static
176 #define CP_STATIC_IF_GLIBCPP_V3 extern
179 #ifndef IN_GLIBCPP_V3
180 extern const struct demangle_operator_info cplus_demangle_operators
[];
183 #define D_BUILTIN_TYPE_COUNT (36)
185 CP_STATIC_IF_GLIBCPP_V3
186 const struct demangle_builtin_type_info
187 cplus_demangle_builtin_types
[D_BUILTIN_TYPE_COUNT
];
189 CP_STATIC_IF_GLIBCPP_V3
190 struct demangle_component
*
191 cplus_demangle_mangled_name (struct d_info
*, int);
193 CP_STATIC_IF_GLIBCPP_V3
194 struct demangle_component
*
195 cplus_demangle_type (struct d_info
*);
198 cplus_demangle_init_info (const char *, int, size_t, struct d_info
*);
200 /* cp-demangle.c needs to define this a little differently */
201 #undef CP_STATIC_IF_GLIBCPP_V3