|
|
|
@ -14,96 +14,28 @@
|
|
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
#include "core/memory.h"
|
|
|
|
|
|
|
|
|
|
#include "core/arm/dynarmic/arm_dynarmic_32.h"
|
|
|
|
|
#include "core/arm/dynarmic/arm_dynarmic_64.h"
|
|
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
|
|
constexpr u64 SEGMENT_BASE = 0x7100000000ull;
|
|
|
|
|
|
|
|
|
|
std::vector<ARM_Interface::BacktraceEntry> ARM_Interface::GetBacktraceFromContext(
|
|
|
|
|
System& system, const ThreadContext64& ctx) {
|
|
|
|
|
std::vector<BacktraceEntry> out;
|
|
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
|
|
|
|
|
auto fp = ctx.cpu_registers[29];
|
|
|
|
|
auto lr = ctx.cpu_registers[30];
|
|
|
|
|
while (true) {
|
|
|
|
|
out.push_back({
|
|
|
|
|
.module = "",
|
|
|
|
|
.address = 0,
|
|
|
|
|
.original_address = lr,
|
|
|
|
|
.offset = 0,
|
|
|
|
|
.name = {},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (fp == 0) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lr = memory.Read64(fp + 8) - 4;
|
|
|
|
|
fp = memory.Read64(fp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::map<VAddr, std::string> modules;
|
|
|
|
|
auto& loader{system.GetAppLoader()};
|
|
|
|
|
if (loader.ReadNSOModules(modules) != Loader::ResultStatus::Success) {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::map<std::string, Symbols::Symbols> symbols;
|
|
|
|
|
for (const auto& module : modules) {
|
|
|
|
|
symbols.insert_or_assign(module.second,
|
|
|
|
|
Symbols::GetSymbols(module.first, system.Memory(),
|
|
|
|
|
system.CurrentProcess()->Is64BitProcess()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (auto& entry : out) {
|
|
|
|
|
VAddr base = 0;
|
|
|
|
|
for (auto iter = modules.rbegin(); iter != modules.rend(); ++iter) {
|
|
|
|
|
const auto& module{*iter};
|
|
|
|
|
if (entry.original_address >= module.first) {
|
|
|
|
|
entry.module = module.second;
|
|
|
|
|
base = module.first;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
entry.offset = entry.original_address - base;
|
|
|
|
|
entry.address = SEGMENT_BASE + entry.offset;
|
|
|
|
|
|
|
|
|
|
if (entry.module.empty())
|
|
|
|
|
entry.module = "unknown";
|
|
|
|
|
|
|
|
|
|
const auto symbol_set = symbols.find(entry.module);
|
|
|
|
|
if (symbol_set != symbols.end()) {
|
|
|
|
|
const auto symbol = Symbols::GetSymbolName(symbol_set->second, entry.offset);
|
|
|
|
|
if (symbol.has_value()) {
|
|
|
|
|
// TODO(DarkLordZach): Add demangling of symbol names.
|
|
|
|
|
entry.name = *symbol;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
Core::System& system, const ARM_Interface::ThreadContext32& ctx) {
|
|
|
|
|
return ARM_Dynarmic_32::GetBacktraceFromContext(system, ctx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<ARM_Interface::BacktraceEntry> ARM_Interface::GetBacktrace() const {
|
|
|
|
|
std::vector<BacktraceEntry> out;
|
|
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
|
|
|
|
|
auto fp = GetReg(29);
|
|
|
|
|
auto lr = GetReg(30);
|
|
|
|
|
while (true) {
|
|
|
|
|
out.push_back({"", 0, lr, 0, ""});
|
|
|
|
|
if (!fp) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
lr = memory.Read64(fp + 8) - 4;
|
|
|
|
|
fp = memory.Read64(fp);
|
|
|
|
|
}
|
|
|
|
|
std::vector<ARM_Interface::BacktraceEntry> ARM_Interface::GetBacktraceFromContext(
|
|
|
|
|
Core::System& system, const ARM_Interface::ThreadContext64& ctx) {
|
|
|
|
|
return ARM_Dynarmic_64::GetBacktraceFromContext(system, ctx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ARM_Interface::SymbolicateBacktrace(Core::System& system, std::vector<BacktraceEntry>& out) {
|
|
|
|
|
std::map<VAddr, std::string> modules;
|
|
|
|
|
auto& loader{system.GetAppLoader()};
|
|
|
|
|
if (loader.ReadNSOModules(modules) != Loader::ResultStatus::Success) {
|
|
|
|
|
return {};
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::map<std::string, Symbols::Symbols> symbols;
|
|
|
|
@ -127,8 +59,9 @@ std::vector<ARM_Interface::BacktraceEntry> ARM_Interface::GetBacktrace() const {
|
|
|
|
|
entry.offset = entry.original_address - base;
|
|
|
|
|
entry.address = SEGMENT_BASE + entry.offset;
|
|
|
|
|
|
|
|
|
|
if (entry.module.empty())
|
|
|
|
|
if (entry.module.empty()) {
|
|
|
|
|
entry.module = "unknown";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const auto symbol_set = symbols.find(entry.module);
|
|
|
|
|
if (symbol_set != symbols.end()) {
|
|
|
|
@ -139,12 +72,10 @@ std::vector<ARM_Interface::BacktraceEntry> ARM_Interface::GetBacktrace() const {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ARM_Interface::LogBacktrace() const {
|
|
|
|
|
const VAddr sp = GetReg(13);
|
|
|
|
|
const VAddr sp = GetSP();
|
|
|
|
|
const VAddr pc = GetPC();
|
|
|
|
|
LOG_ERROR(Core_ARM, "Backtrace, sp={:016X}, pc={:016X}", sp, pc);
|
|
|
|
|
LOG_ERROR(Core_ARM, "{:20}{:20}{:20}{:20}{}", "Module Name", "Address", "Original Address",
|
|
|
|
|