aboutsummaryrefslogtreecommitdiff
path: root/src/lj_ir.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r--src/lj_ir.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index 22127806..cc57560d 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -189,10 +189,11 @@ IRFLDEF(FLENUM)
189} IRFieldID; 189} IRFieldID;
190 190
191/* SLOAD mode bits, stored in op2. */ 191/* SLOAD mode bits, stored in op2. */
192#define IRSLOAD_INHERIT 1 /* Inherited by exits/side traces. */ 192#define IRSLOAD_INHERIT 0x01 /* Inherited by exits/side traces. */
193#define IRSLOAD_READONLY 2 /* Read-only, omit slot store. */ 193#define IRSLOAD_READONLY 0x02 /* Read-only, omit slot store. */
194#define IRSLOAD_PARENT 4 /* Coalesce with parent trace. */ 194#define IRSLOAD_PARENT 0x04 /* Coalesce with parent trace. */
195#define IRSLOAD_TYPECHECK 8 /* Needs type check. */ 195#define IRSLOAD_TYPECHECK 0x08 /* Needs type check. */
196#define IRSLOAD_FRAME 0x10 /* Load hiword of frame. */
196 197
197/* XLOAD mode, stored in op2. */ 198/* XLOAD mode, stored in op2. */
198#define IRXLOAD_READONLY 1 /* Load from read-only data. */ 199#define IRXLOAD_READONLY 1 /* Load from read-only data. */