diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/USAGE.md | 10 | ||||
| -rw-r--r-- | docs/box64.pod | 14 |
2 files changed, 0 insertions, 24 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 5d3d0772..790669e0 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -186,16 +186,6 @@ Optimisation of CALL/RET opcodes (not compatible with jit/dynarec/smc) * 0 : Don't optimize CALL/RET, use Jump Table for boths * 1 : Try to optimized CALL/RET, skipping the use of the JumpTable when possible (Default) -#### BOX64_DYNAREC_HOTPAGE * -Handling of HotPage (Page being both executed and written) -* 0 : Don't track hotpage (Default) -* 1-255 : Track HotPage, and disable execution of a page being written for N attempts - -#### BOX64_DYNAREC_FASTPAGE * -Will use a faster handling of HotPage (Page being both executed and written) -* 0 : use regular hotpage (Default) -* 1 : Use faster hotpage, taking the risk of running obsolete JIT code (might be faster, but more prone to crash) - #### BOX64_DYNAREC_ALIGNED_ATOMICS * Generated code for aligned atomics only * 0 : The code generated can handle unaligned atomics (Default) diff --git a/docs/box64.pod b/docs/box64.pod index 3da39c71..ef046593 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -334,20 +334,6 @@ Optimisation of CALL/RET opcodes (not compatible with jit/dynarec/smc) * 0 : Don't optimize CALL/RET, use Jump Table for boths (Default) * 1 : Try to optimized CALL/RET, skipping the use of the JumpTable when possible (will crash if blacks are invalidate, so probably incompatible with JIT/Dynarec) -=item B<BOX64_DYNAREC_HOTPAGE>=I<0|1-255> - -Handling of HotPage (Page beeing both executed and writen) - - * 0 : Don't track hotpage - * 1-255 : Track HotPage, and disable execution of a page beeing writen for N attempts (default is 4) - -=item B<BOX64_DYNAREC_FASTPAGE>=I<0|1> - -Will use a faster handling of HotPage (Page beeing both executed and writen) - - * 0 : use regular hotpage (Default) - * 1 : Use faster hotpage, taking the risk of running obsolete JIT code (might be faster, but more prone to crash) - =item B<BOX64_DYNAREC_BLEEDING_EDGE>=I<0|1> Detect MonoBleedingEdge and apply conservative settings |