aboutsummaryrefslogtreecommitdiff
path: root/src/lj_ir.h
diff options
context:
space:
mode:
authorMike Pall <mike>2016-05-23 01:49:00 +0200
committerMike Pall <mike>2016-05-23 01:49:00 +0200
commit6c8258d74b7d4ae7f288897518f23c809b9395f2 (patch)
tree7479dce31b17ed704f20ee3920b6de6696521f26 /src/lj_ir.h
parent8f868a9d02340bae8b3b4a703118b324213f5c6d (diff)
downloadluajit-6c8258d74b7d4ae7f288897518f23c809b9395f2.tar.gz
luajit-6c8258d74b7d4ae7f288897518f23c809b9395f2.tar.bz2
luajit-6c8258d74b7d4ae7f288897518f23c809b9395f2.zip
LJ_FR2: Add support for trace recording and snapshots.
Contributed by Peter Cawley.
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r--src/lj_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index 3de57046..4e9c85c7 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -220,7 +220,7 @@ IRFLDEF(FLENUM)
220 220
221/* SLOAD mode bits, stored in op2. */ 221/* SLOAD mode bits, stored in op2. */
222#define IRSLOAD_PARENT 0x01 /* Coalesce with parent trace. */ 222#define IRSLOAD_PARENT 0x01 /* Coalesce with parent trace. */
223#define IRSLOAD_FRAME 0x02 /* Load hiword of frame. */ 223#define IRSLOAD_FRAME 0x02 /* Load 32 bits of ftsz. */
224#define IRSLOAD_TYPECHECK 0x04 /* Needs type check. */ 224#define IRSLOAD_TYPECHECK 0x04 /* Needs type check. */
225#define IRSLOAD_CONVERT 0x08 /* Number to integer conversion. */ 225#define IRSLOAD_CONVERT 0x08 /* Number to integer conversion. */
226#define IRSLOAD_READONLY 0x10 /* Read-only, omit slot store. */ 226#define IRSLOAD_READONLY 0x10 /* Read-only, omit slot store. */