Lines Matching refs:FuncState

35 void luaK_nil (FuncState *fs, int from, int n) {  in luaK_nil()
57 int luaK_jump (FuncState *fs) { in luaK_jump()
67 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret()
72 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump()
78 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump()
92 int luaK_getlabel (FuncState *fs) { in luaK_getlabel()
98 static int getjump (FuncState *fs, int pc) { in getjump()
107 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
120 static int need_value (FuncState *fs, int list) { in need_value()
129 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg()
142 static void removevalues (FuncState *fs, int list) { in removevalues()
148 static void patchlistaux (FuncState *fs, int list, int vtarget, int reg, in patchlistaux()
161 static void dischargejpc (FuncState *fs) { in dischargejpc()
167 void luaK_patchlist (FuncState *fs, int list, int target) { in luaK_patchlist()
177 LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level) { in luaK_patchclose()
190 void luaK_patchtohere (FuncState *fs, int list) { in luaK_patchtohere()
196 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat()
210 static int luaK_code (FuncState *fs, Instruction i) { in luaK_code()
225 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC()
234 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx()
242 static int codeextraarg (FuncState *fs, int a) { in codeextraarg()
248 int luaK_codek (FuncState *fs, int reg, int k) { in luaK_codek()
259 void luaK_checkstack (FuncState *fs, int n) { in luaK_checkstack()
269 void luaK_reserveregs (FuncState *fs, int n) { in luaK_reserveregs()
275 static void freereg (FuncState *fs, int reg) { in freereg()
283 static void freeexp (FuncState *fs, expdesc *e) { in freeexp()
289 static int addk (FuncState *fs, TValue *key, TValue *v) { in addk()
317 int luaK_stringK (FuncState *fs, TString *s) { in luaK_stringK()
324 int luaK_numberK (FuncState *fs, lua_Number r) { in luaK_numberK()
341 static int boolK (FuncState *fs, int b) { in boolK()
348 static int nilK (FuncState *fs) { in nilK()
357 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { in luaK_setreturns()
369 void luaK_setoneret (FuncState *fs, expdesc *e) { in luaK_setoneret()
381 void luaK_dischargevars (FuncState *fs, expdesc *e) { in luaK_dischargevars()
413 static int code_label (FuncState *fs, int A, int b, int jump) { in code_label()
419 static void discharge2reg (FuncState *fs, expdesc *e, int reg) { in discharge2reg()
458 static void discharge2anyreg (FuncState *fs, expdesc *e) { in discharge2anyreg()
466 static void exp2reg (FuncState *fs, expdesc *e, int reg) { in exp2reg()
490 void luaK_exp2nextreg (FuncState *fs, expdesc *e) { in luaK_exp2nextreg()
498 int luaK_exp2anyreg (FuncState *fs, expdesc *e) { in luaK_exp2anyreg()
512 void luaK_exp2anyregup (FuncState *fs, expdesc *e) { in luaK_exp2anyregup()
518 void luaK_exp2val (FuncState *fs, expdesc *e) { in luaK_exp2val()
526 int luaK_exp2RK (FuncState *fs, expdesc *e) { in luaK_exp2RK()
556 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { in luaK_storevar()
583 void luaK_self (FuncState *fs, expdesc *e, expdesc *key) { in luaK_self()
596 static void invertjump (FuncState *fs, expdesc *e) { in invertjump()
604 static int jumponcond (FuncState *fs, expdesc *e, int cond) { in jumponcond()
619 void luaK_goiftrue (FuncState *fs, expdesc *e) { in luaK_goiftrue()
643 void luaK_goiffalse (FuncState *fs, expdesc *e) { in luaK_goiffalse()
666 static void codenot (FuncState *fs, expdesc *e) { in codenot()
701 void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) { in luaK_indexed()
727 static void codearith (FuncState *fs, OpCode op, in codearith()
749 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp()
765 void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { in luaK_prefix()
789 void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) { in luaK_infix()
816 void luaK_posfix (FuncState *fs, BinOpr op, in luaK_posfix()
865 void luaK_fixline (FuncState *fs, int line) { in luaK_fixline()
870 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { in luaK_setlist()