Coverage Report

Created: 2023-09-15 06:20

/src/testdir/build/lua-master/source/lparser.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
** $Id: lparser.c $
3
** Lua Parser
4
** See Copyright Notice in lua.h
5
*/
6
7
#define lparser_c
8
#define LUA_CORE
9
10
#include "lprefix.h"
11
12
13
#include <limits.h>
14
#include <string.h>
15
16
#include "lua.h"
17
18
#include "lcode.h"
19
#include "ldebug.h"
20
#include "ldo.h"
21
#include "lfunc.h"
22
#include "llex.h"
23
#include "lmem.h"
24
#include "lobject.h"
25
#include "lopcodes.h"
26
#include "lparser.h"
27
#include "lstate.h"
28
#include "lstring.h"
29
#include "ltable.h"
30
31
32
33
/* maximum number of local variables per function (must be smaller
34
   than 250, due to the bytecode format) */
35
19.2k
#define MAXVARS   200
36
37
38
484k
#define hasmultret(k)   ((k) == VCALL || (k) == VVARARG)
39
40
41
/* because all strings are unified by the scanner, the parser
42
   can use pointer equality for string equality */
43
127M
#define eqstr(a,b)  ((a) == (b))
44
45
46
/*
47
** nodes for block list (list of active blocks)
48
*/
49
typedef struct BlockCnt {
50
  struct BlockCnt *previous;  /* chain */
51
  int firstlabel;  /* index of first label in this block */
52
  int firstgoto;  /* index of first pending goto in this block */
53
  lu_byte nactvar;  /* # active locals outside the block */
54
  lu_byte upval;  /* true if some variable in the block is an upvalue */
55
  lu_byte isloop;  /* true if 'block' is a loop */
56
  lu_byte insidetbc;  /* true if inside the scope of a to-be-closed var. */
57
} BlockCnt;
58
59
60
61
/*
62
** prototypes for recursive non-terminal functions
63
*/
64
static void statement (LexState *ls);
65
static void expr (LexState *ls, expdesc *v);
66
67
68
44
static l_noret error_expected (LexState *ls, int token) {
69
44
  luaX_syntaxerror(ls,
70
44
      luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token)));
71
44
}
72
73
74
1
static l_noret errorlimit (FuncState *fs, int limit, const char *what) {
75
1
  lua_State *L = fs->ls->L;
76
1
  const char *msg;
77
1
  int line = fs->f->linedefined;
78
1
  const char *where = (line == 0)
79
1
                      ? "main function"
80
1
                      : luaO_pushfstring(L, "function at line %d", line);
81
1
  msg = luaO_pushfstring(L, "too many %s (limit is %d) in %s",
82
1
                             what, limit, where);
83
1
  luaX_syntaxerror(fs->ls, msg);
84
1
}
85
86
87
24.7k
static void checklimit (FuncState *fs, int v, int l, const char *what) {
88
24.7k
  if (v > l) errorlimit(fs, l, what);
89
24.7k
}
90
91
92
/*
93
** Test whether next token is 'c'; if so, skip it.
94
*/
95
279k
static int testnext (LexState *ls, int c) {
96
279k
  if (ls->t.token == c) {
97
170k
    luaX_next(ls);
98
170k
    return 1;
99
170k
  }
100
108k
  else return 0;
101
279k
}
102
103
104
/*
105
** Check that next token is 'c'.
106
*/
107
12.8M
static void check (LexState *ls, int c) {
108
12.8M
  if (ls->t.token != c)
109
11
    error_expected(ls, c);
110
12.8M
}
111
112
113
/*
114
** Check that next token is 'c' and skip it.
115
*/
116
61.1k
static void checknext (LexState *ls, int c) {
117
61.1k
  check(ls, c);
118
61.1k
  luaX_next(ls);
119
61.1k
}
120
121
122
55.5k
#define check_condition(ls,c,msg) { if (!(c)) luaX_syntaxerror(ls, msg); }
123
124
125
/*
126
** Check that next token is 'what' and skip it. In case of error,
127
** raise an error that the expected 'what' should match a 'who'
128
** in line 'where' (if that is not the current line).
129
*/
130
113k
static void check_match (LexState *ls, int what, int who, int where) {
131
113k
  if (l_unlikely(!testnext(ls, what))) {
132
64
    if (where == ls->linenumber)  /* all in the same line? */
133
33
      error_expected(ls, what);  /* do not need a complex message */
134
31
    else {
135
31
      luaX_syntaxerror(ls, luaO_pushfstring(ls->L,
136
31
             "%s expected (to close %s at line %d)",
137
31
              luaX_token2str(ls, what), luaX_token2str(ls, who), where));
138
31
    }
139
64
  }
140
113k
}
141
142
143
12.7M
static TString *str_checkname (LexState *ls) {
144
12.7M
  TString *ts;
145
12.7M
  check(ls, TK_NAME);
146
12.7M
  ts = ls->t.seminfo.ts;
147
12.7M
  luaX_next(ls);
148
12.7M
  return ts;
149
12.7M
}
150
151
152
26.1M
static void init_exp (expdesc *e, expkind k, int i) {
153
26.1M
  e->f = e->t = NO_JUMP;
154
26.1M
  e->k = k;
155
26.1M
  e->u.info = i;
156
26.1M
}
157
158
159
13.0M
static void codestring (expdesc *e, TString *s) {
160
13.0M
  e->f = e->t = NO_JUMP;
161
13.0M
  e->k = VKSTR;
162
13.0M
  e->u.strval = s;
163
13.0M
}
164
165
166
6.24k
static void codename (LexState *ls, expdesc *e) {
167
6.24k
  codestring(e, str_checkname(ls));
168
6.24k
}
169
170
171
/*
172
** Register a new local variable in the active 'Proto' (for debug
173
** information).
174
*/
175
17.3k
static int registerlocalvar (LexState *ls, FuncState *fs, TString *varname) {
176
17.3k
  Proto *f = fs->f;
177
17.3k
  int oldsize = f->sizelocvars;
178
17.3k
  luaM_growvector(ls->L, f->locvars, fs->ndebugvars, f->sizelocvars,
179
17.3k
                  LocVar, SHRT_MAX, "local variables");
180
41.6k
  while (oldsize < f->sizelocvars)
181
24.3k
    f->locvars[oldsize++].varname = NULL;
182
17.3k
  f->locvars[fs->ndebugvars].varname = varname;
183
17.3k
  f->locvars[fs->ndebugvars].startpc = fs->pc;
184
17.3k
  luaC_objbarrier(ls->L, f, varname);
185
17.3k
  return fs->ndebugvars++;
186
17.3k
}
187
188
189
/*
190
** Create a new local variable with the given 'name'. Return its index
191
** in the function.
192
*/
193
19.2k
static int new_localvar (LexState *ls, TString *name) {
194
19.2k
  lua_State *L = ls->L;
195
19.2k
  FuncState *fs = ls->fs;
196
19.2k
  Dyndata *dyd = ls->dyd;
197
19.2k
  Vardesc *var;
198
19.2k
  checklimit(fs, dyd->actvar.n + 1 - fs->firstlocal,
199
19.2k
                 MAXVARS, "local variables");
200
19.2k
  luaM_growvector(L, dyd->actvar.arr, dyd->actvar.n + 1,
201
19.2k
                  dyd->actvar.size, Vardesc, USHRT_MAX, "local variables");
202
19.2k
  var = &dyd->actvar.arr[dyd->actvar.n++];
203
19.2k
  var->vd.kind = VDKREG;  /* default */
204
19.2k
  var->vd.name = name;
205
19.2k
  return dyd->actvar.n - 1 - fs->firstlocal;
206
19.2k
}
207
208
#define new_localvarliteral(ls,v) \
209
1.81k
    new_localvar(ls,  \
210
1.81k
      luaX_newstring(ls, "" v, (sizeof(v)/sizeof(char)) - 1));
211
212
213
214
/*
215
** Return the "variable description" (Vardesc) of a given variable.
216
** (Unless noted otherwise, all variables are referred to by their
217
** compiler indices.)
218
*/
219
124M
static Vardesc *getlocalvardesc (FuncState *fs, int vidx) {
220
124M
  return &fs->ls->dyd->actvar.arr[fs->firstlocal + vidx];
221
124M
}
222
223
224
/*
225
** Convert 'nvar', a compiler index level, to its corresponding
226
** register. For that, search for the highest variable below that level
227
** that is in a register and uses its register index ('ridx') plus one.
228
*/
229
32.7M
static int reglevel (FuncState *fs, int nvar) {
230
37.1M
  while (nvar-- > 0) {
231
22.4M
    Vardesc *vd = getlocalvardesc(fs, nvar);  /* get previous variable */
232
22.4M
    if (vd->vd.kind != RDKCTC)  /* is in a register? */
233
18.0M
      return vd->vd.ridx + 1;
234
22.4M
  }
235
14.6M
  return 0;  /* no variables in registers */
236
32.7M
}
237
238
239
/*
240
** Return the number of variables in the register stack for the given
241
** function.
242
*/
243
32.7M
int luaY_nvarstack (FuncState *fs) {
244
32.7M
  return reglevel(fs, fs->nactvar);
245
32.7M
}
246
247
248
/*
249
** Get the debug-information entry for current variable 'vidx'.
250
*/
251
10.2k
static LocVar *localdebuginfo (FuncState *fs, int vidx) {
252
10.2k
  Vardesc *vd = getlocalvardesc(fs,  vidx);
253
10.2k
  if (vd->vd.kind == RDKCTC)
254
888
    return NULL;  /* no debug info. for constants */
255
9.35k
  else {
256
9.35k
    int idx = vd->vd.pidx;
257
9.35k
    lua_assert(idx < fs->ndebugvars);
258
9.35k
    return &fs->f->locvars[idx];
259
9.35k
  }
260
10.2k
}
261
262
263
/*
264
** Create an expression representing variable 'vidx'
265
*/
266
160k
static void init_var (FuncState *fs, expdesc *e, int vidx) {
267
160k
  e->f = e->t = NO_JUMP;
268
160k
  e->k = VLOCAL;
269
160k
  e->u.var.vidx = vidx;
270
160k
  e->u.var.ridx = getlocalvardesc(fs, vidx)->vd.ridx;
271
160k
}
272
273
274
/*
275
** Raises an error if variable described by 'e' is read only
276
*/
277
29.2k
static void check_readonly (LexState *ls, expdesc *e) {
278
29.2k
  FuncState *fs = ls->fs;
279
29.2k
  TString *varname = NULL;  /* to be set if variable is const */
280
29.2k
  switch (e->k) {
281
0
    case VCONST: {
282
0
      varname = ls->dyd->actvar.arr[e->u.info].vd.name;
283
0
      break;
284
0
    }
285
3.31k
    case VLOCAL: {
286
3.31k
      Vardesc *vardesc = getlocalvardesc(fs, e->u.var.vidx);
287
3.31k
      if (vardesc->vd.kind != VDKREG)  /* not a regular variable? */
288
1
        varname = vardesc->vd.name;
289
3.31k
      break;
290
0
    }
291
1.22k
    case VUPVAL: {
292
1.22k
      Upvaldesc *up = &fs->f->upvalues[e->u.info];
293
1.22k
      if (up->kind != VDKREG)
294
1
        varname = up->name;
295
1.22k
      break;
296
0
    }
297
24.6k
    default:
298
24.6k
      return;  /* other cases cannot be read-only */
299
29.2k
  }
300
4.54k
  if (varname) {
301
2
    const char *msg = luaO_pushfstring(ls->L,
302
2
       "attempt to assign to const variable '%s'", getstr(varname));
303
2
    luaK_semerror(ls, msg);  /* error */
304
2
  }
305
4.54k
}
306
307
308
/*
309
** Start the scope for the last 'nvars' created variables.
310
*/
311
8.33k
static void adjustlocalvars (LexState *ls, int nvars) {
312
8.33k
  FuncState *fs = ls->fs;
313
8.33k
  int reglevel = luaY_nvarstack(fs);
314
8.33k
  int i;
315
25.6k
  for (i = 0; i < nvars; i++) {
316
17.3k
    int vidx = fs->nactvar++;
317
17.3k
    Vardesc *var = getlocalvardesc(fs, vidx);
318
17.3k
    var->vd.ridx = reglevel++;
319
17.3k
    var->vd.pidx = registerlocalvar(ls, fs, var->vd.name);
320
17.3k
  }
321
8.33k
}
322
323
324
/*
325
** Close the scope for all variables up to level 'tolevel'.
326
** (debug info.)
327
*/
328
10.3k
static void removevars (FuncState *fs, int tolevel) {
329
10.3k
  fs->ls->dyd->actvar.n -= (fs->nactvar - tolevel);
330
20.2k
  while (fs->nactvar > tolevel) {
331
9.92k
    LocVar *var = localdebuginfo(fs, --fs->nactvar);
332
9.92k
    if (var)  /* does it have debug information? */
333
9.03k
      var->endpc = fs->pc;
334
9.92k
  }
335
10.3k
}
336
337
338
/*
339
** Search the upvalues of the function 'fs' for one
340
** with the given 'name'.
341
*/
342
25.4M
static int searchupvalue (FuncState *fs, TString *name) {
343
25.4M
  int i;
344
25.4M
  Upvaldesc *up = fs->f->upvalues;
345
39.4M
  for (i = 0; i < fs->nups; i++) {
346
26.0M
    if (eqstr(up[i].name, name)) return i;
347
26.0M
  }
348
13.3M
  return -1;  /* not found */
349
25.4M
}
350
351
352
5.42k
static Upvaldesc *allocupvalue (FuncState *fs) {
353
5.42k
  Proto *f = fs->f;
354
5.42k
  int oldsize = f->sizeupvalues;
355
5.42k
  checklimit(fs, fs->nups + 1, MAXUPVAL, "upvalues");
356
5.42k
  luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues,
357
5.42k
                  Upvaldesc, MAXUPVAL, "upvalues");
