Replace all gflag implementations with cvar implementations
This commit is contained in:
@@ -9,38 +9,42 @@
|
||||
|
||||
#include "xenia/cpu/cpu_flags.h"
|
||||
|
||||
DEFINE_string(cpu, "any", "CPU backend [any, x64].");
|
||||
DEFINE_string(cpu, "any", "CPU backend [any, x64].", "CPU");
|
||||
|
||||
DEFINE_string(
|
||||
load_module_map, "",
|
||||
"Loads a .map for symbol names and to diff with the generated symbol "
|
||||
"database.");
|
||||
"database.",
|
||||
"CPU");
|
||||
|
||||
DEFINE_bool(disassemble_functions, false,
|
||||
"Disassemble functions during generation.");
|
||||
"Disassemble functions during generation.", "CPU");
|
||||
|
||||
DEFINE_bool(trace_functions, false,
|
||||
"Generate tracing for function statistics.");
|
||||
DEFINE_bool(trace_functions, false, "Generate tracing for function statistics.",
|
||||
"CPU");
|
||||
DEFINE_bool(trace_function_coverage, false,
|
||||
"Generate tracing for function instruction coverage statistics.");
|
||||
"Generate tracing for function instruction coverage statistics.",
|
||||
"CPU");
|
||||
DEFINE_bool(trace_function_references, false,
|
||||
"Generate tracing for function address references.");
|
||||
"Generate tracing for function address references.", "CPU");
|
||||
DEFINE_bool(trace_function_data, false,
|
||||
"Generate tracing for function result data.");
|
||||
"Generate tracing for function result data.", "CPU");
|
||||
|
||||
DEFINE_bool(
|
||||
disable_global_lock, false,
|
||||
"Disables global lock usage in guest code. Does not affect host code.");
|
||||
"Disables global lock usage in guest code. Does not affect host code.",
|
||||
"CPU");
|
||||
|
||||
DEFINE_bool(validate_hir, false,
|
||||
"Perform validation checks on the HIR during compilation.");
|
||||
"Perform validation checks on the HIR during compilation.", "CPU");
|
||||
|
||||
// Breakpoints:
|
||||
DEFINE_uint64(break_on_instruction, 0,
|
||||
"int3 before the given guest address is executed.");
|
||||
DEFINE_int32(break_condition_gpr, -1, "GPR compared to");
|
||||
DEFINE_uint64(break_condition_value, 0, "value compared against");
|
||||
DEFINE_string(break_condition_op, "eq", "comparison operator");
|
||||
DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits");
|
||||
"int3 before the given guest address is executed.", "CPU");
|
||||
DEFINE_int32(break_condition_gpr, -1, "GPR compared to", "CPU");
|
||||
DEFINE_uint64(break_condition_value, 0, "value compared against", "CPU");
|
||||
DEFINE_string(break_condition_op, "eq", "comparison operator", "CPU");
|
||||
DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits", "CPU");
|
||||
|
||||
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.");
|
||||
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.",
|
||||
"CPU");
|
||||
|
||||
Reference in New Issue
Block a user