summaryrefslogtreecommitdiff
path: root/src/lj_traceerr.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-12-25 02:55:25 +0100
committerMike Pall <mike>2013-12-25 02:55:25 +0100
commitb5d741fa7e11a2a58df65f3c71489c58f8758f75 (patch)
tree3c33ec24c8fd363ca2ce797c998b21a8a0e39a5b /src/lj_traceerr.h
parent6e02c210c485791a5451cc74731acf319b2067bb (diff)
downloadluajit-b5d741fa7e11a2a58df65f3c71489c58f8758f75.tar.gz
luajit-b5d741fa7e11a2a58df65f3c71489c58f8758f75.tar.bz2
luajit-b5d741fa7e11a2a58df65f3c71489c58f8758f75.zip
Add trace stitching.
Diffstat (limited to 'src/lj_traceerr.h')
-rw-r--r--src/lj_traceerr.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lj_traceerr.h b/src/lj_traceerr.h
index 8f463ca6..2546fc8f 100644
--- a/src/lj_traceerr.h
+++ b/src/lj_traceerr.h
@@ -7,6 +7,7 @@
7 7
8/* Recording. */ 8/* Recording. */
9TREDEF(RECERR, "error thrown or hook called during recording") 9TREDEF(RECERR, "error thrown or hook called during recording")
10TREDEF(TRACEUV, "trace too short")
10TREDEF(TRACEOV, "trace too long") 11TREDEF(TRACEOV, "trace too long")
11TREDEF(STACKOV, "trace too deep") 12TREDEF(STACKOV, "trace too deep")
12TREDEF(SNAPOV, "too many snapshots") 13TREDEF(SNAPOV, "too many snapshots")
@@ -23,8 +24,6 @@ TREDEF(BADTYPE, "bad argument type")
23TREDEF(CJITOFF, "JIT compilation disabled for function") 24TREDEF(CJITOFF, "JIT compilation disabled for function")
24TREDEF(CUNROLL, "call unroll limit reached") 25TREDEF(CUNROLL, "call unroll limit reached")
25TREDEF(DOWNREC, "down-recursion, restarting") 26TREDEF(DOWNREC, "down-recursion, restarting")
26TREDEF(NYICF, "NYI: C function %p")
27TREDEF(NYIFF, "NYI: FastFunc %s")
28TREDEF(NYIFFU, "NYI: unsupported variant of FastFunc %s") 27TREDEF(NYIFFU, "NYI: unsupported variant of FastFunc %s")
29TREDEF(NYIRETL, "NYI: return to lower frame") 28TREDEF(NYIRETL, "NYI: return to lower frame")
30 29