Coverage Report

Created: 2025-10-27 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/testdir/build/lua-master/source/lparser.c
Line
Count
Source
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 variable declarations per function (must be
34
   smaller than 250, due to the bytecode format) */
35
4.37M
#define MAXVARS   200
36
37
38
8.76M
#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
2.10G
#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
  short nactvar;  /* number of active declarations at block entry */
54
  lu_byte upval;  /* true if some variable in the block is an upvalue */
55
  lu_byte isloop;  /* 1 if 'block' is a loop; 2 if it has pending breaks */
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
872k
static l_noret error_expected (LexState *ls, int token) {
69
872k
  luaX_syntaxerror(ls,
70
872k
      luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token)));
71
872k
}
72
73
74
4.78k
static l_noret errorlimit (FuncState *fs, int limit, const char *what) {
75
4.78k
  lua_State *L = fs->ls->L;
76
4.78k
  const char *msg;
77
4.78k
  int line = fs->f->linedefined;
78
4.78k
  const char *where = (line == 0)
79
4.78k
                      ? "main function"
80
4.78k
                      : luaO_pushfstring(L, "function at line %d", line);
81
4.78k
  msg = luaO_pushfstring(L, "too many %s (limit is %d) in %s",
82
4.78k
                             what, limit, where);
83
4.78k
  luaX_syntaxerror(fs->ls, msg);
84
4.78k
}
85
86
87
39.6M
void luaY_checklimit (FuncState *fs, int v, int l, const char *what) {
88
39.6M
  if (l_unlikely(v > l)) errorlimit(fs, l, what);
89
39.6M
}
90
91
92
/*
93
** Test whether next token is 'c'; if so, skip it.
94
*/
95
45.7M
static int testnext (LexState *ls, int c) {
96
45.7M
  if (ls->t.token == c) {
97
27.7M
    luaX_next(ls);
98
27.7M
    return 1;
99
27.7M
  }
100
18.0M
  else return 0;
101
45.7M
}
102
103
104
/*
105
** Check that next token is 'c'.
106
*/
107
212M
static void check (LexState *ls, int c) {
108
212M
  if (ls->t.token != c)
109
513k
    error_expected(ls, c);
110
212M
}
111
112
113
/*
114
** Check that next token is 'c' and skip it.
115
*/
116
13.1M
static void checknext (LexState *ls, int c) {
117
13.1M
  check(ls, c);
118
13.1M
  luaX_next(ls);
119
13.1M
}
120
121
122
16.8M
#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
5.72M
static void check_match (LexState *ls, int what, int who, int where) {
131
5.72M
  if (l_unlikely(!testnext(ls, what))) {
132
369k
    if (where == ls->linenumber)  /* all in the same line? */
133
358k
      error_expected(ls, what);  /* do not need a complex message */
134
10.5k
    else {
135
10.5k
      luaX_syntaxerror(ls, luaO_pushfstring(ls->L,
136
10.5k
             "%s expected (to close %s at line %d)",
137
10.5k
              luaX_token2str(ls, what), luaX_token2str(ls, who), where));
138
10.5k
    }
139
369k
  }
140
5.72M
}
141
142
143
196M
static TString *str_checkname (LexState *ls) {
144
196M
  TString *ts;
145
196M
  check(ls, TK_NAME);
146
196M
  ts = ls->t.seminfo.ts;
147
196M
  luaX_next(ls);
148
196M
  return ts;
149
196M
}
150
151
152
538M
static void init_exp (expdesc *e, expkind k, int i) {
153
538M
  e->f = e->t = NO_JUMP;
154
538M
  e->k = k;
155
538M
  e->u.info = i;
156
538M
}
157
158
159
159M
static void codestring (expdesc *e, TString *s) {
160
159M
  e->f = e->t = NO_JUMP;
161
159M
  e->k = VKSTR;
162
159M
  e->u.strval = s;
163
159M
}
164
165
166
8.12M
static void codename (LexState *ls, expdesc *e) {
167
8.12M
  codestring(e, str_checkname(ls));
168
8.12M
}
169
170
171
/*
172
** Register a new local variable in the active 'Proto' (for debug
173
** information).
174
*/
175
static short registerlocalvar (LexState *ls, FuncState *fs,
176
4.37M
                               TString *varname) {
177
4.37M
  Proto *f = fs->f;
178
4.37M
  int oldsize = f->sizelocvars;
179
4.37M
  luaM_growvector(ls->L, f->locvars, fs->ndebugvars, f->sizelocvars,
180
4.37M
                  LocVar, SHRT_MAX, "local variables");
181
12.3M
  while (oldsize < f->sizelocvars)
182
7.98M
    f->locvars[oldsize++].varname = NULL;
183
4.37M
  f->locvars[fs->ndebugvars].varname = varname;
184
4.37M
  f->locvars[fs->ndebugvars].startpc = fs->pc;
185
4.37M
  luaC_objbarrier(ls->L, f, varname);
186
4.37M
  return fs->ndebugvars++;
187
4.37M
}
188
189
190
/*
191
** Create a new variable with the given 'name' and given 'kind'.
192
** Return its index in the function.
193
*/
194
5.84M
static int new_varkind (LexState *ls, TString *name, lu_byte kind) {
195
5.84M
  lua_State *L = ls->L;
196
5.84M
  FuncState *fs = ls->fs;
197
5.84M
  Dyndata *dyd = ls->dyd;
198
5.84M
  Vardesc *var;
199
5.84M
  luaM_growvector(L, dyd->actvar.arr, dyd->actvar.n + 1,
200
5.84M
             dyd->actvar.size, Vardesc, SHRT_MAX, "variable declarations");
201
5.84M
  var = &dyd->actvar.arr[dyd->actvar.n++];
202
5.84M
  var->vd.kind = kind;  /* default */
203
5.84M
  var->vd.name = name;
204
5.84M
  return dyd->actvar.n - 1 - fs->firstlocal;
205
5.84M
}
206
207
208
/*
209
** Create a new local variable with the given 'name' and regular kind.
210
*/
211
2.78M
static int new_localvar (LexState *ls, TString *name) {
212
2.78M
  return new_varkind(ls, name, VDKREG);
213
2.78M
}
214
215
#define new_localvarliteral(ls,v) \
216
286k
    new_localvar(ls,  \
217
286k
      luaX_newstring(ls, "" v, (sizeof(v)/sizeof(char)) - 1));
218
219
220
221
/*
222
** Return the "variable description" (Vardesc) of a given variable.
223
** (Unless noted otherwise, all variables are referred to by their
224
** compiler indices.)
225
*/
226
1.92G
static Vardesc *getlocalvardesc (FuncState *fs, int vidx) {
227
1.92G
  return &fs->ls->dyd->actvar.arr[fs->firstlocal + vidx];
228
1.92G
}
229
230
231
/*
232
** Convert 'nvar', a compiler index level, to its corresponding
233
** register. For that, search for the highest variable below that level
234
** that is in a register and uses its register index ('ridx') plus one.
235
*/
236
488M
static lu_byte reglevel (FuncState *fs, int nvar) {
237
669M
  while (nvar-- > 0) {
238
410M
    Vardesc *vd = getlocalvardesc(fs, nvar);  /* get previous variable */
239
410M
    if (varinreg(vd))  /* is in a register? */
240
229M
      return cast_byte(vd->vd.ridx + 1);
241
410M
  }
242
258M
  return 0;  /* no variables in registers */
243
488M
}
244
245
246
/*
247
** Return the number of variables in the register stack for the given
248
** function.
249
*/
250
476M
lu_byte luaY_nvarstack (FuncState *fs) {
251
476M
  return reglevel(fs, fs->nactvar);
252
476M
}
253
254
255
/*
256
** Get the debug-information entry for current variable 'vidx'.
257
*/
258
2.50M
static LocVar *localdebuginfo (FuncState *fs, int vidx) {
259
2.50M
  Vardesc *vd = getlocalvardesc(fs,  vidx);
260
2.50M
  if (!varinreg(vd))
261
111k
    return NULL;  /* no debug info. for constants */
262
2.39M
  else {
263
2.39M
    int idx = vd->vd.pidx;
264
2.39M
    lua_assert(idx < fs->ndebugvars);
265
2.39M
    return &fs->f->locvars[idx];
266
2.39M
  }
267
2.50M
}
268
269
270
/*
271
** Create an expression representing variable 'vidx'
272
*/
273
7.11M
static void init_var (FuncState *fs, expdesc *e, int vidx) {
274
7.11M
  e->f = e->t = NO_JUMP;
275
7.11M
  e->k = VLOCAL;
276
7.11M
  e->u.var.vidx = cast_short(vidx);
277
7.11M
  e->u.var.ridx = getlocalvardesc(fs, vidx)->vd.ridx;
278
7.11M
}
279
280
281
/*
282
** Raises an error if variable described by 'e' is read only; moreover,
283
** if 'e' is t[exp] where t is the vararg parameter, change it to index
284
** a real table. (Virtual vararg tables cannot be changed.)
285
*/
286
8.40M
static void check_readonly (LexState *ls, expdesc *e) {
287
8.40M
  FuncState *fs = ls->fs;
288
8.40M
  TString *varname = NULL;  /* to be set if variable is const */
289
8.40M
  switch (e->k) {
290
489
    case VCONST: {
291
489
      varname = ls->dyd->actvar.arr[e->u.info].vd.name;
292
489
      break;
293
0
    }
294
202k
    case VLOCAL: case VVARGVAR: {
295
202k
      Vardesc *vardesc = getlocalvardesc(fs, e->u.var.vidx);
296
202k
      if (vardesc->vd.kind != VDKREG)  /* not a regular variable? */
297
420
        varname = vardesc->vd.name;
298
202k
      break;
299
202k
    }
300
415k
    case VUPVAL: {
301
415k
      Upvaldesc *up = &fs->f->upvalues[e->u.info];
302
415k
      if (up->kind != VDKREG)
303
6
        varname = up->name;
304
415k
      break;
305
202k
    }
306
300
    case VVARGIND: {
307
300
      fs->f->flag |= PF_VATAB;  /* function will need a vararg table */
308
300
      e->k = VINDEXED;
309
300
    }  /* FALLTHROUGH */
310
7.77M
    case VINDEXUP: case VINDEXSTR: case VINDEXED: {  /* global variable */
311
7.77M
      if (e->u.ind.ro)  /* read-only? */
312
1.19k
        varname = tsvalue(&fs->f->k[e->u.ind.keystr]);
313
7.77M
      break;
314
7.77M
    }
315
7.77M
    default:
316
11.2k
      lua_assert(e->k == VINDEXI);  /* this one doesn't need any check */
317
11.2k
      return;  /* integer index cannot be read-only */
318
8.40M
  }
319
8.39M
  if (varname)
320
2.10k
    luaK_semerror(ls, "attempt to assign to const variable '%s'",
321
2.10k
                      getstr(varname));
322
8.39M
}
323
324
325
/*
326
** Start the scope for the last 'nvars' created variables.
327
*/
328
2.80M
static void adjustlocalvars (LexState *ls, int nvars) {
329
2.80M
  FuncState *fs = ls->fs;
330
2.80M
  int reglevel = luaY_nvarstack(fs);
331
2.80M
  int i;
332
7.18M
  for (i = 0; i < nvars; i++) {
333
4.37M
    int vidx = fs->nactvar++;
334
4.37M
    Vardesc *var = getlocalvardesc(fs, vidx);
335
4.37M
    var->vd.ridx = cast_byte(reglevel++);
336
4.37M
    var->vd.pidx = registerlocalvar(ls, fs, var->vd.name);
337
4.37M
    luaY_checklimit(fs, reglevel, MAXVARS, "local variables");
338
4.37M
  }
339
2.80M
}
340
341
342
/*
343
** Close the scope for all variables up to level 'tolevel'.
344
** (debug info.)
345
*/
346
5.56M
static void removevars (FuncState *fs, int tolevel) {
347
5.56M
  fs->ls->dyd->actvar.n -= (fs->nactvar - tolevel);
348
8.02M
  while (fs->nactvar > tolevel) {
349
2.45M
    LocVar *var = localdebuginfo(fs, --fs->nactvar);
350
2.45M
    if (var)  /* does it have debug information? */
351
2.34M
      var->endpc = fs->pc;
352
2.45M
  }
353
5.56M
}
354
355
356
/*
357
** Search the upvalues of the function 'fs' for one
358
** with the given 'name'.
359
*/
360
493M
static int searchupvalue (FuncState *fs, TString *name) {
361
493M
  int i;
362
493M
  Upvaldesc *up = fs->f->upvalues;
363
979M
  for (i = 0; i < fs->nups; i++) {
364
609M
    if (eqstr(up[i].name, name)) return i;
365
609M
  }
366
369M
  return -1;  /* not found */
367
493M
}
368
369
370
11.0M
static Upvaldesc *allocupvalue (FuncState *fs) {
371
11.0M
  Proto *f = fs->f;
372
11.0M
  int oldsize = f->sizeupvalues;
373
11.0M
  luaY_checklimit(fs, fs->nups + 1, MAXUPVAL, "upvalues");
374
11.0M
  luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues,
375
11.0M
                  Upvaldesc, MAXUPVAL, "upvalues");
