Lines Matching refs:FuncState

35 void luaK_nil (FuncState *fs, int from, int n) {  in luaK_nil()
59 int luaK_jump (FuncState *fs) { in luaK_jump()
69 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret()
74 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
80 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump()
94 int luaK_getlabel (FuncState *fs) { in luaK_getlabel()
100 static int getjump (FuncState *fs, int pc) { in getjump()
109 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
122 static int need_value (FuncState *fs, int list) { in need_value()
131 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg()
144 static void removevalues (FuncState *fs, int list) { in removevalues()
150 static void patchlistaux (FuncState *fs, int list, int vtarget, int reg, in patchlistaux()
163 static void dischargejpc (FuncState *fs) { in dischargejpc()
169 void luaK_patchlist (FuncState *fs, int list, int target) { in luaK_patchlist()
179 void luaK_patchtohere (FuncState *fs, int list) { in luaK_patchtohere()
185 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat()
199 void luaK_checkstack (FuncState *fs, int n) { in luaK_checkstack()
209 void luaK_reserveregs (FuncState *fs, int n) { in luaK_reserveregs()
215 static void freereg (FuncState *fs, int reg) { in freereg()
223 static void freeexp (FuncState *fs, expdesc *e) { in freeexp()
229 static int addk (FuncState *fs, TValue *k, TValue *v) { in addk()
250 int luaK_stringK (FuncState *fs, TString *s) { in luaK_stringK()
257 int luaK_numberK (FuncState *fs, lua_Number r) { in luaK_numberK()
264 static int boolK (FuncState *fs, int b) { in boolK()
271 static int nilK (FuncState *fs) { in nilK()
280 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { in luaK_setreturns()
292 void luaK_setoneret (FuncState *fs, expdesc *e) { in luaK_setoneret()
304 void luaK_dischargevars (FuncState *fs, expdesc *e) { in luaK_dischargevars()
337 static int code_label (FuncState *fs, int A, int b, int jump) { in code_label()
343 static void discharge2reg (FuncState *fs, expdesc *e, int reg) { in discharge2reg()
382 static void discharge2anyreg (FuncState *fs, expdesc *e) { in discharge2anyreg()
390 static void exp2reg (FuncState *fs, expdesc *e, int reg) { in exp2reg()
414 void luaK_exp2nextreg (FuncState *fs, expdesc *e) { in luaK_exp2nextreg()
422 int luaK_exp2anyreg (FuncState *fs, expdesc *e) { in luaK_exp2anyreg()
436 void luaK_exp2val (FuncState *fs, expdesc *e) { in luaK_exp2val()
444 int luaK_exp2RK (FuncState *fs, expdesc *e) { in luaK_exp2RK()
472 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { in luaK_storevar()
503 void luaK_self (FuncState *fs, expdesc *e, expdesc *key) { in luaK_self()
516 static void invertjump (FuncState *fs, expdesc *e) { in invertjump()
524 static int jumponcond (FuncState *fs, expdesc *e, int cond) { in jumponcond()
539 void luaK_goiftrue (FuncState *fs, expdesc *e) { in luaK_goiftrue()
563 static void luaK_goiffalse (FuncState *fs, expdesc *e) { in luaK_goiffalse()
586 static void codenot (FuncState *fs, expdesc *e) { in codenot()
621 void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) { in luaK_indexed()
653 static void codearith (FuncState *fs, OpCode op, expdesc *e1, expdesc *e2) { in codearith()
673 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
689 void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e) { in luaK_prefix()
710 void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) { in luaK_infix()
737 void luaK_posfix (FuncState *fs, BinOpr op, expdesc *e1, expdesc *e2) { in luaK_posfix()
784 void luaK_fixline (FuncState *fs, int line) { in luaK_fixline()
789 static int luaK_code (FuncState *fs, Instruction i, int line) { in luaK_code()
804 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
812 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
819 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { in luaK_setlist()