summaryrefslogtreecommitdiffstats
path: root/src/yuzu_tester
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2020-07-11 15:26:36 +0200
committerMerryMage <MerryMage@users.noreply.github.com>2020-07-11 15:34:09 +0200
commit0193202964449ba7a6ae46d614a63bf5caa589a7 (patch)
treef762a6569bf1a0e6240e76657fe387d006c3dc71 /src/yuzu_tester
parentMerge pull request #4203 from VolcaEM/services (diff)
downloadyuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.tar
yuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.tar.gz
yuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.tar.bz2
yuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.tar.lz
yuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.tar.xz
yuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.tar.zst
yuzu-0193202964449ba7a6ae46d614a63bf5caa589a7.zip
Diffstat (limited to 'src/yuzu_tester')
-rw-r--r--src/yuzu_tester/default_ini.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/yuzu_tester/default_ini.h b/src/yuzu_tester/default_ini.h
index 41bbbbf60..3eb64e9d7 100644
--- a/src/yuzu_tester/default_ini.h
+++ b/src/yuzu_tester/default_ini.h
@@ -12,6 +12,39 @@ const char* sdl2_config_file = R"(
# 0 (default): Disabled, 1: Enabled
use_multi_core=
+[Cpu]
+# Enable inline page tables optimization (faster guest memory access)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_page_tables =
+
+# Enable block linking CPU optimization (reduce block dispatcher use during predictable jumps)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_block_linking =
+
+# Enable return stack buffer CPU optimization (reduce block dispatcher use during predictable returns)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_return_stack_buffer =
+
+# Enable fast dispatcher CPU optimization (use a two-tiered dispatcher architecture)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_fast_dispatcher =
+
+# Enable context elimination CPU Optimization (reduce host memory use for guest context)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_context_elimination =
+
+# Enable constant propagation CPU optimization (basic IR optimization)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_const_prop =
+
+# Enable miscellaneous CPU optimizations (basic IR optimization)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_misc_ir =
+
+# Enable reduction of memory misalignment checks (reduce memory fallbacks for misaligned access)
+# 0: Disabled, 1 (default): Enabled
+cpuopt_reduce_misalign_checks =
+
[Renderer]
# Whether to use software or hardware rendering.
# 0: Software, 1 (default): Hardware