]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/cp-demangle.h
libstdc++: Fix whitespace in ChangeLog-2019
[thirdparty/gcc.git] / libiberty / cp-demangle.h
CommitLineData
5e777af5 1/* Internal demangler interface for g++ V3 ABI.
8d9254fc 2 Copyright (C) 2003-2020 Free Software Foundation, Inc.
5e777af5
ILT
3 Written by Ian Lance Taylor <ian@wasabisystems.com>.
4
5 This file is part of the libiberty library, which is part of GCC.
6
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.
11
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
19 executable.)
20
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.
25
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
ee58dffd 28 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
5e777af5
ILT
29*/
30
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. */
33
34/* Information we keep for operators. */
35
36struct demangle_operator_info
37{
38 /* Mangled name. */
39 const char *code;
40 /* Real name. */
41 const char *name;
42 /* Length of real name. */
43 int len;
44 /* Number of arguments. */
45 int args;
46};
47
48/* How to print the value of a builtin type. */
49
50enum d_builtin_type_print
51{
52 /* Print as (type)val. */
53 D_PRINT_DEFAULT,
54 /* Print as integer. */
55 D_PRINT_INT,
31058ee3
ILT
56 /* Print as unsigned integer, with trailing "u". */
57 D_PRINT_UNSIGNED,
58 /* Print as long, with trailing "l". */
5e777af5 59 D_PRINT_LONG,
31058ee3
ILT
60 /* Print as unsigned long, with trailing "ul". */
61 D_PRINT_UNSIGNED_LONG,
62 /* Print as long long, with trailing "ll". */
63 D_PRINT_LONG_LONG,
64 /* Print as unsigned long long, with trailing "ull". */
65 D_PRINT_UNSIGNED_LONG_LONG,
5e777af5
ILT
66 /* Print as bool. */
67 D_PRINT_BOOL,
31058ee3
ILT
68 /* Print as float--put value in square brackets. */
69 D_PRINT_FLOAT,
5e777af5
ILT
70 /* Print in usual way, but here to detect void. */
71 D_PRINT_VOID
72};
73
74/* Information we keep for a builtin type. */
75
76struct demangle_builtin_type_info
77{
78 /* Type name. */
79 const char *name;
80 /* Length of type name. */
81 int len;
82 /* Type name when using Java. */
83 const char *java_name;
84 /* Length of java name. */
85 int java_len;
86 /* How to print a value of this type. */
87 enum d_builtin_type_print print;
88};
89
90/* The information structure we pass around. */
91
92struct d_info
93{
94 /* The string we are demangling. */
95 const char *s;
96 /* The end of the string we are demangling. */
97 const char *send;
98 /* The options passed to the demangler. */
99 int options;
100 /* The next character in the string to consider. */
101 const char *n;
102 /* The array of components. */
103 struct demangle_component *comps;
104 /* The index of the next available component. */
105 int next_comp;
106 /* The number of available component structures. */
107 int num_comps;
108 /* The array of substitutions. */
109 struct demangle_component **subs;
110 /* The index of the next substitution. */
111 int next_sub;
112 /* The number of available entries in the subs array. */
113 int num_subs;
5e777af5
ILT
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. */
119 int expansion;
85d09f61
CC
120 /* Non-zero if we are parsing an expression. */
121 int is_expression;
122 /* Non-zero if we are parsing the type operand of a conversion
123 operator, but not when in an expression. */
124 int is_conversion;
e96d1d8c
NC
125 /* If DMGL_NO_RECURSE_LIMIT is not active then this is set to
126 the current recursion level. */
127 unsigned int recursion_level;
5e777af5
ILT
128};
129
5165f125
GK
130/* To avoid running past the ending '\0', don't:
131 - call d_peek_next_char if d_peek_char returned '\0'
132 - call d_advance with an 'i' that is too large
133 - call d_check_char(di, '\0')
134 Everything else is safe. */
5e777af5 135#define d_peek_char(di) (*((di)->n))
76d96a5a
MM
136#ifndef CHECK_DEMANGLER
137# define d_peek_next_char(di) ((di)->n[1])
138# define d_advance(di, i) ((di)->n += (i))
139#endif
5165f125
GK
140#define d_check_char(di, c) (d_peek_char(di) == c ? ((di)->n++, 1) : 0)
141#define d_next_char(di) (d_peek_char(di) == '\0' ? '\0' : *((di)->n++))
5e777af5
ILT
142#define d_str(di) ((di)->n)
143
76d96a5a
MM
144#ifdef CHECK_DEMANGLER
145static inline char
146d_peek_next_char (const struct d_info *di)
147{
148 if (!di->n[0])
149 abort ();
150 return di->n[1];
151}
152
153static inline void
154d_advance (struct d_info *di, int i)
155{
156 if (i < 0)
157 abort ();
158 while (i--)
159 {
160 if (!di->n[0])
161 abort ();
162 di->n++;
163 }
164}
165#endif
166
5e777af5
ILT
167/* Functions and arrays in cp-demangle.c which are referenced by
168 functions in cp-demint.c. */
0cf61401
ZW
169#ifdef IN_GLIBCPP_V3
170#define CP_STATIC_IF_GLIBCPP_V3 static
171#else
172#define CP_STATIC_IF_GLIBCPP_V3 extern
173#endif
5e777af5 174
456cc5cf
SB
175#ifndef IN_GLIBCPP_V3
176extern const struct demangle_operator_info cplus_demangle_operators[];
177#endif
5e777af5 178
2d91f79d 179#define D_BUILTIN_TYPE_COUNT (34)
5e777af5 180
0cf61401
ZW
181CP_STATIC_IF_GLIBCPP_V3
182const struct demangle_builtin_type_info
5e777af5
ILT
183cplus_demangle_builtin_types[D_BUILTIN_TYPE_COUNT];
184
0cf61401
ZW
185CP_STATIC_IF_GLIBCPP_V3
186struct demangle_component *
9486db4f 187cplus_demangle_mangled_name (struct d_info *, int);
5e777af5 188
0cf61401
ZW
189CP_STATIC_IF_GLIBCPP_V3
190struct demangle_component *
9486db4f 191cplus_demangle_type (struct d_info *);
5e777af5
ILT
192
193extern void
9486db4f 194cplus_demangle_init_info (const char *, int, size_t, struct d_info *);
0cf61401
ZW
195
196/* cp-demangle.c needs to define this a little differently */
197#undef CP_STATIC_IF_GLIBCPP_V3