1 #ifndef GMQCC_LEXER_HDR_
2 #define GMQCC_LEXER_HDR_
4 typedef struct token_s token;
11 MEM_VECTOR_MAKE(char, value);
30 void token_delete(token*);
31 token* token_copy(const token *cp);
32 void token_delete_all(token *t);
33 token* token_copy_all(const token *cp);
40 /* Other tokens which we can return: */
50 TOKEN_KEYWORD, /* loop */
52 TOKEN_DOTS, /* 3 dots, ... */
54 TOKEN_STRINGCONST, /* not the typename but an actual "string" */
62 /* We use '< TOKEN_ERROR', so TOKEN_FATAL must come after it and any
63 * other error related tokens as well
66 TOKEN_FATAL /* internal error, eg out of memory */
69 static const char *_tokennames[] = {
86 _all_tokennames_added_[
87 ((TOKEN_FATAL - TOKEN_START + 1) ==
88 (sizeof(_tokennames)/sizeof(_tokennames[0])))
100 size_t sline; /* line at the start of a token */
107 token tok; /* not a pointer anymore */
111 bool nodigraphs; /* used when lexing string constants */
115 MEM_VECTOR_MAKE(frame_macro, frames);
119 MEM_VECTOR_PROTO(lex_file, char, token);
121 lex_file* lex_open (const char *file);
122 void lex_close(lex_file *lex);
123 int lex_do (lex_file *lex);
124 void lex_cleanup(void);
140 unsigned int operands;
148 #define opid2(a,b) ((a<<8)|b)
149 #define opid3(a,b,c) ((a<<16)|(b<<8)|c)
151 static const oper_info c_operators[] = {
152 { "(", 0, opid1('('), ASSOC_LEFT, 99, OP_PREFIX}, /* paren expression - non function call */
154 { "++", 1, opid3('S','+','+'), ASSOC_LEFT, 16, OP_SUFFIX},
155 { "--", 1, opid3('S','-','-'), ASSOC_LEFT, 16, OP_SUFFIX},
157 { ".", 2, opid1('.'), ASSOC_LEFT, 15, 0 },
158 { "(", 0, opid1('('), ASSOC_LEFT, 15, 0 }, /* function call */
160 { "!", 1, opid2('!', 'P'), ASSOC_RIGHT, 14, OP_PREFIX },
161 { "~", 1, opid2('~', 'P'), ASSOC_RIGHT, 14, OP_PREFIX },
162 { "+", 1, opid2('+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
163 { "-", 1, opid2('-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
164 { "++", 1, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
165 { "--", 1, opid3('-','-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
166 /* { "&", 1, opid2('&','P'), ASSOC_RIGHT, 14, OP_PREFIX }, */
168 { "*", 2, opid1('*'), ASSOC_LEFT, 13, 0 },
169 { "/", 2, opid1('/'), ASSOC_LEFT, 13, 0 },
170 { "%", 2, opid1('%'), ASSOC_LEFT, 13, 0 },
172 { "+", 2, opid1('+'), ASSOC_LEFT, 12, 0 },
173 { "-", 2, opid1('-'), ASSOC_LEFT, 12, 0 },
175 { "<<", 2, opid2('<','<'), ASSOC_LEFT, 11, 0 },
176 { ">>", 2, opid2('>','>'), ASSOC_LEFT, 11, 0 },
178 { "<", 2, opid1('<'), ASSOC_LEFT, 10, 0 },
179 { ">", 2, opid1('>'), ASSOC_LEFT, 10, 0 },
180 { "<=", 2, opid2('<','='), ASSOC_LEFT, 10, 0 },
181 { ">=", 2, opid2('>','='), ASSOC_LEFT, 10, 0 },
183 { "==", 2, opid2('=','='), ASSOC_LEFT, 9, 0 },
184 { "!=", 2, opid2('!','='), ASSOC_LEFT, 9, 0 },
186 { "&", 2, opid1('&'), ASSOC_LEFT, 8, 0 },
188 { "^", 2, opid1('^'), ASSOC_LEFT, 7, 0 },
190 { "|", 2, opid1('|'), ASSOC_LEFT, 6, 0 },
192 { "&&", 2, opid2('&','&'), ASSOC_LEFT, 5, 0 },
194 { "||", 2, opid2('|','|'), ASSOC_LEFT, 4, 0 },
196 { "?", 3, opid2('?',':'), ASSOC_RIGHT, 3, 0 },
198 { "=", 2, opid1('='), ASSOC_RIGHT, 2, 0 },
199 { "+=", 2, opid2('+','='), ASSOC_RIGHT, 2, 0 },
200 { "-=", 2, opid2('-','='), ASSOC_RIGHT, 2, 0 },
201 { "*=", 2, opid2('*','='), ASSOC_RIGHT, 2, 0 },
202 { "/=", 2, opid2('/','='), ASSOC_RIGHT, 2, 0 },
203 { "%=", 2, opid2('%','='), ASSOC_RIGHT, 2, 0 },
204 { ">>=", 2, opid3('>','>','='), ASSOC_RIGHT, 2, 0 },
205 { "<<=", 2, opid3('<','<','='), ASSOC_RIGHT, 2, 0 },
206 { "&=", 2, opid2('&','='), ASSOC_RIGHT, 2, 0 },
207 { "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
208 { "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
210 { ",", 2, opid1(','), ASSOC_LEFT, 1, 0 }
212 static const size_t c_operator_count = (sizeof(c_operators) / sizeof(c_operators[0]));
214 static const oper_info qcc_operators[] = {
215 { "(", 0, opid1('('), ASSOC_LEFT, 99, OP_PREFIX}, /* paren expression - non function call */
217 { ".", 2, opid1('.'), ASSOC_LEFT, 15, 0 },
218 { "(", 0, opid1('('), ASSOC_LEFT, 15, 0 }, /* function call */
220 { "!", 1, opid2('!', 'P'), ASSOC_RIGHT, 14, OP_PREFIX },
221 { "+", 1, opid2('+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
222 { "-", 1, opid2('-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
224 { "*", 2, opid1('*'), ASSOC_LEFT, 13, 0 },
225 { "/", 2, opid1('/'), ASSOC_LEFT, 13, 0 },
226 { "&", 2, opid1('&'), ASSOC_LEFT, 13, 0 },
227 { "|", 2, opid1('|'), ASSOC_LEFT, 13, 0 },
229 { "+", 2, opid1('+'), ASSOC_LEFT, 12, 0 },
230 { "-", 2, opid1('-'), ASSOC_LEFT, 12, 0 },
232 { "<", 2, opid1('<'), ASSOC_LEFT, 10, 0 },
233 { ">", 2, opid1('>'), ASSOC_LEFT, 10, 0 },
234 { "<=", 2, opid2('<','='), ASSOC_LEFT, 10, 0 },
235 { ">=", 2, opid2('>','='), ASSOC_LEFT, 10, 0 },
236 { "==", 2, opid2('=','='), ASSOC_LEFT, 10, 0 },
237 { "!=", 2, opid2('!','='), ASSOC_LEFT, 10, 0 },
239 { "=", 2, opid1('='), ASSOC_RIGHT, 8, 0 },
240 { "+=", 2, opid2('+','='), ASSOC_RIGHT, 8, 0 },
241 { "-=", 2, opid2('-','='), ASSOC_RIGHT, 8, 0 },
242 { "*=", 2, opid2('*','='), ASSOC_RIGHT, 8, 0 },
243 { "/=", 2, opid2('/','='), ASSOC_RIGHT, 8, 0 },
244 { "%=", 2, opid2('%','='), ASSOC_RIGHT, 8, 0 },
245 { "&=", 2, opid2('&','='), ASSOC_RIGHT, 8, 0 },
246 { "|=", 2, opid2('|','='), ASSOC_RIGHT, 8, 0 },
248 { "&&", 2, opid2('&','&'), ASSOC_LEFT, 5, 0 },
249 { "||", 2, opid2('|','|'), ASSOC_LEFT, 5, 0 },
251 { ",", 2, opid1(','), ASSOC_LEFT, 1, 0 }
253 static const size_t qcc_operator_count = (sizeof(qcc_operators) / sizeof(qcc_operators[0]));
255 extern const oper_info *operators;
256 extern size_t operator_count;
257 void lexerror(lex_file*, const char *fmt, ...);