Lines Matching full:fs
60 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS); in anchor_token()
81 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() argument
82 lua_State *L = fs->ls->L; in errorlimit()
84 int line = fs->f->linedefined; in errorlimit()
90 luaX_syntaxerror(fs->ls, msg); in errorlimit()
94 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() argument
95 if (v > l) errorlimit(fs, l, what); in checklimit()
154 init_exp(e, VK, luaK_stringK(ls->fs, s)); in codestring()
164 FuncState *fs = ls->fs; in registerlocalvar() local
165 Proto *f = fs->f; in registerlocalvar()
167 luaM_growvector(ls->L, f->locvars, fs->nlocvars, f->sizelocvars, in registerlocalvar()
170 f->locvars[fs->nlocvars].varname = varname; in registerlocalvar()
172 return fs->nlocvars++; in registerlocalvar()
177 FuncState *fs = ls->fs; in new_localvar() local
180 checklimit(fs, dyd->actvar.n + 1 - fs->firstlocal, in new_localvar()
196 static LocVar *getlocvar (FuncState *fs, int i) { in getlocvar() argument
197 int idx = fs->ls->dyd->actvar.arr[fs->firstlocal + i].idx; in getlocvar()
198 lua_assert(idx < fs->nlocvars); in getlocvar()
199 return &fs->f->locvars[idx]; in getlocvar()
204 FuncState *fs = ls->fs; in adjustlocalvars() local
205 fs->nactvar = cast_byte(fs->nactvar + nvars); in adjustlocalvars()
207 getlocvar(fs, fs->nactvar - nvars)->startpc = fs->pc; in adjustlocalvars()
212 static void removevars (FuncState *fs, int tolevel) { in removevars() argument
213 fs->ls->dyd->actvar.n -= (fs->nactvar - tolevel); in removevars()
214 while (fs->nactvar > tolevel) in removevars()
215 getlocvar(fs, --fs->nactvar)->endpc = fs->pc; in removevars()
219 static int searchupvalue (FuncState *fs, TString *name) { in searchupvalue() argument
221 Upvaldesc *up = fs->f->upvalues; in searchupvalue()
222 for (i = 0; i < fs->nups; i++) { in searchupvalue()
229 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() argument
230 Proto *f = fs->f; in newupvalue()
232 checklimit(fs, fs->nups + 1, MAXUPVAL, "upvalues"); in newupvalue()
233 luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues, in newupvalue()
236 f->upvalues[fs->nups].instack = (v->k == VLOCAL); in newupvalue()
237 f->upvalues[fs->nups].idx = cast_byte(v->u.info); in newupvalue()
238 f->upvalues[fs->nups].name = name; in newupvalue()
239 luaC_objbarrier(fs->ls->L, f, name); in newupvalue()
240 return fs->nups++; in newupvalue()
244 static int searchvar (FuncState *fs, TString *n) { in searchvar() argument
246 for (i = cast_int(fs->nactvar) - 1; i >= 0; i--) { in searchvar()
247 if (luaS_eqstr(n, getlocvar(fs, i)->varname)) in searchvar()
258 static void markupval (FuncState *fs, int level) { in markupval() argument
259 BlockCnt *bl = fs->bl; in markupval()
269 static int singlevaraux (FuncState *fs, TString *n, expdesc *var, int base) { in singlevaraux() argument
270 if (fs == NULL) /* no more levels? */ in singlevaraux()
273 int v = searchvar(fs, n); /* look up locals at current level */ in singlevaraux()
277 markupval(fs, v); /* local will be used as an upval */ in singlevaraux()
281 int idx = searchupvalue(fs, n); /* try existing upvalues */ in singlevaraux()
283 if (singlevaraux(fs->prev, n, var, 0) == VVOID) /* try upper levels */ in singlevaraux()
286 idx = newupvalue(fs, n, var); /* will be a new upvalue */ in singlevaraux()
297 FuncState *fs = ls->fs; in singlevar() local
298 if (singlevaraux(fs, varname, var, 1) == VVOID) { /* global name? */ in singlevar()
300 singlevaraux(fs, ls->envn, var, 1); /* get environment variable */ in singlevar()
303 luaK_indexed(fs, var, &key); /* env[varname] */ in singlevar()
309 FuncState *fs = ls->fs; in adjust_assign() local
314 luaK_setreturns(fs, e, extra); /* last exp. provides the difference */ in adjust_assign()
315 if (extra > 1) luaK_reserveregs(fs, extra-1); in adjust_assign()
318 if (e->k != VVOID) luaK_exp2nextreg(fs, e); /* close last expression */ in adjust_assign()
320 int reg = fs->freereg; in adjust_assign()
321 luaK_reserveregs(fs, extra); in adjust_assign()
322 luaK_nil(fs, reg, extra); in adjust_assign()
331 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
340 FuncState *fs = ls->fs; in closegoto() local
345 TString *vname = getlocvar(fs, gt->nactvar)->varname; in closegoto()
351 luaK_patchlist(fs, gt->pc, label->pc); in closegoto()
364 BlockCnt *bl = ls->fs->bl; in findlabel()
373 luaK_patchclose(ls->fs, gt->pc, lb->nactvar); in findlabel()
389 l->arr[n].nactvar = ls->fs->nactvar; in newlabelentry()
402 int i = ls->fs->bl->firstgoto; in findgotos()
418 static void movegotosout (FuncState *fs, BlockCnt *bl) { in movegotosout() argument
420 Labellist *gl = &fs->ls->dyd->gt; in movegotosout()
427 luaK_patchclose(fs, gt->pc, bl->nactvar); in movegotosout()
430 if (!findlabel(fs->ls, i)) in movegotosout()
436 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { in enterblock() argument
438 bl->nactvar = fs->nactvar; in enterblock()
439 bl->firstlabel = fs->ls->dyd->label.n; in enterblock()
440 bl->firstgoto = fs->ls->dyd->gt.n; in enterblock()
442 bl->previous = fs->bl; in enterblock()
443 fs->bl = bl; in enterblock()
444 lua_assert(fs->freereg == fs->nactvar); in enterblock()
453 int l = newlabelentry(ls, &ls->dyd->label, n, 0, ls->fs->pc); in breaklabel()
470 static void leaveblock (FuncState *fs) { in leaveblock() argument
471 BlockCnt *bl = fs->bl; in leaveblock()
472 LexState *ls = fs->ls; in leaveblock()
475 int j = luaK_jump(fs); in leaveblock()
476 luaK_patchclose(fs, j, bl->nactvar); in leaveblock()
477 luaK_patchtohere(fs, j); in leaveblock()
481 fs->bl = bl->previous; in leaveblock()
482 removevars(fs, bl->nactvar); in leaveblock()
483 lua_assert(bl->nactvar == fs->nactvar); in leaveblock()
484 fs->freereg = fs->nactvar; /* free registers */ in leaveblock()
487 movegotosout(fs, bl); /* update pending gotos to outer block */ in leaveblock()
499 FuncState *fs = ls->fs; in addprototype() local
500 Proto *f = fs->f; /* prototype of current function */ in addprototype()
501 if (fs->np >= f->sizep) { in addprototype()
503 luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions"); in addprototype()
506 f->p[fs->np++] = clp = luaF_newproto(L); in addprototype()
519 FuncState *fs = ls->fs->prev; in codeclosure() local
520 init_exp(v, VRELOCABLE, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np - 1)); in codeclosure()
521 luaK_exp2nextreg(fs, v); /* fix it at the last register */ in codeclosure()
525 static void open_func (LexState *ls, FuncState *fs, BlockCnt *bl) { in open_func() argument
528 fs->prev = ls->fs; /* linked list of funcstates */ in open_func()
529 fs->ls = ls; in open_func()
530 ls->fs = fs; in open_func()
531 fs->pc = 0; in open_func()
532 fs->lasttarget = 0; in open_func()
533 fs->jpc = NO_JUMP; in open_func()
534 fs->freereg = 0; in open_func()
535 fs->nk = 0; in open_func()
536 fs->np = 0; in open_func()
537 fs->nups = 0; in open_func()
538 fs->nlocvars = 0; in open_func()
539 fs->nactvar = 0; in open_func()
540 fs->firstlocal = ls->dyd->actvar.n; in open_func()
541 fs->bl = NULL; in open_func()
542 f = fs->f; in open_func()
545 fs->h = luaH_new(L); in open_func()
547 sethvalue2s(L, L->top, fs->h); in open_func()
549 enterblock(fs, bl, 0); in open_func()
555 FuncState *fs = ls->fs; in close_func() local
556 Proto *f = fs->f; in close_func()
557 luaK_ret(fs, 0, 0); /* final return */ in close_func()
558 leaveblock(fs); in close_func()
559 luaM_reallocvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func()
560 f->sizecode = fs->pc; in close_func()
561 luaM_reallocvector(L, f->lineinfo, f->sizelineinfo, fs->pc, int); in close_func()
562 f->sizelineinfo = fs->pc; in close_func()
563 luaM_reallocvector(L, f->k, f->sizek, fs->nk, TValue); in close_func()
564 f->sizek = fs->nk; in close_func()
565 luaM_reallocvector(L, f->p, f->sizep, fs->np, Proto *); in close_func()
566 f->sizep = fs->np; in close_func()
567 luaM_reallocvector(L, f->locvars, f->sizelocvars, fs->nlocvars, LocVar); in close_func()
568 f->sizelocvars = fs->nlocvars; in close_func()
569 luaM_reallocvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc); in close_func()
570 f->sizeupvalues = fs->nups; in close_func()
571 lua_assert(fs->bl == NULL); in close_func()
572 ls->fs = fs->prev; in close_func()
622 FuncState *fs = ls->fs; in fieldsel() local
624 luaK_exp2anyregup(fs, v); in fieldsel()
627 luaK_indexed(fs, v, &key); in fieldsel()
635 luaK_exp2val(ls->fs, v); in yindex()
658 FuncState *fs = ls->fs; in recfield() local
659 int reg = ls->fs->freereg; in recfield()
663 checklimit(fs, cc->nh, MAX_INT, "items in a constructor"); in recfield()
670 rkkey = luaK_exp2RK(fs, &key); in recfield()
672 luaK_codeABC(fs, OP_SETTABLE, cc->t->u.info, rkkey, luaK_exp2RK(fs, &val)); in recfield()
673 fs->freereg = reg; /* free registers */ in recfield()
677 static void closelistfield (FuncState *fs, struct ConsControl *cc) { in closelistfield() argument
679 luaK_exp2nextreg(fs, &cc->v); in closelistfield()
682 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */ in closelistfield()
688 static void lastlistfield (FuncState *fs, struct ConsControl *cc) { in lastlistfield() argument
691 luaK_setmultret(fs, &cc->v); in lastlistfield()
692 luaK_setlist(fs, cc->t->u.info, cc->na, LUA_MULTRET); in lastlistfield()
697 luaK_exp2nextreg(fs, &cc->v); in lastlistfield()
698 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); in lastlistfield()
706 checklimit(ls->fs, cc->na, MAX_INT, "items in a constructor"); in listfield()
737 FuncState *fs = ls->fs; in constructor() local
739 int pc = luaK_codeABC(fs, OP_NEWTABLE, 0, 0, 0); in constructor()
745 luaK_exp2nextreg(ls->fs, t); /* fix it at stack top */ in constructor()
750 closelistfield(fs, &cc); in constructor()
754 lastlistfield(fs, &cc); in constructor()
755 SETARG_B(fs->f->code[pc], luaO_int2fb(cc.na)); /* set initial array size */ in constructor()
756 SETARG_C(fs->f->code[pc], luaO_int2fb(cc.nh)); /* set initial table size */ in constructor()
765 FuncState *fs = ls->fs; in parlist() local
766 Proto *f = fs->f; in parlist()
787 f->numparams = cast_byte(fs->nactvar); in parlist()
788 luaK_reserveregs(fs, fs->nactvar); /* reserve register for parameters */ in parlist()
819 luaK_exp2nextreg(ls->fs, v); in explist()
828 FuncState *fs = ls->fs; in funcargs() local
838 luaK_setmultret(fs, &args); in funcargs()
862 luaK_exp2nextreg(fs, &args); /* close last argument */ in funcargs()
863 nparams = fs->freereg - (base+1); in funcargs()
865 init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2)); in funcargs()
866 luaK_fixline(fs, line); in funcargs()
867 fs->freereg = base+1; /* call remove function and arguments and leaves in funcargs()
889 luaK_dischargevars(ls->fs, v); in primaryexp()
906 FuncState *fs = ls->fs; in suffixedexp() local
917 luaK_exp2anyregup(fs, v); in suffixedexp()
919 luaK_indexed(fs, v, &key); in suffixedexp()
926 luaK_self(fs, v, &key); in suffixedexp()
931 luaK_exp2nextreg(fs, v); in suffixedexp()
967 FuncState *fs = ls->fs; in simpleexp() local
968 check_condition(ls, fs->f->is_vararg, in simpleexp()
970 init_exp(v, VVARARG, luaK_codeABC(fs, OP_VARARG, 0, 1, 0)); in simpleexp()
1050 luaK_prefix(ls->fs, uop, v, line); in subexpr()
1060 luaK_infix(ls->fs, op, v); in subexpr()
1063 luaK_posfix(ls->fs, op, v, &v2, line); in subexpr()
1088 FuncState *fs = ls->fs; in block() local
1090 enterblock(fs, &bl, 0); in block()
1092 leaveblock(fs); in block()
1113 FuncState *fs = ls->fs; in check_conflict() local
1114 int extra = fs->freereg; /* eventual position to save local variable */ in check_conflict()
1134 luaK_codeABC(fs, op, extra, v->u.info, 0); in check_conflict()
1135 luaK_reserveregs(fs, 1); in check_conflict()
1149 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
1160 ls->fs->freereg -= nexps - nvars; /* remove extra values */ in assignment()
1163 luaK_setoneret(ls->fs, &e); /* close last expression */ in assignment()
1164 luaK_storevar(ls->fs, &lh->v, &e); in assignment()
1168 init_exp(&e, VNONRELOC, ls->fs->freereg-1); /* default assignment */ in assignment()
1169 luaK_storevar(ls->fs, &lh->v, &e); in assignment()
1178 luaK_goiftrue(ls->fs, &v); in cond()
1199 static void checkrepeated (FuncState *fs, Labellist *ll, TString *label) { in checkrepeated() argument
1201 for (i = fs->bl->firstlabel; i < ll->n; i++) { in checkrepeated()
1203 const char *msg = luaO_pushfstring(fs->ls->L, in checkrepeated()
1206 semerror(fs->ls, msg); in checkrepeated()
1221 FuncState *fs = ls->fs; in labelstat() local
1224 checkrepeated(fs, ll, label); /* check for repeated labels */ in labelstat()
1227 l = newlabelentry(ls, ll, label, line, fs->pc); in labelstat()
1231 ll->arr[l].nactvar = fs->bl->nactvar; in labelstat()
1239 FuncState *fs = ls->fs; in whilestat() local
1244 whileinit = luaK_getlabel(fs); in whilestat()
1246 enterblock(fs, &bl, 1); in whilestat()
1249 luaK_jumpto(fs, whileinit); in whilestat()
1251 leaveblock(fs); in whilestat()
1252 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1259 FuncState *fs = ls->fs; in repeatstat() local
1260 int repeat_init = luaK_getlabel(fs); in repeatstat()
1262 enterblock(fs, &bl1, 1); /* loop block */ in repeatstat()
1263 enterblock(fs, &bl2, 0); /* scope block */ in repeatstat()
1269 luaK_patchclose(fs, condexit, bl2.nactvar); in repeatstat()
1270 leaveblock(fs); /* finish scope */ in repeatstat()
1271 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()
1272 leaveblock(fs); /* finish loop */ in repeatstat()
1280 luaK_exp2nextreg(ls->fs, &e); in exp1()
1290 FuncState *fs = ls->fs; in forbody() local
1294 prep = isnum ? luaK_codeAsBx(fs, OP_FORPREP, base, NO_JUMP) : luaK_jump(fs); in forbody()
1295 enterblock(fs, &bl, 0); /* scope for declared variables */ in forbody()
1297 luaK_reserveregs(fs, nvars); in forbody()
1299 leaveblock(fs); /* end of scope for declared variables */ in forbody()
1300 luaK_patchtohere(fs, prep); in forbody()
1302 endfor = luaK_codeAsBx(fs, OP_FORLOOP, base, NO_JUMP); in forbody()
1304 luaK_codeABC(fs, OP_TFORCALL, base, 0, nvars); in forbody()
1305 luaK_fixline(fs, line); in forbody()
1306 endfor = luaK_codeAsBx(fs, OP_TFORLOOP, base + 2, NO_JUMP); in forbody()
1308 luaK_patchlist(fs, endfor, prep + 1); in forbody()
1309 luaK_fixline(fs, line); in forbody()
1315 FuncState *fs = ls->fs; in fornum() local
1316 int base = fs->freereg; in fornum()
1328 luaK_codek(fs, fs->freereg, luaK_numberK(fs, 1)); in fornum()
1329 luaK_reserveregs(fs, 1); in fornum()
1337 FuncState *fs = ls->fs; in forlist() local
1341 int base = fs->freereg; in forlist()
1355 luaK_checkstack(fs, 3); /* extra space to call generator */ in forlist()
1362 FuncState *fs = ls->fs; in forstat() local
1365 enterblock(fs, &bl, 1); /* scope for loop and control variables */ in forstat()
1374 leaveblock(fs); /* loop scope (`break' jumps to this point) */ in forstat()
1382 FuncState *fs = ls->fs; in test_then_block() local
1389 luaK_goiffalse(ls->fs, &v); /* will jump to label if condition is true */ in test_then_block()
1390 enterblock(fs, &bl, 0); /* must enter block before 'goto' */ in test_then_block()
1394 leaveblock(fs); in test_then_block()
1398 jf = luaK_jump(fs); in test_then_block()
1401 luaK_goiftrue(ls->fs, &v); /* skip over block if condition is false */ in test_then_block()
1402 enterblock(fs, &bl, 0); in test_then_block()
1406 leaveblock(fs); in test_then_block()
1409 luaK_concat(fs, escapelist, luaK_jump(fs)); /* must jump over it */ in test_then_block()
1410 luaK_patchtohere(fs, jf); in test_then_block()
1416 FuncState *fs = ls->fs; in ifstat() local
1424 luaK_patchtohere(fs, escapelist); /* patch escape list to 'if' end */ in ifstat()
1430 FuncState *fs = ls->fs; in localfunc() local
1435 getlocvar(fs, b.u.info)->startpc = fs->pc; in localfunc()
1480 luaK_storevar(ls->fs, &v, &b); in funcstat()
1481 luaK_fixline(ls->fs, line); /* definition `happens' in the first line */ in funcstat()
1487 FuncState *fs = ls->fs; in exprstat() local
1496 SETARG_C(getcode(fs, &v.v), 1); /* call statement uses no results */ in exprstat()
1503 FuncState *fs = ls->fs; in retstat() local
1511 luaK_setmultret(fs, &e); in retstat()
1513 SET_OPCODE(getcode(fs,&e), OP_TAILCALL); in retstat()
1514 lua_assert(GETARG_A(getcode(fs,&e)) == fs->nactvar); in retstat()
1516 first = fs->nactvar; in retstat()
1521 first = luaK_exp2anyreg(fs, &e); in retstat()
1523 luaK_exp2nextreg(fs, &e); /* values must go to the `stack' */ in retstat()
1524 first = fs->nactvar; /* return all `active' values */ in retstat()
1525 lua_assert(nret == fs->freereg - first); in retstat()
1529 luaK_ret(fs, first, nret); in retstat()
1588 gotostat(ls, luaK_jump(ls->fs)); in statement()
1596 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()
1597 ls->fs->freereg >= ls->fs->nactvar); in statement()
1598 ls->fs->freereg = ls->fs->nactvar; /* free registers */ in statement()
1609 static void mainfunc (LexState *ls, FuncState *fs) { in mainfunc() argument
1612 open_func(ls, fs, &bl); in mainfunc()
1613 fs->f->is_vararg = 1; /* main function is always vararg */ in mainfunc()
1615 newupvalue(fs, ls->envn, &v); /* ...set environment upvalue */ in mainfunc()
1638 lua_assert(!funcstate.prev && funcstate.nups == 1 && !lexstate.fs); in luaY_parser()