/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lcode.h | 47 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 48 LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C); 49 LUAI_FUNC int luaK_codek (FuncState *fs, int reg, int k); 50 LUAI_FUNC void luaK_fixline (FuncState *fs, int line); 51 LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n); 52 LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n); 53 LUAI_FUNC void luaK_checkstack (FuncState *fs, int n); 54 LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s); 55 LUAI_FUNC int luaK_numberK (FuncState *fs, lua_Number r); 56 LUAI_FUNC void luaK_dischargevars (FuncState *fs, expdesc *e); [all …]
|
H A D | lcode.c | 38 void luaK_nil (FuncState *fs, int from, int n) { in luaK_nil() 60 int luaK_jump (FuncState *fs) { in luaK_jump() 70 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret() 75 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump() 81 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump() 95 int luaK_getlabel (FuncState *fs) { in luaK_getlabel() 101 static int getjump (FuncState *fs, int pc) { in getjump() 110 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol() 123 static int need_value (FuncState *fs, int list) { in need_value() 132 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg() [all …]
|
H A D | lparser.c | 80 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() 93 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() 163 FuncState *fs = ls->fs; in registerlocalvar() 176 FuncState *fs = ls->fs; in new_localvar() 195 static LocVar *getlocvar (FuncState *fs, int i) { in getlocvar() 203 FuncState *fs = ls->fs; in adjustlocalvars() 211 static void removevars (FuncState *fs, int tolevel) { in removevars() 218 static int searchupvalue (FuncState *fs, TString *name) { in searchupvalue() 228 static int newupvalue (FuncState *fs, TString *name, expdesc *v) { in newupvalue() 243 static int searchvar (FuncState *fs, TString *n) { in searchvar() [all …]
|
H A D | lparser.h | 96 typedef struct FuncState { struct 99 struct FuncState *prev; /* enclosing function */ argument 112 } FuncState; argument
|
H A D | llex.h | 60 struct FuncState *fs; /* current function (parser) */
|
/freebsd/contrib/lua/src/ |
H A D | lcode.h | 62 LUAI_FUNC int luaK_code (FuncState *fs, Instruction i); 63 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 64 LUAI_FUNC int luaK_codeAsBx (FuncState *fs, OpCode o, int A, int Bx); 65 LUAI_FUNC int luaK_codeABCk (FuncState *fs, OpCode o, int A, 68 LUAI_FUNC int luaK_exp2const (FuncState *fs, const expdesc *e, TValue *v); 69 LUAI_FUNC void luaK_fixline (FuncState *fs, int line); 70 LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n); 71 LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n); 72 LUAI_FUNC void luaK_checkstack (FuncState *fs, int n); 73 LUAI_FUNC void luaK_int (FuncState *fs, int reg, lua_Integer n); [all …]
|
H A D | lcode.c | 41 static int codesJ (FuncState *fs, OpCode o, int sj, int k); 74 static TValue *const2val (FuncState *fs, const expdesc *e) { in const2val() 84 int luaK_exp2const (FuncState *fs, const expdesc *e, TValue *v) { in luaK_exp2const() 116 static Instruction *previousinstruction (FuncState *fs) { in previousinstruction() 131 void luaK_nil (FuncState *fs, int from, int n) { in luaK_nil() 154 static int getjump (FuncState *fs, int pc) { in getjump() 167 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump() 181 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat() 199 int luaK_jump (FuncState *fs) { in luaK_jump() 207 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret() [all …]
|
H A D | lparser.c | 74 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() 87 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() 175 static int registerlocalvar (LexState *ls, FuncState *fs, TString *varname) { in registerlocalvar() 195 FuncState *fs = ls->fs; in new_localvar() 219 static Vardesc *getlocalvardesc (FuncState *fs, int vidx) { in getlocalvardesc() 229 static int reglevel (FuncState *fs, int nvar) { in reglevel() 243 int luaY_nvarstack (FuncState *fs) { in luaY_nvarstack() 251 static LocVar *localdebuginfo (FuncState *fs, int vidx) { in localdebuginfo() 266 static void init_var (FuncState *fs, expdesc *e, int vidx) { in init_var() 278 FuncState *fs = ls->fs; in check_readonly() [all …]
|
H A D | lparser.h | 144 typedef struct FuncState { struct 146 struct FuncState *prev; /* enclosing function */ argument 163 } FuncState; argument 166 LUAI_FUNC int luaY_nvarstack (FuncState *fs);
|
H A D | llex.h | 70 struct FuncState *fs; /* current function (parser) */
|