about summary refs log tree commit diff stats
path: root/docs
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-02-19 23:54:00 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-02-19 23:54:00 +0100
commitd06ff478d188eb4a077041e4b2b628f75ed9eaf8 (patch)
treeafeb72b0d96281ae9f53497e86baf98fac718da9 /docs
parent83db04cdce694727c9b3bbb680b54feaae51d98a (diff)
downloadbox64-d06ff478d188eb4a077041e4b2b628f75ed9eaf8.tar.gz
box64-d06ff478d188eb4a077041e4b2b628f75ed9eaf8.zip
[DYNAREC] Introduced BOX64_DYNAREC_FASTPAGE to use an alternate way to handle HotPages (faster but crashy)
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/USAGE.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md
index 17fadb61..92913438 100755
--- a/docs/USAGE.md
+++ b/docs/USAGE.md
@@ -175,7 +175,12 @@ Optimisation of CALL/RET opcodes (not compatible with jit/dynarec/smc)
 #### BOX64_DYNAREC_HOTPAGE *

 Handling of HotPage (Page beeing both executed and writen)

 * 0 : Don't track hotpage

-* 1-255 : Trak HotPage, and disable execution of a page beeing writen for N attempts (default is 16)

+* 1-255 : Track HotPage, and disable execution of a page beeing writen for N attempts (default is 16)

+

+#### BOX64_DYNAREC_FASTPAGE *

+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)

 

 #### BOX64_DYNAREC_BLEEDING_EDGE *

 Detect MonoBleedingEdge and apply conservative settings