flush
[m6w6/ext-psi] / src / parser_proc.y
1 %include {
2 #include <assert.h>
3 #include <stdlib.h>
4 #include <string.h>
5
6 #include "parser.h"
7
8 }
9
10 %name PSI_ParserProc
11 %token_prefix PSI_T_
12 %token_type {PSI_Token *}
13 %token_destructor {free($$);}
14 %extra_argument {PSI_Parser *P}
15 /* TOKEN is defined inside syntax_error */
16 %syntax_error {
17 PSI_ParserSyntaxError(P, P->fn, P->line, "Unexpected token '%s'", TOKEN->text);
18 }
19 file ::= blocks.
20
21 blocks ::= block.
22 blocks ::= blocks block.
23
24 block ::= COMMENT.
25
26 block ::= LIB(T) QUOTED_STRING(libname) EOS. {
27 if (P->lib) {
28 PSI_ParserSyntaxError(P, P->fn, T->line, "Extra 'lib %s' statement has no effect", libname->text);
29 } else {
30 P->lib = strndup(libname->text + 1, libname->size - 2);
31 }
32 free(libname);
33 free(T);
34 }
35
36 block ::= decl(decl). {
37 P->decls = add_decl(P->decls, decl);
38 }
39 block ::= impl(impl). {
40 P->impls = add_impl(P->impls, impl);
41 }
42 block ::= decl_typedef(def). {
43 P->defs = add_decl_typedef(P->defs, def);
44 }
45
46 %type decl_typedef {decl_typedef*}
47 decl_typedef(def) ::= TYPEDEF NAME(ALIAS) decl_type(type) EOS. {
48 def = init_decl_typedef(ALIAS->text, type);
49 free(ALIAS);
50 }
51
52 %type decl {decl*}
53 decl(decl) ::= decl_abi(abi) decl_arg(func) LPAREN decl_args(args) RPAREN EOS. {
54 decl = init_decl(abi, func, args);
55 }
56
57 %type decl_abi {decl_abi*}
58 decl_abi(abi) ::= NAME(T). {
59 abi = init_decl_abi(T->text);
60 }
61
62 %type decl_var {decl_var*}
63 decl_var(var) ::= NAME(T). {
64 var = init_decl_var(T->text, 0);
65 free(T);
66 }
67 decl_var(var) ::= pointers(p) NAME(T). {
68 var = init_decl_var(T->text, p);
69 free(T);
70 }
71
72 %type decl_vars {decl_vars*}
73 decl_vars(vars) ::= decl_var(var). {
74 vars = init_decl_vars(var);
75 }
76 decl_vars(vars) ::= decl_vars(vars_) COMMA decl_var(var). {
77 vars = add_decl_var(vars_, var);
78 }
79
80 %type decl_arg {decl_arg*}
81 decl_arg(arg) ::= decl_type(type) decl_var(var). {
82 arg = init_decl_arg(type, var);
83 }
84
85 %type decl_args {decl_args*}
86 decl_args ::= VOID.
87 decl_args(args) ::= decl_arg(arg). {
88 args = init_decl_args(arg);
89 }
90 decl_args(args) ::= decl_args(args_) COMMA decl_arg(arg). {
91 args = add_decl_arg(args_, arg);
92 }
93
94 %type decl_type {decl_type*}
95 decl_type(type_) ::= VOID(T). {
96 type_ = init_decl_type(T->type, T->text);
97 free(T);
98 }
99 decl_type(type_) ::= CHAR(T). {
100 type_ = init_decl_type(T->type, T->text);
101 free(T);
102 }
103 decl_type(type_) ::= SHORT(T). {
104 type_ = init_decl_type(T->type, T->text);
105 free(T);
106 }
107 decl_type(type_) ::= INT(T). {
108 type_ = init_decl_type(T->type, T->text);
109 free(T);
110 }
111 decl_type(type_) ::= LONG(T). {
112 type_ = init_decl_type(T->type, T->text);
113 free(T);
114 }
115 decl_type(type_) ::= FLOAT(T). {
116 type_ = init_decl_type(T->type, T->text);
117 free(T);
118 }
119 decl_type(type_) ::= DOUBLE(T). {
120 type_ = init_decl_type(T->type, T->text);
121 free(T);
122 }
123 decl_type(type_) ::= SINT8(T). {
124 type_ = init_decl_type(T->type, T->text);
125 free(T);
126 }
127 decl_type(type_) ::= UINT8(T). {
128 type_ = init_decl_type(T->type, T->text);
129 free(T);
130 }
131 decl_type(type_) ::= SINT16(T). {
132 type_ = init_decl_type(T->type, T->text);
133 free(T);
134 }
135 decl_type(type_) ::= UINT16(T). {
136 type_ = init_decl_type(T->type, T->text);
137 free(T);
138 }
139 decl_type(type_) ::= SINT32(T). {
140 type_ = init_decl_type(T->type, T->text);
141 free(T);
142 }
143 decl_type(type_) ::= UINT32(T). {
144 type_ = init_decl_type(T->type, T->text);
145 free(T);
146 }
147 decl_type(type_) ::= SINT64(T). {
148 type_ = init_decl_type(T->type, T->text);
149 free(T);
150 }
151 decl_type(type_) ::= UINT64(T). {
152 type_ = init_decl_type(T->type, T->text);
153 free(T);
154 }
155 decl_type(type_) ::= NAME(T). {
156 type_ = init_decl_type(T->type, T->text);
157 free(T);
158 }
159
160 %type impl {impl*}
161 impl(impl) ::= impl_func(func) LBRACE impl_stmts(stmts) RBRACE. {
162 impl = init_impl(func, stmts);
163 }
164
165 %type impl_func {impl_func*}
166 impl_func(func) ::= FUNCTION NSNAME(NAME) LPAREN impl_args(args) RPAREN COLON impl_type(type). {
167 func = init_impl_func(NAME->text, args, type);
168 free(NAME);
169 }
170 impl_func(func) ::= FUNCTION NSNAME(NAME) LPAREN RPAREN COLON impl_type(type). {
171 func = init_impl_func(NAME->text, NULL, type);
172 free(NAME);
173 }
174
175 %type impl_def_val {impl_def_val*}
176 impl_def_val(def) ::= NULL(T). {
177 def = init_impl_def_val(T);
178 }
179 impl_def_val(def) ::= NUMBER(T). {
180 def = init_impl_def_val(T);
181 }
182 impl_def_val(def) ::= TRUE(T). {
183 def = init_impl_def_val(T);
184 }
185 impl_def_val(def) ::= FALSE(T). {
186 def = init_impl_def_val(T);
187 }
188 impl_def_val(def) ::= QUOTED_STRING(T). {
189 def = init_impl_def_val(T);
190 }
191
192 %type impl_var {impl_var*}
193 impl_var(var) ::= DOLLAR NAME(T). {
194 var = init_impl_var(T->text, 0);
195 free(T);
196 }
197 impl_var(var) ::= REFERENCE DOLLAR NAME(T). {
198 var = init_impl_var(T->text, 1);
199 free(T);
200 }
201
202 %type impl_arg {impl_arg*}
203 impl_arg(arg) ::= impl_type(type) impl_var(var). {
204 arg = init_impl_arg(type, var, NULL);
205 }
206 impl_arg(arg) ::= impl_type(type) impl_var(var) EQUALS impl_def_val(def). {
207 arg = init_impl_arg(type, var, def);
208 }
209
210 %type impl_args {impl_args*}
211 impl_args(args) ::= impl_arg(arg). {
212 args = init_impl_args(arg);
213 }
214 impl_args(args) ::= impl_args(args_) COMMA impl_arg(arg). {
215 args = add_impl_arg(args_, arg);
216 }
217
218 %type impl_stmts {impl_stmts*}
219 impl_stmts(stmts) ::= impl_stmt(stmt). {
220 stmts = init_impl_stmts(stmt);
221 }
222 impl_stmts(stmts) ::= impl_stmts(stmts_) impl_stmt(stmt). {
223 stmts = add_impl_stmt(stmts_, stmt);
224 }
225
226 %type impl_stmt {impl_stmt*}
227 impl_stmt(stmt) ::= let_stmt(let). {
228 stmt = init_impl_stmt(PSI_T_LET, let);
229 }
230 impl_stmt(stmt) ::= set_stmt(set). {
231 stmt = init_impl_stmt(PSI_T_SET, set);
232 }
233 impl_stmt(stmt) ::= ret_stmt(ret). {
234 stmt = init_impl_stmt(PSI_T_RET, ret);
235 }
236
237 %type let_stmt {let_stmt*}
238 let_stmt(let) ::= LET decl_var(var) EQUALS let_value(val) EOS. {
239 let = init_let_stmt(var, val);
240 }
241
242 %type let_value {let_value*}
243 let_value(val) ::= let_func(func) LPAREN impl_var(var) RPAREN. {
244 val = init_let_value(func, var, 0);
245 }
246 let_value(val) ::= REFERENCE let_func(func) LPAREN impl_var(var) RPAREN. {
247 val = init_let_value(func, var, 1);
248 }
249 let_value(val) ::= REFERENCE NULL. {
250 val = init_let_value(NULL, NULL, 1);
251 }
252 let_value(val) ::= NULL. {
253 val = init_let_value(NULL, NULL, 0);
254 }
255
256 %type let_func {let_func*}
257 let_func(func) ::= STRLEN(T). {
258 func = init_let_func(T->type, T->text);
259 free(T);
260 }
261 let_func(func) ::= STRVAL(T). {
262 func = init_let_func(T->type, T->text);
263 free(T);
264 }
265 let_func(func) ::= INTVAL(T). {
266 func = init_let_func(T->type, T->text);
267 free(T);
268 }
269 let_func(func) ::= FLOATVAL(T). {
270 func = init_let_func(T->type, T->text);
271 free(T);
272 }
273 let_func(func) ::= BOOLVAL(T). {
274 func = init_let_func(T->type, T->text);
275 free(T);
276 }
277
278 %type set_stmt {set_stmt*}
279 set_stmt(set) ::= SET impl_var(var) EQUALS set_value(val) EOS. {
280 set = init_set_stmt(var, val);
281 }
282
283 %type set_value {set_value*}
284 set_value(val) ::= set_func(func) LPAREN decl_vars(vars) RPAREN. {
285 val = init_set_value(func, vars);
286 }
287
288 %type set_func {set_func*}
289 set_func(func) ::= TO_STRING(T). {
290 func = init_set_func(T->type, T->text);
291 free(T);
292 }
293 set_func(func) ::= TO_INT(T). {
294 func = init_set_func(T->type, T->text);
295 free(T);
296 }
297 set_func(func) ::= TO_FLOAT(T). {
298 func = init_set_func(T->type, T->text);
299 free(T);
300 }
301 set_func(func) ::= TO_BOOL(T). {
302 func = init_set_func(T->type, T->text);
303 free(T);
304 }
305 set_func(func) ::= VOID(T). {
306 func = init_set_func(T->type, T->text);
307 free(T);
308 }
309
310 %type ret_stmt {ret_stmt*}
311 ret_stmt(ret) ::= RET set_func(func) LPAREN decl_var(var) RPAREN EOS. {
312 ret = init_ret_stmt(func, var);
313 }
314
315 %type impl_type {impl_type*}
316 impl_type(type_) ::= VOID(T). {
317 type_ = init_impl_type(T->type, T->text);
318 free(T);
319 }
320 impl_type(type_) ::= MIXED(T). {
321 type_ = init_impl_type(T->type, T->text);
322 free(T);
323 }
324 impl_type(type_) ::= BOOL(T). {
325 type_ = init_impl_type(T->type, T->text);
326 free(T);
327 }
328 impl_type(type_) ::= INT(T). {
329 type_ = init_impl_type(T->type, T->text);
330 free(T);
331 }
332 impl_type(type_) ::= FLOAT(T). {
333 type_ = init_impl_type(T->type, T->text);
334 free(T);
335 }
336 impl_type(type_) ::= STRING(T). {
337 type_ = init_impl_type(T->type, T->text);
338 free(T);
339 }
340 impl_type(type_) ::= ARRAY(T). {
341 type_ = init_impl_type(T->type, T->text);
342 free(T);
343 }
344
345 %type pointers {unsigned}
346 pointers(p) ::= POINTER. {++p;}
347 pointers(p) ::= pointers(P) POINTER. {p = ++P;}