diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-06-19 11:07:21 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-06-19 11:07:30 +0200 |
| commit | 725316a5386eb713438625220b561bcd3710c8bc (patch) | |
| tree | 3535222fdd3ec0c8b601df98006fa1736e9fb047 /docs/gen/usage.json | |
| parent | cc9ed708379b9b03e7a9b86f040f06f178606aef (diff) | |
| download | box64-725316a5386eb713438625220b561bcd3710c8bc.tar.gz box64-725316a5386eb713438625220b561bcd3710c8bc.zip | |
[DYNACACHE] Introduced DynaCache for ARM64 (disabled by default)
Diffstat (limited to 'docs/gen/usage.json')
| -rw-r--r-- | docs/gen/usage.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/docs/gen/usage.json b/docs/gen/usage.json index b6c9a1e2..2d77737f 100644 --- a/docs/gen/usage.json +++ b/docs/gen/usage.json @@ -802,6 +802,50 @@ ] }, { + "name": "BOX64_DYNACACHE", + "description": "Enable/disable the Dynamic Recompiler Cache (a.k.a DynaCache). This option defaults to 0. Not all architecture support DynaCache yet (it will have no effect then). DynaCache write file to home folder, and can grow without limit", + "category": "Performance", + "wine": false, + "options": [ + { + "key": "0", + "description": "Disable DynaCache.", + "default": true + }, + { + "key": "1", + "description": "Enable DynaCache.", + "default": false + } + ] + }, + { + "name": "BOX64_DYNACACHE_FOLDER", + "description": "Set the folder for DynaCache files. Default is in XDG_CACHE_HOME/box64 or, it does not exist in HOME/.cache/box64", + "category": "Performance", + "wine": false, + "options": [ + { + "key": "XXXX", + "description": "Use folder XXXX for DynaCache files.", + "default": false + } + ] + }, + { + "name": "BOX64_DYNACACHE_MIN", + "description": "Minimum size, in KB, for a DynaCache to be written to disk. Default size is 350KB", + "category": "Performance", + "wine": false, + "options": [ + { + "key": "XXXX", + "description": "Set a minimum size of XXXX KB of Dynarec code to write the dynacache to disk. Will not be saved to disk else.", + "default": false + } + ] + }, + { "name": "BOX64_EMULATED_LIBS", "description": "Force the use of emulated libraries.", "category": "Libraries", |