summaryrefslogtreecommitdiff
path: root/src/lj_iropt.h
diff options
context:
space:
mode:
authorMike Pall <mike>2016-05-22 23:40:37 +0200
committerMike Pall <mike>2016-05-22 23:40:37 +0200
commit3152ed98ea3d99579940eb5e72da687ce66792de (patch)
treedcd8b8dec22f0d1d0a9ad3e30fcaefc4f288e3f2 /src/lj_iropt.h
parenta657fa01869e63508afce88cc8088c3d2e2fb47c (diff)
downloadluajit-3152ed98ea3d99579940eb5e72da687ce66792de.tar.gz
luajit-3152ed98ea3d99579940eb5e72da687ce66792de.tar.bz2
luajit-3152ed98ea3d99579940eb5e72da687ce66792de.zip
Simplify GCtrace * reference embedding for trace stitching.
This is now possible due to the immovable IR. Contributed by Peter Cawley.
Diffstat (limited to 'src/lj_iropt.h')
-rw-r--r--src/lj_iropt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_iropt.h b/src/lj_iropt.h
index 46933671..fdc5f0d2 100644
--- a/src/lj_iropt.h
+++ b/src/lj_iropt.h
@@ -51,6 +51,7 @@ LJ_FUNC TRef lj_ir_kgc(jit_State *J, GCobj *o, IRType t);
51LJ_FUNC TRef lj_ir_kptr_(jit_State *J, IROp op, void *ptr); 51LJ_FUNC TRef lj_ir_kptr_(jit_State *J, IROp op, void *ptr);
52LJ_FUNC TRef lj_ir_knull(jit_State *J, IRType t); 52LJ_FUNC TRef lj_ir_knull(jit_State *J, IRType t);
53LJ_FUNC TRef lj_ir_kslot(jit_State *J, TRef key, IRRef slot); 53LJ_FUNC TRef lj_ir_kslot(jit_State *J, TRef key, IRRef slot);
54LJ_FUNC TRef lj_ir_ktrace(jit_State *J);
54 55
55#if LJ_64 56#if LJ_64
56#define lj_ir_kintp(J, k) lj_ir_kint64(J, (uint64_t)(k)) 57#define lj_ir_kintp(J, k) lj_ir_kint64(J, (uint64_t)(k))