Lines Matching refs:fs

61   lua_assert(ls->fs != NULL || ls->t.token == TK_EOS);  in anchor_token()
82 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() argument
83 lua_State *L = fs->ls->L; in errorlimit()
85 int line = fs->f->linedefined; in errorlimit()
91 luaX_syntaxerror(fs->ls, msg); in errorlimit()
95 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() argument
96 if (v > l) errorlimit(fs, l, what); in checklimit()
155 init_exp(e, VK, luaK_stringK(ls->fs, s)); in codestring()
165 FuncState *fs = ls->fs; in registerlocalvar() local
166 Proto *f = fs->f; in registerlocalvar()
168 luaM_growvector(ls->L, f->locvars, fs->nlocvars, f->sizelocvars, in registerlocalvar()
171 f->locvars[fs->nlocvars].varname = varname; in registerlocalvar()
173 return fs->nlocvars++; in registerlocalvar()
178 FuncState *fs = ls->fs; in new_localvar() local
181 checklimit(fs, dyd->actvar.n + 1 - fs->firstlocal, in new_localvar()
197 static LocVar *getlocvar (FuncState *fs, int i) { in getlocvar() argument
198 int idx = fs->ls->dyd->actvar.arr[fs->firstlocal + i].idx; in getlocvar()
199 lua_assert(idx < fs->nlocvars); in getlocvar()
200 return &fs->f->locvars[idx]; in getlocvar()
205 FuncState *fs = ls->fs; in adjustlocalvars() local
206 fs->nactvar = cast_byte(fs->nactvar + nvars); in adjustlocalvars()
208 getlocvar(fs, fs->nactvar - nvars)->startpc = fs->pc; in adjustlocalvars()
213 static void removevars (FuncState *fs, int tolevel) { in removevars() argument
214 fs->ls->dyd->actvar.n -= (fs->nactvar - tolevel); in removevars()
215 while (fs->nactvar > tolevel) in removevars()
216 getlocvar(fs, --fs->nactvar)->endpc = fs->pc; in removevars()
220 static int searchupvalue (FuncState *fs, TString *name) { in searchupvalue() argument
222 Upvaldesc *up = fs->f->upvalues; in searchupvalue()
223 for (i = 0; i < fs->nups; i++) { in searchupvalue()
230 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() argument
231 Proto *f = fs->f; in newupvalue()
233 checklimit(fs, fs->nups + 1, MAXUPVAL, "upvalues"); in newupvalue()
234 luaM_growvector(fs->ls->L, f->upvalues, fs->nups, f->sizeupvalues, in newupvalue()
237 f->upvalues[fs->nups].instack = (v->k == VLOCAL); in newupvalue()
238 f->upvalues[fs->nups].idx = cast_byte(v->u.info); in newupvalue()
239 f->upvalues[fs->nups].name = name; in newupvalue()
240 luaC_objbarrier(fs->ls->L, f, name); in newupvalue()
241 return fs->nups++; in newupvalue()
245 static int searchvar (FuncState *fs, TString *n) { in searchvar() argument
247 for (i = cast_int(fs->nactvar) - 1; i >= 0; i--) { in searchvar()
248 if (luaS_eqstr(n, getlocvar(fs, i)->varname)) in searchvar()
259 static void markupval (FuncState *fs, int level) { in markupval() argument
260 BlockCnt *bl = fs->bl; in markupval()
270 static int singlevaraux (FuncState *fs, TString *n, expdesc *var, int base) { in singlevaraux() argument
271 if (fs == NULL) /* no more levels? */ in singlevaraux()
274 int v = searchvar(fs, n); /* look up locals at current level */ in singlevaraux()
278 markupval(fs, v); /* local will be used as an upval */ in singlevaraux()
282 int idx = searchupvalue(fs, n); /* try existing upvalues */ in singlevaraux()
284 if (singlevaraux(fs->prev, n, var, 0) == VVOID) /* try upper levels */ in singlevaraux()
287 idx = newupvalue(fs, n, var); /* will be a new upvalue */ in singlevaraux()
298 FuncState *fs = ls->fs; in singlevar() local
299 if (singlevaraux(fs, varname, var, 1) == VVOID) { /* global name? */ in singlevar()
301 singlevaraux(fs, ls->envn, var, 1); /* get environment variable */ in singlevar()
304 luaK_indexed(fs, var, &key); /* env[varname] */ in singlevar()
310 FuncState *fs = ls->fs; in adjust_assign() local
315 luaK_setreturns(fs, e, extra); /* last exp. provides the difference */ in adjust_assign()
316 if (extra > 1) luaK_reserveregs(fs, extra-1); in adjust_assign()
319 if (e->k != VVOID) luaK_exp2nextreg(fs, e); /* close last expression */ in adjust_assign()
321 int reg = fs->freereg; in adjust_assign()
322 luaK_reserveregs(fs, extra); in adjust_assign()
323 luaK_nil(fs, reg, extra); in adjust_assign()
332 checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); in enterlevel()
341 FuncState *fs = ls->fs; in closegoto() local
346 TString *vname = getlocvar(fs, gt->nactvar)->varname; in closegoto()
352 luaK_patchlist(fs, gt->pc, label->pc); in closegoto()
365 BlockCnt *bl = ls->fs->bl; in findlabel()
374 luaK_patchclose(ls->fs, gt->pc, lb->nactvar); in findlabel()
390 l->arr[n].nactvar = ls->fs->nactvar; in newlabelentry()
403 int i = ls->fs->bl->firstgoto; in findgotos()
419 static void movegotosout (FuncState *fs, BlockCnt *bl) { in movegotosout() argument
421 Labellist *gl = &fs->ls->dyd->gt; in movegotosout()
428 luaK_patchclose(fs, gt->pc, bl->nactvar); in movegotosout()
431 if (!findlabel(fs->ls, i)) in movegotosout()
437 static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { in enterblock() argument
439 bl->nactvar = fs->nactvar; in enterblock()
440 bl->firstlabel = fs->ls->dyd->label.n; in enterblock()
441 bl->firstgoto = fs->ls->dyd->gt.n; in enterblock()
443 bl->previous = fs->bl; in enterblock()
444 fs->bl = bl; in enterblock()
445 lua_assert(fs->freereg == fs->nactvar); in enterblock()
454 int l = newlabelentry(ls, &ls->dyd->label, n, 0, ls->fs->pc); in breaklabel()
471 static void leaveblock (FuncState *fs) { in leaveblock() argument
472 BlockCnt *bl = fs->bl; in leaveblock()
473 LexState *ls = fs->ls; in leaveblock()
476 int j = luaK_jump(fs); in leaveblock()
477 luaK_patchclose(fs, j, bl->nactvar); in leaveblock()
478 luaK_patchtohere(fs, j); in leaveblock()
482 fs->bl = bl->previous; in leaveblock()
483 removevars(fs, bl->nactvar); in leaveblock()
484 lua_assert(bl->nactvar == fs->nactvar); in leaveblock()
485 fs->freereg = fs->nactvar; /* free registers */ in leaveblock()
488 movegotosout(fs, bl); /* update pending gotos to outer block */ in leaveblock()
500 FuncState *fs = ls->fs; in addprototype() local
501 Proto *f = fs->f; /* prototype of current function */ in addprototype()
502 if (fs->np >= f->sizep) { in addprototype()
504 luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions"); in addprototype()
507 f->p[fs->np++] = clp = luaF_newproto(L); in addprototype()
520 FuncState *fs = ls->fs->prev; in codeclosure() local
521 init_exp(v, VRELOCABLE, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np - 1)); in codeclosure()
522 luaK_exp2nextreg(fs, v); /* fix it at the last register */ in codeclosure()
526 static void open_func (LexState *ls, FuncState *fs, BlockCnt *bl) { in open_func() argument
529 fs->prev = ls->fs; /* linked list of funcstates */ in open_func()
530 fs->ls = ls; in open_func()
531 ls->fs = fs; in open_func()
532 fs->pc = 0; in open_func()
533 fs->lasttarget = 0; in open_func()
534 fs->jpc = NO_JUMP; in open_func()
535 fs->freereg = 0; in open_func()
536 fs->nk = 0; in open_func()
537 fs->np = 0; in open_func()
538 fs->nups = 0; in open_func()
539 fs->nlocvars = 0; in open_func()
540 fs->nactvar = 0; in open_func()
541 fs->firstlocal = ls->dyd->actvar.n; in open_func()
542 fs->bl = NULL; in open_func()
543 f = fs->f; in open_func()
546 fs->h = luaH_new(L); in open_func()
548 sethvalue2s(L, L->top, fs->h); in open_func()
550 enterblock(fs, bl, 0); in open_func()
556 FuncState *fs = ls->fs; in close_func() local
557 Proto *f = fs->f; in close_func()
558 luaK_ret(fs, 0, 0); /* final return */ in close_func()
559 leaveblock(fs); in close_func()
560 luaM_reallocvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func()
561 f->sizecode = fs->pc; in close_func()
562 luaM_reallocvector(L, f->lineinfo, f->sizelineinfo, fs->pc, int); in close_func()
563 f->sizelineinfo = fs->pc; in close_func()
564 luaM_reallocvector(L, f->k, f->sizek, fs->nk, TValue); in close_func()
565 f->sizek = fs->nk; in close_func()
566 luaM_reallocvector(L, f->p, f->sizep, fs->np, Proto *); in close_func()
567 f->sizep = fs->np; in close_func()
568 luaM_reallocvector(L, f->locvars, f->sizelocvars, fs->nlocvars, LocVar); in close_func()
569 f->sizelocvars = fs->nlocvars; in close_func()
570 luaM_reallocvector(L, f->upvalues, f->sizeupvalues, fs->nups, Upvaldesc); in close_func()
571 f->sizeupvalues = fs->nups; in close_func()
572 lua_assert(fs->bl == NULL); in close_func()
573 ls->fs = fs->prev; in close_func()
617 FuncState *fs = ls->fs; in fieldsel() local
619 luaK_exp2anyregup(fs, v); in fieldsel()
622 luaK_indexed(fs, v, &key); in fieldsel()
630 luaK_exp2val(ls->fs, v); in yindex()
653 FuncState *fs = ls->fs; in recfield() local
654 int reg = ls->fs->freereg; in recfield()
658 checklimit(fs, cc->nh, MAX_INT, "items in a constructor"); in recfield()
665 rkkey = luaK_exp2RK(fs, &key); in recfield()
667 luaK_codeABC(fs, OP_SETTABLE, cc->t->u.info, rkkey, luaK_exp2RK(fs, &val)); in recfield()
668 fs->freereg = reg; /* free registers */ in recfield()
672 static void closelistfield (FuncState *fs, struct ConsControl *cc) { in closelistfield() argument
674 luaK_exp2nextreg(fs, &cc->v); in closelistfield()
677 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */ in closelistfield()
683 static void lastlistfield (FuncState *fs, struct ConsControl *cc) { in lastlistfield() argument
686 luaK_setmultret(fs, &cc->v); in lastlistfield()
687 luaK_setlist(fs, cc->t->u.info, cc->na, LUA_MULTRET); in lastlistfield()
692 luaK_exp2nextreg(fs, &cc->v); in lastlistfield()
693 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); in lastlistfield()
701 checklimit(ls->fs, cc->na, MAX_INT, "items in a constructor"); in listfield()
732 FuncState *fs = ls->fs; in constructor() local
734 int pc = luaK_codeABC(fs, OP_NEWTABLE, 0, 0, 0); in constructor()
740 luaK_exp2nextreg(ls->fs, t); /* fix it at stack top */ in constructor()
745 closelistfield(fs, &cc); in constructor()
749 lastlistfield(fs, &cc); in constructor()
750 SETARG_B(fs->f->code[pc], luaO_int2fb(cc.na)); /* set initial array size */ in constructor()
751 SETARG_C(fs->f->code[pc], luaO_int2fb(cc.nh)); /* set initial table size */ in constructor()
760 FuncState *fs = ls->fs; in parlist() local
761 Proto *f = fs->f; in parlist()
782 f->numparams = cast_byte(fs->nactvar); in parlist()
783 luaK_reserveregs(fs, fs->nactvar); /* reserve register for parameters */ in parlist()
814 luaK_exp2nextreg(ls->fs, v); in explist()
823 FuncState *fs = ls->fs; in funcargs() local
833 luaK_setmultret(fs, &args); in funcargs()
857 luaK_exp2nextreg(fs, &args); /* close last argument */ in funcargs()
858 nparams = fs->freereg - (base+1); in funcargs()
860 init_exp(f, VCALL, luaK_codeABC(fs, OP_CALL, base, nparams+1, 2)); in funcargs()
861 luaK_fixline(fs, line); in funcargs()
862 fs->freereg = base+1; /* call remove function and arguments and leaves in funcargs()
884 luaK_dischargevars(ls->fs, v); in primaryexp()
901 FuncState *fs = ls->fs; in suffixedexp() local
912 luaK_exp2anyregup(fs, v); in suffixedexp()
914 luaK_indexed(fs, v, &key); in suffixedexp()
921 luaK_self(fs, v, &key); in suffixedexp()
926 luaK_exp2nextreg(fs, v); in suffixedexp()
962 FuncState *fs = ls->fs; in simpleexp() local
963 check_condition(ls, fs->f->is_vararg, in simpleexp()
965 init_exp(v, VVARARG, luaK_codeABC(fs, OP_VARARG, 0, 1, 0)); in simpleexp()
1045 luaK_prefix(ls->fs, uop, v, line); in subexpr()
1055 luaK_infix(ls->fs, op, v); in subexpr()
1058 luaK_posfix(ls->fs, op, v, &v2, line); in subexpr()
1083 FuncState *fs = ls->fs; in block() local
1085 enterblock(fs, &bl, 0); in block()
1087 leaveblock(fs); in block()
1108 FuncState *fs = ls->fs; in check_conflict() local
1109 int extra = fs->freereg; /* eventual position to save local variable */ in check_conflict()
1129 luaK_codeABC(fs, op, extra, v->u.info, 0); in check_conflict()
1130 luaK_reserveregs(fs, 1); in check_conflict()
1144 checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, in assignment()
1155 ls->fs->freereg -= nexps - nvars; /* remove extra values */ in assignment()
1158 luaK_setoneret(ls->fs, &e); /* close last expression */ in assignment()
1159 luaK_storevar(ls->fs, &lh->v, &e); in assignment()
1163 init_exp(&e, VNONRELOC, ls->fs->freereg-1); /* default assignment */ in assignment()
1164 luaK_storevar(ls->fs, &lh->v, &e); in assignment()
1173 luaK_goiftrue(ls->fs, &v); in cond()
1194 static void checkrepeated (FuncState *fs, Labellist *ll, TString *label) { in checkrepeated() argument
1196 for (i = fs->bl->firstlabel; i < ll->n; i++) { in checkrepeated()
1198 const char *msg = luaO_pushfstring(fs->ls->L, in checkrepeated()
1201 semerror(fs->ls, msg); in checkrepeated()
1216 FuncState *fs = ls->fs; in labelstat() local
1219 checkrepeated(fs, ll, label); /* check for repeated labels */ in labelstat()
1222 l = newlabelentry(ls, ll, label, line, fs->pc); in labelstat()
1226 ll->arr[l].nactvar = fs->bl->nactvar; in labelstat()
1234 FuncState *fs = ls->fs; in whilestat() local
1239 whileinit = luaK_getlabel(fs); in whilestat()
1241 enterblock(fs, &bl, 1); in whilestat()
1244 luaK_jumpto(fs, whileinit); in whilestat()
1246 leaveblock(fs); in whilestat()
1247 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1254 FuncState *fs = ls->fs; in repeatstat() local
1255 int repeat_init = luaK_getlabel(fs); in repeatstat()
1257 enterblock(fs, &bl1, 1); /* loop block */ in repeatstat()
1258 enterblock(fs, &bl2, 0); /* scope block */ in repeatstat()
1264 luaK_patchclose(fs, condexit, bl2.nactvar); in repeatstat()
1265 leaveblock(fs); /* finish scope */ in repeatstat()
1266 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()
1267 leaveblock(fs); /* finish loop */ in repeatstat()
1275 luaK_exp2nextreg(ls->fs, &e); in exp1()
1285 FuncState *fs = ls->fs; in forbody() local
1289 prep = isnum ? luaK_codeAsBx(fs, OP_FORPREP, base, NO_JUMP) : luaK_jump(fs); in forbody()
1290 enterblock(fs, &bl, 0); /* scope for declared variables */ in forbody()
1292 luaK_reserveregs(fs, nvars); in forbody()
1294 leaveblock(fs); /* end of scope for declared variables */ in forbody()
1295 luaK_patchtohere(fs, prep); in forbody()
1297 endfor = luaK_codeAsBx(fs, OP_FORLOOP, base, NO_JUMP); in forbody()
1299 luaK_codeABC(fs, OP_TFORCALL, base, 0, nvars); in forbody()
1300 luaK_fixline(fs, line); in forbody()
1301 endfor = luaK_codeAsBx(fs, OP_TFORLOOP, base + 2, NO_JUMP); in forbody()
1303 luaK_patchlist(fs, endfor, prep + 1); in forbody()
1304 luaK_fixline(fs, line); in forbody()
1310 FuncState *fs = ls->fs; in fornum() local
1311 int base = fs->freereg; in fornum()
1323 luaK_codek(fs, fs->freereg, luaK_numberK(fs, 1)); in fornum()
1324 luaK_reserveregs(fs, 1); in fornum()
1332 FuncState *fs = ls->fs; in forlist() local
1336 int base = fs->freereg; in forlist()
1350 luaK_checkstack(fs, 3); /* extra space to call generator */ in forlist()
1357 FuncState *fs = ls->fs; in forstat() local
1360 enterblock(fs, &bl, 1); /* scope for loop and control variables */ in forstat()
1369 leaveblock(fs); /* loop scope (`break' jumps to this point) */ in forstat()
1376 FuncState *fs = ls->fs; in test_then_block() local
1383 luaK_goiffalse(ls->fs, &v); /* will jump to label if condition is true */ in test_then_block()
1384 enterblock(fs, &bl, 0); /* must enter block before 'goto' */ in test_then_block()
1388 leaveblock(fs); in test_then_block()
1392 jf = luaK_jump(fs); in test_then_block()
1395 luaK_goiftrue(ls->fs, &v); /* skip over block if condition is false */ in test_then_block()
1396 enterblock(fs, &bl, 0); in test_then_block()
1400 leaveblock(fs); in test_then_block()
1403 luaK_concat(fs, escapelist, luaK_jump(fs)); /* must jump over it */ in test_then_block()
1404 luaK_patchtohere(fs, jf); in test_then_block()
1410 FuncState *fs = ls->fs; in ifstat() local
1418 luaK_patchtohere(fs, escapelist); /* patch escape list to 'if' end */ in ifstat()
1424 FuncState *fs = ls->fs; in localfunc() local
1429 getlocvar(fs, b.u.info)->startpc = fs->pc; in localfunc()
1474 luaK_storevar(ls->fs, &v, &b); in funcstat()
1475 luaK_fixline(ls->fs, line); /* definition `happens' in the first line */ in funcstat()
1481 FuncState *fs = ls->fs; in exprstat() local
1490 SETARG_C(getcode(fs, &v.v), 1); /* call statement uses no results */ in exprstat()
1497 FuncState *fs = ls->fs; in retstat() local
1505 luaK_setmultret(fs, &e); in retstat()
1507 SET_OPCODE(getcode(fs,&e), OP_TAILCALL); in retstat()
1508 lua_assert(GETARG_A(getcode(fs,&e)) == fs->nactvar); in retstat()
1510 first = fs->nactvar; in retstat()
1515 first = luaK_exp2anyreg(fs, &e); in retstat()
1517 luaK_exp2nextreg(fs, &e); /* values must go to the `stack' */ in retstat()
1518 first = fs->nactvar; /* return all `active' values */ in retstat()
1519 lua_assert(nret == fs->freereg - first); in retstat()
1523 luaK_ret(fs, first, nret); in retstat()
1582 gotostat(ls, luaK_jump(ls->fs)); in statement()
1590 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()
1591 ls->fs->freereg >= ls->fs->nactvar); in statement()
1592 ls->fs->freereg = ls->fs->nactvar; /* free registers */ in statement()
1603 static void mainfunc (LexState *ls, FuncState *fs) { in mainfunc() argument
1606 open_func(ls, fs, &bl); in mainfunc()
1607 fs->f->is_vararg = 1; /* main function is always vararg */ in mainfunc()
1609 newupvalue(fs, ls->envn, &v); /* ...set environment upvalue */ in mainfunc()
1632 lua_assert(!funcstate.prev && funcstate.nups == 1 && !lexstate.fs); in luaY_parser()