aboutsummaryrefslogtreecommitdiff
path: root/src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-11-16 00:24:51 +0800
committerchai <chaifix@163.com>2018-11-16 00:24:51 +0800
commit831e814ce9bdb84e86c06c4a52008f6bdaaa00d6 (patch)
treef91fccc7d2628d6e0a39886134b2bb174f5eede4 /src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h
parent6dc75930fe5fe02f1af5489917752d315cf9e48f (diff)
*合并master到minimal分支
Diffstat (limited to 'src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h')
-rw-r--r--src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h b/src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h
new file mode 100644
index 0000000..2819481
--- /dev/null
+++ b/src/3rdparty/LuaJIT-2.0.5/include/LuaJIT/lj_asm.h
@@ -0,0 +1,17 @@
+/*
+** IR assembler (SSA IR -> machine code).
+** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h
+*/
+
+#ifndef _LJ_ASM_H
+#define _LJ_ASM_H
+
+#include "lj_jit.h"
+
+#if LJ_HASJIT
+LJ_FUNC void lj_asm_trace(jit_State *J, GCtrace *T);
+LJ_FUNC void lj_asm_patchexit(jit_State *J, GCtrace *T, ExitNo exitno,
+ MCode *target);
+#endif
+
+#endif