376
53.5M
  while (oldsize < f->sizeupvalues)
377
42.5M
    f->upvalues[oldsize++].name = NULL;
378
11.0M
  return &f->upvalues[fs->nups++];
379
11.0M
}
380
381
382
1.36M
static int newupvalue (FuncState *fs, TString *name, expdesc *v) {
383
1.36M
  Upvaldesc *up = allocupvalue(fs);
384
1.36M
  FuncState *prev = fs->prev;
385
1.36M
  if (v->k == VLOCAL) {
386
337k
    up->instack = 1;
387
337k
    up->idx = v->u.var.ridx;
388
337k
    up->kind = getlocalvardesc(prev, v->u.var.vidx)->vd.kind;
389
337k
    lua_assert(eqstr(name, getlocalvardesc(prev, v->u.var.vidx)->vd.name));
390
337k
  }
391
1.02M
  else {
392
1.02M
    up->instack = 0;
393
1.02M
    up->idx = cast_byte(v->u.info);
394
1.02M
    up->kind = prev->f->upvalues[v->u.info].kind;
395
1.02M
    lua_assert(eqstr(name, prev->f->upvalues[v->u.info].name));
396
1.02M
  }
397
1.36M
  up->name = name;
398
1.36M
  luaC_objbarrier(fs->ls->L, fs->f, name);
399
1.36M
  return fs->nups - 1;
400
1.36M
}
401
402
403
/*
404
** Look for an active variable with the name 'n' in the
405
** function 'fs'. If found, initialize 'var' with it and return
406
** its expression kind; otherwise return -1. While searching,
407
** var->u.info==-1 means that the preambular global declaration is
408
** active (the default while there is no other global declaration);
409
** var->u.info==-2 means there is no active collective declaration
410
** (some previous global declaration but no collective declaration);
411
** and var->u.info>=0 points to the inner-most (the first one found)
412
** collective declaration, if there is one.
413
*/
414
551M
static int searchvar (FuncState *fs, TString *n, expdesc *var) {
415
551M
  int i;
416
1.99G
  for (i = cast_int(fs->nactvar) - 1; i >= 0; i--) {
417
1.49G
    Vardesc *vd = getlocalvardesc(fs, i);
418
1.49G
    if (varglobal(vd)) {  /* global declaration? */
419
46.0M
      if (vd->vd.name == NULL) {  /* collective declaration? */
420
5.43M
        if (var->u.info < 0)  /* no previous collective declaration? */
421
65.6k
          var->u.info = fs->firstlocal + i;  /* this is the first one */
422
5.43M
      }
423
40.5M
      else {  /* global name */
424
40.5M
        if (eqstr(n, vd->vd.name)) {  /* found? */
425
14.1k
          init_exp(var, VGLOBAL, fs->firstlocal + i);
426
14.1k
          return VGLOBAL;
427
14.1k
        }
428
40.5M
        else if (var->u.info == -1)  /* active preambular declaration? */
429
43.8k
          var->u.info = -2;  /* invalidate preambular declaration */
430
40.5M
      }
431
46.0M
    }
432
1.45G
    else if (eqstr(n, vd->vd.name)) {  /* found? */
433
58.1M
      if (vd->vd.kind == RDKCTC)  /* compile-time constant? */
434
51.0M
        init_exp(var, VCONST, fs->firstlocal + i);
435
7.11M
      else {  /* local variable */
436
7.11M
        init_var(fs, var, i);
437
7.11M
        if (vd->vd.kind == RDKVAVAR)  /* vararg parameter? */
438
2.54k
          var->k = VVARGVAR;
439
7.11M
      }
440
58.1M
      return cast_int(var->k);
441
58.1M
    }
442
1.49G
  }
443
493M
  return -1;  /* not found */
444
551M
}
445
446
447
/*
448
** Mark block where variable at given level was defined
449
** (to emit close instructions later).
450
*/
451
337k
static void markupval (FuncState *fs, int level) {
452
337k
  BlockCnt *bl = fs->bl;
453
350k
  while (bl->nactvar > level)
454
12.5k
    bl = bl->previous;
455
337k
  bl->upval = 1;
456
337k
  fs->needclose = 1;
457
337k
}
458
459
460
/*
461
** Mark that current block has a to-be-closed variable.
462
*/
463
57.3k
static void marktobeclosed (FuncState *fs) {
464
57.3k
  BlockCnt *bl = fs->bl;
465
57.3k
  bl->upval = 1;
466
57.3k
  bl->insidetbc = 1;
467
57.3k
  fs->needclose = 1;
468
57.3k
}
469
470
471
/*
472
** Find a variable with the given name 'n'. If it is an upvalue, add
473
** this upvalue into all intermediate functions. If it is a global, set
474
** 'var' as 'void' as a flag.
475
*/
476
551M
static void singlevaraux (FuncState *fs, TString *n, expdesc *var, int base) {
477
551M
  int v = searchvar(fs, n, var);  /* look up variables at current level */
478
551M
  if (v >= 0) {  /* found? */
479
58.1M
    if (!base) {
480
4.80M
      if (var->k == VVARGVAR)  /* vararg parameter? */
481
37
        luaK_vapar2local(fs, var);  /* change it to a regular local */
482
4.80M
      if (var->k == VLOCAL)
483
337k
        markupval(fs, var->u.var.vidx);  /* will be used as an upvalue */
484
4.80M
    }
485
    /* else nothing else to be done */
486
58.1M
  }
487
493M
  else {  /* not found at current level; try upvalues */
488
493M
    int idx = searchupvalue(fs, n);  /* try existing upvalues */
489
493M
    if (idx < 0) {  /* not found? */
490
369M
      if (fs->prev != NULL)  /* more levels? */
491
220M
        singlevaraux(fs->prev, n, var, 0);  /* try upper levels */
492
369M
      if (var->k == VLOCAL || var->k == VUPVAL)  /* local or upvalue? */
493
1.36M
        idx  = newupvalue(fs, n, var);  /* will be a new upvalue */
494
368M
      else  /* it is a global or a constant */
495
368M
        return;  /* don't need to do anything at this level */
496
369M
    }
497
124M
    init_exp(var, VUPVAL, idx);  /* new or old upvalue */
498
124M
  }
499
551M
}
500
501
502
149M
static void buildglobal (LexState *ls, TString *varname, expdesc *var) {
503
149M
  FuncState *fs = ls->fs;
504
149M
  expdesc key;
505
149M
  init_exp(var, VGLOBAL, -1);  /* global by default */
506
149M
  singlevaraux(fs, ls->envn, var, 1);  /* get environment variable */
507
149M
  if (var->k == VGLOBAL)
508
947
    luaK_semerror(ls, "_ENV is global when accessing variable '%s'",
509
947
                      getstr(varname));
510
149M
  luaK_exp2anyregup(fs, var);  /* _ENV could be a constant */
511
149M
  codestring(&key, varname);  /* key is variable name */
512
149M
  luaK_indexed(fs, var, &key);  /* 'var' represents _ENV[varname] */
513
149M
}
514
515
516
/*
517
** Find a variable with the given name 'n', handling global variables
518
** too.
519
*/
520
181M
static void buildvar (LexState *ls, TString *varname, expdesc *var) {
521
181M
  FuncState *fs = ls->fs;
522
181M
  init_exp(var, VGLOBAL, -1);  /* global by default */
523
181M
  singlevaraux(fs, varname, var, 1);
524
181M
  if (var->k == VGLOBAL) {  /* global name? */
525
149M
    int info = var->u.info;
526
    /* global by default in the scope of a global declaration? */
527
149M
    if (info == -2)
528
10.7k
      luaK_semerror(ls, "variable '%s' not declared", getstr(varname));
529
149M
    buildglobal(ls, varname, var);
530
149M
    if (info != -1 && ls->dyd->actvar.arr[info].vd.kind == GDKCONST)
531
7.59k
      var->u.ind.ro = 1;  /* mark variable as read-only */
532
149M
    else  /* anyway must be a global */
533
149M
      lua_assert(info == -1 || ls->dyd->actvar.arr[info].vd.kind == GDKREG);
534
149M
  }
535
181M
}
536
537
538
181M
static void singlevar (LexState *ls, expdesc *var) {
539
181M
  buildvar(ls, str_checkname(ls), var);
540
181M
}
541
542
543
/*
544
** Adjust the number of results from an expression list 'e' with 'nexps'
545
** expressions to 'nvars' values.
546
*/
547
1.21M
static void adjust_assign (LexState *ls, int nvars, int nexps, expdesc *e) {
548
1.21M
  FuncState *fs = ls->fs;
549
1.21M
  int needed = nvars - nexps;  /* extra values needed */
550
1.21M
  luaK_checkstack(fs, needed);
551
1.21M
  if (hasmultret(e->k)) {  /* last expression has multiple returns? */
552
351k
    int extra = needed + 1;  /* discount last expression itself */
553
351k
    if (extra < 0)
554
9.30k
      extra = 0;
555
351k
    luaK_setreturns(fs, e, extra);  /* last exp. provides the difference */
556
351k
  }
557
859k
  else {
558
859k
    if (e->k != VVOID)  /* at least one expression? */
559
781k
      luaK_exp2nextreg(fs, e);  /* close last expression */
560
859k
    if (needed > 0)  /* missing values? */
561
283k
      luaK_nil(fs, fs->freereg, needed);  /* complete with nils */
562
859k
  }
563
1.21M
  if (needed > 0)
564
442k
    luaK_reserveregs(fs, needed);  /* registers for extra values */
565
769k
  else  /* adding 'needed' is actually a subtraction */
566
769k
    fs->freereg = cast_byte(fs->freereg + needed);  /* remove extra values */
567
1.21M
}
568
569
570
227M
#define enterlevel(ls)  luaE_incCstack(ls->L)
571
572
573
220M
#define leavelevel(ls) ((ls)->L->nCcalls--)
574
575
576
/*
577
** Generates an error that a goto jumps into the scope of some
578
** variable declaration.
579
*/
580
12
static l_noret jumpscopeerror (LexState *ls, Labeldesc *gt) {
581
12
  TString *tsname = getlocalvardesc(ls->fs, gt->nactvar)->vd.name;
582
12
  const char *varname = (tsname != NULL) ? getstr(tsname) : "*";
583
12
  luaK_semerror(ls,
584
12
     "<goto %s> at line %d jumps into the scope of '%s'",
585
12
      getstr(gt->name), gt->line, varname);  /* raise the error */
586
12
}
587
588
589
/*
590
** Closes the goto at index 'g' to given 'label' and removes it
591
** from the list of pending gotos.
592
** If it jumps into the scope of some variable, raises an error.
593
** The goto needs a CLOSE if it jumps out of a block with upvalues,
594
** or out of the scope of some variable and the block has upvalues
595
** (signaled by parameter 'bup').
596
*/
597
183k
static void closegoto (LexState *ls, int g, Labeldesc *label, int bup) {
598
183k
  int i;
599
183k
  FuncState *fs = ls->fs;
600
183k
  Labellist *gl = &ls->dyd->gt;  /* list of gotos */
601
183k
  Labeldesc *gt = &gl->arr[g];  /* goto to be resolved */
602
183k
  lua_assert(eqstr(gt->name, label->name));
603
183k
  if (l_unlikely(gt->nactvar < label->nactvar))  /* enter some scope? */
604
12
    jumpscopeerror(ls, gt);
605
183k
  if (gt->close ||
606
179k
      (label->nactvar < gt->nactvar && bup)) {  /* needs close? */
607
26.4k
    lu_byte stklevel = reglevel(fs, label->nactvar);
608
    /* move jump to CLOSE position */
609
26.4k
    fs->f->code[gt->pc + 1] = fs->f->code[gt->pc];
610
    /* put CLOSE instruction at original position */
611
26.4k
    fs->f->code[gt->pc] = CREATE_ABCk(OP_CLOSE, stklevel, 0, 0, 0);
612
26.4k
    gt->pc++;  /* must point to jump instruction */
613
26.4k
  }
614
183k
  luaK_patchlist(ls->fs, gt->pc, label->pc);  /* goto jumps to label */
615
411M
  for (i = g; i < gl->n - 1; i++)  /* remove goto from pending list */
616
411M
    gl->arr[i] = gl->arr[i + 1];
617
183k
  gl->n--;
618
183k
}
619
620
621
/*
622
** Search for an active label with the given name, starting at
623
** index 'ilb' (so that it can search for all labels in current block
624
** or all labels in current function).
625
*/
626
556k
static Labeldesc *findlabel (LexState *ls, TString *name, int ilb) {
627
556k
  Dyndata *dyd = ls->dyd;
628
678k
  for (; ilb < dyd->label.n; ilb++) {
629
310k
    Labeldesc *lb = &dyd->label.arr[ilb];
630
310k
    if (eqstr(lb->name, name))  /* correct label? */
631
188k
      return lb;
632
310k
  }
633
367k
  return NULL;  /* label not found */
634
556k
}
635
636
637
/*
638
** Adds a new label/goto in the corresponding list.
639
*/
640
static int newlabelentry (LexState *ls, Labellist *l, TString *name,
641
536k
                          int line, int pc) {
642
536k
  int n = l->n;
643
536k
  luaM_growvector(ls->L, l->arr, n, l->size,
644
536k
                  Labeldesc, SHRT_MAX, "labels/gotos");
645
536k
  l->arr[n].name = name;
646
536k
  l->arr[n].line = line;
647
536k
  l->arr[n].nactvar = ls->fs->nactvar;
648
536k
  l->arr[n].close = 0;
649
536k
  l->arr[n].pc = pc;
650
536k
  l->n = n + 1;
651
536k
  return n;
652
536k
}
653
654
655
/*
656
** Create an entry for the goto and the code for it. As it is not known
657
** at this point whether the goto may need a CLOSE, the code has a jump
658
** followed by an CLOSE. (As the CLOSE comes after the jump, it is a
659
** dead instruction; it works as a placeholder.) When the goto is closed
660
** against a label, if it needs a CLOSE, the two instructions swap
661
** positions, so that the CLOSE comes before the jump.
662
*/
663
353k
static int newgotoentry (LexState *ls, TString *name, int line) {
664
353k
  FuncState *fs = ls->fs;
665
353k
  int pc = luaK_jump(fs);  /* create jump */
666
353k
  luaK_codeABC(fs, OP_CLOSE, 0, 1, 0);  /* spaceholder, marked as dead */
667
353k
  return newlabelentry(ls, &ls->dyd->gt, name, line, pc);
668
353k
}
669
670
671
/*
672
** Create a new label with the given 'name' at the given 'line'.
673
** 'last' tells whether label is the last non-op statement in its
674
** block. Solves all pending gotos to this new label and adds
675
** a close instruction if necessary.
676
** Returns true iff it added a close instruction.
677
*/
678
182k
static void createlabel (LexState *ls, TString *name, int line, int last) {
679
182k
  FuncState *fs = ls->fs;
680
182k
  Labellist *ll = &ls->dyd->label;
681
182k
  int l = newlabelentry(ls, ll, name, line, luaK_getlabel(fs));
682
182k
  if (last) {  /* label is last no-op statement in the block? */
683
    /* assume that locals are already out of scope */
684
11.0k
    ll->arr[l].nactvar = fs->bl->nactvar;
685
11.0k
  }
686
182k
}
687
688
689
/*
690
** Traverse the pending gotos of the finishing block checking whether
691
** each match some label of that block. Those that do not match are
692
** "exported" to the outer block, to be solved there. In particular,
693
** its 'nactvar' is updated with the level of the inner block,
694
** as the variables of the inner block are now out of scope.
695
*/
696
5.56M
static void solvegotos (FuncState *fs, BlockCnt *bl) {
697
5.56M
  LexState *ls = fs->ls;
698
5.56M
  Labellist *gl = &ls->dyd->gt;
699
5.56M
  int outlevel = reglevel(fs, bl->nactvar);  /* level outside the block */
700
5.56M
  int igt = bl->firstgoto;  /* first goto in the finishing block */
701
6.03M
  while (igt < gl->n) {   /* for each pending goto */
702
465k
    Labeldesc *gt = &gl->arr[igt];
703
    /* search for a matching label in the current block */
704
465k
    Labeldesc *lb = findlabel(ls, gt->name, bl->firstlabel);
705
465k
    if (lb != NULL)  /* found a match? */
706
183k
      closegoto(ls, igt, lb, bl->upval);  /* close and remove goto */
707
281k
    else {  /* adjust 'goto' for outer block */
708
      /* block has variables to be closed and goto escapes the scope of
709
         some variable? */
710
281k
      if (bl->upval && reglevel(fs, gt->nactvar) > outlevel)
711
6.46k
        gt->close = 1;  /* jump may need a close */
712
281k
      gt->nactvar = bl->nactvar;  /* correct level for outer block */
713
281k
      igt++;  /* go to next goto */
714
281k
    }
715
465k
  }
716
5.56M
  ls->dyd->label.n = bl->firstlabel;  /* remove local labels */
717
5.56M
}
718
719
720
12.3M
static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) {
721
12.3M
  bl->isloop = isloop;
722
12.3M
  bl->nactvar = fs->nactvar;
723
12.3M
  bl->firstlabel = fs->ls->dyd->label.n;
724
12.3M
  bl->firstgoto = fs->ls->dyd->gt.n;
725
12.3M
  bl->upval = 0;
726
  /* inherit 'insidetbc' from enclosing block */
727
12.3M
  bl->insidetbc = (fs->bl != NULL && fs->bl->insidetbc);
728
12.3M
  bl->previous = fs->bl;  /* link block in function's block list */
729
12.3M
  fs->bl = bl;
730
12.3M
  lua_assert(fs->freereg == luaY_nvarstack(fs));
731
12.3M
}
732
733
734
/*
735
** generates an error for an undefined 'goto'.
736
*/
737
1.54k
static l_noret undefgoto (LexState *ls, Labeldesc *gt) {
738
  /* breaks are checked when created, cannot be undefined */
739
1.54k
  lua_assert(!eqstr(gt->name, ls->brkn));
740
1.54k
  luaK_semerror(ls, "no visible label '%s' for <goto> at line %d",
741
1.54k
                    getstr(gt->name), gt->line);
742
1.54k
}
743
744
745
5.56M
static void leaveblock (FuncState *fs) {
746
5.56M
  BlockCnt *bl = fs->bl;
747
5.56M
  LexState *ls = fs->ls;
748
5.56M
  lu_byte stklevel = reglevel(fs, bl->nactvar);  /* level outside block */
749
5.56M
  if (bl->previous && bl->upval)  /* need a 'close'? */
750
43.2k
    luaK_codeABC(fs, OP_CLOSE, stklevel, 0, 0);
751
5.56M
  fs->freereg = stklevel;  /* free registers */
752
5.56M
  removevars(fs, bl->nactvar);  /* remove block locals */
753
5.56M
  lua_assert(bl->nactvar == fs->nactvar);  /* back to level on entry */
754
5.56M
  if (bl->isloop == 2)  /* has to fix pending breaks? */
755
96.2k
    createlabel(ls, ls->brkn, 0, 0);
756
5.56M
  solvegotos(fs, bl);
757
5.56M
  if (bl->previous == NULL) {  /* was it the last block? */
758
4.79M
    if (bl->firstgoto < ls->dyd->gt.n)  /* still pending gotos? */
759
1.54k
      undefgoto(ls, &ls->dyd->gt.arr[bl->firstgoto]);  /* error */
760
4.79M
  }
761
5.56M
  fs->bl = bl->previous;  /* current block now is previous one */
762
5.56M
}
763
764
765
/*
766
** adds a new prototype into list of prototypes
767
*/
768
1.77M
static Proto *addprototype (LexState *ls) {
769
1.77M
  Proto *clp;
770
1.77M
  lua_State *L = ls->L;
771
1.77M
  FuncState *fs = ls->fs;
772
1.77M
  Proto *f = fs->f;  /* prototype of current function */
773
1.77M
  if (fs->np >= f->sizep) {
774
671k
    int oldsize = f->sizep;
775
671k
    luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions");
776
4.64M
    while (oldsize < f->sizep)
777
3.97M
      f->p[oldsize++] = NULL;
778
671k
  }
779
1.77M
  f->p[fs->np++] = clp = luaF_newproto(L);
780
1.77M
  luaC_objbarrier(L, f, clp);
781
1.77M
  return clp;
782
1.77M
}
783
784
785
/*
786
** codes instruction to create new closure in parent function.
787
** The OP_CLOSURE instruction uses the last available register,
788
** so that, if it invokes the GC, the GC knows which registers
789
** are in use at that time.
790
791
*/
792
1.28M
static void codeclosure (LexState *ls, expdesc *v) {
793
1.28M
  FuncState *fs = ls->fs->prev;
794
1.28M
  init_exp(v, VRELOC, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np - 1));
