diff options
author | Mike Pall <mike> | 2016-05-22 23:40:37 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2016-05-22 23:40:37 +0200 |
commit | 3152ed98ea3d99579940eb5e72da687ce66792de (patch) | |
tree | dcd8b8dec22f0d1d0a9ad3e30fcaefc4f288e3f2 /src/lj_iropt.h | |
parent | a657fa01869e63508afce88cc8088c3d2e2fb47c (diff) | |
download | luajit-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.h | 1 |
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); | |||
51 | LJ_FUNC TRef lj_ir_kptr_(jit_State *J, IROp op, void *ptr); | 51 | LJ_FUNC TRef lj_ir_kptr_(jit_State *J, IROp op, void *ptr); |
52 | LJ_FUNC TRef lj_ir_knull(jit_State *J, IRType t); | 52 | LJ_FUNC TRef lj_ir_knull(jit_State *J, IRType t); |
53 | LJ_FUNC TRef lj_ir_kslot(jit_State *J, TRef key, IRRef slot); | 53 | LJ_FUNC TRef lj_ir_kslot(jit_State *J, TRef key, IRRef slot); |
54 | LJ_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)) |