ljx

FORK: LuaJIT with native 5.2 and 5.3 support
git clone https://git.neptards.moe/neptards/ljx.git
Log | Files | Refs | README

ljx_bitwise.h (332B)


      1 #ifndef _LJX_BITWISE_H
      2 #define _LJX_BITWISE_H
      3 
      4 #include "lj_obj.h"
      5 #include "lj_ir.h"
      6 #include "lj_jit.h"
      7 LJ_FUNC TRef ljx_rec_bitwise(jit_State *J, TRef rb, TRef rc, cTValue *rbv,
      8                       cTValue *rcv, MMS mm);
      9 LJ_FUNC int ljx_vm_foldbit(lua_State *L, TValue *ra, cTValue *rb, cTValue *rc,
     10 		      MMS mm);
     11 
     12 #endif
     13 
     14