795
1.28M
  luaK_exp2nextreg(fs, v);  /* fix it at the last register */
796
1.28M
}
797
798
799
11.4M
static void open_func (LexState *ls, FuncState *fs, BlockCnt *bl) {
800
11.4M
  lua_State *L = ls->L;
801
11.4M
  Proto *f = fs->f;
802
11.4M
  fs->prev = ls->fs;  /* linked list of funcstates */
803
11.4M
  fs->ls = ls;
804
11.4M
  ls->fs = fs;
805
11.4M
  fs->pc = 0;
806
11.4M
  fs->previousline = f->linedefined;
807
11.4M
  fs->iwthabs = 0;
808
11.4M
  fs->lasttarget = 0;
809
11.4M
  fs->freereg = 0;
810
11.4M
  fs->nk = 0;
811
11.4M
  fs->nabslineinfo = 0;
812
11.4M
  fs->np = 0;
813
11.4M
  fs->nups = 0;
814
11.4M
  fs->ndebugvars = 0;
815
11.4M
  fs->nactvar = 0;
816
11.4M
  fs->needclose = 0;
817
11.4M
  fs->firstlocal = ls->dyd->actvar.n;
818
11.4M
  fs->firstlabel = ls->dyd->label.n;
819
11.4M
  fs->bl = NULL;
820
11.4M
  f->source = ls->source;
821
11.4M
  luaC_objbarrier(L, f, f->source);
822
11.4M
  f->maxstacksize = 2;  /* registers 0/1 are always valid */
823
11.4M
  fs->kcache = luaH_new(L);  /* create table for function */
824
11.4M
  sethvalue2s(L, L->top.p, fs->kcache);  /* anchor it */
825
11.4M
  luaD_inctop(L);
826
11.4M
  enterblock(fs, bl, 0);
827
11.4M
}
828
829
830
4.79M
static void close_func (LexState *ls) {
831
4.79M
  lua_State *L = ls->L;
832
4.79M
  FuncState *fs = ls->fs;
833
4.79M
  Proto *f = fs->f;
834
4.79M
  luaK_ret(fs, luaY_nvarstack(fs), 0);  /* final return */
835
4.79M
  leaveblock(fs);
836
4.79M
  lua_assert(fs->bl == NULL);
837
4.79M
  luaK_finish(fs);
838
4.79M
  luaM_shrinkvector(L, f->code, f->sizecode, fs->pc, Instruction);
839
4.79M
  luaM_shrinkvector(L, f->lineinfo, f->sizelineinfo, fs->pc, ls_byte);
840
4.79M
  luaM_shrinkvector(L, f->abslineinfo, f->sizeabslineinfo,
841
4.79M
                       fs->nabslineinfo, AbsLineInfo);
842
4.79M
  luaM_shrinkvector(L, f->k, f->sizek, fs->nk, TValue);
843
4.79M
  luaM_shrinkvector(L, f->p, f->sizep, fs->np, Proto *);
844
4.79M
  luaM_shrinkvector(L, f->locvars, f->sizelocvars, fs->ndebugvars, LocVar);
845
4.79M
  luaM_shrinkvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc);
846
4.79M
  ls->fs = fs->prev;
847
4.79M
  L->top.p--;  /* pop kcache table */
848
4.79M
  luaC_checkGC(L);
