|
static int | tonumeral (const expdesc *e, TValue *v) |
|
void | luaK_nil (FuncState *fs, int from, int n) |
|
static int | getjump (FuncState *fs, int pc) |
|
static void | fixjump (FuncState *fs, int pc, int dest) |
|
void | luaK_concat (FuncState *fs, int *l1, int l2) |
|
int | luaK_jump (FuncState *fs) |
|
void | luaK_ret (FuncState *fs, int first, int nret) |
|
static int | condjump (FuncState *fs, OpCode op, int A, int B, int C) |
|
int | luaK_getlabel (FuncState *fs) |
|
static Instruction * | getjumpcontrol (FuncState *fs, int pc) |
|
static int | patchtestreg (FuncState *fs, int node, int reg) |
|
static void | removevalues (FuncState *fs, int list) |
|
static void | patchlistaux (FuncState *fs, int list, int vtarget, int reg, int dtarget) |
|
static void | dischargejpc (FuncState *fs) |
|
void | luaK_patchtohere (FuncState *fs, int list) |
|
void | luaK_patchlist (FuncState *fs, int list, int target) |
|
void | luaK_patchclose (FuncState *fs, int list, int level) |
|
static int | luaK_code (FuncState *fs, Instruction i) |
|
int | luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) |
|
int | luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) |
|
static int | codeextraarg (FuncState *fs, int a) |
|
int | luaK_codek (FuncState *fs, int reg, int k) |
|
void | luaK_checkstack (FuncState *fs, int n) |
|
void | luaK_reserveregs (FuncState *fs, int n) |
|
static void | freereg (FuncState *fs, int reg) |
|
static void | freeexp (FuncState *fs, expdesc *e) |
|
static void | freeexps (FuncState *fs, expdesc *e1, expdesc *e2) |
|
static int | addk (FuncState *fs, TValue *key, TValue *v) |
|
int | luaK_stringK (FuncState *fs, TString *s) |
|
int | luaK_intK (FuncState *fs, lua_Integer n) |
|
static int | luaK_numberK (FuncState *fs, lua_Number r) |
|
static int | boolK (FuncState *fs, int b) |
|
static int | nilK (FuncState *fs) |
|
void | luaK_setreturns (FuncState *fs, expdesc *e, int nresults) |
|
void | luaK_setoneret (FuncState *fs, expdesc *e) |
|
void | luaK_dischargevars (FuncState *fs, expdesc *e) |
|
static void | discharge2reg (FuncState *fs, expdesc *e, int reg) |
|
static void | discharge2anyreg (FuncState *fs, expdesc *e) |
|
static int | code_loadbool (FuncState *fs, int A, int b, int jump) |
|
static int | need_value (FuncState *fs, int list) |
|
static void | exp2reg (FuncState *fs, expdesc *e, int reg) |
|
void | luaK_exp2nextreg (FuncState *fs, expdesc *e) |
|
int | luaK_exp2anyreg (FuncState *fs, expdesc *e) |
|
void | luaK_exp2anyregup (FuncState *fs, expdesc *e) |
|
void | luaK_exp2val (FuncState *fs, expdesc *e) |
|
int | luaK_exp2RK (FuncState *fs, expdesc *e) |
|
void | luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) |
|
void | luaK_self (FuncState *fs, expdesc *e, expdesc *key) |
|
static void | negatecondition (FuncState *fs, expdesc *e) |
|
static int | jumponcond (FuncState *fs, expdesc *e, int cond) |
|
void | luaK_goiftrue (FuncState *fs, expdesc *e) |
|
void | luaK_goiffalse (FuncState *fs, expdesc *e) |
|
static void | codenot (FuncState *fs, expdesc *e) |
|
void | luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) |
|
static int | validop (int op, TValue *v1, TValue *v2) |
|
static int | constfolding (FuncState *fs, int op, expdesc *e1, const expdesc *e2) |
|
static void | codeunexpval (FuncState *fs, OpCode op, expdesc *e, int line) |
|
static void | codebinexpval (FuncState *fs, OpCode op, expdesc *e1, expdesc *e2, int line) |
|
static void | codecomp (FuncState *fs, BinOpr opr, expdesc *e1, expdesc *e2) |
|
void | luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) |
|
void | luaK_infix (FuncState *fs, BinOpr op, expdesc *v) |
|
void | luaK_posfix (FuncState *fs, BinOpr op, expdesc *e1, expdesc *e2, int line) |
|
void | luaK_fixline (FuncState *fs, int line) |
|
void | luaK_setlist (FuncState *fs, int base, int nelems, int tostore) |
|