Lines Matching defs:fs

39 void luaK_nil (FuncState *fs, int from, int n) {  in luaK_nil()
61 int luaK_jump (FuncState *fs) { in luaK_jump()
71 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret()
76 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
82 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump()
96 int luaK_getlabel (FuncState *fs) { in luaK_getlabel()
102 static int getjump (FuncState *fs, int pc) { in getjump()
111 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
124 static int need_value (FuncState *fs, int list) { in need_value()
133 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg()
146 static void removevalues (FuncState *fs, int list) { in removevalues()
152 static void patchlistaux (FuncState *fs, int list, int vtarget, int reg, in patchlistaux()
165 static void dischargejpc (FuncState *fs) { in dischargejpc()
171 void luaK_patchlist (FuncState *fs, int list, int target) { in luaK_patchlist()
181 LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level) { in luaK_patchclose()
194 void luaK_patchtohere (FuncState *fs, int list) { in luaK_patchtohere()
200 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat()
214 static int luaK_code (FuncState *fs, Instruction i) { in luaK_code()
229 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
238 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
246 static int codeextraarg (FuncState *fs, int a) { in codeextraarg()
252 int luaK_codek (FuncState *fs, int reg, int k) { in luaK_codek()
263 void luaK_checkstack (FuncState *fs, int n) { in luaK_checkstack()
273 void luaK_reserveregs (FuncState *fs, int n) { in luaK_reserveregs()
279 static void freereg (FuncState *fs, int reg) { in freereg()
287 static void freeexp (FuncState *fs, expdesc *e) { in freeexp()
293 static int addk (FuncState *fs, TValue *key, TValue *v) { in addk()
321 int luaK_stringK (FuncState *fs, TString *s) { in luaK_stringK()
328 int luaK_numberK (FuncState *fs, lua_Number r) { in luaK_numberK()
345 static int boolK (FuncState *fs, int b) { in boolK()
352 static int nilK (FuncState *fs) { in nilK()
361 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { in luaK_setreturns()
373 void luaK_setoneret (FuncState *fs, expdesc *e) { in luaK_setoneret()
385 void luaK_dischargevars (FuncState *fs, expdesc *e) { in luaK_dischargevars()
417 static int code_label (FuncState *fs, int A, int b, int jump) { in code_label()
423 static void discharge2reg (FuncState *fs, expdesc *e, int reg) { in discharge2reg()
462 static void discharge2anyreg (FuncState *fs, expdesc *e) { in discharge2anyreg()
470 static void exp2reg (FuncState *fs, expdesc *e, int reg) { in exp2reg()
494 void luaK_exp2nextreg (FuncState *fs, expdesc *e) { in luaK_exp2nextreg()
502 int luaK_exp2anyreg (FuncState *fs, expdesc *e) { in luaK_exp2anyreg()
516 void luaK_exp2anyregup (FuncState *fs, expdesc *e) { in luaK_exp2anyregup()
522 void luaK_exp2val (FuncState *fs, expdesc *e) { in luaK_exp2val()
530 int luaK_exp2RK (FuncState *fs, expdesc *e) { in luaK_exp2RK()
560 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { in luaK_storevar()
587 void luaK_self (FuncState *fs, expdesc *e, expdesc *key) { in luaK_self()
600 static void invertjump (FuncState *fs, expdesc *e) { in invertjump()
608 static int jumponcond (FuncState *fs, expdesc *e, int cond) { in jumponcond()
623 void luaK_goiftrue (FuncState *fs, expdesc *e) { in luaK_goiftrue()
647 void luaK_goiffalse (FuncState *fs, expdesc *e) { in luaK_goiffalse()
670 static void codenot (FuncState *fs, expdesc *e) { in codenot()
705 void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) { in luaK_indexed()
731 static void codearith (FuncState *fs, OpCode op, in codearith()
753 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
769 void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { in luaK_prefix()
793 void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) { in luaK_infix()
820 void luaK_posfix (FuncState *fs, BinOpr op, in luaK_posfix()
869 void luaK_fixline (FuncState *fs, int line) { in luaK_fixline()
874 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { in luaK_setlist()