Searched refs:FuncState (Results 1 – 5 of 5) sorted by relevance
/external/lua/src/ |
D | lcode.h | 52 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 53 LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C); 54 LUAI_FUNC int luaK_codek (FuncState *fs, int reg, int k); 55 LUAI_FUNC void luaK_fixline (FuncState *fs, int line); 56 LUAI_FUNC void luaK_nil (FuncState *fs, int from, int n); 57 LUAI_FUNC void luaK_reserveregs (FuncState *fs, int n); 58 LUAI_FUNC void luaK_checkstack (FuncState *fs, int n); 59 LUAI_FUNC int luaK_stringK (FuncState *fs, TString *s); 60 LUAI_FUNC int luaK_intK (FuncState *fs, lua_Integer n); 61 LUAI_FUNC void luaK_dischargevars (FuncState *fs, expdesc *e); [all …]
|
D | lcode.c | 64 void luaK_nil (FuncState *fs, int from, int n) { in luaK_nil() 90 static int getjump (FuncState *fs, int pc) { in getjump() 103 static void fixjump (FuncState *fs, int pc, int dest) { in fixjump() 116 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat() 136 int luaK_jump (FuncState *fs) { in luaK_jump() 149 void luaK_ret (FuncState *fs, int first, int nret) { in luaK_ret() 158 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump() 168 int luaK_getlabel (FuncState *fs) { in luaK_getlabel() 179 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol() 195 static int patchtestreg (FuncState *fs, int node, int reg) { in patchtestreg() [all …]
|
D | lparser.c | 79 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() 92 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() 162 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() 244 static int searchvar (FuncState *fs, TString *n) { in searchvar() [all …]
|
D | lparser.h | 111 typedef struct FuncState { struct 113 struct FuncState *prev; /* enclosing function */ argument 126 } FuncState; argument
|
D | llex.h | 64 struct FuncState *fs; /* current function (parser) */
|