]> git.draconx.ca Git - cdecl99.git/blob - src/cdecl-internal.h
libcdecl: Move specifier type determination into scanner.
[cdecl99.git] / src / cdecl-internal.h
1 /*
2  * Internal declarations for libcdecl.
3  * Copyright © 2021, 2023 Nick Bowler
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18 #ifndef CDECL_INTERNAL_H_
19 #define CDECL_INTERNAL_H_
20
21 #include <stddef.h>
22 #include <gettext.h>
23
24 #define _(s) dgettext(PACKAGE, s)
25 #define N_(s) s
26
27 /* Pack the 4 "kind" bits of a valid cdecl specifier value into two bits. */
28 #define PACK_KIND(x) ((( ((x>>8) - ((x)>>11)) ) >> 1) & 3)
29
30 /* Expand a packed "kind" to its original value. */
31 #define UNPACK_KIND(x) (0x100 << (x))
32
33 /*
34  * Pack a valid cdecl specifier value (CDECL_TYPE_xxx, CDECL_STOR_xxx, etc.)
35  * into 8 bits.  We do this by encoding the specifier kind in the upper two
36  * bits, and the enumerated sequence in the lower 6 bits. */
37 #define PACK_SPEC(x) (((x) & 0x3f) | (PACK_KIND(x) << 6))
38
39 /*
40  * Expand a packed specifier to its original value.
41  */
42 #define UNPACK_SPEC(x) (UNPACK_KIND((x) >> 6) | ((x) & 0x3f))
43
44 /*
45  * Pack a parser token into 7 bits.
46  *
47  * Bison normally numbers user-defined tokens sequentially starting from 258.
48  * If api.token,raw is used, then the numbering starts from 3.  As we have
49  * about 50 tokens, the latter case will fit in 7 bits easily; in the former
50  * case the upper bits are constant so we don't need to store them.
51  */
52 #define PACK_TOKEN(x) ((x) & 0x7f)
53
54 /*
55  * Expand a packed token to its original value.
56  */
57 #define UNPACK_TOKEN(x) ((x) | ((T_IDENT > 256) << 8))
58
59 struct cdecl_error;
60 struct cdecl_declspec;
61
62 #if ENABLE_NLS
63 void cdecl__init_i18n(void);
64 #else
65 static inline void cdecl__init_i18n(void)
66 {
67 }
68 #endif
69
70 void cdecl__err(unsigned code, const char *fmt, const char *arg);
71 void cdecl__errmsg(unsigned msg);
72
73 struct cdecl_declspec *cdecl__normalize_specs(struct cdecl_declspec *specs);
74
75 struct output_state {
76         char *dst;
77         size_t dstlen;
78         size_t accum;
79 };
80
81 size_t cdecl__advance(struct output_state *dst, size_t amount);
82 size_t cdecl__emit(struct output_state *dst, const char *src);
83
84 const char *cdecl__emit_specs(struct output_state *dst,
85                               struct cdecl_declspec *s,
86                               unsigned mask);
87
88 /*
89  * If s is a (len bytes long) string corresponding to a declaration
90  * specifier, then:
91  *
92  *   - bits 7:0 (LSB) of the return value is the packed specifier type, and
93  *   - bits 15:8 of the return value is the packed parser token.
94  *
95  * Otherwise, if english_mode is nonzero and s is an "english keyword",
96  * returns the appropriate packed parser token in bits 15:8.
97  *
98  * Otherwise, PACK_TOKEN(T_IDENT) is returned in bits 15:8.
99  */
100 unsigned cdecl__to_keyword(const char *s, int len, int english_mode);
101
102 #endif