Lines Matching refs:OpCode
102 }OpCode; typedef
929 #define GET_OPCODE(i)(cast(OpCode,((i)>>0)&MASK1(6,0)))
2392 static int luaK_codeABx(FuncState*fs,OpCode o,int A,unsigned int Bx);
2393 static int luaK_codeABC(FuncState*fs,OpCode o,int A,int B,int C);
3033 static int condjump(FuncState*fs,OpCode op,int A,int B,int C){
3482 static int constfolding(OpCode op,expdesc*e1,expdesc*e2){
3506 static void codearith(FuncState*fs,OpCode op,expdesc*e1,expdesc*e2){
3524 static void codecomp(FuncState*fs,OpCode op,int cond,expdesc*e1,
3638 static int luaK_codeABC(FuncState*fs,OpCode o,int a,int b,int c){
3641 static int luaK_codeABx(FuncState*fs,OpCode o,int a,unsigned int bc){
3870 OpCode o=(func->upvalues[i].k==VLOCAL)?OP_MOVE:OP_GETUPVAL;