358
17.4k
  while (oldsize < f->sizeupvalues)
359
11.9k
    f->upvalues[oldsize++].name = NULL;
360
5.42k
  return &f->upvalues[fs->nups++];
361
5.42k
}
362
363
364
5.03k
static int newupvalue (FuncState *fs, TString *name, expdesc *v) {
365
5.03k
  Upvaldesc *up = allocupvalue(fs);
366
5.03k
  FuncState *prev = fs->prev;
367
5.03k
  if (v->k == VLOCAL) {
368
1.59k
    up->instack = 1;
369
1.59k
    up->idx = v->u.var.ridx;
370
1.59k
    up->kind = getlocalvardesc(prev, v->u.var.vidx)->vd.kind;
371
1.59k
    lua_assert(eqstr(name, getlocalvardesc(prev, v->u.var.vidx)->vd.name));
372
1.59k
  }
373
3.43k
  else {
374
3.43k
    up->instack = 0;
375
3.43k
    up->idx = cast_byte(v->u.info);
376
3.43k
    up->kind = prev->f->upvalues[v->u.info].kind;
377
3.43k
    lua_assert(eqstr(name, prev->f->upvalues[v->u.info].name));
378
3.43k
  }
379
5.03k
  up->name = name;
380
5.03k
  luaC_objbarrier(fs->ls->L, fs->f, name);
381
5.03k
  return fs->nups - 1;
382
5.03k
}
383
384
385
/*
386
** Look for an active local variable with the name 'n' in the
387
** function 'fs'. If found, initialize 'var' with it and return
388
** its expression kind; otherwise return -1.
389
*/
390
26.1M
static int searchvar (FuncState *fs, TString *n, expdesc *var) {
391
26.1M
  int i;
392
127M
  for (i = cast_int(fs->nactvar) - 1; i >= 0; i--) {
393
101M
    Vardesc *vd = getlocalvardesc(fs, i);
394
101M
    if (eqstr(n, vd->vd.name)) {  /* found? */
395
692k
      if (vd->vd.kind == RDKCTC)  /* compile-time constant? */
396
531k
        init_exp(var, VCONST, fs->firstlocal + i);
397
160k
      else  /* real variable */
398
160k
        init_var(fs, var, i);
399
692k
      return var->k;
400
692k
    }
401
101M
  }
402
25.4M
  return -1;  /* not found */
403
26.1M
}
404
405
406
/*
407
** Mark block where variable at given level was defined
408
** (to emit close instructions later).
409
*/
410
1.59k
static void markupval (FuncState *fs, int level) {
411
1.59k
  BlockCnt *bl = fs->bl;
412
5.99k
  while (bl->nactvar > level)
413
4.39k
    bl = bl->previous;
414
1.59k
  bl->upval = 1;
415
1.59k
  fs->needclose = 1;
416
1.59k
}
417
418
419
/*
420
** Mark that current block has a to-be-closed variable.
421
*/
422
399
static void marktobeclosed (FuncState *fs) {
423
399
  BlockCnt *bl = fs->bl;
424
399
  bl->upval = 1;
425
399
  bl->insidetbc = 1;
426
399
  fs->needclose = 1;
427
399
}
428
429
430
/*
431
** Find a variable with the given name 'n'. If it is an upvalue, add
432
** this upvalue into all intermediate functions. If it is a global, set
433
** 'var' as 'void' as a flag.
434
*/
435
38.8M
static void singlevaraux (FuncState *fs, TString *n, expdesc *var, int base) {
436
38.8M
  if (fs == NULL)  /* no more levels? */
437
12.6M
    init_exp(var, VVOID, 0);  /* default is global */
438
26.1M
  else {
439
26.1M
    int v = searchvar(fs, n, var);  /* look up locals at current level */
440
26.1M
    if (v >= 0) {  /* found? */
441
692k
      if (v == VLOCAL && !base)
442
1.59k
        markupval(fs, var->u.var.vidx);  /* local will be used as an upval */
443
692k
    }
444
25.4M
    else {  /* not found as local at current level; try upvalues */
445
25.4M
      int idx = searchupvalue(fs, n);  /* try existing upvalues */
446
25.4M
      if (idx < 0) {  /* not found? */
447
13.3M
        singlevaraux(fs->prev, n, var, 0);  /* try upper levels */
448
13.3M
        if (var->k == VLOCAL || var->k == VUPVAL)  /* local or upvalue? */
449
5.03k
          idx  = newupvalue(fs, n, var);  /* will be a new upvalue */
450
13.3M
        else  /* it is a global or a constant */
451
13.3M
          return;  /* don't need to do anything at this level */
452
13.3M
      }
453
12.0M
      init_exp(var, VUPVAL, idx);  /* new or old upvalue */
454
12.0M
    }
455
26.1M
  }
456
38.8M
}
457
458
459
/*
460
** Find a variable with the given name 'n', handling global variables
461
** too.
462
*/
463
12.7M
static void singlevar (LexState *ls, expdesc *var) {
464
12.7M
  TString *varname = str_checkname(ls);
465
12.7M
  FuncState *fs = ls->fs;
466
12.7M
  singlevaraux(fs, varname, var, 1);
467
12.7M
  if (var->k == VVOID) {  /* global name? */
468
12.6M
    expdesc key;
469
12.6M
    singlevaraux(fs, ls->envn, var, 1);  /* get environment variable */
470
12.6M
    lua_assert(var->k != VVOID);  /* this one must exist */
471
12.6M
    luaK_exp2anyregup(fs, var);  /* but could be a constant */
472
12.6M
    codestring(&key, varname);  /* key is variable name */
473
12.6M
    luaK_indexed(fs, var, &key);  /* env[varname] */
474
12.6M
  }
475
12.7M
}
476
477
478
/*
479
** Adjust the number of results from an expression list 'e' with 'nexps'
480
** expressions to 'nvars' values.
481
*/
482
7.59k
static void adjust_assign (LexState *ls, int nvars, int nexps, expdesc *e) {
483
7.59k
  FuncState *fs = ls->fs;
484
7.59k
  int needed = nvars - nexps;  /* extra values needed */
485
7.59k
  if (hasmultret(e->k)) {  /* last expression has multiple returns? */
486
238
    int extra = needed + 1;  /* discount last expression itself */
487
238
    if (extra < 0)
488
45
      extra = 0;
489
238
    luaK_setreturns(fs, e, extra);  /* last exp. provides the difference */
490
238
  }
491
7.36k
  else {
492
7.36k
    if (e->k != VVOID)  /* at least one expression? */
493
6.51k
      luaK_exp2nextreg(fs, e);  /* close last expression */
494
7.36k
    if (needed > 0)  /* missing values? */
495
1.95k
      luaK_nil(fs, fs->freereg, needed);  /* complete with nils */
496
7.36k
  }
497
7.59k
  if (needed > 0)
498
2.12k
    luaK_reserveregs(fs, needed);  /* registers for extra values */
499
5.46k
  else  /* adding 'needed' is actually a subtraction */
500
5.46k
    fs->freereg += needed;  /* remove extra values */
501
7.59k
}
502
503
504
13.6M
#define enterlevel(ls)  luaE_incCstack(ls->L)
505
506
507
13.6M
#define leavelevel(ls) ((ls)->L->nCcalls--)
508
509
510
/*
511
** Generates an error that a goto jumps into the scope of some
512
** local variable.
513
*/
514
0
static l_noret jumpscopeerror (LexState *ls, Labeldesc *gt) {
515
0
  const char *varname = getstr(getlocalvardesc(ls->fs, gt->nactvar)->vd.name);
516
0
  const char *msg = "<goto %s> at line %d jumps into the scope of local '%s'";
517
0
  msg = luaO_pushfstring(ls->L, msg, getstr(gt->name), gt->line, varname);
518
0
  luaK_semerror(ls, msg);  /* raise the error */
519
0
}
520
521
522
/*
523
** Solves the goto at index 'g' to given 'label' and removes it
524
** from the list of pending gotos.
525
** If it jumps into the scope of some variable, raises an error.
526
*/
527
1.18k
static void solvegoto (LexState *ls, int g, Labeldesc *label) {
528
1.18k
  int i;
529
1.18k
  Labellist *gl = &ls->dyd->gt;  /* list of gotos */
530
1.18k
  Labeldesc *gt = &gl->arr[g];  /* goto to be resolved */
531
1.18k
  lua_assert(eqstr(gt->name, label->name));
532
1.18k
  if (l_unlikely(gt->nactvar < label->nactvar))  /* enter some scope? */
533
0
    jumpscopeerror(ls, gt);
534
1.18k
  luaK_patchlist(ls->fs, gt->pc, label->pc);
535
1.48k
  for (i = g; i < gl->n - 1; i++)  /* remove goto from pending list */
536
301
    gl->arr[i] = gl->arr[i + 1];
537
1.18k
  gl->n--;
538
1.18k
}
539
540
541
/*
542
** Search for an active label with the given name.
543
*/
544
13.5k
static Labeldesc *findlabel (LexState *ls, TString *name) {
545
13.5k
  int i;
546
13.5k
  Dyndata *dyd = ls->dyd;
547
  /* check labels in current function for a match */
548
14.4k
  for (i = ls->fs->firstlabel; i < dyd->label.n; i++) {
549
6.41k
    Labeldesc *lb = &dyd->label.arr[i];
550
6.41k
    if (eqstr(lb->name, name))  /* correct label? */
551
5.60k
      return lb;
552
6.41k
  }
553
7.98k
  return NULL;  /* label not found */
554
13.5k
}
555
556
557
/*
558
** Adds a new label/goto in the corresponding list.
559
*/
560
static int newlabelentry (LexState *ls, Labellist *l, TString *name,
561
13.2k
                          int line, int pc) {
562
13.2k
  int n = l->n;
563
13.2k
  luaM_growvector(ls->L, l->arr, n, l->size,
564
13.2k
                  Labeldesc, SHRT_MAX, "labels/gotos");
565
13.2k
  l->arr[n].name = name;
566
13.2k
  l->arr[n].line = line;
567
13.2k
  l->arr[n].nactvar = ls->fs->nactvar;
568
13.2k
  l->arr[n].close = 0;
569
13.2k
  l->arr[n].pc = pc;
570
13.2k
  l->n = n + 1;
571
13.2k
  return n;
572
13.2k
}
573
574
575
10.7k
static int newgotoentry (LexState *ls, TString *name, int line, int pc) {
576
10.7k
  return newlabelentry(ls, &ls->dyd->gt, name, line, pc);
577
10.7k
}
578
579
580
/*
581
** Solves forward jumps. Check whether new label 'lb' matches any
582
** pending gotos in current block and solves them. Return true
583
** if any of the gotos need to close upvalues.
584
*/
585
2.48k
static int solvegotos (LexState *ls, Labeldesc *lb) {
586
2.48k
  Labellist *gl = &ls->dyd->gt;
587
2.48k
  int i = ls->fs->bl->firstgoto;
588
2.48k
  int needsclose = 0;
589
3.67k
  while (i < gl->n) {
590
1.18k
    if (eqstr(gl->arr[i].name, lb->name)) {
591
1.18k
      needsclose |= gl->arr[i].close;
592
1.18k
      solvegoto(ls, i, lb);  /* will remove 'i' from the list */
593
1.18k
    }
594
0
    else
595
0
      i++;
596
1.18k
  }
597
2.48k
  return needsclose;
598
2.48k
}
599
600
601
/*
602
** Create a new label with the given 'name' at the given 'line'.
603
** 'last' tells whether label is the last non-op statement in its
604
** block. Solves all pending gotos to this new label and adds
605
** a close instruction if necessary.
606
** Returns true iff it added a close instruction.
607
*/
608
static int createlabel (LexState *ls, TString *name, int line,
609
2.48k
                        int last) {
610
2.48k
  FuncState *fs = ls->fs;
611
2.48k
  Labellist *ll = &ls->dyd->label;
612
2.48k
  int l = newlabelentry(ls, ll, name, line, luaK_getlabel(fs));
613
2.48k
  if (last) {  /* label is last no-op statement in the block? */
614
    /* assume that locals are already out of scope */
615
0
    ll->arr[l].nactvar = fs->bl->nactvar;
616
0
  }
617
2.48k
  if (solvegotos(ls, &ll->arr[l])) {  /* need close? */
618
292
    luaK_codeABC(fs, OP_CLOSE, luaY_nvarstack(fs), 0, 0);
619
292
    return 1;
620
292
  }
621
2.19k
  return 0;
622
2.48k
}
623
624
625
/*
626
** Adjust pending gotos to outer level of a block.
627
*/
628
7.54k
static void movegotosout (FuncState *fs, BlockCnt *bl) {
629
7.54k
  int i;
630
7.54k
  Labellist *gl = &fs->ls->dyd->gt;
631
  /* correct pending gotos to current block */
632
10.4k
  for (i = bl->firstgoto; i < gl->n; i++) {  /* for each pending goto */
633
2.88k
    Labeldesc *gt = &gl->arr[i];
634
    /* leaving a variable scope? */
635
2.88k
    if (reglevel(fs, gt->nactvar) > reglevel(fs, bl->nactvar))
636
361
      gt->close |= bl->upval;  /* jump may need a close */
637
2.88k
    gt->nactvar = bl->nactvar;  /* update goto level */
638
2.88k
  }
639
7.54k
}
640
641
642
13.5k
static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) {
643
13.5k
  bl->isloop = isloop;
644
13.5k
  bl->nactvar = fs->nactvar;
645
13.5k
  bl->firstlabel = fs->ls->dyd->label.n;
646
13.5k
  bl->firstgoto = fs->ls->dyd->gt.n;
647
13.5k
  bl->upval = 0;
648
13.5k
  bl->insidetbc = (fs->bl != NULL && fs->bl->insidetbc);
649
13.5k
  bl->previous = fs->bl;
650
13.5k
  fs->bl = bl;
651
13.5k
  lua_assert(fs->freereg == luaY_nvarstack(fs));
652
13.5k
}
653
654
655
/*
656
** generates an error for an undefined 'goto'.
657
*/
658
5
static l_noret undefgoto (LexState *ls, Labeldesc *gt) {
659
5
  const char *msg;
660
5
  if (eqstr(gt->name, luaS_newliteral(ls->L, "break"))) {
661
0
    msg = "break outside loop at line %d";
662
0
    msg = luaO_pushfstring(ls->L, msg, gt->line);
663
0
  }
664
5
  else {
665
5
    msg = "no visible label '%s' for <goto> at line %d";
666
5
    msg = luaO_pushfstring(ls->L, msg, getstr(gt->name), gt->line);
667
5
  }
668
5
  luaK_semerror(ls, msg);
669
5
}
670
671
672
10.3k
static void leaveblock (FuncState *fs) {
673
10.3k
  BlockCnt *bl = fs->bl;
674
10.3k
  LexState *ls = fs->ls;
675
10.3k
  int hasclose = 0;
676
10.3k
  int stklevel = reglevel(fs, bl->nactvar);  /* level outside the block */
677
10.3k
  removevars(fs, bl->nactvar);  /* remove block locals */
678
10.3k
  lua_assert(bl->nactvar == fs->nactvar);  /* back to level on entry */
679
10.3k
  if (bl->isloop)  /* has to fix pending breaks? */
680
2.21k
    hasclose = createlabel(ls, luaS_newliteral(ls->L, "break"), 0, 0);
681
10.3k
  if (!hasclose && bl->previous && bl->upval)  /* still need a 'close'? */
682
361
    luaK_codeABC(fs, OP_CLOSE, stklevel, 0, 0);
683
10.3k
  fs->freereg = stklevel;  /* free registers */
684
10.3k
  ls->dyd->label.n = bl->firstlabel;  /* remove local labels */
685
10.3k
  fs->bl = bl->previous;  /* current block now is previous one */
686
10.3k
  if (bl->previous)  /* was it a nested block? */
687
7.54k
    movegotosout(fs, bl);  /* update pending gotos to enclosing block */
688
2.78k
  else {
689
2.78k
    if (bl->firstgoto < ls->dyd->gt.n)  /* still pending gotos? */
690
5
      undefgoto(ls, &ls->dyd->gt.arr[bl->firstgoto]);  /* error */
691
2.78k
  }
692
10.3k
}
693
694
695
/*
696
** adds a new prototype into list of prototypes
697
*/
698
3.16k
static Proto *addprototype (LexState *ls) {
699
3.16k
  Proto *clp;
700
3.16k
  lua_State *L = ls->L;
701
3.16k
  FuncState *fs = ls->fs;
702
3.16k
  Proto *f = fs->f;  /* prototype of current function */
703
3.16k
  if (fs->np >= f->sizep) {
704
987
    int oldsize = f->sizep;
705
987
    luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions");
706
7.42k
    while (oldsize < f->sizep)
707
6.43k
      f->p[oldsize++] = NULL;
708
987
  }
709
3.16k
  f->p[fs->np++] = clp = luaF_newproto(L);
710
3.16k
  luaC_objbarrier(L, f, clp);
711
3.16k
  return clp;
712
3.16k
}
713
714
715
/*
716
** codes instruction to create new closure in parent function.
717
** The OP_CLOSURE instruction uses the last available register,
718
** so that, if it invokes the GC, the GC knows which registers
719
** are in use at that time.
720
721
*/
722
2.71k
static void codeclosure (LexState *ls, expdesc *v) {
723
2.71k
  FuncState *fs = ls->fs->prev;
724
2.71k
  init_exp(v, VRELOC, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np - 1));
