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
|
#include "pr.h"
#include "errloc.h"
#include "fn.h"
#include "prv.h"
#include "parse.h"
#include "stmt.h"
#include "storage.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int prey(const struct lex *l, struct prv *p);
static int pryy(const struct lex *l, struct prv *p);
static int pryn(const struct lex *l, struct prv *p);
static int prny(const struct lex *l, struct prv *p);
static int prnn(const struct lex *l, struct prv *p);
static const struct seq seqs[] =
{
/* function definition with variadic parameters and return variable */
{
(struct step[])
{
{ID, "using"},
{ID, NULL, 1},
{ID, "etc",},
{ID, "returning"},
{ID},
{0}
},
.fn = prey
},
/* function definition with parameters and return variable */
{
(struct step[])
{
{ID, "using"},
{ID, NULL, 1},
{ID, "returning"},
{ID},
{0}
},
.fn = pryy
},
/* function definition with parameters, no return variable */
{
(struct step[])
{
{ID, "using"},
{ID, NULL, 1},
{0}
},
.fn = pryn
},
/* function definition with no parameters, with return variable */
{
(struct step[])
{
{ID, "returning"},
{ID},
{0}
},
.fn = prny
},
{0}
};
static const struct tk *findparam(const char *s, const struct pr *pr)
{
for (size_t i = 0; i < pr->nparams; i++)
{
const struct param *p = &pr->params[i];
const struct tk *tk = p->tk;
if (!strcmp(tk->s, s))
return tk;
}
return NULL;
}
static int param(const struct tk *tk, const struct stentry *e, struct pr *pr)
{
size_t n = pr->nparams + 1;
struct param *params = realloc(pr->params, n * sizeof *params);
if (!params)
{
perror("realloc(3)");
return -1;
}
pr->params = params;
pr->params[pr->nparams++] = (struct param){.tk = tk, .entry = e};
return 0;
}
static int setret(const struct tk *tk, const struct stentry *e, struct pr *pr)
{
if (!(pr->ret = malloc(sizeof *pr->ret)))
{
perror("malloc(3)");
return -1;
}
*pr->ret = (struct param){.tk = tk, .entry = e};
return 0;
}
static int finalize(const struct lex *l, struct prv *p)
{
const struct fn *fn = fn_cur(p);
const struct pr *pr = fn->pr;
struct pos init =
{
.seq = stmts,
.stseq = stmts,
.step = stmts->steps
};
if (p->proto)
{
if (pop(l, p))
return -1;
fputc('\t', stderr);
}
else if (push(&init, p))
return -1;
fprintf(stderr, "\tadding procedure using %zu%s parameters "
"and%s return value\n", pr->nparams, pr->variadic ? " variadic" : "",
pr->ret ? "" : " no");
p->proto = NULL;
p->stk = p->tk;
return 1;
}
static int prret(const struct lex *l, const struct tk *tk, struct prv *p)
{
const struct fn *fn = fn_cur(p);
struct pr *pr = fn->pr;
const char *s = tk->s;
const struct storage *lk = fn->lk, *gl = fn->gl;
const struct stentry *e, *gle;
const struct tk *prm;
if (!lk || !(e = storage_find(s, lk)))
{
errloc(tk, "return value \"%s\" not in %s", s, tk->s);
return -1;
}
else if (gl && (gle = storage_find(s, gl)))
{
const struct loc *loc = &gle->tk->loc;
errloc(tk, "return value \"%s\" also in %s at %s:%d:%d", s, gl->name,
loc->f, loc->line, loc->col);
return -1;
}
else if ((prm = findparam(s, pr)))
{
const struct loc *loc = &prm->loc;
errloc(tk, "return value \"%s\" already listed as "
"parameter at %s:%d:%d", tk->s, loc->f, loc->line, loc->col);
return -1;
}
else if (setret(tk, e, pr))
return -1;
return finalize(l, p);
}
static const struct tk *prparams(const struct lex *l, struct prv *p, int *ret)
{
const struct tk *tk = p->stk + 1;
const struct fn *fn = fn_cur(p);
struct pr *pr = fn->pr;
if (ret)
*ret = 0;
for (;;)
{
const struct storage *lk = fn->lk, *gl = fn->gl;
const struct stentry *e, *gle;
const struct tk *prm;
const char *s;
if (lex_eof(l, tk))
return tk;
else if (!strcmp((s = tk->s), "returning") && ret)
{
*ret = 1;
return ++tk;
}
else if (!strcmp(s, "etc"))
{
if (pr->variadic)
{
errloc(tk, "keyword \"etc\" may only appear once as a "
"parameter");
return NULL;
}
pr->variadic = tk++ - p->stk;
}
else if (kw(s))
return tk;
else if (pr->variadic)
{
errloc(tk, "keyword \"etc\" must appear as the last parameter");
return NULL;
}
else if ((prm = findparam(s, pr)))
{
const struct loc *loc = &prm->loc;
errloc(tk, "parameter \"%s\" already listed at %d:%d", s,
loc->line, loc->col);
return NULL;
}
else if (!lk || !(e = storage_find(s, lk)))
{
if (p->proto)
{
/* ambiguous syntax: param might be confused
* with next custom type. */
p->tk = p->stk + pr->nparams + 1;
return tk;
}
else
{
errloc(tk, "parameter \"%s\" not in %s", s, tk->s);
return NULL;
}
}
else if (gl && (gle = storage_find(s, gl)))
{
const struct loc *loc = &gle->tk->loc;
errloc(tk, "parameter \"%s\" also in %s at %d:%d", s, gl->name,
loc->line, loc->col);
return NULL;
}
else if (param(tk, e, pr))
return NULL;
else
tk++;
}
return tk;
}
static int prey(const struct lex *l, struct prv *p)
{
int ret;
const struct tk *tk = prparams(l, p, &ret);
if (!tk)
return -1;
else if (ret)
return prret(l, tk, p);
return finalize(l, p);
}
static int pryy(const struct lex *l, struct prv *p)
{
int ret;
const struct tk *tk = prparams(l, p, &ret);
if (!tk)
return -1;
else if (ret)
return prret(l, tk, p);
return finalize(l, p);
}
static int pryn(const struct lex *l, struct prv *p)
{
if (!prparams(l, p, NULL))
return -1;
return finalize(l, p);
}
static int prny(const struct lex *l, struct prv *p)
{
return prret(l, p->stk + 1, p);
}
static int prnn(const struct lex *l, struct prv *p)
{
return finalize(l, p);
}
void pr_free(struct pr *pr)
{
if (pr)
{
free(pr->params);
free(pr->ret);
}
free(pr);
}
int pr(const struct lex *l, struct prv *p)
{
const struct tk *tk = p->tk - 1, *next = p->tk;
struct fn *fn = fn_cur(p);
struct pos init =
{
.seq = seqs,
.stseq = seqs,
.step = seqs->steps
};
if (fn->pr)
{
const struct loc *loc = &fn->pr->tk->loc;
errloc(tk, "procedure already defined at %s:%d:%d", loc->f, loc->line,
loc->col);
return -1;
}
else if (!(fn->pr = malloc(sizeof *fn->pr)))
{
perror("malloc(3)");
return -1;
}
*fn->pr = (struct pr){.tk = tk};
/* on no parameters or return values, go directly to next sequences list. */
if (next - l->tokens < l->ntok
&& strcmp(next->s, "using")
&& strcmp(next->s, "returning"))
return prnn(l, p);
else if (push(&init, p))
return -1;
p->stk = p->tk;
return 1;
}
|