diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-10-17 18:25:16 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-10-17 18:25:16 +0200 |
| commit | 6ef2b22a3ce4aaf5df5069dab226c1eeab806b19 (patch) | |
| tree | f55bcee33bd10845d34de282f23cfeb1f7bb1507 /docs | |
| parent | da19b2008a8e4afc75ec46a43453dcc93256d48e (diff) | |
| download | box64-6ef2b22a3ce4aaf5df5069dab226c1eeab806b19.tar.gz box64-6ef2b22a3ce4aaf5df5069dab226c1eeab806b19.zip | |
[ARM64_DYNAREC] Added support for BOX4_DYNAREC_ALIGNED_ATOMICS
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/USAGE.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index e2b6075e..cc28b570 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -195,6 +195,11 @@ 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) +* 1 : Generated code only for aligned atomics (faster and less code generated, but will SEGBUS if LOCK prefix is unsed on unaligned data) + #### BOX64_DYNAREC_BLEEDING_EDGE * Detect MonoBleedingEdge and apply conservative settings * 0 : Don't detect MonoBleedingEdge |