725
2.71k
  luaK_exp2nextreg(fs, v);  /* fix it at the last register */
726
2.71k
}
727
728
729
3.55k
static void open_func (LexState *ls, FuncState *fs, BlockCnt *bl) {
730
3.55k
  Proto *f = fs->f;
731
3.55k
  fs->prev = ls->fs;  /* linked list of funcstates */
732
3.55k
  fs->ls = ls;
733
3.55k
  ls->fs = fs;
734
3.55k
  fs->pc = 0;
735
3.55k
  fs->previousline = f->linedefined;
736
3.55k
  fs->iwthabs = 0;
737
3.55k
  fs->lasttarget = 0;
738
3.55k
  fs->freereg = 0;
739
3.55k
  fs->nk = 0;
740
3.55k
  fs->nabslineinfo = 0;
741
3.55k
  fs->np = 0;
742
3.55k
  fs->nups = 0;
743
3.55k
  fs->ndebugvars = 0;
744
3.55k
  fs->nactvar = 0;
745
3.55k
  fs->needclose = 0;
746
3.55k
  fs->firstlocal = ls->dyd->actvar.n;
747
3.55k
  fs->firstlabel = ls->dyd->label.n;
748
3.55k
  fs->bl = NULL;
749
3.55k
  f->source = ls->source;
750
3.55k
  luaC_objbarrier(ls->L, f, f->source);
751
3.55k
  f->maxstacksize = 2;  /* registers 0/1 are always valid */
752
3.55k
  enterblock(fs, bl, 0);
753
3.55k
}
754
755
756
2.78k
static void close_func (LexState *ls) {
757
2.78k
  lua_State *L = ls->L;
758
2.78k
  FuncState *fs = ls->fs;
759
2.78k
  Proto *f = fs->f;
760
2.78k
  luaK_ret(fs, luaY_nvarstack(fs), 0);  /* final return */
761
2.78k
  leaveblock(fs);
762
2.78k
  lua_assert(fs->bl == NULL);
763
2.78k
  luaK_finish(fs);
764
2.78k
  luaM_shrinkvector(L, f->code, f->sizecode, fs->pc, Instruction);
765
2.78k
  luaM_shrinkvector(L, f->lineinfo, f->sizelineinfo, fs->pc, ls_byte);
766
2.78k
  luaM_shrinkvector(L, f->abslineinfo, f->sizeabslineinfo,
767
2.78k
                       fs->nabslineinfo, AbsLineInfo);
768
2.78k
  luaM_shrinkvector(L, f->k, f->sizek, fs->nk, TValue);
769
2.78k
  luaM_shrinkvector(L, f->p, f->sizep, fs->np, Proto *);
770
2.78k
  luaM_shrinkvector(L, f->locvars, f->sizelocvars, fs->ndebugvars, LocVar);
771
2.78k
  luaM_shrinkvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc);
