-
Notifications
You must be signed in to change notification settings - Fork 5
/
expr.c
498 lines (446 loc) · 14.9 KB
/
expr.c
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
/*
* $Id: expr.c,v 1.8 2008/07/15 07:40:25 bnv Exp $
* $Log: expr.c,v $
* Revision 1.8 2008/07/15 07:40:25 bnv
* #include changed from <> to ""
*
* Revision 1.7 2004/08/16 15:28:54 bnv
* Changed: name of mnemonic operands from xxx_mn to O_XXX
*
* Revision 1.6 2004/03/27 08:34:07 bnv
* Nothing
*
* Revision 1.5 2003/10/30 13:16:28 bnv
* Variable name change
*
* Revision 1.4 2002/06/11 12:37:38 bnv
* Added: CDECL
*
* Revision 1.3 2001/06/25 18:51:48 bnv
* Header -> Id
*
* Revision 1.2 1999/11/26 13:13:47 bnv
* Some spaces changed to tabs.
*
* Revision 1.1 1998/07/02 17:34:50 bnv
* Initial revision
*
*/
#include <cmssys.h>
#include "lerror.h"
#include "lstring.h"
#include "rexx.h"
#include "trace.h"
#include "compile.h"
/*-----------------* local function prototypes *------------ */
static void __CDECL Exp0(void);
static void __CDECL Exp1(void);
static void __CDECL Exp2(void);
static void __CDECL Exp3(void);
static void __CDECL Exp4(void);
static void __CDECL Exp5(void);
static void __CDECL Exp6(void);
static void __CDECL Exp7(void);
static void __CDECL Exp8(void);
static void __CDECL C_function(void);
/* ========================= C_expr ========================== */
/* return if it had exited with another code than OP_COPY */
/* so something is left in stack */
int __CDECL
C_expr(int calltype) {
Context *context = (Context *) CMSGetPG();
(context->expr_exp_ct) = calltype;
(context->expr_exp_pos) = (context->compileCompileCodeLen);
Exp0();
/* If nothing was processed in the expr then push a Null string */
if ((context->expr_exp_pos) == (context->compileCompileCodeLen)) {
_CodeAddByte(OP_PUSH);
_CodeAddPtr(&((context->rexxnullStr)->key));
TraceByte(nothing_middle);
}
switch ((context->expr_exp_ct)) {
case exp_assign:
_CodeAddByte(OP_COPY);
return FALSE;
case exp_tmp:
_CodeAddByte(OP_COPY2TMP);
break;
case exp_normal:
/* do nothing */
break;
default:
(context->lstring_Lerror)(ERR_INTERPRETER_FAILURE, 0);
}
return TRUE;
} /* C_expr */
/* ---------------- InsTmp ---------------- */
static int __CDECL
InsTmp(size_t pos, int pushtmp) {
Context *context = (Context *) CMSGetPG();
/* do we need to push a tmp value */
if (((context->expr_exp_ct) == exp_assign) &&
((context->expr_exp_pos) == pos)) {
/* because we have return the value in a temporary var */
/* change the type to exp_normal */
if (pushtmp)
(context->expr_exp_ct) = exp_normal;
} else {
if (pushtmp)
_CodeInsByte(pos, OP_PUSHTMP);
else
return TRUE;
}
return FALSE;
} /* InsTmp */
/* ----------------- Exp0 ----------------- */
static void __CDECL
Exp0(void) {
enum mnemonic_type orxor;
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp1();
orxor = ((context->nextsymbsymbol) == xor_sy) ? OP_XOR : OP_OR;
while (((context->nextsymbsymbol) == or_sy) ||
((context->nextsymbsymbol) == xor_sy)) { /* Logical OR; XOR */
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp1();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE);
_CodeAddByte(orxor);
TraceByte(operator_middle);
orxor = ((context->nextsymbsymbol) == xor_sy) ? OP_XOR : OP_OR;
}
} /* Exp0 */
/* ----------------- Exp1 ----------------- */
static void __CDECL
Exp1(void) {
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp2();
while ((context->nextsymbsymbol) == and_sy) { /* Logical AND */
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp2();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE);
_CodeAddByte(OP_AND);
TraceByte(operator_middle);
}
} /* Exp1 */
/* ----------------- Exp2 ----------------- */
static void __CDECL
Exp2(void) {
enum symboltype _symbol;
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp3();
_symbol = (context->nextsymbsymbol);
/* DO NOT CHANGE THE ORDER OF THIS SYMBOLS */
if (((context->nextsymbsymbol) >= eq_sy) &&
((context->nextsymbsymbol) <= dgt_sy)) {
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp3();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
/****
// if (!InsTmp(pos,FALSE)) { * do we need to add a pushtmp *
*****/
InsTmp(pos, TRUE); /* add the pushtmp byte */
switch (_symbol) {
case eq_sy :
_CodeAddByte(OP_EQ);
break;
case ne_sy :
_CodeAddByte(OP_NE);
break;
case gt_sy :
_CodeAddByte(OP_GT);
break;
case ge_sy :
_CodeAddByte(OP_GE);
break;
case lt_sy :
_CodeAddByte(OP_LT);
break;
case le_sy :
_CodeAddByte(OP_LE);
break;
case deq_sy :
_CodeAddByte(OP_DEQ);
break;
case dne_sy :
_CodeAddByte(OP_DNE);
break;
case dgt_sy :
_CodeAddByte(OP_DGT);
break;
case dge_sy :
_CodeAddByte(OP_DGE);
break;
case dlt_sy :
_CodeAddByte(OP_DLT);
break;
case dle_sy :
_CodeAddByte(OP_DLE);
break;
default:
(context->lstring_Lerror)(ERR_INTERPRETER_FAILURE, 0);
}
/*****
// } else {
// switch (_symbol) {
// case eq_sy : _CodeAddByte(OP_TEQ); break;
// case ne_sy : _CodeAddByte(OP_TNE); break;
// case gt_sy : _CodeAddByte(OP_TGT); break;
// case ge_sy : _CodeAddByte(OP_TGE); break;
// case lt_sy : _CodeAddByte(OP_TLT); break;
// case le_sy : _CodeAddByte(OP_TLE); break;
// case deq_sy : _CodeAddByte(OP_TDEQ); break;
// case dne_sy : _CodeAddByte(OP_TDNE); break;
// case dgt_sy : _CodeAddByte(OP_TDGT); break;
// case dge_sy : _CodeAddByte(OP_TDGE); break;
// case dlt_sy : _CodeAddByte(OP_TDLT); break;
// case dle_sy : _CodeAddByte(OP_TDLE); break;
// default:
// (context->lstring_Lerror)(ERR_INTERPRETER_FAILURE,0);
// }
// }
*****/
TraceByte(operator_middle);
}
} /* Exp2 */
/* ----------------- Exp3 ----------------- */
static void __CDECL
Exp3(void) {
int _Concat;
int _Pblank;
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp4();
_Concat = ((context->nextsymbsymbol) == concat_sy);
_Pblank = (context->nextsymbsymbolPrevBlank);
/* UNTIL NOT_SY there must be prefix and starting '(' operators */
while (((context->nextsymbsymbol) <= not_sy) || _Concat) {
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
if (_Concat) nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp4();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE); /* add the pushtmp byte */
if (_Concat || !_Pblank)
_CodeAddByte(OP_CONCAT);
else
_CodeAddByte(OP_BCONCAT);
TraceByte(operator_middle);
_Concat = ((context->nextsymbsymbol) == concat_sy);
_Pblank = (context->nextsymbsymbolPrevBlank);
}
} /* Exp3 */
/* ----------------- Exp4 ----------------- */
static void __CDECL
Exp4(void) {
enum symboltype _symbol;
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp5();
_symbol = (context->nextsymbsymbol);
while (((context->nextsymbsymbol) == plus_sy) ||
((context->nextsymbsymbol) == minus_sy)) {
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp5();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE);
if (_symbol == plus_sy)
_CodeAddByte(OP_ADD);
else
_CodeAddByte(OP_SUB);
TraceByte(operator_middle);
_symbol = (context->nextsymbsymbol);
}
} /* Exp4 */
/* ----------------- Exp5 ----------------- */
static void __CDECL
Exp5(void) {
enum symboltype _symbol;
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp6();
_symbol = (context->nextsymbsymbol);
/* ORDER IS IMPORTANT */
while (((context->nextsymbsymbol) >= times_sy) &&
((context->nextsymbsymbol) <= intdiv_sy)) {
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp6();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE);
switch (_symbol) {
case times_sy :
_CodeAddByte(OP_MUL);
break;
case div_sy :
_CodeAddByte(OP_DIV);
break;
case intdiv_sy :
_CodeAddByte(OP_IDIV);
break;
case mod_sy :
_CodeAddByte(OP_MOD);
break;
default:
(context->lstring_Lerror)(ERR_INTERPRETER_FAILURE, 0);
}
TraceByte(operator_middle);
_symbol = (context->nextsymbsymbol);
}
} /* Exp5 */
/* ----------------- Exp6 ----------------- */
static void __CDECL
Exp6(void) {
CTYPE pos, pos2;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
Exp7();
while ((context->nextsymbsymbol) == power_sy) {
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
nextsymbol();
pos2 = (context->compileCompileCodeLen);
Exp7();
if ((context->compileCompileCodeLen) == pos2)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE);
_CodeAddByte(OP_POW);
TraceByte(operator_middle);
}
} /* Exp6 */
/* ----------------- Exp7 ----------------- */
static void __CDECL
Exp7(void) {
enum symboltype _symbol;
int prefix;
CTYPE pos;
Context *context = (Context *) CMSGetPG();
pos = (context->compileCompileCodeLen);
_symbol = (context->nextsymbsymbol);
if (((context->nextsymbsymbol) == not_sy) ||
((context->nextsymbsymbol) == plus_sy) ||
((context->nextsymbsymbol) == minus_sy)) {
nextsymbol();
prefix = TRUE;
} else
prefix = FALSE;
Exp8();
if (prefix) {
if ((context->compileCompileCodeLen) == pos)
(context->lstring_Lerror)(ERR_INVALID_EXPRESSION, 0);
InsTmp(pos, TRUE);
if (_symbol == not_sy)
_CodeAddByte(OP_NOT);
else if (_symbol == plus_sy)
_CodeAddByte(OP_PLUS);
else
_CodeAddByte(OP_NEG);
TraceByte(operator_middle);
}
} /* Exp7 */
/* ----------------- Exp8 ----------------- */
static void __CDECL
Exp8(void) {
Context *context = (Context *) CMSGetPG();
if ((context->nextsymbsymbol) == ident_sy) {
_CodeAddByte(OP_LOAD);
_CodeAddPtr(SYMBOLADD2LITS);
TraceByte(variable_middle);
nextsymbol();
} else if ((context->nextsymbsymbol) == literal_sy) {
_CodeAddByte(OP_PUSH);
_CodeAddPtr(SYMBOLADD2LITS_KEY);
TraceByte(litteral_middle);
nextsymbol();
} else if ((context->nextsymbsymbol) == function_sy) {
C_function();
_mustbe(ri_parent, ERR_UNMATCHED_PARAN, 0);
} else if ((context->nextsymbsymbol) == le_parent) {
nextsymbol();
Exp0();
_mustbe(ri_parent, ERR_UNMATCHED_PARAN, 0);
}
} /* Exp8 */
/* -------------------------------------------------------------- */
/* [Function] ::= [Identifier]([[Expression][,[Expression]]...]) */
/* -------------------------------------------------------------- */
static void __CDECL
C_function(void) {
int ia, line, realarg = 0;
word existarg = 0, bp = 1, lastarg; /* bit mapped, if arguments exist */
void *lbl;
Context *context = (Context *) CMSGetPG();
line = (context->nextsymbsymboline); /* keep line number */
lbl = _AddLabel(FT_FUNCTION, UNKNOWN_LABEL);
/* add a space in stack, for the result string */
if (((context->expr_exp_ct) == exp_assign) &&
((context->expr_exp_pos) == (context->compileCompileCodeLen)))
(context->expr_exp_ct) = exp_normal;
else
_CodeAddByte(OP_PUSHTMP);
nextsymbol();
ia = lastarg = 0;
if ((context->nextsymbsymbol) != ri_parent) {
if ((context->nextsymbsymbol) != comma_sy) {
Exp0();
realarg++;
lastarg = ia + 1;
existarg |= bp; /* argument exist */
}
ia++;
bp <<= 1; /* increase bit position */
while ((context->nextsymbsymbol) == comma_sy) {
nextsymbol();
if (ia >= MAXARGS)
(context->lstring_Lerror)(ERR_INCORRECT_CALL, 0);
if (!(((context->nextsymbsymbol) == comma_sy) ||
((context->nextsymbsymbol) == ri_parent))) {
Exp0();
lastarg = ia + 1;
realarg++;
existarg |= bp;
}
ia++;
bp <<= 1; /* increase bit position */
}
}
_CodeAddByte(OP_CALL);
_CodeAddPtr(lbl); /* call pointer */
_CodeAddByte(lastarg); /* arguments */
_CodeAddByte(realarg); /* real args */
_CodeAddWord(existarg); /* which exist */
_CodeAddWord(line); /* (context->nextsymbsymbol) line */
_CodeAddByte(CT_FUNCTION); /* call type */
TraceByte(function_middle);
} /* C_function */