diff options
author | Mike Pall <mike> | 2013-12-25 02:55:25 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2013-12-25 02:55:25 +0100 |
commit | b5d741fa7e11a2a58df65f3c71489c58f8758f75 (patch) | |
tree | 3c33ec24c8fd363ca2ce797c998b21a8a0e39a5b /src/lj_traceerr.h | |
parent | 6e02c210c485791a5451cc74731acf319b2067bb (diff) | |
download | luajit-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.h | 3 |
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. */ |
9 | TREDEF(RECERR, "error thrown or hook called during recording") | 9 | TREDEF(RECERR, "error thrown or hook called during recording") |
10 | TREDEF(TRACEUV, "trace too short") | ||
10 | TREDEF(TRACEOV, "trace too long") | 11 | TREDEF(TRACEOV, "trace too long") |
11 | TREDEF(STACKOV, "trace too deep") | 12 | TREDEF(STACKOV, "trace too deep") |
12 | TREDEF(SNAPOV, "too many snapshots") | 13 | TREDEF(SNAPOV, "too many snapshots") |
@@ -23,8 +24,6 @@ TREDEF(BADTYPE, "bad argument type") | |||
23 | TREDEF(CJITOFF, "JIT compilation disabled for function") | 24 | TREDEF(CJITOFF, "JIT compilation disabled for function") |
24 | TREDEF(CUNROLL, "call unroll limit reached") | 25 | TREDEF(CUNROLL, "call unroll limit reached") |
25 | TREDEF(DOWNREC, "down-recursion, restarting") | 26 | TREDEF(DOWNREC, "down-recursion, restarting") |
26 | TREDEF(NYICF, "NYI: C function %p") | ||
27 | TREDEF(NYIFF, "NYI: FastFunc %s") | ||
28 | TREDEF(NYIFFU, "NYI: unsupported variant of FastFunc %s") | 27 | TREDEF(NYIFFU, "NYI: unsupported variant of FastFunc %s") |
29 | TREDEF(NYIRETL, "NYI: return to lower frame") | 28 | TREDEF(NYIRETL, "NYI: return to lower frame") |
30 | 29 | ||