772
2.78k
  ls->fs = fs->prev;
773
2.78k
  luaC_checkGC(L);
774
2.78k
}
775
776
777
778
/*============================================================*/
779
/* GRAMMAR RULES */
780
/*============================================================*/
781
782
783
/*
784
** check whether current token is in the follow set of a block.
785
** 'until' closes syntactical blocks, but do not close scope,
786
** so it is handled in separate.
787
*/
788
97.8k
static int block_follow (LexState *ls, int withuntil) {
789
97.8k
  switch (ls->t.token) {
790
509
    case TK_ELSE: case TK_ELSEIF:
791
4.60k
    case TK_END: case TK_EOS:
792
4.60k
      return 1;
793
426
    case TK_UNTIL: return withuntil;
794
92.8k
    default: return 0;
795
97.8k
  }
796
97.8k
}
797
798
799
9.41k
static void statlist (LexState *ls) {
800
  /* statlist -> { stat [';'] } */
801
95.2k
  while (!block_follow(ls, 1)) {
802
88.8k
    if (ls->t.token == TK_RETURN) {
803
2.95k
      statement(ls);
804
2.95k
      return;  /* 'return' must be last statement */
805
2.95k
    }
806
85.8k
    statement(ls);
807
85.8k
  }
808
9.41k
}
809
810
811
5.07k
static void fieldsel (LexState *ls, expdesc *v) {
812
  /* fieldsel -> ['.' | ':'] NAME */
813
5.07k
  FuncState *fs = ls->fs;
814
5.07k
  expdesc key;
815
5.07k
  luaK_exp2anyregup(fs, v);
816
5.07k
  luaX_next(ls);  /* skip the dot or colon */
817
5.07k
  codename(ls, &key);
818
5.07k
  luaK_indexed(fs, v, &key);
819
5.07k
}
820
821
822
23.3k
static void yindex (LexState *ls, expdesc *v) {
823
  /* index -> '[' expr ']' */
824
23.3k
  luaX_next(ls);  /* skip the '[' */
825
23.3k
  expr(ls, v);
826
23.3k
  luaK_exp2val(ls->fs, v);
827
23.3k
  checknext(ls, ']');
828
23.3k
}
829
830
831
/*
832
** {======================================================================
833
** Rules for Constructors
834
** =======================================================================
835
*/
836
837
838
typedef struct ConsControl {
839
  expdesc v;  /* last list item read */
840
  expdesc *t;  /* table descriptor */
841
  int nh;  /* total number of 'record' elements */
842
  int na;  /* number of array elements already stored */
843
  int tostore;  /* number of array elements pending to be stored */
844
} ConsControl;
845
846
847
3
static void recfield (LexState *ls, ConsControl *cc) {
848
  /* recfield -> (NAME | '['exp']') = exp */
849
3
  FuncState *fs = ls->fs;
850
3
  int reg = ls->fs->freereg;
851
3
  expdesc tab, key, val;
852
3
  if (ls->t.token == TK_NAME) {
853
1
    checklimit(fs, cc->nh, MAX_INT, "items in a constructor");
854
1
    codename(ls, &key);
855
1
  }
856
2
  else  /* ls->t.token == '[' */
857
2
    yindex(ls, &key);
858
3
  cc->nh++;
859
3
  checknext(ls, '=');
860
3
  tab = *cc->t;
861
3
  luaK_indexed(fs, &tab, &key);
862
3
  expr(ls, &val);
863
3
  luaK_storevar(fs, &tab, &val);
864
3
  fs->freereg = reg;  /* free registers */
865
3
}
866
867
868
177
static void closelistfield (FuncState *fs, ConsControl *cc) {
869
177
  if (cc->v.k == VVOID) return;  /* there is no list item */
870
91
  luaK_exp2nextreg(fs, &cc->v);
871
91
  cc->v.k = VVOID;
872
91
  if (cc->tostore == LFIELDS_PER_FLUSH) {
873
0
    luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore);  /* flush */
874
0
    cc->na += cc->tostore;
875
0
    cc->tostore = 0;  /* no more items pending */
876
0
  }
877
91
}
878
879
880
228
static void lastlistfield (FuncState *fs, ConsControl *cc) {
881
228
  if (cc->tostore == 0) return;
882
46
  if (hasmultret(cc->v.k)) {
883
4
    luaK_setmultret(fs, &cc->v);
884
4
    luaK_setlist(fs, cc->t->u.info, cc->na, LUA_MULTRET);
885
4
    cc->na--;  /* do not count last expression (unknown number of elements) */
886
4
  }
887
42
  else {
888
42
    if (cc->v.k != VVOID)
889
42
      luaK_exp2nextreg(fs, &cc->v);
890
42
    luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore);
891
42
  }
892
46
  cc->na += cc->tostore;
893
46
}
894
895
896
174
static void listfield (LexState *ls, ConsControl *cc) {
897
  /* listfield -> exp */
898
174
  expr(ls, &cc->v);
899
174
  cc->tostore++;
900
174
}
901
902
903
177
static void field (LexState *ls, ConsControl *cc) {
904
  /* field -> listfield | recfield */
905
177
  switch(ls->t.token) {
906
134
    case TK_NAME: {  /* may be 'listfield' or 'recfield' */
907
134
      if (luaX_lookahead(ls) != '=')  /* expression? */
908
133
        listfield(ls, cc);
909
1
      else
910
1
        recfield(ls, cc);
911
134
      break;
912
0
    }
913
2
    case '[': {
914
2
      recfield(ls, cc);
915
2
      break;
916
0
    }
917
41
    default: {
918
41
      listfield(ls, cc);
919
41
      break;
920
0
    }
921
177
  }
922
177
}
923
924
925
269
static void constructor (LexState *ls, expdesc *t) {
926
  /* constructor -> '{' [ field { sep field } [sep] ] '}'
927
     sep -> ',' | ';' */
928
269
  FuncState *fs = ls->fs;
929
269
  int line = ls->linenumber;
930
269
  int pc = luaK_codeABC(fs, OP_NEWTABLE, 0, 0, 0);
931
269
  ConsControl cc;
932
269
  luaK_code(fs, 0);  /* space for extra arg. */
933
269
  cc.na = cc.nh = cc.tostore = 0;
934
269
  cc.t = t;
935
269
  init_exp(t, VNONRELOC, fs->freereg);  /* table will be at stack top */
936
269
  luaK_reserveregs(fs, 1);
937
269
  init_exp(&cc.v, VVOID, 0);  /* no value (yet) */
938
269
  checknext(ls, '{');
939
360
  do {
940
360
    lua_assert(cc.v.k == VVOID || cc.tostore > 0);
941
360
    if (ls->t.token == '}') break;
942
178
    closelistfield(fs, &cc);
943
178
    field(ls, &cc);
944
178
  } while (testnext(ls, ',') || testnext(ls, ';'));
945
0
  check_match(ls, '}', '{', line);
946
269
  lastlistfield(fs, &cc);
947
269
  luaK_settablesize(fs, pc, t->u.info, cc.na, cc.nh);
948
269
}
949
950
/* }====================================================================== */
951
952
953
525
static void setvararg (FuncState *fs, int nparams) {
954
525
  fs->f->is_vararg = 1;
955
525
  luaK_codeABC(fs, OP_VARARGPREP, nparams, 0, 0);
956
525
}
957
958
959
3.16k
static void parlist (LexState *ls) {
960
  /* parlist -> [ {NAME ','} (NAME | '...') ] */
961
3.16k
  FuncState *fs = ls->fs;
962
3.16k
  Proto *f = fs->f;
963
3.16k
  int nparams = 0;
964
3.16k
  int isvararg = 0;
965
3.16k
  if (ls->t.token != ')') {  /* is 'parlist' not empty? */
966
9.99k
    do {
967
9.99k
      switch (ls->t.token) {
968
9.86k
        case TK_NAME: {
969
9.86k
          new_localvar(ls, str_checkname(ls));
970
9.86k
          nparams++;
971
9.86k
          break;
972
0
        }
973
135
        case TK_DOTS: {
974
135
          luaX_next(ls);
975
135
          isvararg = 1;
976
135
          break;
977
0
        }
978
0
        default: luaX_syntaxerror(ls, "<name> or '...' expected");
979
9.99k
      }
980
9.99k
    } while (!isvararg && testnext(ls, ','));
981
1.41k
  }
982
3.16k
  adjustlocalvars(ls, nparams);
983
3.16k
  f->numparams = cast_byte(fs->nactvar);
984
3.16k
  if (isvararg)
985
135
    setvararg(fs, f->numparams);  /* declared vararg */
986
3.16k
  luaK_reserveregs(fs, fs->nactvar);  /* reserve registers for parameters */
987
3.16k
}
988
989
990
3.16k
static void body (LexState *ls, expdesc *e, int ismethod, int line) {
991
  /* body ->  '(' parlist ')' block END */
992
3.16k
  FuncState new_fs;
993
3.16k
  BlockCnt bl;
994
3.16k
  new_fs.f = addprototype(ls);
995
3.16k
  new_fs.f->linedefined = line;
996
3.16k
  open_func(ls, &new_fs, &bl);
997
3.16k
  checknext(ls, '(');
998
3.16k
  if (ismethod) {
999
9
    new_localvarliteral(ls, "self");  /* create 'self' parameter */
1000
9
    adjustlocalvars(ls, 1);
1001
9
  }
1002
3.16k
  parlist(ls);
1003
3.16k
  checknext(ls, ')');
1004
3.16k
  statlist(ls);
1005
3.16k
  new_fs.f->lastlinedefined = ls->linenumber;
1006
3.16k
  check_match(ls, TK_END, TK_FUNCTION, line);
1007
3.16k
  codeclosure(ls, e);
1008
3.16k
  close_func(ls);
1009
3.16k
}
1010
1011
1012
66.5k
static int explist (LexState *ls, expdesc *v) {
1013
  /* explist -> expr { ',' expr } */
1014
66.5k
  int n = 1;  /* at least one expression */
1015
66.5k
  expr(ls, v);
1016
100k
  while (testnext(ls, ',')) {
1017
34.3k
    luaK_exp2nextreg(ls->fs, v);
1018
34.3k
    expr(ls, v);
1019
34.3k
    n++;
1020
34.3k
  }
1021
66.5k
  return n;
1022
66.5k
}
1023
1024
1025
437k
static void funcargs (LexState *ls, expdesc *f) {
1026
437k
  FuncState *fs = ls->fs;
1027
437k
  expdesc args;
1028
437k
  int base, nparams;
1029
437k
  int line = ls->linenumber;
1030
437k
  switch (ls->t.token) {
1031
40.9k
    case '(': {  /* funcargs -> '(' [ explist ] ')' */
1032
40.9k
      luaX_next(ls);
1033
40.9k
      if (ls->t.token == ')')  /* arg list is empty? */
1034
3.87k
        args.k = VVOID;
1035
37.0k
      else {
1036
37.0k
        explist(ls, &args);
1037
37.0k
        if (hasmultret(args.k))
1038
485
          luaK_setmultret(fs, &args);
1039
37.0k
      }
1040
40.9k
      check_match(ls, ')', '(', line);
1041
40.9k
      break;
1042
0
    }
1043
14
    case '{': {  /* funcargs -> constructor */
1044
14
      constructor(ls, &args);
1045
14
      break;
1046
0
    }
1047
396k
    case TK_STRING: {  /* funcargs -> STRING */
1048
396k
      codestring(&args, ls->t.seminfo.ts);
1049
396k
      luaX_next(ls);  /* must use 'seminfo' before 'next' */
1050
396k
      break;
1051
0
    }
1052
0
    default: {
1053
0
      luaX_syntaxerror(ls, "function arguments expected");
1054
0
    }
1055
437k
  }
1056
436k
  lua_assert(f->k == VNONRELOC);
1057
436k
  base = f->u.info;  /* base register for call */
1058
436k
  if (hasmultret(args.k))
1059
485
    nparams = LUA_MULTRET;  /* open call */
1060
436k
  else {
1061
436k
    if (args.k != VVOID)
1062
432k
      luaK_exp2nextreg(fs, &args);  /* close last argument */
1063
436k
    nparams = fs->freereg - (base+1);
1064
436k
  }
1065
436k
  init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2));
