diff --git a/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp b/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp index 34fdb4c691..725bc23985 100644 --- a/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp +++ b/Source/Core/Core/Debugger/Debugger_SymbolMap.cpp @@ -97,28 +97,6 @@ bool GetCallstack(std::vector& output) return true; } -void PrintCallstack() -{ - fmt::print("== STACK TRACE - SP = {:08x} ==", PowerPC::ppcState.gpr[1]); - - if (LR == 0) - { - fmt::print(" LR = 0 - this is bad"); - } - - if (g_symbolDB.GetDescription(PC) != g_symbolDB.GetDescription(LR)) - { - fmt::print(" * {} [ LR = {:08x} ]", g_symbolDB.GetDescription(LR), LR); - } - - WalkTheStack([](u32 func_addr) { - std::string func_desc = g_symbolDB.GetDescription(func_addr); - if (func_desc.empty() || func_desc == "Invalid") - func_desc = "(unknown)"; - fmt::print(" * {} [ addr = {:08x} ]", func_desc, func_addr); - }); -} - void PrintCallstack(Common::Log::LOG_TYPE type, Common::Log::LOG_LEVELS level) { GENERIC_LOG_FMT(type, level, "== STACK TRACE - SP = {:08x} ==", PowerPC::ppcState.gpr[1]); diff --git a/Source/Core/Core/Debugger/Debugger_SymbolMap.h b/Source/Core/Core/Debugger/Debugger_SymbolMap.h index cbceab8ae6..a8c3cd854d 100644 --- a/Source/Core/Core/Debugger/Debugger_SymbolMap.h +++ b/Source/Core/Core/Debugger/Debugger_SymbolMap.h @@ -19,7 +19,6 @@ struct CallstackEntry }; bool GetCallstack(std::vector& output); -void PrintCallstack(); void PrintCallstack(Common::Log::LOG_TYPE type, Common::Log::LOG_LEVELS level); void PrintDataBuffer(Common::Log::LOG_TYPE type, const u8* data, size_t size, std::string_view title); diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp index 32b4eb09cc..9d110ffddd 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp @@ -340,7 +340,7 @@ void Interpreter::unknown_instruction(UGeckoInstruction inst) const u32 opcode = PowerPC::HostRead_U32(last_pc); const std::string disasm = Common::GekkoDisassembler::Disassemble(opcode, last_pc); NOTICE_LOG_FMT(POWERPC, "Last PC = {:08x} : {}", last_pc, disasm); - Dolphin_Debugger::PrintCallstack(); + Dolphin_Debugger::PrintCallstack(Common::Log::POWERPC, Common::Log::LNOTICE); NOTICE_LOG_FMT( POWERPC, "\nIntCPU: Unknown instruction {:08x} at PC = {:08x} last_PC = {:08x} LR = {:08x}\n",