849
4.79M
}
850
851
852
/*
853
** {======================================================================
854
** GRAMMAR RULES
855
** =======================================================================
856
*/
857
858
859
/*
860
** check whether current token is in the follow set of a block.
861
** 'until' closes syntactical blocks, but do not close scope,
862
** so it is handled in separate.
863
*/
864
18.9M
static int block_follow (LexState *ls, int withuntil) {
865
18.9M
  switch (ls->t.token) {
866
23.4k
    case TK_ELSE: case TK_ELSEIF:
867
4.64M
    case TK_END: case TK_EOS:
868
4.64M
      return 1;
869
57.9k
    case TK_UNTIL: return withuntil;
870
14.2M
    default: return 0;
871
18.9M
  }
872
18.9M
}
873
874
875
11.8M
static void statlist (LexState *ls) {
876
  /* statlist -> { stat [';'] } */
877
24.5M
  while (!block_follow(ls, 1)) {
878
13.4M
    if (ls->t.token == TK_RETURN) {
879
774k
      statement(ls);
880
774k
      return;  /* 'return' must be last statement */
881
774k
    }
882
12.7M
    statement(ls);
883
12.7M
  }
884
11.8M
}
885
886
887
4.59M
static void fieldsel (LexState *ls, expdesc *v) {
888
  /* fieldsel -> ['.' | ':'] NAME */
889
4.59M
  FuncState *fs = ls->fs;
890
4.59M
  expdesc key;
891
4.59M
  luaK_exp2anyregup(fs, v);
892
4.59M
  luaX_next(ls);  /* skip the dot or colon */
893
4.59M
  codename(ls, &key);
894
4.59M
  luaK_indexed(fs, v, &key);
895
4.59M
}
896
897
898
625k
static void yindex (LexState *ls, expdesc *v) {
899
  /* index -> '[' expr ']' */
900
625k
  luaX_next(ls);  /* skip the '[' */
901
625k
  expr(ls, v);
902
625k
  luaK_exp2val(ls->fs, v);
903
625k
  checknext(ls, ']');
904
625k
}
905
906
907
/*
908
** {======================================================================
909
** Rules for Constructors
910
** =======================================================================
911
*/
912
913
typedef struct ConsControl {
914
  expdesc v;  /* last list item read */
915
  expdesc *t;  /* table descriptor */
916
  int nh;  /* total number of 'record' elements */
917
  int na;  /* number of array elements already stored */
918
  int tostore;  /* number of array elements pending to be stored */
919
  int maxtostore;  /* maximum number of pending elements */
920
} ConsControl;
921
922
923
/*
924
** Maximum number of elements in a constructor, to control the following:
925
** * counter overflows;
926
** * overflows in 'extra' for OP_NEWTABLE and OP_SETLIST;
927
** * overflows when adding multiple returns in OP_SETLIST.
928
*/
929
11.4M
#define MAX_CNST  (INT_MAX/2)
930
#if MAX_CNST/(MAXARG_vC + 1) > MAXARG_Ax
931
#undef MAX_CNST
932
#define MAX_CNST  (MAXARG_Ax * (MAXARG_vC + 1))
933
#endif
934
935
936
3.34M
static void recfield (LexState *ls, ConsControl *cc) {
937
  /* recfield -> (NAME | '['exp']') = exp */
938
3.34M
  FuncState *fs = ls->fs;
939
3.34M
  lu_byte reg = ls->fs->freereg;
940
3.34M
  expdesc tab, key, val;
941
3.34M
  if (ls->t.token == TK_NAME)
942
3.20M
    codename(ls, &key);
943
135k
  else  /* ls->t.token == '[' */
944
135k
    yindex(ls, &key);
945
3.34M
  cc->nh++;
946
3.34M
  checknext(ls, '=');
947
3.34M
  tab = *cc->t;
948
3.34M
  luaK_indexed(fs, &tab, &key);
949
3.34M
  expr(ls, &val);
950
3.34M
  luaK_storevar(fs, &tab, &val);
951
3.34M
  fs->freereg = reg;  /* free registers */
952
3.34M
}
953
954
955
6.10M
static void closelistfield (FuncState *fs, ConsControl *cc) {
956
6.10M
  lua_assert(cc->tostore > 0);
957
6.10M
  luaK_exp2nextreg(fs, &cc->v);
958
6.10M
  cc->v.k = VVOID;
959
6.10M
  if (cc->tostore >= cc->maxtostore) {
960
863k
    luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore);  /* flush */
961
863k
    cc->na += cc->tostore;
962
863k
    cc->tostore = 0;  /* no more items pending */
963
863k
  }
964
6.10M
}
965
966
967
413k
static void lastlistfield (FuncState *fs, ConsControl *cc) {
968
413k
  if (cc->tostore == 0) return;
969
95.9k
  if (hasmultret(cc->v.k)) {
970
35.3k
    luaK_setmultret(fs, &cc->v);
971
35.3k
    luaK_setlist(fs, cc->t->u.info, cc->na, LUA_MULTRET);
972
35.3k
    cc->na--;  /* do not count last expression (unknown number of elements) */
973
35.3k
  }
974
60.6k
  else {
975
60.6k
    if (cc->v.k != VVOID)
976
50.2k
      luaK_exp2nextreg(fs, &cc->v);
977
60.6k
    luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore);
978
60.6k
  }
979
95.9k
  cc->na += cc->tostore;
980
95.9k
}
981
982
983
8.10M
static void listfield (LexState *ls, ConsControl *cc) {
984
  /* listfield -> exp */
985
8.10M
  expr(ls, &cc->v);
986
8.10M
  cc->tostore++;
987
8.10M
}
988
989
990
11.4M
static void field (LexState *ls, ConsControl *cc) {
991
  /* field -> listfield | recfield */
992
11.4M
  switch(ls->t.token) {
993
9.99M
    case TK_NAME: {  /* may be 'listfield' or 'recfield' */
994
9.99M
      if (luaX_lookahead(ls) != '=')  /* expression? */
995
6.77M
        listfield(ls, cc);
996
3.22M
      else
997
3.22M
        recfield(ls, cc);
998
9.99M
      break;
999
0
    }
1000
135k
    case '[': {
1001
135k
      recfield(ls, cc);
1002
135k
      break;
1003
0
    }
1004
1.32M
    default: {
1005
1.32M
      listfield(ls, cc);
1006
1.32M
      break;
1007
0
    }
1008
11.4M
  }
1009
11.4M
}
1010
1011
1012
/*
1013
** Compute a limit for how many registers a constructor can use before
1014
** emitting a 'SETLIST' instruction, based on how many registers are
1015
** available.
1016
*/
1017
2.36M
static int maxtostore (FuncState *fs) {
1018
2.36M
  int numfreeregs = MAX_FSTACK - fs->freereg;
1019
2.36M
  if (numfreeregs >= 160)  /* "lots" of registers? */
1020
1.99M
    return numfreeregs / 5;  /* use up to 1/5 of them */
1021
367k
  else if (numfreeregs >= 80)  /* still "enough" registers? */
1022
271k
    return 10;  /* one 'SETLIST' instruction for each 10 values */
1023
96.3k
  else  /* save registers for potential more nesting */
1024
96.3k
    return 1;
1025
2.36M
}
1026
1027
1028
2.36M
static void constructor (LexState *ls, expdesc *t) {
1029
  /* constructor -> '{' [ field { sep field } [sep] ] '}'
1030
     sep -> ',' | ';' */
1031
2.36M
  FuncState *fs = ls->fs;
1032
2.36M
  int line = ls->linenumber;
1033
2.36M
  int pc = luaK_codevABCk(fs, OP_NEWTABLE, 0, 0, 0, 0);
1034
2.36M
  ConsControl cc;
1035
2.36M
  luaK_code(fs, 0);  /* space for extra arg. */
1036
2.36M
  cc.na = cc.nh = cc.tostore = 0;
1037
2.36M
  cc.t = t;
1038
2.36M
  init_exp(t, VNONRELOC, fs->freereg);  /* table will be at stack top */
1039
2.36M
  luaK_reserveregs(fs, 1);
1040
2.36M
  init_exp(&cc.v, VVOID, 0);  /* no value (yet) */
1041
2.36M
  checknext(ls, '{' /*}*/);
1042
2.36M
  cc.maxtostore = maxtostore(fs);
1043
11.7M
  do {
1044
11.7M
    if (ls->t.token == /*{*/ '}') break;
1045
11.4M
    if (cc.v.k != VVOID)  /* is there a previous list item? */
1046
6.10M
      closelistfield(fs, &cc);  /* close it */
1047
11.4M
    field(ls, &cc);
1048
11.4M
    luaY_checklimit(fs, cc.tostore + cc.na + cc.nh, MAX_CNST,
1049
11.4M
                    "items in a constructor");
1050
11.4M
  } while (testnext(ls, ',') || testnext(ls, ';'));
1051
2.36M
  check_match(ls, /*{*/ '}', '{' /*}*/, line);
1052
2.36M
  lastlistfield(fs, &cc);
1053
2.36M
  luaK_settablesize(fs, pc, t->u.info, cc.na, cc.nh);
1054
2.36M
}
1055
1056
/* }====================================================================== */
1057
1058
1059
9.64M
static void setvararg (FuncState *fs, int kind) {
1060
9.64M
  lua_assert(kind & PF_ISVARARG);
1061
9.64M
  fs->f->flag |= cast_byte(kind);
1062
9.64M
  luaK_codeABC(fs, OP_VARARGPREP, 0, 0, 0);
1063
9.64M
}
1064
1065
1066
1.76M
static void parlist (LexState *ls) {
1067
  /* parlist -> [ {NAME ','} (NAME | '...') ] */
1068
1.76M
  FuncState *fs = ls->fs;
1069
1.76M
  Proto *f = fs->f;
1070
1.76M
  int nparams = 0;
1071
1.76M
  int varargk = 0;
1072
1.76M
  if (ls->t.token != ')') {  /* is 'parlist' not empty? */
1073
2.41M
    do {
1074
2.41M
      switch (ls->t.token) {
1075
2.39M
        case TK_NAME: {
1076
2.39M
          new_localvar(ls, str_checkname(ls));
1077
2.39M
          nparams++;
1078
2.39M
          break;
1079
0
        }
1080
7.23k
        case TK_DOTS: {
1081
7.23k
          varargk |= PF_ISVARARG;
1082
7.23k
          luaX_next(ls);
1083
7.23k
          if (testnext(ls, '|')) {
1084
1.22k
            new_varkind(ls, str_checkname(ls), RDKVAVAR);
1085
1.22k
            varargk |= PF_VAVAR;
1086
1.22k
          }
1087
7.23k
          break;
1088
0
        }
1089
11.2k
        default: luaX_syntaxerror(ls, "<name> or '...' expected");
1090
2.41M
      }
1091
2.41M
    } while (!varargk && testnext(ls, ','));
1092
862k
  }
1093
1.74M
  adjustlocalvars(ls, nparams);
1094
1.74M
  f->numparams = cast_byte(fs->nactvar);
1095
1.74M
  if (varargk != 0) {
1096
7.09k
    setvararg(fs, varargk);  /* declared vararg */
1097
7.09k
    if (varargk & PF_VAVAR)
1098
1.09k
      adjustlocalvars(ls, 1);  /* vararg parameter */
1099
7.09k
  }
1100
  /* reserve registers for parameters (plus vararg parameter, if present) */
1101
1.74M
  luaK_reserveregs(fs, fs->nactvar);
1102
1.74M
}
1103
1104
1105
1.77M
static void body (LexState *ls, expdesc *e, int ismethod, int line) {
1106
  /* body ->  '(' parlist ')' block END */
1107
1.77M
  FuncState new_fs;
1108
1.77M
  BlockCnt bl;
1109
1.77M
  new_fs.f = addprototype(ls);
1110
1.77M
  new_fs.f->linedefined = line;
1111
1.77M
  open_func(ls, &new_fs, &bl);
1112
1.77M
  checknext(ls, '(');
1113
1.77M
  if (ismethod) {
1114
9.33k
    new_localvarliteral(ls, "self");  /* create 'self' parameter */
1115
9.33k
    adjustlocalvars(ls, 1);
1116
9.33k
  }
1117
1.77M
  parlist(ls);
1118
1.77M
  checknext(ls, ')');
1119
1.77M
  statlist(ls);
1120
1.77M
  new_fs.f->lastlinedefined = ls->linenumber;
1121
1.77M
  check_match(ls, TK_END, TK_FUNCTION, line);
1122
1.77M
  codeclosure(ls, e);
1123
1.77M
  close_func(ls);
1124
1.77M
}
1125
1126
1127
7.03M
static int explist (LexState *ls, expdesc *v) {
1128
  /* explist -> expr { ',' expr } */
1129
7.03M
  int n = 1;  /* at least one expression */
1130
7.03M
  expr(ls, v);
1131
9.74M
  while (testnext(ls, ',')) {
1132
2.71M
    luaK_exp2nextreg(ls->fs, v);
1133
2.71M
    expr(ls, v);
1134
2.71M
    n++;
1135
2.71M
  }
1136
7.03M
  return n;
1137
7.03M
}
1138
1139
1140
5.26M
static void funcargs (LexState *ls, expdesc *f) {
1141
5.26M
  FuncState *fs = ls->fs;
1142
5.26M
  expdesc args;
1143
5.26M
  int base, nparams;
1144
5.26M
  int line = ls->linenumber;
1145
5.26M
  switch (ls->t.token) {
1146
3.18M
    case '(': {  /* funcargs -> '(' [ explist ] ')' */
1147
3.18M
      luaX_next(ls);
1148
3.18M
      if (ls->t.token == ')')  /* arg list is empty? */
1149
263k
        args.k = VVOID;
1150
2.91M
      else {
1151
2.91M
        explist(ls, &args);
1152
2.91M
        if (hasmultret(args.k))
1153
162k
          luaK_setmultret(fs, &args);
1154
2.91M
      }
1155
3.18M
      check_match(ls, ')', '(', line);
1156
3.18M
      break;
1157
0
    }
1158
830k
    case '{' /*}*/: {  /* funcargs -> constructor */
1159
830k
      constructor(ls, &args);
1160
830k
      break;
1161
0
    }
1162
1.21M
    case TK_STRING: {  /* funcargs -> STRING */
1163
1.21M
      codestring(&args, ls->t.seminfo.ts);
1164
1.21M
      luaX_next(ls);  /* must use 'seminfo' before 'next' */
1165
1.21M
      break;
1166
0
    }
1167
32.0k
    default: {
1168
32.0k
      luaX_syntaxerror(ls, "function arguments expected");
1169
0
    }
1170
5.26M
  }
1171
3.84M
  lua_assert(f->k == VNONRELOC);
1172
3.84M
  base = f->u.info;  /* base register for call */
1173
3.84M
  if (hasmultret(args.k))
1174
157k
    nparams = LUA_MULTRET;  /* open call */
1175
3.68M
  else {
1176
3.68M
    if (args.k != VVOID)
1177
3.42M
      luaK_exp2nextreg(fs, &args);  /* close last argument */
1178
3.68M
    nparams = fs->freereg - (base+1);
1179
3.68M
  }
1180
3.84M
  init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2));
