diff options
author | Mike Pall <mike> | 2010-02-23 18:27:39 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-02-23 19:41:32 +0100 |
commit | 8ae2f9feaaed874e01a87df6646242b80acceabb (patch) | |
tree | 0c0e030b007a4ef5b663476f4142f1f860ee3675 /src/lj_traceerr.h | |
parent | d5c8fe4b90c54cbd03924d3eaf04d83dcf2f3cb8 (diff) | |
download | luajit-8ae2f9feaaed874e01a87df6646242b80acceabb.tar.gz luajit-8ae2f9feaaed874e01a87df6646242b80acceabb.tar.bz2 luajit-8ae2f9feaaed874e01a87df6646242b80acceabb.zip |
Randomize penalties for aborts and add blacklisting.
Diffstat (limited to '')
-rw-r--r-- | src/lj_traceerr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_traceerr.h b/src/lj_traceerr.h index abc53024..db7668fe 100644 --- a/src/lj_traceerr.h +++ b/src/lj_traceerr.h | |||
@@ -10,13 +10,13 @@ TREDEF(RECERR, "error thrown or hook called during recording") | |||
10 | TREDEF(TRACEOV, "trace too long") | 10 | TREDEF(TRACEOV, "trace too long") |
11 | TREDEF(STACKOV, "trace too deep") | 11 | TREDEF(STACKOV, "trace too deep") |
12 | TREDEF(SNAPOV, "too many snapshots") | 12 | TREDEF(SNAPOV, "too many snapshots") |
13 | TREDEF(BLACKL, "blacklisted") | ||
13 | TREDEF(NYIBC, "NYI: bytecode %d") | 14 | TREDEF(NYIBC, "NYI: bytecode %d") |
14 | 15 | ||
15 | /* Recording loop ops. */ | 16 | /* Recording loop ops. */ |
16 | TREDEF(LLEAVE, "leaving loop in root trace") | 17 | TREDEF(LLEAVE, "leaving loop in root trace") |
17 | TREDEF(LINNER, "inner loop in root trace") | 18 | TREDEF(LINNER, "inner loop in root trace") |
18 | TREDEF(LUNROLL, "loop unroll limit reached") | 19 | TREDEF(LUNROLL, "loop unroll limit reached") |
19 | TREDEF(LBLACKL, "blacklisted loop") | ||
20 | 20 | ||
21 | /* Recording calls/returns. */ | 21 | /* Recording calls/returns. */ |
22 | TREDEF(BADTYPE, "bad argument type") | 22 | TREDEF(BADTYPE, "bad argument type") |