diff options
author | Mike Pall <mike> | 2015-06-13 00:42:38 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2015-06-13 00:42:38 +0200 |
commit | fe565222a1cbf28fbae266da35c8a703fdcfa0dd (patch) | |
tree | c5c6ef8d8db3c842d35ef314d5dba50d3835cdff /src/lj_jit.h | |
parent | 26b95a90f5f76f8a726ad0954f29781bec8ccc05 (diff) | |
download | luajit-fe565222a1cbf28fbae266da35c8a703fdcfa0dd.tar.gz luajit-fe565222a1cbf28fbae266da35c8a703fdcfa0dd.tar.bz2 luajit-fe565222a1cbf28fbae266da35c8a703fdcfa0dd.zip |
Disable table allocation bump optimization (for now).
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index 69656568..1df56cae 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -393,7 +393,9 @@ typedef struct jit_State { | |||
393 | uint32_t penaltyslot; /* Round-robin index into penalty slots. */ | 393 | uint32_t penaltyslot; /* Round-robin index into penalty slots. */ |
394 | uint32_t prngstate; /* PRNG state. */ | 394 | uint32_t prngstate; /* PRNG state. */ |
395 | 395 | ||
396 | #ifdef LUAJIT_ENABLE_TABLE_BUMP | ||
396 | RBCHashEntry rbchash[RBCHASH_SLOTS]; /* Reverse bytecode map. */ | 397 | RBCHashEntry rbchash[RBCHASH_SLOTS]; /* Reverse bytecode map. */ |
398 | #endif | ||
397 | 399 | ||
398 | BPropEntry bpropcache[BPROP_SLOTS]; /* Backpropagation cache slots. */ | 400 | BPropEntry bpropcache[BPROP_SLOTS]; /* Backpropagation cache slots. */ |
399 | uint32_t bpropslot; /* Round-robin index into bpropcache slots. */ | 401 | uint32_t bpropslot; /* Round-robin index into bpropcache slots. */ |