1181
3.84M
  luaK_fixline(fs, line);
1182
  /* call removes function and arguments and leaves one result (unless
1183
     changed later) */
1184
3.84M
  fs->freereg = cast_byte(base + 1);
1185
3.84M
}
1186
1187
1188
1189
1190
/*
1191
** {======================================================================
1192
** Expression parsing
1193
** =======================================================================
1194
*/
1195
1196
1197
186M
static void primaryexp (LexState *ls, expdesc *v) {
1198
  /* primaryexp -> NAME | '(' expr ')' */
1199
186M
  switch (ls->t.token) {
1200
1.08M
    case '(': {
1201
1.08M
      int line = ls->linenumber;
1202
1.08M
      luaX_next(ls);
1203
1.08M
      expr(ls, v);
1204
1.08M
      check_match(ls, ')', '(', line);
1205
1.08M
      luaK_dischargevars(ls->fs, v);
1206
1.08M
      return;
1207
0
    }
1208
181M
    case TK_NAME: {
1209
181M
      singlevar(ls, v);
1210
181M
      return;
1211
0
    }
1212
3.36M
    default: {
1213
3.36M
      luaX_syntaxerror(ls, "unexpected symbol");
1214
0
    }
1215
186M
  }
1216
186M
}
1217
1218
1219
186M
static void suffixedexp (LexState *ls, expdesc *v) {
1220
  /* suffixedexp ->
1221
       primaryexp { '.' NAME | '[' exp ']' | ':' NAME funcargs | funcargs } */
1222
186M
  FuncState *fs = ls->fs;
1223
186M
  primaryexp(ls, v);
1224
190M
  for (;;) {
1225
190M
    switch (ls->t.token) {
1226
4.55M
      case '.': {  /* fieldsel */
1227
4.55M
        fieldsel(ls, v);
1228
4.55M
        break;
1229
0
      }
1230
490k
      case '[': {  /* '[' exp ']' */
1231
490k
        expdesc key;
1232
490k
        luaK_exp2anyregup(fs, v);
1233
490k
        yindex(ls, &key);
1234
490k
        luaK_indexed(fs, v, &key);
1235
490k
        break;
1236
0
      }
1237
359k
      case ':': {  /* ':' NAME funcargs */
1238
359k
        expdesc key;
1239
359k
        luaX_next(ls);
1240
359k
        codename(ls, &key);
1241
359k
        luaK_self(fs, v, &key);
1242
359k
        funcargs(ls, v);
1243
359k
        break;
1244
0
      }
1245
5.00M
      case '(': case TK_STRING: case '{' /*}*/: {  /* funcargs */
1246
5.00M
        luaK_exp2nextreg(fs, v);
1247
5.00M
        funcargs(ls, v);
1248
5.00M
        break;
1249
4.19M
      }
1250
180M
      default: return;
1251
190M
    }
1252
190M
  }
1253
186M
}
1254
1255
1256
193M
static void simpleexp (LexState *ls, expdesc *v) {
1257
  /* simpleexp -> FLT | INT | STRING | NIL | TRUE | FALSE | ... |
1258
                  constructor | FUNCTION body | suffixedexp */
1259
193M
  switch (ls->t.token) {
1260
2.50M
    case TK_FLT: {
1261
2.50M
      init_exp(v, VKFLT, 0);
1262
2.50M
      v->u.nval = ls->t.seminfo.r;
1263
2.50M
      break;
1264
0
    }
1265
14.9M
    case TK_INT: {
1266
14.9M
      init_exp(v, VKINT, 0);
1267
14.9M
      v->u.ival = ls->t.seminfo.i;
1268
14.9M
      break;
1269
0
    }
1270
1.10M
    case TK_STRING: {
1271
1.10M
      codestring(v, ls->t.seminfo.ts);
1272
1.10M
      break;
1273
0
    }
1274
296k
    case TK_NIL: {
1275
296k
      init_exp(v, VNIL, 0);
1276
296k
      break;
1277
0
    }
1278
159k
    case TK_TRUE: {
1279
159k
      init_exp(v, VTRUE, 0);
1280
159k
      break;
1281
0
    }
1282
47.0k
    case TK_FALSE: {
1283
47.0k
      init_exp(v, VFALSE, 0);
1284
47.0k
      break;
1285
0
    }
1286
291k
    case TK_DOTS: {  /* vararg */
1287
291k
      FuncState *fs = ls->fs;
1288
291k
      check_condition(ls, fs->f->flag & PF_ISVARARG,
1289
291k
                      "cannot use '...' outside a vararg function");
1290
286k
      init_exp(v, VVARARG, luaK_codeABC(fs, OP_VARARG, 0, 0, 1));
1291
286k
      break;
1292
291k
    }
1293
1.53M
    case '{' /*}*/: {  /* constructor */
1294
1.53M
      constructor(ls, v);
1295
1.53M
      return;
1296
291k
    }
1297
1.65M
    case TK_FUNCTION: {
1298
1.65M
      luaX_next(ls);
1299
1.65M
      body(ls, v, 0, ls->linenumber);
1300
1.65M
      return;
1301
291k
    }
1302
171M
    default: {
1303
171M
      suffixedexp(ls, v);
1304
171M
      return;
1305
291k
    }
1306
193M
  }
1307
19.3M
  luaX_next(ls);
1308
19.3M
}
1309
1310
1311
208M
static UnOpr getunopr (int op) {
1312
208M
  switch (op) {
1313
176k
    case TK_NOT: return OPR_NOT;
1314
2.23M
    case '-': return OPR_MINUS;
1315
11.6M
    case '~': return OPR_BNOT;
1316
233k
    case '#': return OPR_LEN;
1317
193M
    default: return OPR_NOUNOPR;
1318
208M
  }
1319
208M
}
1320
1321
1322
204M
static BinOpr getbinopr (int op) {
1323
204M
  switch (op) {
1324
663k
    case '+': return OPR_ADD;
1325
2.64M
    case '-': return OPR_SUB;
1326
9.20M
    case '*': return OPR_MUL;
1327
1.59M
    case '%': return OPR_MOD;
1328
4.86M
    case '^': return OPR_POW;
1329
9.59M
    case '/': return OPR_DIV;
1330
720k
    case TK_IDIV: return OPR_IDIV;
1331
135k
    case '&': return OPR_BAND;
1332
1.10M
    case '|': return OPR_BOR;
1333
5.03M
    case '~': return OPR_BXOR;
1334
1.12M
    case TK_SHL: return OPR_SHL;
1335
1.50M
    case TK_SHR: return OPR_SHR;
1336
1.54M
    case TK_CONCAT: return OPR_CONCAT;
1337
131k
    case TK_NE: return OPR_NE;
1338
518k
    case TK_EQ: return OPR_EQ;
1339
13.8M
    case '<': return OPR_LT;
1340
743k
    case TK_LE: return OPR_LE;
1341
127M
    case '>': return OPR_GT;
1342
42.7k
    case TK_GE: return OPR_GE;
1343
810k
    case TK_AND: return OPR_AND;
1344
989k
    case TK_OR: return OPR_OR;
1345
20.6M
    default: return OPR_NOBINOPR;
1346
204M
  }
1347
204M
}
1348
1349
1350
/*
1351
** Priority table for binary operators.
1352
*/
1353
static const struct {
1354
  lu_byte left;  /* left priority for each binary operator */
1355
  lu_byte right; /* right priority */
1356
} priority[] = {  /* ORDER OPR */
1357
   {10, 10}, {10, 10},           /* '+' '-' */
1358
   {11, 11}, {11, 11},           /* '*' '%' */
1359
   {14, 13},                  /* '^' (right associative) */
1360
   {11, 11}, {11, 11},           /* '/' '//' */
1361
   {6, 6}, {4, 4}, {5, 5},   /* '&' '|' '~' */
1362
   {7, 7}, {7, 7},           /* '<<' '>>' */
1363
   {9, 8},                   /* '..' (right associative) */
1364
   {3, 3}, {3, 3}, {3, 3},   /* ==, <, <= */
1365
   {3, 3}, {3, 3}, {3, 3},   /* ~=, >, >= */
1366
   {2, 2}, {1, 1}            /* and, or */
1367
};
1368
1369
14.2M
#define UNARY_PRIORITY  12  /* priority for unary operators */
1370
1371
1372
/*
1373
** subexpr -> (simpleexp | unop subexpr) { binop subexpr }
1374
** where 'binop' is any binary operator with a priority higher than 'limit'
1375
*/
1376
208M
static BinOpr subexpr (LexState *ls, expdesc *v, int limit) {
1377
208M
  BinOpr op;
1378
208M
  UnOpr uop;
1379
208M
  enterlevel(ls);
1380
208M
  uop = getunopr(ls->t.token);
1381
208M
  if (uop != OPR_NOUNOPR) {  /* prefix (unary) operator? */
1382
14.2M
    int line = ls->linenumber;
1383
14.2M
    luaX_next(ls);  /* skip operator */
1384
14.2M
    subexpr(ls, v, UNARY_PRIORITY);
1385
14.2M
    luaK_prefix(ls->fs, uop, v, line);
1386
14.2M
  }
1387
193M
  else simpleexp(ls, v);
1388
  /* expand while operators have priorities higher than 'limit' */
1389
208M
  op = getbinopr(ls->t.token);
1390
378M
  while (op != OPR_NOBINOPR && priority[op].left > limit) {
1391
170M
    expdesc v2;
1392
170M
    BinOpr nextop;
1393
170M
    int line = ls->linenumber;
1394
170M
    luaX_next(ls);  /* skip operator */
1395
170M
    luaK_infix(ls->fs, op, v);
1396
    /* read sub-expression with higher priority */
1397
170M
    nextop = subexpr(ls, &v2, priority[op].right);
1398
170M
    luaK_posfix(ls->fs, op, v, &v2, line);
1399
170M
    op = nextop;
1400
170M
  }
1401
208M
  leavelevel(ls);
1402
208M
  return op;  /* return first untreated operator */
1403
208M
}
1404
1405
1406
23.4M
static void expr (LexState *ls, expdesc *v) {
1407
23.4M
  subexpr(ls, v, 0);
1408
23.4M
}
1409
1410
/* }==================================================================== */
1411
1412
1413
1414
/*
1415
** {======================================================================
1416
** Rules for Statements
1417
** =======================================================================
1418
*/
1419
1420
1421
572k
static void block (LexState *ls) {
1422
  /* block -> statlist */
1423
572k
  FuncState *fs = ls->fs;
1424
572k
  BlockCnt bl;
1425
572k
  enterblock(fs, &bl, 0);
1426
572k
  statlist(ls);
1427
572k
  leaveblock(fs);
1428
572k
}
1429
1430
1431
/*
1432
** structure to chain all variables in the left-hand side of an
1433
** assignment
1434
*/
1435
struct LHS_assign {
1436
  struct LHS_assign *prev;
1437
  expdesc v;  /* variable (global, local, upvalue, or indexed) */
1438
};
1439
1440
1441
/*
1442
** check whether, in an assignment to an upvalue/local variable, the
1443
** upvalue/local variable is begin used in a previous assignment to a
1444
** table. If so, save original upvalue/local value in a safe place and
1445
** use this safe copy in the previous assignment.
1446
*/
1447
514k
static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc *v) {
1448
514k
  FuncState *fs = ls->fs;
1449
514k
  lu_byte extra = fs->freereg;  /* eventual position to save local variable */
1450
514k
  int conflict = 0;
1451
8.51M
  for (; lh; lh = lh->prev) {  /* check all previous assignments */
1452
8.00M
    if (vkisindexed(lh->v.k)) {  /* assignment to table field? */
1453
6.39M
      if (lh->v.k == VINDEXUP) {  /* is table an upvalue? */
1454
1.60M
        if (v->k == VUPVAL && lh->v.u.ind.t == v->u.info) {
1455
1.46M
          conflict = 1;  /* table is the upvalue being assigned now */
1456
1.46M
          lh->v.k = VINDEXSTR;
1457
1.46M
          lh->v.u.ind.t = extra;  /* assignment will use safe copy */
1458
1.46M
        }
1459
1.60M
      }
1460
4.79M
      else {  /* table is a register */
1461
4.79M
        if (v->k == VLOCAL && lh->v.u.ind.t == v->u.var.ridx) {
1462
4.79k
          conflict = 1;  /* table is the local being assigned now */
1463
4.79k
          lh->v.u.ind.t = extra;  /* assignment will use safe copy */
1464
4.79k
        }
1465
        /* is index the local being assigned? */
1466
4.79M
        if (lh->v.k == VINDEXED && v->k == VLOCAL &&
1467
12.0k
            lh->v.u.ind.idx == v->u.var.ridx) {
1468
682
          conflict = 1;
1469
682
          lh->v.u.ind.idx = extra;  /* previous assignment will use safe copy */
1470
682
        }
1471
4.79M
      }
1472
6.39M
    }
1473
8.00M
  }
1474
514k
  if (conflict) {
1475
    /* copy upvalue/local value to a temporary (in position 'extra') */
1476
328k
    if (v->k == VLOCAL)
1477
2.22k
      luaK_codeABC(fs, OP_MOVE, extra, v->u.var.ridx, 0);
1478
326k
    else
1479
326k
      luaK_codeABC(fs, OP_GETUPVAL, extra, v->u.info, 0);
1480
328k
    luaK_reserveregs(fs, 1);
1481
328k
  }
1482
514k
}
1483
1484
1485
/* Create code to store the "top" register in 'var' */
1486
3.47M
static void storevartop (FuncState *fs, expdesc *var) {
1487
3.47M
  expdesc e;
1488
3.47M
  init_exp(&e, VNONRELOC, fs->freereg - 1);
1489
3.47M
  luaK_storevar(fs, var, &e);  /* will also free the top register */
1490
3.47M
}
1491
1492
1493
/*
1494
** Parse and compile a multiple assignment. The first "variable"
1495
** (a 'suffixedexp') was already read by the caller.
1496
**
1497
** assignment -> suffixedexp restassign
1498
** restassign -> ',' suffixedexp restassign | '=' explist
1499
*/
1500
8.45M
static void restassign (LexState *ls, struct LHS_assign *lh, int nvars) {
1501
8.45M
  expdesc e;
1502
8.45M
  check_condition(ls, vkisvar(lh->v.k), "syntax error");
1503
8.33M
  check_readonly(ls, &lh->v);
1504
8.33M
  if (testnext(ls, ',')) {  /* restassign -> ',' suffixedexp restassign */
1505
5.59M
    struct LHS_assign nv;
1506
5.59M
    nv.prev = lh;
1507
5.59M
    suffixedexp(ls, &nv.v);
1508
5.59M
    if (!vkisindexed(nv.v.k))
1509
514k
      check_conflict(ls, lh, &nv.v);
1510
5.59M
    enterlevel(ls);  /* control recursion depth */
1511
5.59M
    restassign(ls, &nv, nvars+1);
1512
5.59M
    leavelevel(ls);
1513
5.59M
  }
1514
2.74M
  else {  /* restassign -> '=' explist */
1515
2.74M
    int nexps;
1516
2.74M
    checknext(ls, '=');
1517
2.74M
    nexps = explist(ls, &e);
1518
2.74M
    if (nexps != nvars)
1519
330k
      adjust_assign(ls, nvars, nexps, &e);
1520
2.41M
    else {
1521
2.41M
      luaK_setoneret(ls->fs, &e);  /* close last expression */
1522
2.41M
      luaK_storevar(ls->fs, &lh->v, &e);
1523
2.41M
      return;  /* avoid default */
1524
2.41M
    }
1525
2.74M
  }
1526
5.92M
  storevartop(ls->fs, &lh->v);  /* default assignment */
1527
5.92M
}
1528
1529
1530
457k
static int cond (LexState *ls) {
1531
  /* cond -> exp */
1532
457k
  expdesc v;
1533
457k
  expr(ls, &v);  /* read condition */
1534
457k
  if (v.k == VNIL) v.k = VFALSE;  /* 'falses' are all equal here */
1535
457k
  luaK_goiftrue(ls->fs, &v);
1536
457k
  return v.f;
1537
457k
}
1538
1539
1540
247k
static void gotostat (LexState *ls, int line) {
1541
247k
  TString *name = str_checkname(ls);  /* label's name */
1542
247k
  newgotoentry(ls, name, line);
1543
247k
}
1544
1545
1546
/*
1547
** Break statement. Semantically equivalent to "goto break".
1548
*/
1549
114k
static void breakstat (LexState *ls, int line) {
1550
114k
  BlockCnt *bl;  /* to look for an enclosing loop */
1551
387k
  for (bl = ls->fs->bl; bl != NULL; bl = bl->previous) {
1552
385k
    if (bl->isloop)  /* found one? */
1553
112k
      goto ok;
1554
385k
  }
1555
2.12k
  luaX_syntaxerror(ls, "break outside loop");
1556
112k
 ok:
1557
112k
  bl->isloop = 2;  /* signal that block has pending breaks */
1558
112k
  luaX_next(ls);  /* skip break */
1559
112k
  newgotoentry(ls, ls->brkn, line);
1560
112k
}
1561
1562
1563
/*
1564
** Check whether there is already a label with the given 'name' at
1565
** current function.
1566
*/
1567
90.6k
static void checkrepeated (LexState *ls, TString *name) {
1568
90.6k
  Labeldesc *lb = findlabel(ls, name, ls->fs->firstlabel);
1569
90.6k
  if (l_unlikely(lb != NULL))  /* already defined? */
1570
4.34k
    luaK_semerror(ls, "label '%s' already defined on line %d",
1571
4.34k
                      getstr(name), lb->line);  /* error */
1572
90.6k
}
1573
1574
1575
99.6k
static void labelstat (LexState *ls, TString *name, int line) {
1576
  /* label -> '::' NAME '::' */
1577
99.6k
  checknext(ls, TK_DBCOLON);  /* skip double colon */
1578
159k
  while (ls->t.token == ';' || ls->t.token == TK_DBCOLON)
1579
59.6k
    statement(ls);  /* skip other no-op statements */
1580
99.6k
  checkrepeated(ls, name);  /* check for repeated labels */
1581
99.6k
  createlabel(ls, name, line, block_follow(ls, 0));
1582
99.6k
}
1583
1584
1585
39.8k
static void whilestat (LexState *ls, int line) {
1586
  /* whilestat -> WHILE cond DO block END */
1587
39.8k
  FuncState *fs = ls->fs;
1588
39.8k
  int whileinit;
1589
39.8k
  int condexit;
1590
39.8k
  BlockCnt bl;
1591
39.8k
  luaX_next(ls);  /* skip WHILE */
1592
39.8k
  whileinit = luaK_getlabel(fs);
1593
39.8k
  condexit = cond(ls);
1594
39.8k
  enterblock(fs, &bl, 1);
1595
39.8k
  checknext(ls, TK_DO);
1596
39.8k
  block(ls);
1597
39.8k
  luaK_jumpto(fs, whileinit);
1598
39.8k
  check_match(ls, TK_END, TK_WHILE, line);
1599
39.8k
  leaveblock(fs);
1600
39.8k
  luaK_patchtohere(fs, condexit);  /* false conditions finish the loop */
1601
39.8k
}
1602
1603
1604
69.4k
static void repeatstat (LexState *ls, int line) {
1605
  /* repeatstat -> REPEAT block UNTIL cond */
1606
69.4k
  int condexit;
1607
69.4k
  FuncState *fs = ls->fs;
1608
69.4k
  int repeat_init = luaK_getlabel(fs);
1609
69.4k
  BlockCnt bl1, bl2;
1610
69.4k
  enterblock(fs, &bl1, 1);  /* loop block */
1611
69.4k
  enterblock(fs, &bl2, 0);  /* scope block */
1612
69.4k
  luaX_next(ls);  /* skip REPEAT */
1613
69.4k
  statlist(ls);
1614
69.4k
  check_match(ls, TK_UNTIL, TK_REPEAT, line);
1615
69.4k
  condexit = cond(ls);  /* read condition (inside scope block) */
1616
69.4k
  leaveblock(fs);  /* finish scope */
1617
69.4k
  if (bl2.upval) {  /* upvalues? */
1618
6.99k
    int exit = luaK_jump(fs);  /* normal exit must jump over fix */
1619
6.99k
    luaK_patchtohere(fs, condexit);  /* repetition must close upvalues */
1620
6.99k
    luaK_codeABC(fs, OP_CLOSE, reglevel(fs, bl2.nactvar), 0, 0);
1621
6.99k
    condexit = luaK_jump(fs);  /* repeat after closing upvalues */
1622
6.99k
    luaK_patchtohere(fs, exit);  /* normal exit comes to here */
1623
6.99k
  }
1624
69.4k
  luaK_patchlist(fs, condexit, repeat_init);  /* close the loop */
1625
69.4k
  leaveblock(fs);  /* finish loop */
1626
69.4k
}
1627
1628
1629
/*
1630
** Read an expression and generate code to put its results in next
1631
** stack slot.
1632
**
1633
*/
1634
110k
static void exp1 (LexState *ls) {
1635
110k
  expdesc e;
1636
110k
  expr(ls, &e);
1637
110k
  luaK_exp2nextreg(ls->fs, &e);
1638
110k
  lua_assert(e.k == VNONRELOC);
1639
110k
}
1640
1641
1642
/*
1643
** Fix for instruction at position 'pc' to jump to 'dest'.
1644
** (Jump addresses are relative in Lua). 'back' true means
1645
** a back jump.
1646
*/
1647
113k
static void fixforjump (FuncState *fs, int pc, int dest, int back) {
1648
113k
  Instruction *jmp = &fs->f->code[pc];
1649
113k
  int offset = dest - (pc + 1);
1650
113k
  if (back)
1651
56.8k
    offset = -offset;
1652
113k
  if (l_unlikely(offset > MAXARG_Bx))
1653
25
    luaX_syntaxerror(fs->ls, "control structure too long");
1654
113k
  SETARG_Bx(*jmp, offset);
1655
113k
}
1656
1657
1658
/*
1659
** Generate code for a 'for' loop.
1660
*/
1661
84.2k
static void forbody (LexState *ls, int base, int line, int nvars, int isgen) {
1662
  /* forbody -> DO block */
1663
84.2k
  static const OpCode forprep[2] = {OP_FORPREP, OP_TFORPREP};
1664
84.2k
  static const OpCode forloop[2] = {OP_FORLOOP, OP_TFORLOOP};
1665
84.2k
  BlockCnt bl;
1666
84.2k
  FuncState *fs = ls->fs;
1667
84.2k
  int prep, endfor;
1668
84.2k
  checknext(ls, TK_DO);
1669
84.2k
  prep = luaK_codeABx(fs, forprep[isgen], base, 0);
1670
84.2k
  fs->freereg--;  /* both 'forprep' remove one register from the stack */
1671
84.2k
  enterblock(fs, &bl, 0);  /* scope for declared variables */
1672
84.2k
  adjustlocalvars(ls, nvars);
1673
84.2k
  luaK_reserveregs(fs, nvars);
1674
84.2k
  block(ls);
1675
84.2k
  leaveblock(fs);  /* end of scope for declared variables */
1676
84.2k
  fixforjump(fs, prep, luaK_getlabel(fs), 0);
1677
84.2k
  if (isgen) {  /* generic for? */
1678
33.8k
    luaK_codeABC(fs, OP_TFORCALL, base, 0, nvars);
1679
33.8k
    luaK_fixline(fs, line);
1680
33.8k
  }
1681
84.2k
  endfor = luaK_codeABx(fs, forloop[isgen], base, 0);
1682
84.2k
  fixforjump(fs, endfor, prep + 1, 1);
1683
84.2k
  luaK_fixline(fs, line);
1684
84.2k
}
1685
1686
1687
63.1k
static void fornum (LexState *ls, TString *varname, int line) {
1688
  /* fornum -> NAME = exp,exp[,exp] forbody */
1689
63.1k
  FuncState *fs = ls->fs;
1690
63.1k
  int base = fs->freereg;
1691
63.1k
  new_localvarliteral(ls, "(for state)");
1692
63.1k
  new_localvarliteral(ls, "(for state)");
1693
63.1k
  new_varkind(ls, varname, RDKCONST);  /* control variable */
1694
63.1k
  checknext(ls, '=');
1695
63.1k
  exp1(ls);  /* initial value */
1696
63.1k
  checknext(ls, ',');
1697
63.1k
  exp1(ls);  /* limit */
1698
63.1k
  if (testnext(ls, ','))
1699
9.01k
    exp1(ls);  /* optional step */
1700
54.1k
  else {  /* default step = 1 */
1701
54.1k
    luaK_int(fs, fs->freereg, 1);
1702
54.1k
    luaK_reserveregs(fs, 1);
1703
54.1k
  }
1704
63.1k
  adjustlocalvars(ls, 2);  /* start scope for internal variables */
1705
63.1k
  forbody(ls, base, line, 1, 0);
1706
63.1k
}
1707
1708
1709
50.4k
static void forlist (LexState *ls, TString *indexname) {
1710
  /* forlist -> NAME {,NAME} IN explist forbody */
1711
50.4k
  FuncState *fs = ls->fs;
1712
50.4k
  expdesc e;
1713
50.4k
  int nvars = 4;  /* function, state, closing, control */
1714
50.4k
  int line;
1715
50.4k
  int base = fs->freereg;
1716
  /* create internal variables */
1717
50.4k
  new_localvarliteral(ls, "(for state)");  /* iterator function */
1718
50.4k
  new_localvarliteral(ls, "(for state)");  /* state */
1719
50.4k
  new_localvarliteral(ls, "(for state)");  /* closing var. (after swap) */
1720
50.4k
  new_varkind(ls, indexname, RDKCONST);  /* control variable */
1721
  /* other declared variables */
1722
104k
  while (testnext(ls, ',')) {
1723
53.8k
    new_localvar(ls, str_checkname(ls));
1724
53.8k
    nvars++;
1725
53.8k
  }
1726
50.4k
  checknext(ls, TK_IN);
1727
50.4k
  line = ls->linenumber;
1728
50.4k
  adjust_assign(ls, 4, explist(ls, &e), &e);
1729
50.4k
  adjustlocalvars(ls, 3);  /* start scope for internal variables */
1730
50.4k
  marktobeclosed(fs);  /* last internal var. must be closed */
1731
50.4k
  luaK_checkstack(fs, 2);  /* extra space to call iterator */
1732
50.4k
  forbody(ls, base, line, nvars - 3, 1);
1733
50.4k
}
1734
1735
1736
128k
static void forstat (LexState *ls, int line) {
1737
  /* forstat -> FOR (fornum | forlist) END */
1738
128k
  FuncState *fs = ls->fs;
1739
128k
  TString *varname;
1740
128k
  BlockCnt bl;
1741
128k
  enterblock(fs, &bl, 1);  /* scope for loop and control variables */
1742
128k
  luaX_next(ls);  /* skip 'for' */
1743
128k
  varname = str_checkname(ls);  /* first variable name */
1744
128k
  switch (ls->t.token) {
1745
63.1k
    case '=': fornum(ls, varname, line); break;
1746
50.4k
    case ',': case TK_IN: forlist(ls, varname); break;
1747
7.56k
    default: luaX_syntaxerror(ls, "'=' or 'in' expected");
1748
128k
  }
1749
56.7k
  check_match(ls, TK_END, TK_FOR, line);
1750
56.7k
  leaveblock(fs);  /* loop scope ('break' jumps to this point) */
1751
56.7k
}
1752
1753
1754
354k
static void test_then_block (LexState *ls, int *escapelist) {
1755
  /* test_then_block -> [IF | ELSEIF] cond THEN block */
1756
354k
  FuncState *fs = ls->fs;
1757
354k
  int condtrue;
1758
354k
  luaX_next(ls);  /* skip IF or ELSEIF */
1759
354k
  condtrue = cond(ls);  /* read condition */
1760
354k
  checknext(ls, TK_THEN);
1761
354k
  block(ls);  /* 'then' part */
1762
354k
  if (ls->t.token == TK_ELSE ||
1763
302k
      ls->t.token == TK_ELSEIF)  /* followed by 'else'/'elseif'? */
1764
92.7k
    luaK_concat(fs, escapelist, luaK_jump(fs));  /* must jump over it */
1765
354k
  luaK_patchtohere(fs, condtrue);
1766
354k
}
1767
1768
1769
306k
static void ifstat (LexState *ls, int line) {
1770
  /* ifstat -> IF cond THEN block {ELSEIF cond THEN block} [ELSE block] END */
1771
306k
  FuncState *fs = ls->fs;
1772
306k
  int escapelist = NO_JUMP;  /* exit list for finished parts */
1773
306k
  test_then_block(ls, &escapelist);  /* IF cond THEN block */
1774
354k
  while (ls->t.token == TK_ELSEIF)
1775
47.8k
    test_then_block(ls, &escapelist);  /* ELSEIF cond THEN block */
1776
306k
  if (testnext(ls, TK_ELSE))
1777
44.8k
    block(ls);  /* 'else' part */
1778
306k
  check_match(ls, TK_END, TK_IF, line);
1779
306k
  luaK_patchtohere(fs, escapelist);  /* patch escape list to 'if' end */
1780
306k
}
1781
1782
1783
55.3k
static void localfunc (LexState *ls) {
1784
55.3k
  expdesc b;
1785
55.3k
  FuncState *fs = ls->fs;
1786
55.3k
  int fvar = fs->nactvar;  /* function's variable index */
1787
55.3k
  new_localvar(ls, str_checkname(ls));  /* new local variable */
1788
55.3k
  adjustlocalvars(ls, 1);  /* enter its scope */
1789
55.3k
  body(ls, &b, 0, ls->linenumber);  /* function created in next register */
1790
  /* debug information will only see the variable after this point! */
1791
55.3k
  localdebuginfo(fs, fvar)->startpc = fs->pc;
1792
55.3k
}
1793
1794
1795
3.84M
static lu_byte getvarattribute (LexState *ls, lu_byte df) {
1796
  /* attrib -> ['<' NAME '>'] */
1797
3.84M
  if (testnext(ls, '<')) {
1798
49.8k
    TString *ts = str_checkname(ls);
1799
49.8k
    const char *attr = getstr(ts);
1800
49.8k
    checknext(ls, '>');
1801
49.8k
    if (strcmp(attr, "const") == 0)
1802
28.2k
      return RDKCONST;  /* read-only variable */
1803
21.6k
    else if (strcmp(attr, "close") == 0)
1804
14.1k
      return RDKTOCLOSE;  /* to-be-closed variable */
1805
7.41k
    else
1806
7.41k
      luaK_semerror(ls, "unknown attribute '%s'", attr);
1807
49.8k
  }
1808
3.79M
  return df;  /* return default value */
1809
3.84M
}
1810
1811
1812
845k
static void checktoclose (FuncState *fs, int level) {
1813
845k
  if (level != -1) {  /* is there a to-be-closed variable? */
1814
10.9k
    marktobeclosed(fs);
1815
10.9k
    luaK_codeABC(fs, OP_TBC, reglevel(fs, level), 0, 0);
1816
10.9k
  }
1817
845k
}
1818
1819
1820
865k
static void localstat (LexState *ls) {
1821
  /* stat -> LOCAL NAME attrib { ',' NAME attrib } ['=' explist] */
1822
865k
  FuncState *fs = ls->fs;
1823
865k
  int toclose = -1;  /* index of to-be-closed variable (if any) */
1824
865k
  Vardesc *var;  /* last variable */
1825
865k
  int vidx;  /* index of last variable */
1826
865k
  int nvars = 0;
1827
865k
  int nexps;
1828
865k
  expdesc e;
1829
  /* get prefixed attribute (if any); default is regular local variable */
1830
865k
  lu_byte defkind = getvarattribute(ls, VDKREG);
1831
2.22M
  do {  /* for each variable */
1832
2.22M
    TString *vname = str_checkname(ls);  /* get its name */
1833
2.22M
    lu_byte kind = getvarattribute(ls, defkind);  /* postfixed attribute */
1834
2.22M
    vidx = new_varkind(ls, vname, kind);  /* predeclare it */
1835
2.22M
    if (kind == RDKTOCLOSE) {  /* to-be-closed? */
1836
11.2k
      if (toclose != -1)  /* one already present? */
1837
144
        luaK_semerror(ls, "multiple to-be-closed variables in local list");
1838
11.1k
      toclose = fs->nactvar + nvars;
1839
11.1k
    }
1840
2.22M
    nvars++;
1841
2.22M
  } while (testnext(ls, ','));
1842
864k
  if (testnext(ls, '='))  /* initialization? */
1843
770k
    nexps = explist(ls, &e);
1844
94.0k
  else {
1845
94.0k
    e.k = VVOID;
1846
94.0k
    nexps = 0;
1847
94.0k
  }
1848
864k
  var = getlocalvardesc(fs, vidx);  /* retrieve last variable */
1849
864k
  if (nvars == nexps &&  /* no adjustments? */
1850
637k
      var->vd.kind == RDKCONST &&  /* last variable is const? */
1851
20.9k
      luaK_exp2const(fs, &e, &var->k)) {  /* compile-time constant? */
1852
17.2k
    var->vd.kind = RDKCTC;  /* variable is a compile-time constant */
1853
17.2k
    adjustlocalvars(ls, nvars - 1);  /* exclude last variable */
1854
17.2k
    fs->nactvar++;  /* but count it */
1855
17.2k
  }
1856
847k
  else {
1857
847k
    adjust_assign(ls, nvars, nexps, &e);
1858
847k
    adjustlocalvars(ls, nvars);
1859
847k
  }
1860
864k
  checktoclose(fs, toclose);
1861
864k
}
1862
1863
1864
756k
static lu_byte getglobalattribute (LexState *ls, lu_byte df) {
1865
756k
  lu_byte kind = getvarattribute(ls, df);
1866
756k
  switch (kind) {
1867
2.88k
    case RDKTOCLOSE:
1868
2.88k
      luaK_semerror(ls, "global variables cannot be to-be-closed");
1869
0
      return kind;  /* to avoid warnings */
1870
5.64k
    case RDKCONST:
1871
5.64k
      return GDKCONST;  /* adjust kind for global variable */
1872
745k
    default:
1873
745k
      return kind;
1874
756k
  }
1875
756k
}
1876
1877
1878
26.2k
static void globalnames (LexState *ls, lu_byte defkind) {
1879
26.2k
  FuncState *fs = ls->fs;
1880
26.2k
  int nvars = 0;
1881
26.2k
  int lastidx;  /* index of last registered variable */
1882
725k
  do {  /* for each name */
1883
725k
    TString *vname = str_checkname(ls);
1884
725k
    lu_byte kind = getglobalattribute(ls, defkind);
1885
725k
    lastidx = new_varkind(ls, vname, kind);
1886
725k
    nvars++;
1887
725k
  } while (testnext(ls, ','));
1888
26.2k
  if (testnext(ls, '=')) {  /* initialization? */
1889
5.72k
    expdesc e;
1890
5.72k
    int i;
1891
5.72k
    int nexps = explist(ls, &e);  /* read list of expressions */
1892
5.72k
    adjust_assign(ls, nvars, nexps, &e);
1893
25.5k
    for (i = 0; i < nvars; i++) {  /* for each variable */
1894
19.7k
      expdesc var;
1895
19.7k
      TString *varname = getlocalvardesc(fs, lastidx - i)->vd.name;
1896
19.7k
      buildglobal(ls, varname, &var);  /* create global variable in 'var' */
1897
19.7k
      storevartop(fs, &var);
1898
19.7k
    }
1899
5.72k
  }
1900
26.2k
  fs->nactvar = cast_short(fs->nactvar + nvars);  /* activate declaration */
1901
26.2k
}
1902
1903
1904
33.4k
static void globalstat (LexState *ls) {
1905
  /* globalstat -> (GLOBAL) attrib '*'
1906
     globalstat -> (GLOBAL) attrib NAME attrib {',' NAME attrib} */
1907
33.4k
  FuncState *fs = ls->fs;
1908
  /* get prefixed attribute (if any); default is regular global variable */
1909
33.4k
  lu_byte defkind = getglobalattribute(ls, GDKREG);
1910
33.4k
  if (!testnext(ls, '*'))
1911
26.2k
    globalnames(ls, defkind);
1912
7.26k
  else {
1913
    /* use NULL as name to represent '*' entries */
1914
7.26k
    new_varkind(ls, NULL, defkind);
1915
7.26k
    fs->nactvar++;  /* activate declaration */
1916
7.26k
  }
1917
33.4k
}
1918
1919
1920
5.86k
static void globalfunc (LexState *ls, int line) {
1921
  /* globalfunc -> (GLOBAL FUNCTION) NAME body */
1922
5.86k
  expdesc var, b;
1923
5.86k
  FuncState *fs = ls->fs;
1924
5.86k
  TString *fname = str_checkname(ls);
1925
5.86k
  new_varkind(ls, fname, GDKREG);  /* declare global variable */
1926
5.86k
  fs->nactvar++;  /* enter its scope */
1927
5.86k
  buildglobal(ls, fname, &var);
1928
5.86k
  body(ls, &b, 0, ls->linenumber);  /* compile and return closure in 'b' */
1929
5.86k
  luaK_storevar(fs, &var, &b);
1930
5.86k
  luaK_fixline(fs, line);  /* definition "happens" in the first line */
1931
5.86k
}
1932
1933
1934
39.3k
static void globalstatfunc (LexState *ls, int line) {
1935
  /* stat -> GLOBAL globalfunc | GLOBAL globalstat */
1936
39.3k
  luaX_next(ls);  /* skip 'global' */
1937
39.3k
  if (testnext(ls, TK_FUNCTION))
1938
5.86k
    globalfunc(ls, line);
1939
33.4k
  else
1940
33.4k
    globalstat(ls);
1941
39.3k
}
1942
1943
1944
92.2k
static int funcname (LexState *ls, expdesc *v) {
1945
  /* funcname -> NAME {fieldsel} [':' NAME] */
1946
92.2k
  int ismethod = 0;
1947
92.2k
  singlevar(ls, v);
1948
118k
  while (ls->t.token == '.')
1949
25.8k
    fieldsel(ls, v);
1950
92.2k
  if (ls->t.token == ':') {
1951
11.3k
    ismethod = 1;
1952
11.3k
    fieldsel(ls, v);
1953
11.3k
  }
1954
92.2k
  return ismethod;
1955
92.2k
}
1956
1957
1958
92.2k
static void funcstat (LexState *ls, int line) {
1959
  /* funcstat -> FUNCTION funcname body */
1960
92.2k
  int ismethod;
1961
92.2k
  expdesc v, b;
1962
92.2k
  luaX_next(ls);  /* skip FUNCTION */
1963
92.2k
  ismethod = funcname(ls, &v);
1964
92.2k
  check_readonly(ls, &v);
1965
92.2k
  body(ls, &b, ismethod, line);
1966
92.2k
  luaK_storevar(ls->fs, &v, &b);
1967
92.2k
  luaK_fixline(ls->fs, line);  /* definition "happens" in the first line */
1968
92.2k
}
1969
1970
1971
9.43M
static void exprstat (LexState *ls) {
1972
  /* stat -> func | assignment */
1973
9.43M
  FuncState *fs = ls->fs;
1974
9.43M
  struct LHS_assign v;
1975
9.43M
  suffixedexp(ls, &v.v);
1976
9.43M
  if (ls->t.token == '=' || ls->t.token == ',') { /* stat -> assignment ? */
1977
3.17M
    v.prev = NULL;
1978
3.17M
    restassign(ls, &v, 1);
1979
3.17M
  }
1980
6.26M
  else {  /* stat -> func */
1981
6.26M
    Instruction *inst;
1982
6.26M
    check_condition(ls, v.v.k == VCALL, "syntax error");
1983
5.38M
    inst = &getinstruction(fs, &v.v);
1984
5.38M
    SETARG_C(*inst, 1);  /* call statement uses no results */
1985
5.38M
  }
1986
9.43M
}
1987
1988
1989
774k
static void retstat (LexState *ls) {
1990
  /* stat -> RETURN [explist] [';'] */
1991
774k
  FuncState *fs = ls->fs;
1992
774k
  expdesc e;
1993
774k
  int nret;  /* number of values being returned */
1994
774k
  int first = luaY_nvarstack(fs);  /* first slot to be returned */
1995
774k
  if (block_follow(ls, 1) || ls->t.token == ';')
1996
81.6k
    nret = 0;  /* return no values */
1997
692k
  else {
1998
692k
    nret = explist(ls, &e);  /* optional return values */
1999
692k
    if (hasmultret(e.k)) {
2000
90.6k
      luaK_setmultret(fs, &e);
2001
90.6k
      if (e.k == VCALL && nret == 1 && !fs->bl->insidetbc) {  /* tail call? */
2002
81.5k
        SET_OPCODE(getinstruction(fs,&e), OP_TAILCALL);
2003
81.5k
        lua_assert(GETARG_A(getinstruction(fs,&e)) == luaY_nvarstack(fs));
2004
81.5k
      }
2005
90.6k
      nret = LUA_MULTRET;  /* return all values */
2006
90.6k
    }
2007
602k
    else {
2008
602k
      if (nret == 1)  /* only one single value? */
2009
584k
        first = luaK_exp2anyreg(fs, &e);  /* can use original slot */
2010
17.1k
      else {  /* values must go to the top of the stack */
2011
17.1k
        luaK_exp2nextreg(fs, &e);
2012
17.1k
        lua_assert(nret == fs->freereg - first);
2013
17.1k
      }
2014
602k
    }
2015
692k
  }
2016
774k
  luaK_ret(fs, first, nret);
2017
767k
  testnext(ls, ';');  /* skip optional semicolon */
2018
767k
}
2019
2020
2021
13.5M
static void statement (LexState *ls) {
2022
13.5M
  int line = ls->linenumber;  /* may be needed for error messages */
2023
13.5M
  enterlevel(ls);
2024
13.5M
  switch (ls->t.token) {
2025
1.14M
    case ';': {  /* stat -> ';' (empty statement) */
2026
1.14M
      luaX_next(ls);  /* skip ';' */
2027
1.14M
      break;
2028
0
    }
2029
306k
    case TK_IF: {  /* stat -> ifstat */
2030
306k
      ifstat(ls, line);
2031
306k
      break;
2032
0
    }
2033
39.8k
    case TK_WHILE: {  /* stat -> whilestat */
2034
39.8k
      whilestat(ls, line);
2035
39.8k
      break;
2036
0
    }
2037
83.4k
    case TK_DO: {  /* stat -> DO block END */
2038
83.4k
      luaX_next(ls);  /* skip DO */
2039
83.4k
      block(ls);
2040
83.4k
      check_match(ls, TK_END, TK_DO, line);
2041
83.4k
      break;
2042
0
    }
2043
128k
    case TK_FOR: {  /* stat -> forstat */
2044
128k
      forstat(ls, line);
2045
128k
      break;
2046
0
    }
2047
69.4k
    case TK_REPEAT: {  /* stat -> repeatstat */
2048
69.4k
      repeatstat(ls, line);
2049
69.4k
      break;
2050
0
    }
2051
92.2k
    case TK_FUNCTION: {  /* stat -> funcstat */
2052
92.2k
      funcstat(ls, line);
2053
92.2k
      break;
2054
0
    }
2055
920k
    case TK_LOCAL: {  /* stat -> localstat */
2056
920k
      luaX_next(ls);  /* skip LOCAL */
2057
920k
      if (testnext(ls, TK_FUNCTION))  /* local function? */
2058
55.3k
        localfunc(ls);
2059
865k
      else
2060
865k
        localstat(ls);
2061
920k
      break;
2062
0
    }
2063
0
    case TK_GLOBAL: {  /* stat -> globalstatfunc */
2064
0
      globalstatfunc(ls, line);
2065
0
      break;
2066
0
    }
2067
104k
    case TK_DBCOLON: {  /* stat -> label */
2068
104k
      luaX_next(ls);  /* skip double colon */
2069
104k
      labelstat(ls, str_checkname(ls), line);
2070
104k
      break;
2071
0
    }
2072
774k
    case TK_RETURN: {  /* stat -> retstat */
2073
774k
      luaX_next(ls);  /* skip RETURN */
2074
774k
      retstat(ls);
2075
774k
      break;
2076
0
    }
2077
114k
    case TK_BREAK: {  /* stat -> breakstat */
2078
114k
      breakstat(ls, line);
2079
114k
      break;
2080
0
    }
2081
252k
    case TK_GOTO: {  /* stat -> 'goto' NAME */
2082
252k
      luaX_next(ls);  /* skip 'goto' */
2083
252k
      gotostat(ls, line);
2084
252k
      break;
2085
0
    }
2086
0
#if defined(LUA_COMPAT_GLOBAL)
2087
6.31M
    case TK_NAME: {
2088
      /* compatibility code to parse global keyword when "global"
2089
         is not reserved */
2090
6.31M
      if (ls->t.seminfo.ts == ls->glbn) {  /* current = "global"? */
2091
45.3k
        int lk = luaX_lookahead(ls);
2092
45.3k
        if (lk == '<' || lk == TK_NAME || lk == '*' || lk == TK_FUNCTION) {
2093
          /* 'global <attrib>' or 'global name' or 'global *' or
2094
             'global function' */
2095
39.3k
          globalstatfunc(ls, line);
2096
39.3k
          break;
2097
39.3k
        }
2098
45.3k
      }  /* else... */
2099
6.31M
    }
2100
6.27M
#endif
2101
    /* FALLTHROUGH */
2102
9.43M
    default: {  /* stat -> func | assignment */
2103
9.43M
      exprstat(ls);
2104
9.43M
      break;
2105
6.31M
    }
2106
13.5M
  }
2107
7.07M
  lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg &&
2108
7.07M
             ls->fs->freereg >= luaY_nvarstack(ls->fs));
