aboutsummaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index 1e029182..229642a5 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -114,7 +114,7 @@ typedef struct SnapShot {
114 IRRef1 ref; /* First IR ref for this snapshot. */ 114 IRRef1 ref; /* First IR ref for this snapshot. */
115 uint8_t nslots; /* Number of valid slots. */ 115 uint8_t nslots; /* Number of valid slots. */
116 uint8_t nent; /* Number of compressed entries. */ 116 uint8_t nent; /* Number of compressed entries. */
117 uint8_t nframelinks; /* Number of frame links. */ 117 uint8_t depth; /* Number of frame links. */
118 uint8_t count; /* Count of taken exits for this snapshot. */ 118 uint8_t count; /* Count of taken exits for this snapshot. */
119} SnapShot; 119} SnapShot;
120 120
@@ -252,6 +252,7 @@ typedef struct jit_State {
252 252
253 IRRef1 chain[IR__MAX]; /* IR instruction skip-list chain anchors. */ 253 IRRef1 chain[IR__MAX]; /* IR instruction skip-list chain anchors. */
254 TRef slot[LJ_MAX_JSLOTS+LJ_STACK_EXTRA]; /* Stack slot map. */ 254 TRef slot[LJ_MAX_JSLOTS+LJ_STACK_EXTRA]; /* Stack slot map. */
255 SnapEntry frame[LJ_MAX_JFRAME+2]; /* Frame link stack. */
255 256
256 int32_t param[JIT_P__MAX]; /* JIT engine parameters. */ 257 int32_t param[JIT_P__MAX]; /* JIT engine parameters. */
257 258