Lines Matching defs:fs

36 void luaK_nil (FuncState *fs, int from, int n) {  in luaK_nil()
58 int luaK_jump (FuncState *fs) { in luaK_jump()
68 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret()
73 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
79 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump()
93 int luaK_getlabel (FuncState *fs) { in luaK_getlabel()
99 static int getjump (FuncState *fs, int pc) { in getjump()
108 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
121 static int need_value (FuncState *fs, int list) { in need_value()
130 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg()
143 static void removevalues (FuncState *fs, int list) { in removevalues()
149 static void patchlistaux (FuncState *fs, int list, int vtarget, int reg, in patchlistaux()
162 static void dischargejpc (FuncState *fs) { in dischargejpc()
168 void luaK_patchlist (FuncState *fs, int list, int target) { in luaK_patchlist()
178 LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level) { in luaK_patchclose()
191 void luaK_patchtohere (FuncState *fs, int list) { in luaK_patchtohere()
197 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat()
211 static int luaK_code (FuncState *fs, Instruction i) { in luaK_code()
226 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
235 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
243 static int codeextraarg (FuncState *fs, int a) { in codeextraarg()
249 int luaK_codek (FuncState *fs, int reg, int k) { in luaK_codek()
260 void luaK_checkstack (FuncState *fs, int n) { in luaK_checkstack()
270 void luaK_reserveregs (FuncState *fs, int n) { in luaK_reserveregs()
276 static void freereg (FuncState *fs, int reg) { in freereg()
284 static void freeexp (FuncState *fs, expdesc *e) { in freeexp()
290 static int addk (FuncState *fs, TValue *key, TValue *v) { in addk()
318 int luaK_stringK (FuncState *fs, TString *s) { in luaK_stringK()
325 int luaK_numberK (FuncState *fs, lua_Number r) { in luaK_numberK()
342 static int boolK (FuncState *fs, int b) { in boolK()
349 static int nilK (FuncState *fs) { in nilK()
358 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { in luaK_setreturns()
370 void luaK_setoneret (FuncState *fs, expdesc *e) { in luaK_setoneret()
382 void luaK_dischargevars (FuncState *fs, expdesc *e) { in luaK_dischargevars()
414 static int code_label (FuncState *fs, int A, int b, int jump) { in code_label()
420 static void discharge2reg (FuncState *fs, expdesc *e, int reg) { in discharge2reg()
459 static void discharge2anyreg (FuncState *fs, expdesc *e) { in discharge2anyreg()
467 static void exp2reg (FuncState *fs, expdesc *e, int reg) { in exp2reg()
491 void luaK_exp2nextreg (FuncState *fs, expdesc *e) { in luaK_exp2nextreg()
499 int luaK_exp2anyreg (FuncState *fs, expdesc *e) { in luaK_exp2anyreg()
513 void luaK_exp2anyregup (FuncState *fs, expdesc *e) { in luaK_exp2anyregup()
519 void luaK_exp2val (FuncState *fs, expdesc *e) { in luaK_exp2val()
527 int luaK_exp2RK (FuncState *fs, expdesc *e) { in luaK_exp2RK()
557 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { in luaK_storevar()
584 void luaK_self (FuncState *fs, expdesc *e, expdesc *key) { in luaK_self()
597 static void invertjump (FuncState *fs, expdesc *e) { in invertjump()
605 static int jumponcond (FuncState *fs, expdesc *e, int cond) { in jumponcond()
620 void luaK_goiftrue (FuncState *fs, expdesc *e) { in luaK_goiftrue()
644 void luaK_goiffalse (FuncState *fs, expdesc *e) { in luaK_goiffalse()
667 static void codenot (FuncState *fs, expdesc *e) { in codenot()
702 void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) { in luaK_indexed()
728 static void codearith (FuncState *fs, OpCode op, in codearith()
750 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
766 void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { in luaK_prefix()
790 void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) { in luaK_infix()
817 void luaK_posfix (FuncState *fs, BinOpr op, in luaK_posfix()
866 void luaK_fixline (FuncState *fs, int line) { in luaK_fixline()
871 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { in luaK_setlist()