2109
7.07M
  ls->fs->freereg = luaY_nvarstack(ls->fs);  /* free registers */
2110
7.07M
  leavelevel(ls);
2111
7.07M
}
2112
2113
/* }====================================================================== */
2114
2115
/* }====================================================================== */
2116
2117
2118
/*
2119
** compiles the main function, which is a regular vararg function with an
2120
** upvalue named LUA_ENV
2121
*/
2122
9.64M
static void mainfunc (LexState *ls, FuncState *fs) {
2123
9.64M
  BlockCnt bl;
2124
9.64M
  Upvaldesc *env;
2125
9.64M
  open_func(ls, fs, &bl);
2126
9.64M
  setvararg(fs, PF_ISVARARG);  /* main function is always vararg */
2127
9.64M
  env = allocupvalue(fs);  /* ...set environment upvalue */
2128
9.64M
  env->instack = 1;
2129
9.64M
  env->idx = 0;
2130
9.64M
  env->kind = VDKREG;
2131
9.64M
  env->name = ls->envn;
2132
9.64M
  luaC_objbarrier(ls->L, fs->f, env->name);
2133
9.64M
  luaX_next(ls);  /* read first token */
2134
9.64M
  statlist(ls);  /* parse main body */
2135
9.64M
  check(ls, TK_EOS);
2136
9.64M
  close_func(ls);
2137
9.64M
}
2138
2139
2140
LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
2141
9.64M
                       Dyndata *dyd, const char *name, int firstchar) {
2142
9.64M
  LexState lexstate;
2143
9.64M
  FuncState funcstate;
2144
9.64M
  LClosure *cl = luaF_newLclosure(L, 1);  /* create main closure */
2145
9.64M
  setclLvalue2s(L, L->top.p, cl);  /* anchor it (to avoid being collected) */
2146
9.64M
  luaD_inctop(L);
2147
9.64M
  lexstate.h = luaH_new(L);  /* create table for scanner */
2148
9.64M
  sethvalue2s(L, L->top.p, lexstate.h);  /* anchor it */
2149
9.64M
  luaD_inctop(L);
2150
9.64M
  funcstate.f = cl->p = luaF_newproto(L);
2151
9.64M
  luaC_objbarrier(L, cl, cl->p);
2152
9.64M
  funcstate.f->source = luaS_new(L, name);  /* create and anchor TString */
2153
9.64M
  luaC_objbarrier(L, funcstate.f, funcstate.f->source);
2154
9.64M
  lexstate.buff = buff;
2155
9.64M
  lexstate.dyd = dyd;
2156
9.64M
  dyd->actvar.n = dyd->gt.n = dyd->label.n = 0;
2157
9.64M
  luaX_setinput(L, &lexstate, z, funcstate.f->source, firstchar);
2158
9.64M
  mainfunc(&lexstate, &funcstate);
2159
9.64M
  lua_assert(!funcstate.prev && funcstate.nups == 1 && !lexstate.fs);
2160
  /* all scopes should be correctly finished */
2161
9.64M
  lua_assert(dyd->actvar.n == 0 && dyd->gt.n == 0 && dyd->label.n == 0);
2162
3.50M
  L->top.p--;  /* remove scanner's table */
2163
3.50M
  return cl;  /* closure is on the stack, too */
2164
3.50M
}
2165