diff options
author | Mike Pall <mike> | 2011-11-20 17:56:47 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-11-20 17:56:47 +0100 |
commit | f8a4769fb2bd398d526dfe0bdd6814875a2fa39e (patch) | |
tree | 23153ce6405908dd4c6d40d38749254e7ca0cc6e /src/lj_jit.h | |
parent | dc2a39e46d9498c475eaf9ad7c4a8ae61a73094a (diff) | |
download | luajit-f8a4769fb2bd398d526dfe0bdd6814875a2fa39e.tar.gz luajit-f8a4769fb2bd398d526dfe0bdd6814875a2fa39e.tar.bz2 luajit-f8a4769fb2bd398d526dfe0bdd6814875a2fa39e.zip |
Keep maximum frame extent in snap->topslot.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index e80547ab..11dc9737 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -138,9 +138,9 @@ typedef struct SnapShot { | |||
138 | uint16_t mapofs; /* Offset into snapshot map. */ | 138 | uint16_t mapofs; /* Offset into snapshot map. */ |
139 | IRRef1 ref; /* First IR ref for this snapshot. */ | 139 | IRRef1 ref; /* First IR ref for this snapshot. */ |
140 | uint8_t nslots; /* Number of valid slots. */ | 140 | uint8_t nslots; /* Number of valid slots. */ |
141 | uint8_t topslot; /* Maximum frame extent. */ | ||
141 | uint8_t nent; /* Number of compressed entries. */ | 142 | uint8_t nent; /* Number of compressed entries. */ |
142 | uint8_t count; /* Count of taken exits for this snapshot. */ | 143 | uint8_t count; /* Count of taken exits for this snapshot. */ |
143 | uint8_t unused; | ||
144 | } SnapShot; | 144 | } SnapShot; |
145 | 145 | ||
146 | #define SNAPCOUNT_DONE 255 /* Already compiled and linked a side trace. */ | 146 | #define SNAPCOUNT_DONE 255 /* Already compiled and linked a side trace. */ |