Merge pull request #4009 from ogniK5377/macro-jit-prod

video_core: Implement Macro JIT
This commit is contained in:
bunnei 2020-06-04 11:40:52 -04:00 committed by GitHub
commit 34d4abc4f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1043 additions and 188 deletions

View file

@ -432,6 +432,8 @@ void Config::ReadValues() {
Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false);
Settings::values.disable_cpu_opt =
sdl2_config->GetBoolean("Debugging", "disable_cpu_opt", false);
Settings::values.disable_macro_jit =
sdl2_config->GetBoolean("Debugging", "disable_macro_jit", false);
const auto title_list = sdl2_config->Get("AddOns", "title_ids", "");
std::stringstream ss(title_list);

View file

@ -291,6 +291,8 @@ quest_flag =
# Determines whether or not JIT CPU optimizations are enabled
# false: Optimizations Enabled, true: Optimizations Disabled
disable_cpu_opt =
# Enables/Disables the macro JIT compiler
disable_macro_jit=false
[WebService]
# Whether or not to enable telemetry