1066
436k
  luaK_fixline(fs, line);
1067
436k
  fs->freereg = base+1;  /* call removes function and arguments and leaves
1068
                            one result (unless changed later) */
1069
436k
}
1070
1071
1072
1073
1074
/*
1075
** {======================================================================
1076
** Expression parsing
1077
** =======================================================================
1078
*/
1079
1080
1081
12.8M
static void primaryexp (LexState *ls, expdesc *v) {
1082
  /* primaryexp -> NAME | '(' expr ')' */
1083
12.8M
  switch (ls->t.token) {
1084
68.9k
    case '(': {
1085
68.9k
      int line = ls->linenumber;
1086
68.9k
      luaX_next(ls);
1087
68.9k
      expr(ls, v);
1088
68.9k
      check_match(ls, ')', '(', line);
1089
68.9k
      luaK_dischargevars(ls->fs, v);
1090
68.9k
      return;
1091
0
    }
1092
12.7M
    case TK_NAME: {
1093
12.7M
      singlevar(ls, v);
1094
12.7M
      return;
1095
0
    }
1096
105
    default: {
1097
105
      luaX_syntaxerror(ls, "unexpected symbol");
1098
0
    }
1099
12.8M
  }
1100
12.8M
}
1101
1102
1103
12.8M
static void suffixedexp (LexState *ls, expdesc *v) {
1104
  /* suffixedexp ->
1105
       primaryexp { '.' NAME | '[' exp ']' | ':' NAME funcargs | funcargs } */
1106
12.8M
  FuncState *fs = ls->fs;
1107
12.8M
  primaryexp(ls, v);
1108
13.2M
  for (;;) {
1109
13.2M
    switch (ls->t.token) {
1110
5.06k
      case '.': {  /* fieldsel */
1111
5.06k
        fieldsel(ls, v);
1112
5.06k
        break;
1113
0
      }
1114
23.3k
      case '[': {  /* '[' exp ']' */
1115
23.3k
        expdesc key;
1116
23.3k
        luaK_exp2anyregup(fs, v);
1117
23.3k
        yindex(ls, &key);
1118
23.3k
        luaK_indexed(fs, v, &key);
1119
23.3k
        break;
1120
0
      }
1121
1.17k
      case ':': {  /* ':' NAME funcargs */
1122
1.17k
        expdesc key;
1123
1.17k
        luaX_next(ls);
1124
1.17k
        codename(ls, &key);
1125
1.17k
        luaK_self(fs, v, &key);
1126
1.17k
        funcargs(ls, v);
1127
1.17k
        break;
1128
0
      }
1129
435k
      case '(': case TK_STRING: case '{': {  /* funcargs */
1130
435k
        luaK_exp2nextreg(fs, v);
1131
435k
        funcargs(ls, v);
1132
435k
        break;
1133
435k
      }
1134
12.8M
      default: return;
1135
13.2M
    }
1136
13.2M
  }
1137
12.8M
}
1138
1139
1140
13.2M
static void simpleexp (LexState *ls, expdesc *v) {
1141
  /* simpleexp -> FLT | INT | STRING | NIL | TRUE | FALSE | ... |
1142
                  constructor | FUNCTION body | suffixedexp */
1143
13.2M
  switch (ls->t.token) {
1144
40.9k
    case TK_FLT: {
1145
40.9k
      init_exp(v, VKFLT, 0);
1146
40.9k
      v->u.nval = ls->t.seminfo.r;
1147
40.9k
      break;
1148
0
    }
1149
308k
    case TK_INT: {
1150
308k
      init_exp(v, VKINT, 0);
1151
308k
      v->u.ival = ls->t.seminfo.i;
1152
308k
      break;
1153
0
    }
1154
8.31k
    case TK_STRING: {
1155
8.31k
      codestring(v, ls->t.seminfo.ts);
1156
8.31k
      break;
1157
0
    }
1158
91.5k
    case TK_NIL: {
1159
91.5k
      init_exp(v, VNIL, 0);
1160
91.5k
      break;
1161
0
    }
1162
3.44k
    case TK_TRUE: {
1163
3.44k
      init_exp(v, VTRUE, 0);
1164
3.44k
      break;
1165
0
    }
1166
7
    case TK_FALSE: {
1167
7
      init_exp(v, VFALSE, 0);
1168
7
      break;
1169
0
    }
1170
1.17k
    case TK_DOTS: {  /* vararg */
1171
1.17k
      FuncState *fs = ls->fs;
1172
1.17k
      check_condition(ls, fs->f->is_vararg,
1173
1.17k
                      "cannot use '...' outside a vararg function");
1174
1.17k
      init_exp(v, VVARARG, luaK_codeABC(fs, OP_VARARG, 0, 0, 1));
1175
1.17k
      break;
1176
1.17k
    }
1177
255
    case '{': {  /* constructor */
1178
255
      constructor(ls, v);
1179
255
      return;
1180
1.17k
    }
1181
980
    case TK_FUNCTION: {
1182
980
      luaX_next(ls);
1183
980
      body(ls, v, 0, ls->linenumber);
1184
980
      return;
1185
1.17k
    }
1186
12.7M
    default: {
1187
12.7M
      suffixedexp(ls, v);
1188
12.7M
      return;
1189
1.17k
    }
1190
13.2M
  }
1191
453k
  luaX_next(ls);
1192
453k
}
1193
1194
1195
13.5M
static UnOpr getunopr (int op) {
1196
13.5M
  switch (op) {
1197
7.32k
    case TK_NOT: return OPR_NOT;
1198
176k
    case '-': return OPR_MINUS;
1199
106k
    case '~': return OPR_BNOT;
1200
36.6k
    case '#': return OPR_LEN;
1201
13.2M
    default: return OPR_NOUNOPR;
1202
13.5M
  }
1203
13.5M
}
1204
1205
1206
13.5M
static BinOpr getbinopr (int op) {
1207
13.5M
  switch (op) {
1208
7.37k
    case '+': return OPR_ADD;
1209
48.5k
    case '-': return OPR_SUB;
1210
83.5k
    case '*': return OPR_MUL;
1211
28.8k
    case '%': return OPR_MOD;
1212
538k
    case '^': return OPR_POW;
1213
5.22M
    case '/': return OPR_DIV;
1214
35.1k
    case TK_IDIV: return OPR_IDIV;
1215
17.7k
    case '&': return OPR_BAND;
1216
5.55k
    case '|': return OPR_BOR;
1217
55.6k
    case '~': return OPR_BXOR;
1218
440k
    case TK_SHL: return OPR_SHL;
1219
6.82k
    case TK_SHR: return OPR_SHR;
1220
26.2k
    case TK_CONCAT: return OPR_CONCAT;
1221
6.18k
    case TK_NE: return OPR_NE;
1222
6.24k
    case TK_EQ: return OPR_EQ;
1223
6.52M
    case '<': return OPR_LT;
1224
11.2k
    case TK_LE: return OPR_LE;
1225
55.1k
    case '>': return OPR_GT;
1226
1.60k
    case TK_GE: return OPR_GE;
1227
39.4k
    case TK_AND: return OPR_AND;
1228
195k
    case TK_OR: return OPR_OR;
1229
205k
    default: return OPR_NOBINOPR;
1230
13.5M
  }
1231
13.5M
}
1232
1233
1234
/*
1235
** Priority table for binary operators.
1236
*/
1237
static const struct {
1238
  lu_byte left;  /* left priority for each binary operator */
1239
  lu_byte right; /* right priority */
1240
} priority[] = {  /* ORDER OPR */
1241
   {10, 10}, {10, 10},           /* '+' '-' */
1242
   {11, 11}, {11, 11},           /* '*' '%' */
1243
   {14, 13},                  /* '^' (right associative) */
1244
   {11, 11}, {11, 11},           /* '/' '//' */
1245
   {6, 6}, {4, 4}, {5, 5},   /* '&' '|' '~' */
1246
   {7, 7}, {7, 7},           /* '<<' '>>' */
1247
   {9, 8},                   /* '..' (right associative) */
1248
   {3, 3}, {3, 3}, {3, 3},   /* ==, <, <= */
1249
   {3, 3}, {3, 3}, {3, 3},   /* ~=, >, >= */
1250
   {2, 2}, {1, 1}            /* and, or */
1251
};
1252
1253
326k
#define UNARY_PRIORITY  12  /* priority for unary operators */
1254
1255
1256
/*
1257
** subexpr -> (simpleexp | unop subexpr) { binop subexpr }
1258
** where 'binop' is any binary operator with a priority higher than 'limit'
1259
*/
1260
13.5M
static BinOpr subexpr (LexState *ls, expdesc *v, int limit) {
1261
13.5M
  BinOpr op;
1262
13.5M
  UnOpr uop;
1263
13.5M
  enterlevel(ls);
1264
13.5M
  uop = getunopr(ls->t.token);
1265
13.5M
  if (uop != OPR_NOUNOPR) {  /* prefix (unary) operator? */
1266
326k
    int line = ls->linenumber;
1267
326k
    luaX_next(ls);  /* skip operator */
1268
326k
    subexpr(ls, v, UNARY_PRIORITY);
1269
326k
    luaK_prefix(ls->fs, uop, v, line);
1270
326k
  }
1271
13.2M
  else simpleexp(ls, v);
1272
  /* expand while operators have priorities higher than 'limit' */
1273
13.5M
  op = getbinopr(ls->t.token);
1274
26.6M
  while (op != OPR_NOBINOPR && priority[op].left > limit) {
1275
13.0M
    expdesc v2;
1276
13.0M
    BinOpr nextop;
1277
13.0M
    int line = ls->linenumber;
1278
13.0M
    luaX_next(ls);  /* skip operator */
1279
13.0M
    luaK_infix(ls->fs, op, v);
1280
    /* read sub-expression with higher priority */
1281
13.0M
    nextop = subexpr(ls, &v2, priority[op].right);
1282
13.0M
    luaK_posfix(ls->fs, op, v, &v2, line);
1283
13.0M
    op = nextop;
1284
13.0M
  }
1285
13.5M
  leavelevel(ls);
1286
13.5M
  return op;  /* return first untreated operator */
1287
13.5M
}
1288
1289
1290
198k
static void expr (LexState *ls, expdesc *v) {
1291
198k
  subexpr(ls, v, 0);
1292
198k
}
1293
1294
/* }==================================================================== */
1295
1296
1297
1298
/*
1299
** {======================================================================
1300
** Rules for Statements
1301
** =======================================================================
1302
*/
1303
1304
1305
4.11k
static void block (LexState *ls) {
1306
  /* block -> statlist */
1307
4.11k
  FuncState *fs = ls->fs;
1308
4.11k
  BlockCnt bl;
1309
4.11k
  enterblock(fs, &bl, 0);
1310
4.11k
  statlist(ls);
1311
4.11k
  leaveblock(fs);
1312
4.11k
}
1313
1314
1315
/*
1316
** structure to chain all variables in the left-hand side of an
1317
** assignment
1318
*/
1319
struct LHS_assign {
1320
  struct LHS_assign *prev;
1321
  expdesc v;  /* variable (global, local, upvalue, or indexed) */
1322
};
1323
1324
1325
/*
1326
** check whether, in an assignment to an upvalue/local variable, the
1327
** upvalue/local variable is begin used in a previous assignment to a
1328
** table. If so, save original upvalue/local value in a safe place and
1329
** use this safe copy in the previous assignment.
1330
*/
1331
1.47k
static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc *v) {
1332
1.47k
  FuncState *fs = ls->fs;
1333
1.47k
  int extra = fs->freereg;  /* eventual position to save local variable */
1334
1.47k
  int conflict = 0;
1335
6.30k
  for (; lh; lh = lh->prev) {  /* check all previous assignments */
1336
4.83k
    if (vkisindexed(lh->v.k)) {  /* assignment to table field? */
1337
1.38k
      if (lh->v.k == VINDEXUP) {  /* is table an upvalue? */
1338
1.29k
        if (v->k == VUPVAL && lh->v.u.ind.t == v->u.info) {
1339
4
          conflict = 1;  /* table is the upvalue being assigned now */
1340
4
          lh->v.k = VINDEXSTR;
1341
4
          lh->v.u.ind.t = extra;  /* assignment will use safe copy */
1342
4
        }
1343
1.29k
      }
1344
90
      else {  /* table is a register */
1345
90
        if (v->k == VLOCAL && lh->v.u.ind.t == v->u.var.ridx) {
1346
0
          conflict = 1;  /* table is the local being assigned now */
1347
0
          lh->v.u.ind.t = extra;  /* assignment will use safe copy */
1348
0
        }
1349
        /* is index the local being assigned? */
1350
90
        if (lh->v.k == VINDEXED && v->k == VLOCAL &&
1351
90
            lh->v.u.ind.idx == v->u.var.ridx) {
1352
0
          conflict = 1;
1353
0
          lh->v.u.ind.idx = extra;  /* previous assignment will use safe copy */
1354
0
        }
1355
90
      }
1356
1.38k
    }
1357
4.83k
  }
1358
1.47k
  if (conflict) {
1359
    /* copy upvalue/local value to a temporary (in position 'extra') */
1360
4
    if (v->k == VLOCAL)
1361
0
      luaK_codeABC(fs, OP_MOVE, extra, v->u.var.ridx, 0);
1362
4
    else
1363
4
      luaK_codeABC(fs, OP_GETUPVAL, extra, v->u.info, 0);
1364
4
    luaK_reserveregs(fs, 1);
1365
4
  }
1366
1.47k
}
1367
1368
/*
1369
** Parse and compile a multiple assignment. The first "variable"
1370
** (a 'suffixedexp') was already read by the caller.
1371
**
1372
** assignment -> suffixedexp restassign
1373
** restassign -> ',' suffixedexp restassign | '=' explist
1374
*/
1375
27.7k
static void restassign (LexState *ls, struct LHS_assign *lh, int nvars) {
1376
27.7k
  expdesc e;
1377
27.7k
  check_condition(ls, vkisvar(lh->v.k), "syntax error");
1378
27.7k
  check_readonly(ls, &lh->v);
1379
27.7k
  if (testnext(ls, ',')) {  /* restassign -> ',' suffixedexp restassign */
1380
3.94k
    struct LHS_assign nv;
1381
3.94k
    nv.prev = lh;
1382
3.94k
    suffixedexp(ls, &nv.v);
1383
3.94k
    if (!vkisindexed(nv.v.k))
1384
1.47k
      check_conflict(ls, lh, &nv.v);
1385
3.94k
    enterlevel(ls);  /* control recursion depth */
1386
3.94k
    restassign(ls, &nv, nvars+1);
1387
3.94k
    leavelevel(ls);
1388
3.94k
  }
1389
23.8k
  else {  /* restassign -> '=' explist */
1390
23.8k
    int nexps;
1391
23.8k
    checknext(ls, '=');
1392
23.8k
    nexps = explist(ls, &e);
1393
23.8k
    if (nexps != nvars)
1394
5.90k
      adjust_assign(ls, nvars, nexps, &e);
1395
17.9k
    else {
1396
17.9k
      luaK_setoneret(ls->fs, &e);  /* close last expression */
1397
17.9k
      luaK_storevar(ls->fs, &lh->v, &e);
1398
17.9k
      return;  /* avoid default */
1399
17.9k
    }
1400
23.8k
  }
1401
9.85k
  init_exp(&e, VNONRELOC, ls->fs->freereg-1);  /* default assignment */
1402
9.85k
  luaK_storevar(ls->fs, &lh->v, &e);
1403
9.85k
}
1404
1405
1406
2.03k
static int cond (LexState *ls) {
1407
  /* cond -> exp */
1408
2.03k
  expdesc v;
1409
2.03k
  expr(ls, &v);  /* read condition */
1410
2.03k
  if (v.k == VNIL) v.k = VFALSE;  /* 'falses' are all equal here */
1411
2.03k
  luaK_goiftrue(ls->fs, &v);
1412
2.03k
  return v.f;
1413
2.03k
}
1414
1415
1416
13.3k
static void gotostat (LexState *ls) {
1417
13.3k
  FuncState *fs = ls->fs;
1418
13.3k
  int line = ls->linenumber;
1419
13.3k
  TString *name = str_checkname(ls);  /* label's name */
1420
13.3k
  Labeldesc *lb = findlabel(ls, name);
1421
13.3k
  if (lb == NULL)  /* no label? */
1422
    /* forward jump; will be resolved when the label is declared */
1423
7.71k
    newgotoentry(ls, name, line, luaK_jump(fs));
1424
5.60k
  else {  /* found a label */
1425
    /* backward jump; will be resolved here */
1426
5.60k
    int lblevel = reglevel(fs, lb->nactvar);  /* label level */
1427
5.60k
    if (luaY_nvarstack(fs) > lblevel)  /* leaving the scope of a variable? */
1428
1.41k
      luaK_codeABC(fs, OP_CLOSE, lblevel, 0, 0);
1429
    /* create jump and link it to the label */
1430
5.60k
    luaK_patchlist(fs, luaK_jump(fs), lb->pc);
1431
5.60k
  }
1432
13.3k
}
1433
1434
1435
/*
1436
** Break statement. Semantically equivalent to "goto break".
1437
*/
1438
1.35k
static void breakstat (LexState *ls) {
1439
1.35k
  int line = ls->linenumber;
1440
1.35k
  luaX_next(ls);  /* skip break */
1441
1.35k
  newgotoentry(ls, luaS_newliteral(ls->L, "break"), line, luaK_jump(ls->fs));
1442
1.35k
}
1443
1444
1445
/*
1446
** Check whether there is already a label with the given 'name'.
1447
*/
1448
275
static void checkrepeated (LexState *ls, TString *name) {
1449
275
  Labeldesc *lb = findlabel(ls, name);
1450
275
  if (l_unlikely(lb != NULL)) {  /* already defined? */
1451
0
    const char *msg = "label '%s' already defined on line %d";
1452
0
    msg = luaO_pushfstring(ls->L, msg, getstr(name), lb->line);
1453
0
    luaK_semerror(ls, msg);  /* error */
1454
0
  }
1455
275
}
1456
1457
1458
275
static void labelstat (LexState *ls, TString *name, int line) {
1459
  /* label -> '::' NAME '::' */
1460
275
  checknext(ls, TK_DBCOLON);  /* skip double colon */
1461
295
  while (ls->t.token == ';' || ls->t.token == TK_DBCOLON)
1462
20
    statement(ls);  /* skip other no-op statements */
1463
275
  checkrepeated(ls, name);  /* check for repeated labels */
1464
275
  createlabel(ls, name, line, block_follow(ls, 0));
1465
275
}
1466
1467
1468
1.11k
static void whilestat (LexState *ls, int line) {
1469
  /* whilestat -> WHILE cond DO block END */
1470
1.11k
  FuncState *fs = ls->fs;
1471
1.11k
  int whileinit;
1472
1.11k
  int condexit;
1473
1.11k
  BlockCnt bl;
1474
1.11k
  luaX_next(ls);  /* skip WHILE */
1475
1.11k
  whileinit = luaK_getlabel(fs);
1476
1.11k
  condexit = cond(ls);
1477
1.11k
  enterblock(fs, &bl, 1);
1478
1.11k
  checknext(ls, TK_DO);
1479
1.11k
  block(ls);
1480
1.11k
  luaK_jumpto(fs, whileinit);
1481
1.11k
  check_match(ls, TK_END, TK_WHILE, line);
1482
1.11k
  leaveblock(fs);
1483
1.11k
  luaK_patchtohere(fs, condexit);  /* false conditions finish the loop */
1484
1.11k
}
1485
1486
1487
933
static void repeatstat (LexState *ls, int line) {
1488
  /* repeatstat -> REPEAT block UNTIL cond */
1489
933
  int condexit;
1490
933
  FuncState *fs = ls->fs;
1491
933
  int repeat_init = luaK_getlabel(fs);
1492
933
  BlockCnt bl1, bl2;
1493
933
  enterblock(fs, &bl1, 1);  /* loop block */
1494
933
  enterblock(fs, &bl2, 0);  /* scope block */
1495
933
  luaX_next(ls);  /* skip REPEAT */
1496
933
  statlist(ls);
1497
933
  check_match(ls, TK_UNTIL, TK_REPEAT, line);
1498
933
  condexit = cond(ls);  /* read condition (inside scope block) */
1499
933
  leaveblock(fs);  /* finish scope */
1500
933
  if (bl2.upval) {  /* upvalues? */
1501
292
    int exit = luaK_jump(fs);  /* normal exit must jump over fix */
1502
292
    luaK_patchtohere(fs, condexit);  /* repetition must close upvalues */
1503
292
    luaK_codeABC(fs, OP_CLOSE, reglevel(fs, bl2.nactvar), 0, 0);
1504
292
    condexit = luaK_jump(fs);  /* repeat after closing upvalues */
1505
292
    luaK_patchtohere(fs, exit);  /* normal exit comes to here */
1506
292
  }
1507
933
  luaK_patchlist(fs, condexit, repeat_init);  /* close the loop */
1508
933
  leaveblock(fs);  /* finish loop */
1509
933
}
1510
1511
1512
/*
1513
** Read an expression and generate code to put its results in next
1514
** stack slot.
1515
**
1516
*/
1517
1.14k
static void exp1 (LexState *ls) {
1518
1.14k
  expdesc e;
1519
1.14k
  expr(ls, &e);
1520
1.14k
  luaK_exp2nextreg(ls->fs, &e);
1521
1.14k
  lua_assert(e.k == VNONRELOC);
1522
1.14k
}
1523
1524
1525
/*
1526
** Fix for instruction at position 'pc' to jump to 'dest'.
1527
** (Jump addresses are relative in Lua). 'back' true means
1528
** a back jump.
1529
*/
1530
365
static void fixforjump (FuncState *fs, int pc, int dest, int back) {
1531
365
  Instruction *jmp = &fs->f->code[pc];
1532
365
  int offset = dest - (pc + 1);
1533
365
  if (back)
1534
182
    offset = -offset;
1535
365
  if (l_unlikely(offset > MAXARG_Bx))
1536
1
    luaX_syntaxerror(fs->ls, "control structure too long");
1537
364
  SETARG_Bx(*jmp, offset);
1538
364
}
1539
1540
1541
/*
1542
** Generate code for a 'for' loop.
1543
*/
1544
586
static void forbody (LexState *ls, int base, int line, int nvars, int isgen) {
1545
  /* forbody -> DO block */
1546
586
  static const OpCode forprep[2] = {OP_FORPREP, OP_TFORPREP};
1547
586
  static const OpCode forloop[2] = {OP_FORLOOP, OP_TFORLOOP};
1548
586
  BlockCnt bl;
1549
586
  FuncState *fs = ls->fs;
1550
586
  int prep, endfor;
1551
586
  checknext(ls, TK_DO);
1552
586
  prep = luaK_codeABx(fs, forprep[isgen], base, 0);
1553
586
  enterblock(fs, &bl, 0);  /* scope for declared variables */
1554
586
  adjustlocalvars(ls, nvars);
1555
586
  luaK_reserveregs(fs, nvars);
1556
586
  block(ls);
1557
586
  leaveblock(fs);  /* end of scope for declared variables */
1558
586
  fixforjump(fs, prep, luaK_getlabel(fs), 0);
1559
586
  if (isgen) {  /* generic for? */
1560
34
    luaK_codeABC(fs, OP_TFORCALL, base, 0, nvars);
1561
34
    luaK_fixline(fs, line);
1562
34
  }
1563
586
  endfor = luaK_codeABx(fs, forloop[isgen], base, 0);
1564
586
  fixforjump(fs, endfor, prep + 1, 1);
1565
586
  luaK_fixline(fs, line);
1566
586
}
1567
1568
1569
556
static void fornum (LexState *ls, TString *varname, int line) {
1570
  /* fornum -> NAME = exp,exp[,exp] forbody */
1571
556
  FuncState *fs = ls->fs;
1572
556
  int base = fs->freereg;
1573
556
  new_localvarliteral(ls, "(for state)");
1574
556
  new_localvarliteral(ls, "(for state)");
1575
556
  new_localvarliteral(ls, "(for state)");
1576
556
  new_localvar(ls, varname);
1577
556
  checknext(ls, '=');
1578
556
  exp1(ls);  /* initial value */
1579
556
  checknext(ls, ',');
1580
556
  exp1(ls);  /* limit */
1581
556
  if (testnext(ls, ','))
1582
39
    exp1(ls);  /* optional step */
1583
517
  else {  /* default step = 1 */
1584
517
    luaK_int(fs, fs->freereg, 1);
1585
517
    luaK_reserveregs(fs, 1);
1586
517
  }
1587
556
  adjustlocalvars(ls, 3);  /* control variables */
1588
556
  forbody(ls, base, line, 1, 0);
1589
556
}
1590
1591
1592
35
static void forlist (LexState *ls, TString *indexname) {
1593
  /* forlist -> NAME {,NAME} IN explist forbody */
1594
35
  FuncState *fs = ls->fs;
1595
35
  expdesc e;
1596
35
  int nvars = 5;  /* gen, state, control, toclose, 'indexname' */
1597
35
  int line;
1598
35
  int base = fs->freereg;
1599
  /* create control variables */
1600
35
  new_localvarliteral(ls, "(for state)");
1601
35
  new_localvarliteral(ls, "(for state)");
1602
35
  new_localvarliteral(ls, "(for state)");
1603
35
  new_localvarliteral(ls, "(for state)");
1604
  /* create declared variables */
1605
35
  new_localvar(ls, indexname);
1606
101
  while (testnext(ls, ',')) {
1607
66
    new_localvar(ls, str_checkname(ls));
1608
66
    nvars++;
1609
66
  }
1610
35
  checknext(ls, TK_IN);
1611
35
  line = ls->linenumber;
1612
35
  adjust_assign(ls, 4, explist(ls, &e), &e);
1613
35
  adjustlocalvars(ls, 4);  /* control variables */
1614
35
  marktobeclosed(fs);  /* last control var. must be closed */
1615
35
  luaK_checkstack(fs, 3);  /* extra space to call generator */
1616
35
  forbody(ls, base, line, nvars - 4, 1);
1617
35
}
1618
1619
1620
591
static void forstat (LexState *ls, int line) {
1621
  /* forstat -> FOR (fornum | forlist) END */
1622
591
  FuncState *fs = ls->fs;
1623
591
  TString *varname;
1624
591
  BlockCnt bl;
1625
591
  enterblock(fs, &bl, 1);  /* scope for loop and control variables */
1626
591
  luaX_next(ls);  /* skip 'for' */
1627
591
  varname = str_checkname(ls);  /* first variable name */
1628
591
  switch (ls->t.token) {
1629
556
    case '=': fornum(ls, varname, line); break;
1630
35
    case ',': case TK_IN: forlist(ls, varname); break;
1631
0
    default: luaX_syntaxerror(ls, "'=' or 'in' expected");
1632
591
  }
1633
182
  check_match(ls, TK_END, TK_FOR, line);
1634
182
  leaveblock(fs);  /* loop scope ('break' jumps to this point) */
1635
182
}
1636
1637
1638
1.68k
static void test_then_block (LexState *ls, int *escapelist) {
1639
  /* test_then_block -> [IF | ELSEIF] cond THEN block */
1640
1.68k
  BlockCnt bl;
1641
1.68k
  FuncState *fs = ls->fs;
1642
1.68k
  expdesc v;
1643
1.68k
  int jf;  /* instruction to skip 'then' code (if condition is false) */
1644
1.68k
  luaX_next(ls);  /* skip IF or ELSEIF */
1645
1.68k
  expr(ls, &v);  /* read condition */
1646
1.68k
  checknext(ls, TK_THEN);
1647
1.68k
  if (ls->t.token == TK_BREAK) {  /* 'if x then break' ? */
1648
1.67k
    int line = ls->linenumber;
1649
1.67k
    luaK_goiffalse(ls->fs, &v);  /* will jump if condition is true */
1650
1.67k
    luaX_next(ls);  /* skip 'break' */
1651
1.67k
    enterblock(fs, &bl, 0);  /* must enter block before 'goto' */
1652
1.67k
    newgotoentry(ls, luaS_newliteral(ls->L, "break"), line, v.t);
1653
1.68k
    while (testnext(ls, ';')) {}  /* skip semicolons */
1654
1.67k
    if (block_follow(ls, 0)) {  /* jump is the entire block? */
1655
864
      leaveblock(fs);
1656
864
      return;  /* and that is it */
1657
864
    }
1658
813
    else  /* must skip over 'then' part if condition is false */
1659
813
      jf = luaK_jump(fs);
1660
1.67k
  }
1661
3
  else {  /* regular case (not a break) */
1662
3
    luaK_goiftrue(ls->fs, &v);  /* skip over block if condition is false */
1663
3
    enterblock(fs, &bl, 0);
1664
3
    jf = v.f;
1665
3
  }
1666
816
  statlist(ls);  /* 'then' part */
1667
816
  leaveblock(fs);
1668
816
  if (ls->t.token == TK_ELSE ||
1669
816
      ls->t.token == TK_ELSEIF)  /* followed by 'else'/'elseif'? */
1670
70
    luaK_concat(fs, escapelist, luaK_jump(fs));  /* must jump over it */
1671
816
  luaK_patchtohere(fs, jf);
1672
816
}
1673
1674
1675
1.67k
static void ifstat (LexState *ls, int line) {
1676
  /* ifstat -> IF cond THEN block {ELSEIF cond THEN block} [ELSE block] END */
1677
1.67k
  FuncState *fs = ls->fs;
1678
1.67k
  int escapelist = NO_JUMP;  /* exit list for finished parts */
1679
1.67k
  test_then_block(ls, &escapelist);  /* IF cond THEN block */
1680
1.68k
  while (ls->t.token == TK_ELSEIF)
1681
2
    test_then_block(ls, &escapelist);  /* ELSEIF cond THEN block */
1682
1.67k
  if (testnext(ls, TK_ELSE))
1683
508
    block(ls);  /* 'else' part */
1684
1.67k
  check_match(ls, TK_END, TK_IF, line);
1685
1.67k
  luaK_patchtohere(fs, escapelist);  /* patch escape list to 'if' end */
1686
1.67k
}
1687
1688
1689
412
static void localfunc (LexState *ls) {
1690
412
  expdesc b;
1691
412
  FuncState *fs = ls->fs;
1692
412
  int fvar = fs->nactvar;  /* function's variable index */
1693
412
  new_localvar(ls, str_checkname(ls));  /* new local variable */
1694
412
  adjustlocalvars(ls, 1);  /* enter its scope */
1695
412
  body(ls, &b, 0, ls->linenumber);  /* function created in next register */
1696
  /* debug information will only see the variable after this point! */
1697
412
  localdebuginfo(fs, fvar)->startpc = fs->pc;
1698
412
}
1699
1700
1701
6.53k
static int getlocalattribute (LexState *ls) {
1702
  /* ATTRIB -> ['<' Name '>'] */
1703
6.53k
  if (testnext(ls, '<')) {
1704
2.71k
    const char *attr = getstr(str_checkname(ls));
1705
2.71k
    checknext(ls, '>');
1706
2.71k
    if (strcmp(attr, "const") == 0)
1707
2.34k
      return RDKCONST;  /* read-only variable */
1708
365
    else if (strcmp(attr, "close") == 0)
1709
364
      return RDKTOCLOSE;  /* to-be-closed variable */
1710
1
    else
1711
1
      luaK_semerror(ls,
1712
1
        luaO_pushfstring(ls->L, "unknown attribute '%s'", attr));
1713
2.71k
  }
1714
3.82k
  return VDKREG;  /* regular variable */
1715
6.53k
}
1716
1717
1718
3.57k
static void checktoclose (FuncState *fs, int level) {
1719
3.57k
  if (level != -1) {  /* is there a to-be-closed variable? */
1720
364
    marktobeclosed(fs);
1721
364
    luaK_codeABC(fs, OP_TBC, reglevel(fs, level), 0, 0);
1722
364
  }
1723
3.57k
}
1724
1725
1726
3.57k
static void localstat (LexState *ls) {
1727
  /* stat -> LOCAL NAME ATTRIB { ',' NAME ATTRIB } ['=' explist] */
1728
3.57k
  FuncState *fs = ls->fs;
1729
3.57k
  int toclose = -1;  /* index of to-be-closed variable (if any) */
1730
3.57k
  Vardesc *var;  /* last variable */
1731
3.57k
  int vidx, kind;  /* index and kind of last variable */
1732
3.57k
  int nvars = 0;
1733
3.57k
  int nexps;
1734
3.57k
  expdesc e;
1735
6.53k
  do {
1736
6.53k
    vidx = new_localvar(ls, str_checkname(ls));
1737
6.53k
    kind = getlocalattribute(ls);
1738
6.53k
    getlocalvardesc(fs, vidx)->vd.kind = kind;
1739
6.53k
    if (kind == RDKTOCLOSE) {  /* to-be-closed? */
1740
364
      if (toclose != -1)  /* one already present? */
1741
0
        luaK_semerror(ls, "multiple to-be-closed variables in local list");
1742
364
      toclose = fs->nactvar + nvars;
1743
364
    }
1744
6.53k
    nvars++;
1745
6.53k
  } while (testnext(ls, ','));
1746
3.57k
  if (testnext(ls, '='))
1747
2.72k
    nexps = explist(ls, &e);
1748
848
  else {
1749
848
    e.k = VVOID;
1750
848
    nexps = 0;
1751
848
  }
1752
3.57k
  var = getlocalvardesc(fs, vidx);  /* get last variable */
1753
3.57k
  if (nvars == nexps &&  /* no adjustments? */
1754
3.57k
      var->vd.kind == RDKCONST &&  /* last variable is const? */
1755
3.57k
      luaK_exp2const(fs, &e, &var->k)) {  /* compile-time constant? */
1756
1.91k
    var->vd.kind = RDKCTC;  /* variable is a compile-time constant */
1757
1.91k
    adjustlocalvars(ls, nvars - 1);  /* exclude last variable */
1758
1.91k
    fs->nactvar++;  /* but count it */
1759
1.91k
  }
1760
1.66k
  else {
1761
1.66k
    adjust_assign(ls, nvars, nexps, &e);
1762
1.66k
    adjustlocalvars(ls, nvars);
1763
1.66k
  }
1764
3.57k
  checktoclose(fs, toclose);
1765
3.57k
}
1766
1767
1768
1.77k
static int funcname (LexState *ls, expdesc *v) {
1769
  /* funcname -> NAME {fieldsel} [':' NAME] */
1770
1.77k
  int ismethod = 0;
1771
1.77k
  singlevar(ls, v);
1772
1.77k
  while (ls->t.token == '.')
1773
0
    fieldsel(ls, v);
1774
1.77k
  if (ls->t.token == ':') {
1775
9
    ismethod = 1;
1776
9
    fieldsel(ls, v);
1777
9
  }
1778
1.77k
  return ismethod;
1779
1.77k
}
1780
1781
1782
1.77k
static void funcstat (LexState *ls, int line) {
1783
  /* funcstat -> FUNCTION funcname body */
1784
1.77k
  int ismethod;
1785
1.77k
  expdesc v, b;
1786
1.77k
  luaX_next(ls);  /* skip FUNCTION */
1787
1.77k
  ismethod = funcname(ls, &v);
1788
1.77k
  body(ls, &b, ismethod, line);
1789
1.77k
  check_readonly(ls, &v);
1790
1.77k
  luaK_storevar(ls->fs, &v, &b);
1791
1.77k
  luaK_fixline(ls->fs, line);  /* definition "happens" in the first line */
1792
1.77k
}
1793
1794
1795
25.7k
static void exprstat (LexState *ls) {
1796
  /* stat -> func | assignment */
1797
25.7k
  FuncState *fs = ls->fs;
1798
25.7k
  struct LHS_assign v;
1799
25.7k
  suffixedexp(ls, &v.v);
1800
25.7k
  if (ls->t.token == '=' || ls->t.token == ',') { /* stat -> assignment ? */
1801
23.8k
    v.prev = NULL;
1802
23.8k
    restassign(ls, &v, 1);
1803
23.8k
  }
1804
1.91k
  else {  /* stat -> func */
1805
1.91k
    Instruction *inst;
1806
1.91k
    check_condition(ls, v.v.k == VCALL, "syntax error");
1807
1.89k
    inst = &getinstruction(fs, &v.v);
1808
1.89k
    SETARG_C(*inst, 1);  /* call statement uses no results */
1809
1.89k
  }
1810
25.7k
}
1811
1812
1813
2.95k
static void retstat (LexState *ls) {
1814
  /* stat -> RETURN [explist] [';'] */
1815
2.95k
  FuncState *fs = ls->fs;
1816
2.95k
  expdesc e;
1817
2.95k
  int nret;  /* number of values being returned */
1818
2.95k
  int first = luaY_nvarstack(fs);  /* first slot to be returned */
1819
2.95k
  if (block_follow(ls, 1) || ls->t.token == ';')
1820
39
    nret = 0;  /* return no values */
1821
2.91k
  else {
1822
2.91k
    nret = explist(ls, &e);  /* optional return values */
1823
2.91k
    if (hasmultret(e.k)) {
1824
1.91k
      luaK_setmultret(fs, &e);
1825
1.91k
      if (e.k == VCALL && nret == 1 && !fs->bl->insidetbc) {  /* tail call? */
1826
307
        SET_OPCODE(getinstruction(fs,&e), OP_TAILCALL);
1827
307
        lua_assert(GETARG_A(getinstruction(fs,&e)) == luaY_nvarstack(fs));
1828
307
      }
1829
1.91k
      nret = LUA_MULTRET;  /* return all values */
1830
1.91k
    }
1831
1.00k
    else {
1832
1.00k
      if (nret == 1)  /* only one single value? */
1833
864
        first = luaK_exp2anyreg(fs, &e);  /* can use original slot */
1834
137
      else {  /* values must go to the top of the stack */
1835
137
        luaK_exp2nextreg(fs, &e);
1836
137
        lua_assert(nret == fs->freereg - first);
1837
137
      }
1838
1.00k
    }
1839
2.91k
  }
1840
2.95k
  luaK_ret(fs, first, nret);
1841
2.95k
  testnext(ls, ';');  /* skip optional semicolon */
1842
2.95k
}
1843
1844
1845
88.8k
static void statement (LexState *ls) {
1846
88.8k
  int line = ls->linenumber;  /* may be needed for error messages */
1847
88.8k
  enterlevel(ls);
1848
88.8k
  switch (ls->t.token) {
1849
33.1k
    case ';': {  /* stat -> ';' (empty statement) */
1850
33.1k
      luaX_next(ls);  /* skip ';' */
1851
33.1k
      break;
1852
0
    }
1853
1.67k
    case TK_IF: {  /* stat -> ifstat */
1854
1.67k
      ifstat(ls, line);
1855
1.67k
      break;
1856
0
    }
1857
1.11k
    case TK_WHILE: {  /* stat -> whilestat */
1858
1.11k
      whilestat(ls, line);
1859
1.11k
      break;
1860
0
    }
1861
1.91k
    case TK_DO: {  /* stat -> DO block END */
1862
1.91k
      luaX_next(ls);  /* skip DO */
1863
1.91k
      block(ls);
1864
1.91k
      check_match(ls, TK_END, TK_DO, line);
1865
1.91k
      break;
1866
0
    }
1867
591
    case TK_FOR: {  /* stat -> forstat */
1868
591
      forstat(ls, line);
1869
591
      break;
1870
0
    }
1871
933
    case TK_REPEAT: {  /* stat -> repeatstat */
1872
933
      repeatstat(ls, line);
1873
933
      break;
1874
0
    }
1875
1.77k
    case TK_FUNCTION: {  /* stat -> funcstat */
1876
1.77k
      funcstat(ls, line);
1877
1.77k
      break;
1878
0
    }
1879
3.98k
    case TK_LOCAL: {  /* stat -> localstat */
1880
3.98k
      luaX_next(ls);  /* skip LOCAL */
1881
3.98k
      if (testnext(ls, TK_FUNCTION))  /* local function? */
1882
412
        localfunc(ls);
1883
3.57k
      else
1884
3.57k
        localstat(ls);
1885
3.98k
      break;
1886
0
    }
1887
275
    case TK_DBCOLON: {  /* stat -> label */
1888
275
      luaX_next(ls);  /* skip double colon */
1889
275
      labelstat(ls, str_checkname(ls), line);
1890
275
      break;
1891
0
    }
1892
2.95k
    case TK_RETURN: {  /* stat -> retstat */
1893
2.95k
      luaX_next(ls);  /* skip RETURN */
1894
2.95k
      retstat(ls);
1895
2.95k
      break;
1896
0
    }
1897
1.35k
    case TK_BREAK: {  /* stat -> breakstat */
1898
1.35k
      breakstat(ls);
1899
1.35k
      break;
1900
0
    }
1901
13.3k
    case TK_GOTO: {  /* stat -> 'goto' NAME */
1902
13.3k
      luaX_next(ls);  /* skip 'goto' */
1903
13.3k
      gotostat(ls);
1904
13.3k
      break;
1905
0
    }
1906
25.7k
    default: {  /* stat -> func | assignment */
1907
25.7k
      exprstat(ls);
1908
25.7k
      break;
1909
0
    }
1910
88.8k
  }
1911
86.5k
  lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg &&
1912
86.5k
             ls->fs->freereg >= luaY_nvarstack(ls->fs));
