about summary refs log tree commit diff stats
path: root/docs
diff options
context:
space:
mode:
authorTristan Morgan <tristanmorgan@users.noreply.github.com>2024-01-02 18:09:04 +1100
committerGitHub <noreply@github.com>2024-01-02 08:09:04 +0100
commit499492e10ad36fb1780b438ecfabe409b57ae1c5 (patch)
tree979f6a5974d3852e247bb4cafbff6d9d07cdabe8 /docs
parent6e77ce999a49c85fb8a6dc378993d37c3557784c (diff)
downloadbox64-499492e10ad36fb1780b438ecfabe409b57ae1c5.tar.gz
box64-499492e10ad36fb1780b438ecfabe409b57ae1c5.zip
Remove FASTPAGE/HOTPAGE docs, related to #1180 (#1181)
Diffstat (limited to 'docs')
-rw-r--r--docs/USAGE.md10
-rw-r--r--docs/box64.pod14
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