summaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2010-02-03 14:55:56 +0100
committerMike Pall <mike>2010-02-03 14:55:56 +0100
commit318e86c7eb53999783c0c4a3c6796d1a723dd024 (patch)
tree2f7521d190121fbf2fcbc8c15290fcd66434b45b /src/lj_jit.h
parentc1c9abeab7f3716dda213c6048344e1bf4f58486 (diff)
downloadluajit-318e86c7eb53999783c0c4a3c6796d1a723dd024.tar.gz
luajit-318e86c7eb53999783c0c4a3c6796d1a723dd024.tar.bz2
luajit-318e86c7eb53999783c0c4a3c6796d1a723dd024.zip
Clean up frame depth checks and loop detection.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index 35595cd5..1e029182 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -231,6 +231,7 @@ typedef struct jit_State {
231 int32_t loopunroll; /* Unroll counter for loop ops in side traces. */ 231 int32_t loopunroll; /* Unroll counter for loop ops in side traces. */
232 int32_t tailcalled; /* Number of successive tailcalls. */ 232 int32_t tailcalled; /* Number of successive tailcalls. */
233 int32_t framedepth; /* Current frame depth. */ 233 int32_t framedepth; /* Current frame depth. */
234 int32_t retdepth; /* Return frame depth (count of RETF). */
234 235
235 MRef knum; /* Pointer to chained array of KNUM constants. */ 236 MRef knum; /* Pointer to chained array of KNUM constants. */
236 237