]> git.xonotic.org Git - xonotic/gmqcc.git/blob - lexer.h
removing some old unused stuff from lexer.h
[xonotic/gmqcc.git] / lexer.h
1 #ifndef GMQCC_LEXER_HDR_
2 #define GMQCC_LEXER_HDR_
3
4 typedef struct token_s token;
5
6 #include "ast.h"
7
8 struct token_s {
9         int ttype;
10
11         MEM_VECTOR_MAKE(char, value);
12
13         union {
14                 vector v;
15                 int    i;
16                 double f;
17                 int    t; /* type */
18         } constval;
19
20 #if 0
21         struct token_s *next;
22         struct token_s *prev;
23 #endif
24
25         lex_ctx ctx;
26 };
27
28 #if 0
29 token* token_new();
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);
34 #endif
35
36 /* Lexer
37  *
38  */
39 enum {
40     /* Other tokens which we can return: */
41     TOKEN_NONE = 0,
42     TOKEN_START = 128,
43
44     TOKEN_IDENT,
45
46     TOKEN_TYPENAME,
47
48     TOKEN_OPERATOR,
49
50     TOKEN_KEYWORD, /* loop */
51
52     TOKEN_DOTS, /* 3 dots, ... */
53
54     TOKEN_STRINGCONST, /* not the typename but an actual "string" */
55     TOKEN_CHARCONST,
56     TOKEN_VECTORCONST,
57     TOKEN_INTCONST,
58     TOKEN_FLOATCONST,
59
60     TOKEN_EOF,
61
62     /* We use '< TOKEN_ERROR', so TOKEN_FATAL must come after it and any
63      * other error related tokens as well
64      */
65     TOKEN_ERROR,
66     TOKEN_FATAL /* internal error, eg out of memory */
67 };
68
69 static const char *_tokennames[] = {
70     "TOKEN_START",
71     "TOKEN_IDENT",
72     "TOKEN_TYPENAME",
73     "TOKEN_OPERATOR",
74     "TOKEN_KEYWORD",
75     "TOKEN_DOTS",
76     "TOKEN_STRINGCONST",
77     "TOKEN_CHARCONST",
78     "TOKEN_VECTORCONST",
79     "TOKEN_INTCONST",
80     "TOKEN_FLOATCONST",
81     "TOKEN_EOF",
82     "TOKEN_ERROR",
83     "TOKEN_FATAL",
84 };
85 typedef int
86 _all_tokennames_added_[
87         ((TOKEN_FATAL - TOKEN_START + 1) ==
88          (sizeof(_tokennames)/sizeof(_tokennames[0])))
89         ? 1 : -1];
90
91 typedef struct {
92     char *name;
93     int   value;
94 } frame_macro;
95
96 typedef struct {
97         FILE   *file;
98         char   *name;
99         size_t  line;
100         size_t  sline; /* line at the start of a token */
101
102         char    peek[256];
103         size_t  peekpos;
104
105         bool    eof;
106
107         token   tok; /* not a pointer anymore */
108
109         struct {
110             bool noops;
111         } flags;
112
113     int framevalue;
114         MEM_VECTOR_MAKE(frame_macro, frames);
115         char *modelname;
116 } lex_file;
117
118 MEM_VECTOR_PROTO(lex_file, char, token);
119
120 lex_file* lex_open (const char *file);
121 void      lex_close(lex_file   *lex);
122 int       lex_do   (lex_file   *lex);
123 void      lex_cleanup(void);
124
125 /* Parser
126  *
127  */
128
129 enum {
130     ASSOC_LEFT,
131     ASSOC_RIGHT
132 };
133
134 #define OP_SUFFIX 1
135 #define OP_PREFIX 2
136
137 typedef struct {
138     const char   *op;
139     unsigned int operands;
140     unsigned int id;
141     unsigned int assoc;
142     unsigned int prec;
143     unsigned int flags;
144 } oper_info;
145
146 #define opid1(a) (a)
147 #define opid2(a,b) ((a<<8)|b)
148 #define opid3(a,b,c) ((a<<16)|(b<<8)|c)
149
150 static const oper_info c_operators[] = {
151     { "(",   0, opid1('('),         ASSOC_LEFT,  99, OP_PREFIX}, /* paren expression - non function call */
152
153     { "++",  1, opid3('S','+','+'), ASSOC_LEFT,  16, OP_SUFFIX},
154     { "--",  1, opid3('S','-','-'), ASSOC_LEFT,  16, OP_SUFFIX},
155
156     { ".",   2, opid1('.'),         ASSOC_LEFT,  15, 0 },
157     { "(",   0, opid1('('),         ASSOC_LEFT,  15, 0 }, /* function call */
158
159     { "!",   1, opid2('!', 'P'),    ASSOC_RIGHT, 14, OP_PREFIX },
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, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
164     { "--",  1, opid3('-','-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
165 /*  { "&",   1, opid2('&','P'),     ASSOC_RIGHT, 14, OP_PREFIX }, */
166
167     { "*",   2, opid1('*'),         ASSOC_LEFT,  13, 0 },
168     { "/",   2, opid1('/'),         ASSOC_LEFT,  13, 0 },
169     { "%",   2, opid1('%'),         ASSOC_LEFT,  13, 0 },
170
171     { "+",   2, opid1('+'),         ASSOC_LEFT,  12, 0 },
172     { "-",   2, opid1('-'),         ASSOC_LEFT,  12, 0 },
173
174     { "<<",  2, opid2('<','<'),     ASSOC_LEFT,  11, 0 },
175     { ">>",  2, opid2('>','>'),     ASSOC_LEFT,  11, 0 },
176
177     { "<",   2, opid1('<'),         ASSOC_LEFT,  10, 0 },
178     { ">",   2, opid1('>'),         ASSOC_LEFT,  10, 0 },
179     { "<=",  2, opid2('<','='),     ASSOC_LEFT,  10, 0 },
180     { ">=",  2, opid2('>','='),     ASSOC_LEFT,  10, 0 },
181
182     { "==",  2, opid2('=','='),     ASSOC_LEFT,  9,  0 },
183     { "!=",  2, opid2('!','='),     ASSOC_LEFT,  9,  0 },
184
185     { "&",   2, opid1('&'),         ASSOC_LEFT,  8,  0 },
186
187     { "^",   2, opid1('^'),         ASSOC_LEFT,  7,  0 },
188
189     { "|",   2, opid1('|'),         ASSOC_LEFT,  6,  0 },
190
191     { "&&",  2, opid2('&','&'),     ASSOC_LEFT,  5,  0 },
192
193     { "||",  2, opid2('|','|'),     ASSOC_LEFT,  4,  0 },
194
195     { "?",   3, opid2('?',':'),     ASSOC_RIGHT, 3,  0 },
196
197     { "=",   2, opid1('='),         ASSOC_RIGHT, 2,  0 },
198     { "+=",  2, opid2('+','='),     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, opid3('>','>','='), ASSOC_RIGHT, 2,  0 },
204     { "<<=", 2, opid3('<','<','='), ASSOC_RIGHT, 2,  0 },
205     { "&=",  2, opid2('&','='),     ASSOC_RIGHT, 2,  0 },
206     { "^=",  2, opid2('^','='),     ASSOC_RIGHT, 2,  0 },
207     { "|=",  2, opid2('|','='),     ASSOC_RIGHT, 2,  0 },
208
209     { ",",   2, opid1(','),         ASSOC_LEFT,  1,  0 }
210 };
211 static const size_t c_operator_count = (sizeof(c_operators) / sizeof(c_operators[0]));
212
213 static const oper_info qcc_operators[] = {
214     { "(",   0, opid1('('),         ASSOC_LEFT,  99, OP_PREFIX}, /* paren expression - non function call */
215
216     { ".",   2, opid1('.'),         ASSOC_LEFT,  15, 0 },
217     { "(",   0, opid1('('),         ASSOC_LEFT,  15, 0 }, /* function call */
218
219     { "!",   1, opid2('!', 'P'),    ASSOC_RIGHT, 14, OP_PREFIX },
220     { "+",   1, opid2('+','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
221     { "-",   1, opid2('-','P'),     ASSOC_RIGHT, 14, OP_PREFIX },
222
223     { "*",   2, opid1('*'),         ASSOC_LEFT,  13, 0 },
224     { "/",   2, opid1('/'),         ASSOC_LEFT,  13, 0 },
225     { "&",   2, opid1('&'),         ASSOC_LEFT,  13, 0 },
226     { "|",   2, opid1('|'),         ASSOC_LEFT,  13, 0 },
227
228     { "+",   2, opid1('+'),         ASSOC_LEFT,  12, 0 },
229     { "-",   2, opid1('-'),         ASSOC_LEFT,  12, 0 },
230
231     { "<",   2, opid1('<'),         ASSOC_LEFT,  10, 0 },
232     { ">",   2, opid1('>'),         ASSOC_LEFT,  10, 0 },
233     { "<=",  2, opid2('<','='),     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
238     { "=",   2, opid1('='),         ASSOC_RIGHT, 8,  0 },
239     { "+=",  2, opid2('+','='),     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
247     { "&&",  2, opid2('&','&'),     ASSOC_LEFT,  5,  0 },
248     { "||",  2, opid2('|','|'),     ASSOC_LEFT,  5,  0 },
249
250     { ",",   2, opid1(','),         ASSOC_LEFT,  1,  0 }
251 };
252 static const size_t qcc_operator_count = (sizeof(qcc_operators) / sizeof(qcc_operators[0]));
253
254 extern const oper_info *operators;
255 extern size_t           operator_count;
256 void lexerror(lex_file*, const char *fmt, ...);
257
258 #endif