1913
86.5k
  ls->fs->freereg = luaY_nvarstack(ls->fs);  /* free registers */
1914
86.5k
  leavelevel(ls);
1915
86.5k
}
1916
1917
/* }====================================================================== */
1918
1919
1920
/*
1921
** compiles the main function, which is a regular vararg function with an
1922
** upvalue named LUA_ENV
1923
*/
1924
390
static void mainfunc (LexState *ls, FuncState *fs) {
1925
390
  BlockCnt bl;
1926
390
  Upvaldesc *env;
1927
390
  open_func(ls, fs, &bl);
1928
390
  setvararg(fs, 0);  /* main function is always declared vararg */
1929
390
  env = allocupvalue(fs);  /* ...set environment upvalue */
1930
390
  env->instack = 1;
1931
390
  env->idx = 0;
1932
390
  env->kind = VDKREG;
1933
390
  env->name = ls->envn;
1934
390
  luaC_objbarrier(ls->L, fs->f, env->name);
1935
390
  luaX_next(ls);  /* read first token */
1936
390
  statlist(ls);  /* parse main body */
1937
390
  check(ls, TK_EOS);
1938
390
  close_func(ls);
1939
390
}
1940
1941
1942
LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
1943
390
                       Dyndata *dyd, const char *name, int firstchar) {
1944
390
  LexState lexstate;
1945
390
  FuncState funcstate;
1946
390
  LClosure *cl = luaF_newLclosure(L, 1);  /* create main closure */
1947
390
  setclLvalue2s(L, L->top.p, cl);  /* anchor it (to avoid being collected) */
1948
390
  luaD_inctop(L);
1949
390
  lexstate.h = luaH_new(L);  /* create table for scanner */
1950
390
  sethvalue2s(L, L->top.p, lexstate.h);  /* anchor it */
1951
390
  luaD_inctop(L);
1952
390
  funcstate.f = cl->p = luaF_newproto(L);
1953
390
  luaC_objbarrier(L, cl, cl->p);
1954
390
  funcstate.f->source = luaS_new(L, name);  /* create and anchor TString */
1955
390
  luaC_objbarrier(L, funcstate.f, funcstate.f->source);
1956
390
  lexstate.buff = buff;
1957
390
  lexstate.dyd = dyd;
1958
390
  dyd->actvar.n = dyd->gt.n = dyd->label.n = 0;
1959
390
  luaX_setinput(L, &lexstate, z, funcstate.f->source, firstchar);
1960
390
  mainfunc(&lexstate, &funcstate);
1961
390
  lua_assert(!funcstate.prev && funcstate.nups == 1 && !lexstate.fs);
1962
  /* all scopes should be correctly finished */
1963
390
  lua_assert(dyd->actvar.n == 0 && dyd->gt.n == 0 && dyd->label.n == 0);
1964
390
  L->top.p--;  /* remove scanner's table */
1965
390
  return cl;  /* closure is on the stack, too */
1966
390
}
1967