]> git.xonotic.org Git - xonotic/gmqcc.git/blob - lexer.h
remove ast.h-include from lexer.h to parser.c...
[xonotic/gmqcc.git] / lexer.h
1 /*
2  * Copyright (C) 2012, 2013
3  *     Wolfgang Bumiller
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #ifndef GMQCC_LEXER_HDR
24 #define GMQCC_LEXER_HDR
25
26 typedef struct token_s token;
27
28 struct token_s {
29     int ttype;
30
31     char *value;
32
33     union {
34         vector v;
35         int    i;
36         double f;
37         int    t; /* type */
38     } constval;
39
40 #if 0
41     struct token_s *next;
42     struct token_s *prev;
43 #endif
44
45     lex_ctx ctx;
46 };
47
48 #if 0
49 token* token_new();
50 void   token_delete(token*);
51 token* token_copy(const token *cp);
52 void   token_delete_all(token *t);
53 token* token_copy_all(const token *cp);
54 #endif
55
56 /* Lexer
57  *
58  */
59 enum {
60     /* Other tokens which we can return: */
61     TOKEN_NONE = 0,
62     TOKEN_START = 128,
63
64     TOKEN_IDENT,
65
66     TOKEN_TYPENAME,
67
68     TOKEN_OPERATOR,
69
70     TOKEN_KEYWORD, /* loop */
71
72     TOKEN_DOTS, /* 3 dots, ... */
73
74     TOKEN_ATTRIBUTE_OPEN,  /* [[ */
75     TOKEN_ATTRIBUTE_CLOSE, /* ]] */
76
77     TOKEN_VA_ARGS, /* for the ftepp only */
78
79     TOKEN_STRINGCONST, /* not the typename but an actual "string" */
80     TOKEN_CHARCONST,
81     TOKEN_VECTORCONST,
82     TOKEN_INTCONST,
83     TOKEN_FLOATCONST,
84
85     TOKEN_WHITE,
86     TOKEN_EOL,
87
88     TOKEN_EOF,
89
90     /* We use '< TOKEN_ERROR', so TOKEN_FATAL must come after it and any
91      * other error related tokens as well
92      */
93     TOKEN_ERROR,
94     TOKEN_FATAL /* internal error, eg out of memory */
95 };
96
97 typedef struct {
98     char *name;
99     int   value;
100 } frame_macro;
101
102 typedef struct {
103     FILE   *file;
104     const char *open_string;
105     size_t      open_string_length;
106     size_t      open_string_pos;
107
108     char   *name;
109     size_t  line;
110     size_t  sline; /* line at the start of a token */
111
112     int     peek[256];
113     size_t  peekpos;
114
115     bool    eof;
116
117     token   tok; /* not a pointer anymore */
118
119     struct {
120         bool noops;
121         bool nodigraphs; /* used when lexing string constants */
122         bool preprocessing; /* whitespace and EOLs become actual tokens */
123         bool mergelines; /* backslash at the end of a line escapes the newline */
124     } flags;
125
126     int framevalue;
127     frame_macro *frames;
128     char *modelname;
129
130     size_t push_line;
131 } lex_file;
132
133 lex_file* lex_open (const char *file);
134 lex_file* lex_open_string(const char *str, size_t len, const char *name);
135 void      lex_close(lex_file   *lex);
136 int       lex_do   (lex_file   *lex);
137 void      lex_cleanup(void);
138
139 /* Parser
140  *
141  */
142
143 enum {
144     ASSOC_LEFT,
145     ASSOC_RIGHT
146 };
147
148 #define OP_SUFFIX 1
149 #define OP_PREFIX 2
150
151 typedef struct {
152     const char   *op;
153     unsigned int operands;
154     unsigned int id;
155     unsigned int assoc;
156     signed int   prec;
157     unsigned int flags;
158 } oper_info;
159
160 #define opid1(a) (a)
161 #define opid2(a,b) ((a<<8)|b)
162 #define opid3(a,b,c) ((a<<16)|(b<<8)|c)
163
164 static const oper_info c_operators[] = {
165     { "(",   0, opid1('('),         ASSOC_LEFT,  99, OP_PREFIX}, /* paren expression - non function call */
166
167     { "++",  1, opid3('S','+','+'), ASSOC_LEFT,  15, OP_SUFFIX},
168     { "--",  1, opid3('S','-','-'), ASSOC_LEFT,  15, OP_SUFFIX},
169     { ".",   2, opid1('.'),         ASSOC_LEFT,  15, 0 },
170     { "(",   0, opid1('('),         ASSOC_LEFT,  15, 0 }, /* function call */
171     { "[",   2, opid1('['),         ASSOC_LEFT,  15, 0 }, /* array subscript */
172
173     { "!",   1, opid2('!', 'P'),    ASSOC_RIGHT, 14, OP_PREFIX },
174     { "~",   1, opid2('~', 'P'),    ASSOC_RIGHT, 14, OP_PREFIX },
175     { "+",   1, opid2('+','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
176     { "-",   1, opid2('-','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
177     { "++",  1, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
178     { "--",  1, opid3('-','-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
179 /*  { "&",   1, opid2('&','P'),     ASSOC_RIGHT, 14, OP_PREFIX }, */
180
181     { "*",   2, opid1('*'),         ASSOC_LEFT,  13, 0 },
182     { "/",   2, opid1('/'),         ASSOC_LEFT,  13, 0 },
183     { "%",   2, opid1('%'),         ASSOC_LEFT,  13, 0 },
184
185     { "+",   2, opid1('+'),         ASSOC_LEFT,  12, 0 },
186     { "-",   2, opid1('-'),         ASSOC_LEFT,  12, 0 },
187
188     { "<<",  2, opid2('<','<'),     ASSOC_LEFT,  11, 0 },
189     { ">>",  2, opid2('>','>'),     ASSOC_LEFT,  11, 0 },
190
191     { "<",   2, opid1('<'),         ASSOC_LEFT,  10, 0 },
192     { ">",   2, opid1('>'),         ASSOC_LEFT,  10, 0 },
193     { "<=",  2, opid2('<','='),     ASSOC_LEFT,  10, 0 },
194     { ">=",  2, opid2('>','='),     ASSOC_LEFT,  10, 0 },
195
196     { "==",  2, opid2('=','='),     ASSOC_LEFT,  9,  0 },
197     { "!=",  2, opid2('!','='),     ASSOC_LEFT,  9,  0 },
198
199     { "&",   2, opid1('&'),         ASSOC_LEFT,  8,  0 },
200
201     { "^",   2, opid1('^'),         ASSOC_LEFT,  7,  0 },
202
203     { "|",   2, opid1('|'),         ASSOC_LEFT,  6,  0 },
204
205     { "&&",  2, opid2('&','&'),     ASSOC_LEFT,  5,  0 },
206
207     { "||",  2, opid2('|','|'),     ASSOC_LEFT,  4,  0 },
208
209     { "?",   3, opid2('?',':'),     ASSOC_RIGHT, 3,  0 },
210
211     { "=",   2, opid1('='),         ASSOC_RIGHT, 2,  0 },
212     { "+=",  2, opid2('+','='),     ASSOC_RIGHT, 2,  0 },
213     { "-=",  2, opid2('-','='),     ASSOC_RIGHT, 2,  0 },
214     { "*=",  2, opid2('*','='),     ASSOC_RIGHT, 2,  0 },
215     { "/=",  2, opid2('/','='),     ASSOC_RIGHT, 2,  0 },
216     { "%=",  2, opid2('%','='),     ASSOC_RIGHT, 2,  0 },
217     { ">>=", 2, opid3('>','>','='), ASSOC_RIGHT, 2,  0 },
218     { "<<=", 2, opid3('<','<','='), ASSOC_RIGHT, 2,  0 },
219     { "&=",  2, opid2('&','='),     ASSOC_RIGHT, 2,  0 },
220     { "^=",  2, opid2('^','='),     ASSOC_RIGHT, 2,  0 },
221     { "|=",  2, opid2('|','='),     ASSOC_RIGHT, 2,  0 },
222     { "&~=", 2, opid3('&','~','='), ASSOC_RIGHT, 2,  0 },
223
224     { ":",   0, opid2(':','?'),     ASSOC_RIGHT, 1,  0 },
225
226     { ",",   2, opid1(','),         ASSOC_LEFT,  0,  0 }
227 };
228 static const size_t c_operator_count = (sizeof(c_operators) / sizeof(c_operators[0]));
229
230 static const oper_info fte_operators[] = {
231     { "(",   0, opid1('('),         ASSOC_LEFT,  99, OP_PREFIX}, /* paren expression - non function call */
232
233     { "++",  1, opid3('S','+','+'), ASSOC_LEFT,  15, OP_SUFFIX},
234     { "--",  1, opid3('S','-','-'), ASSOC_LEFT,  15, OP_SUFFIX},
235     { ".",   2, opid1('.'),         ASSOC_LEFT,  15, 0 },
236     { "(",   0, opid1('('),         ASSOC_LEFT,  15, 0 }, /* function call */
237     { "[",   2, opid1('['),         ASSOC_LEFT,  15, 0 }, /* array subscript */
238
239     { "!",   1, opid2('!', 'P'),    ASSOC_RIGHT, 14, OP_PREFIX },
240     { "+",   1, opid2('+','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
241     { "-",   1, opid2('-','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
242     { "++",  1, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
243     { "--",  1, opid3('-','-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
244
245     { "*",   2, opid1('*'),         ASSOC_LEFT,  13, 0 },
246     { "/",   2, opid1('/'),         ASSOC_LEFT,  13, 0 },
247     { "&",   2, opid1('&'),         ASSOC_LEFT,  13, 0 },
248     { "|",   2, opid1('|'),         ASSOC_LEFT,  13, 0 },
249
250     { "+",   2, opid1('+'),         ASSOC_LEFT,  12, 0 },
251     { "-",   2, opid1('-'),         ASSOC_LEFT,  12, 0 },
252
253     { "<",   2, opid1('<'),         ASSOC_LEFT,  10, 0 },
254     { ">",   2, opid1('>'),         ASSOC_LEFT,  10, 0 },
255     { "<=",  2, opid2('<','='),     ASSOC_LEFT,  10, 0 },
256     { ">=",  2, opid2('>','='),     ASSOC_LEFT,  10, 0 },
257     { "==",  2, opid2('=','='),     ASSOC_LEFT,  10,  0 },
258     { "!=",  2, opid2('!','='),     ASSOC_LEFT,  10,  0 },
259
260     { "?",   3, opid2('?',':'),     ASSOC_RIGHT, 9,  0 },
261
262     { "=",   2, opid1('='),         ASSOC_RIGHT, 8,  0 },
263     { "+=",  2, opid2('+','='),     ASSOC_RIGHT, 8,  0 },
264     { "-=",  2, opid2('-','='),     ASSOC_RIGHT, 8,  0 },
265     { "*=",  2, opid2('*','='),     ASSOC_RIGHT, 8,  0 },
266     { "/=",  2, opid2('/','='),     ASSOC_RIGHT, 8,  0 },
267     { "%=",  2, opid2('%','='),     ASSOC_RIGHT, 8,  0 },
268     { "&=",  2, opid2('&','='),     ASSOC_RIGHT, 8,  0 },
269     { "|=",  2, opid2('|','='),     ASSOC_RIGHT, 8,  0 },
270     { "&~=", 2, opid3('&','~','='), ASSOC_RIGHT, 8,  0 },
271
272     { "&&",  2, opid2('&','&'),     ASSOC_LEFT,  5,  0 },
273     { "||",  2, opid2('|','|'),     ASSOC_LEFT,  5,  0 },
274
275     /* Leave precedence 3 for : with -fcorrect-ternary */
276     { ",",   2, opid1(','),         ASSOC_LEFT,  2,  0 },
277     { ":",   0, opid2(':','?'),     ASSOC_RIGHT, 1,  0 }
278 };
279 static const size_t fte_operator_count = (sizeof(fte_operators) / sizeof(fte_operators[0]));
280
281 static const oper_info qcc_operators[] = {
282     { "(",   0, opid1('('),         ASSOC_LEFT,  99, OP_PREFIX}, /* paren expression - non function call */
283
284     { ".",   2, opid1('.'),         ASSOC_LEFT,  15, 0 },
285     { "(",   0, opid1('('),         ASSOC_LEFT,  15, 0 }, /* function call */
286     { "[",   2, opid1('['),         ASSOC_LEFT,  15, 0 }, /* array subscript */
287
288     { "!",   1, opid2('!', 'P'),    ASSOC_RIGHT, 14, OP_PREFIX },
289     { "+",   1, opid2('+','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
290     { "-",   1, opid2('-','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
291
292     { "*",   2, opid1('*'),         ASSOC_LEFT,  13, 0 },
293     { "/",   2, opid1('/'),         ASSOC_LEFT,  13, 0 },
294     { "&",   2, opid1('&'),         ASSOC_LEFT,  13, 0 },
295     { "|",   2, opid1('|'),         ASSOC_LEFT,  13, 0 },
296
297     { "+",   2, opid1('+'),         ASSOC_LEFT,  12, 0 },
298     { "-",   2, opid1('-'),         ASSOC_LEFT,  12, 0 },
299
300     { "<",   2, opid1('<'),         ASSOC_LEFT,  10, 0 },
301     { ">",   2, opid1('>'),         ASSOC_LEFT,  10, 0 },
302     { "<=",  2, opid2('<','='),     ASSOC_LEFT,  10, 0 },
303     { ">=",  2, opid2('>','='),     ASSOC_LEFT,  10, 0 },
304     { "==",  2, opid2('=','='),     ASSOC_LEFT,  10,  0 },
305     { "!=",  2, opid2('!','='),     ASSOC_LEFT,  10,  0 },
306
307     { "=",   2, opid1('='),         ASSOC_RIGHT, 8,  0 },
308     { "+=",  2, opid2('+','='),     ASSOC_RIGHT, 8,  0 },
309     { "-=",  2, opid2('-','='),     ASSOC_RIGHT, 8,  0 },
310     { "*=",  2, opid2('*','='),     ASSOC_RIGHT, 8,  0 },
311     { "/=",  2, opid2('/','='),     ASSOC_RIGHT, 8,  0 },
312     { "%=",  2, opid2('%','='),     ASSOC_RIGHT, 8,  0 },
313     { "&=",  2, opid2('&','='),     ASSOC_RIGHT, 8,  0 },
314     { "|=",  2, opid2('|','='),     ASSOC_RIGHT, 8,  0 },
315
316     { "&&",  2, opid2('&','&'),     ASSOC_LEFT,  5,  0 },
317     { "||",  2, opid2('|','|'),     ASSOC_LEFT,  5,  0 },
318
319     { ",",   2, opid1(','),         ASSOC_LEFT,  2,  0 },
320 };
321 static const size_t qcc_operator_count = (sizeof(qcc_operators) / sizeof(qcc_operators[0]));
322
323 extern const oper_info *operators;
324 extern size_t           operator_count;
325 void lexerror(lex_file*, const char *fmt, ...);
326
327 #endif