diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2020-07-11 14:26:36 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2020-07-11 14:34:09 +0100 |
commit | 0193202964449ba7a6ae46d614a63bf5caa589a7 (patch) | |
tree | f762a6569bf1a0e6240e76657fe387d006c3dc71 /src/core/settings.h | |
parent | a0ee597b19482ce4bfc6231ad54666e2a7f894b5 (diff) |
configuration: Add settings to enable/disable specific CPU optimizations
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 850ca4072..c081c083f 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -427,6 +427,16 @@ struct Values { // Core Setting<bool> use_multi_core; + // Cpu + bool cpuopt_page_tables; + bool cpuopt_block_linking; + bool cpuopt_return_stack_buffer; + bool cpuopt_fast_dispatcher; + bool cpuopt_context_elimination; + bool cpuopt_const_prop; + bool cpuopt_misc_ir; + bool cpuopt_reduce_misalign_checks; + // Renderer Setting<RendererBackend> renderer_backend; bool renderer_debug; @@ -505,7 +515,6 @@ struct Values { bool dump_nso; bool reporting_services; bool quest_flag; - bool disable_cpu_opt; bool disable_macro_jit; // Misceallaneous |