Home
last modified time | relevance | path

Searched refs:FuncState (Results 1 – 5 of 5) sorted by relevance

/external/lua/src/
Dlcode.h62 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 …]
Dlcode.c40 static int codesJ (FuncState *fs, OpCode o, int sj, int k);
73 static TValue *const2val (FuncState *fs, const expdesc *e) { in const2val()
83 int luaK_exp2const (FuncState *fs, const expdesc *e, TValue *v) { in luaK_exp2const()
115 static Instruction *previousinstruction (FuncState *fs) { in previousinstruction()
130 void luaK_nil (FuncState *fs, int from, int n) { in luaK_nil()
153 static int getjump (FuncState *fs, int pc) { in getjump()
166 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump()
180 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat()
198 int luaK_jump (FuncState *fs) { in luaK_jump()
206 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret()
[all …]
Dlparser.c74 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()
230 static int stacklevel (FuncState *fs, int nvar) { in stacklevel()
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 …]
Dlparser.h143 typedef struct FuncState { struct
145 struct FuncState *prev; /* enclosing function */ argument
162 } FuncState; argument
165 LUAI_FUNC int luaY_nvarstack (FuncState *fs);
Dllex.h70 struct FuncState *fs; /* current function (parser) */