aboutsummaryrefslogtreecommitdiff
path: root/build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-10-23 12:23:58 +0800
committerchai <chaifix@163.com>2018-10-23 12:23:58 +0800
commit40fc27154fe754181934dc7ee31375e6bdfb33fc (patch)
tree897ad98d759bc308ef66561181ba88b85f2ccd47 /build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h
parent1480c9445100075c9e1a894eb07c0ef727b509a1 (diff)
*merge from minimal
Diffstat (limited to 'build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h')
-rw-r--r--build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h b/build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h
deleted file mode 100644
index f0847e9..0000000
--- a/build/vs2015/libs/LuaJIT-2.0.5/include/LuaJIT/lj_mcode.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
-** Machine code management.
-** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h
-*/
-
-#ifndef _LJ_MCODE_H
-#define _LJ_MCODE_H
-
-#include "lj_obj.h"
-
-#if LJ_HASJIT || LJ_HASFFI
-LJ_FUNC void lj_mcode_sync(void *start, void *end);
-#endif
-
-#if LJ_HASJIT
-
-#include "lj_jit.h"
-
-LJ_FUNC void lj_mcode_free(jit_State *J);
-LJ_FUNC MCode *lj_mcode_reserve(jit_State *J, MCode **lim);
-LJ_FUNC void lj_mcode_commit(jit_State *J, MCode *m);
-LJ_FUNC void lj_mcode_abort(jit_State *J);
-LJ_FUNC MCode *lj_mcode_patch(jit_State *J, MCode *ptr, int finish);
-LJ_FUNC_NORET void lj_mcode_limiterr(jit_State *J, size_t need);
-
-#define lj_mcode_commitbot(J, m) (J->mcbot = (m))
-
-#endif
-
-#endif