mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "ARMv7Module.h"
|
||
|
|
|
||
|
|
// Get function name by FNID
|
||
|
|
extern std::string arm_get_function_name(const std::string& module, u32 fnid)
|
||
|
|
{
|
||
|
|
// Check registered functions
|
||
|
|
if (const auto sm = arm_module_manager::get_module(module))
|
||
|
|
{
|
||
|
|
const auto found = sm->functions.find(fnid);
|
||
|
|
|
||
|
|
if (found != sm->functions.end())
|
||
|
|
{
|
||
|
|
return found->second.name;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return fmt::format("0x%08X", fnid);
|
||
|
|
}
|
||
|
|
|
||
|
|
// Get variable name by VNID
|
||
|
|
extern std::string arm_get_variable_name(const std::string& module, u32 vnid)
|
||
|
|
{
|
||
|
|
// Check registered variables
|
||
|
|
if (const auto sm = arm_module_manager::get_module(module))
|
||
|
|
{
|
||
|
|
const auto found = sm->variables.find(vnid);
|
||
|
|
|
||
|
|
if (found != sm->variables.end())
|
||
|
|
{
|
||
|
|
return found->second.name;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return fmt::format("0x%08X", vnid);
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 arm_error_code::report(s32 error, const char* text)
|
||
|
|
{
|
||
|
|
if (auto thread = get_current_cpu_thread())
|
||
|
|
{
|
||
|
|
if (thread->type == cpu_type::arm)
|
||
|
|
{
|
||
|
|
if (auto func = static_cast<ARMv7Thread*>(thread)->last_function)
|
||
|
|
{
|
||
|
|
LOG_ERROR(ARMv7, "Function '%s' failed with 0x%08x : %s", func, error, text);
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
LOG_ERROR(ARMv7, "Unknown function failed with 0x%08x : %s", error, text);
|
||
|
|
}
|
||
|
|
|
||
|
|
return error;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
LOG_ERROR(ARMv7, "Illegal call to ppu_report_error(0x%x, '%s')!");
|
||
|
|
return error;
|
||
|
|
}
|