summaryrefslogtreecommitdiff
path: root/other/gramble/compiler.y
blob: d33ca672b07476d66b3ad4ac0f2f1e474d75e088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/* fornax - distributed packet network
 *
 * by team teso
 *
 * yacc command parser
 */

%{
#ifdef DEBUG
#include <stdio.h>
#endif
#include <stdlib.h>
#include "branch.h"
#include "call.h"
#include "compiler.h"
#include "condition.h"
#include "element.h"
#include "symbol.h"

extern element **	gl_script;

%}


%union {
	int		eq;		/* equality test operator */
	int		logoper;	/* logical operator */
	char *		str;		/* generic string pointer */
	element **	pp_element;
	element *	p_element;
	call *		p_call;
	branch *	p_branch;
	condition *	p_condition;
	sym_elem *	p_sym_elem;
	sym_elem **	pp_sym_elem;
}


%token	<eq>		EQ
%token	<eq>		EQ_OP
%token	<logoper>	LOG_OPER
%token	<str>		STRING
%token	<str>		ASTRING
%token	<str>		VARIABLE
%token	<str>		SET
%token	<str>		IF
%token	<str>		ELSE
%token	<str>		EXPR_BLOCK_BEGIN
%token	<str>		EXPR_BLOCK_END

%type	<pp_element>	script
%type	<pp_element>	block
%type	<pp_element>	elementlist
%type	<p_element>	element
%type	<p_call>	call
%type	<p_branch>	branch
%type	<p_condition>	condition
%type	<p_sym_elem>	set
%type	<pp_sym_elem>	setlist

%%


script:
		block
	{
		gl_script = $1;
	}

	;

/* a block is a list of expression elements. the block is started with a
 * `{' bracket and terminated by a `}' bracket. the simplest block just
 * consists out of "{}"
 */

block:
		EXPR_BLOCK_BEGIN elementlist EXPR_BLOCK_END
	{
		$$ = $2;
	}

	|	EXPR_BLOCK_BEGIN EXPR_BLOCK_END
	{
		$$ = NULL;
	}

	;

/* an elementlist is a concatation of single elements, which could be either
 * expressions, settings or blocks
 */

elementlist:
		elementlist element
	{
#ifdef DEBUG
		printf ("element %08x added to elementlist %08x\n", $2, $1);
#endif
		$$ = elem_add ($1, $2);
	}

	|	element
	{
#ifdef DEBUG
		printf ("element %08x added to elementlist NULL\n", $1);
#endif
		$$ = NULL;
		$$ = elem_add ($$, $1);
	}

	;


/* an element is actually the gut of a program. elements are the pieces that
 * are executed in a linear way, but an element can contain a block of other
 * elements *shrug*
 */

element:
		call
	{
#ifdef DEBUG
		printf ("call element %08x experienced \n", $1);
#endif
		$$ = elem_create ();
		$$ = elem_set_type ($$, ELEM_TYPE_CALL);
		$$ = elem_set_data ($$, $1);
	}

	|	branch
	{
#ifdef DEBUG
		printf ("branch element %08x experienced \n", $1);
#endif
		$$ = elem_create ();
		$$ = elem_set_type ($$, ELEM_TYPE_BRANCH);
		$$ = elem_set_data ($$, $1);
	}

	|	set
	{
#ifdef DEBUG
		printf ("set element %08x experienced \n", $1);
#endif
		$$ = elem_create ();
		$$ = elem_set_type ($$, ELEM_TYPE_SET);
		$$ = elem_set_data ($$, $1);
	}

	;

call:
		STRING '(' setlist ')'
	{
#ifdef DEBUG
		printf ("call with parameters to symbol \"%s\" experienced \n", $1);
#endif
		$$ = call_create ();
		$$ = call_set_name ($$, $1);
		$$ = call_set_parameters ($$, $3);
	}

	|	STRING '(' ')'
	{
#ifdef DEBUG
		printf ("call without parameters to symbol \"%s\" experienced \n", $1);
#endif
		$$ = call_create ();
		$$ = call_set_name ($$, $1);
		$$ = call_set_parameters ($$, NULL);
	}

	;

setlist:
		setlist set
	{
#ifdef DEBUG
		printf ("symbol %08x added to symbol table at %08x\n", $2, $1);
#endif
		$$ = sym_elem_add ($1, $2);
	}

	|	set
	{
#ifdef DEBUG
		printf ("symbol %08x added to NULL symbol table\n", $1);
#endif
		$$ = NULL;
		$$ = sym_elem_add ($$, $1);
	}

	;

set:
		STRING EQ ASTRING
	{
#ifdef DEBUG
		printf ("symbol pair (%s = \"%s\") created\n", $1, $3);
#endif
		$$ = sym_elem_create ($1, $3);
	}

	;

branch:
		IF '(' condition ')' block
	{
#ifdef DEBUG
		printf ("if block with condition at %08x and block at %08x created\n", $3, $5);
#endif
		$$ = br_create ();
		$$ = br_set_condition ($$, $3);
		$$ = br_set_block_if ($$, $5);
		$$ = br_set_block_else ($$, NULL);
	}

	|	IF '(' condition ')' block ELSE block
	{
#ifdef DEBUG
		printf ("if block with condition at %08x and blocks at %08x/%08x created\n", $3, $5, $7);
#endif
		$$ = br_create ();
		$$ = br_set_condition ($$, $3);
		$$ = br_set_block_if ($$, $5);
		$$ = br_set_block_else ($$, $7);
	}

	;

condition:
		'(' condition LOG_OPER condition ')'
	{
#ifdef DEBUG
		printf ("condition1 at %08x LOG_OPER condition2 at %08x created\n", $2, $4);
#endif
		$$ = cond_create ();
		$$ = cond_set_cond1 ($$, $2);
		$$ = cond_set_logoper ($$, $3);
		$$ = cond_set_cond2 ($$, $4);
		$$ = cond_set_val1 ($$, NULL);
		$$ = cond_set_val2 ($$, NULL);
	}

	|	STRING EQ_OP ASTRING
	{
#ifdef DEBUG
		printf ("%s EQ_OP \"%s\"\n", $1, $3);
#endif
		$$ = cond_create ();
		$$ = cond_set_cond1 ($$, NULL);
		$$ = cond_set_cond1 ($$, NULL);
		$$ = cond_set_val1 ($$, $1);
		$$ = cond_set_eqop ($$, $2);
		$$ = cond_set_val2 ($$, $3);
	}

	;

%%

#include "script.h"
#include "branch.h"
#include "call.h"
#include "compiler.h"
#include "condition.h"
#include "element.h"
#include "symbol.h"