mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-14 08:12:19 +00:00
Add libgultra_d
functions to ignored_funcs
(#60)
This commit is contained in:
parent
ecc9dc49e5
commit
16819a0515
1 changed files with 41 additions and 0 deletions
41
src/main.cpp
41
src/main.cpp
|
@ -369,6 +369,8 @@ std::unordered_set<std::string> ignored_funcs {
|
||||||
// exceptasm functions
|
// exceptasm functions
|
||||||
"__osExceptionPreamble",
|
"__osExceptionPreamble",
|
||||||
"__osException",
|
"__osException",
|
||||||
|
"__ptExceptionPreamble",
|
||||||
|
"__ptException",
|
||||||
"send_mesg",
|
"send_mesg",
|
||||||
"handle_CpU",
|
"handle_CpU",
|
||||||
"__osEnqueueAndYield",
|
"__osEnqueueAndYield",
|
||||||
|
@ -527,6 +529,45 @@ std::unordered_set<std::string> ignored_funcs {
|
||||||
"func_8025C29C",
|
"func_8025C29C",
|
||||||
"func_8025C240",
|
"func_8025C240",
|
||||||
"func_8025C288",
|
"func_8025C288",
|
||||||
|
|
||||||
|
// rmonregs
|
||||||
|
"LoadStoreSU",
|
||||||
|
"LoadStoreVU",
|
||||||
|
"SetUpForRCPop",
|
||||||
|
"CleanupFromRCPop",
|
||||||
|
"__rmonGetGRegisters",
|
||||||
|
"__rmonSetGRegisters",
|
||||||
|
"__rmonGetFRegisters",
|
||||||
|
"__rmonSetFRegisters",
|
||||||
|
"rmonGetRcpRegister",
|
||||||
|
"__rmonGetSRegs",
|
||||||
|
"__rmonSetSRegs",
|
||||||
|
"__rmonGetVRegs",
|
||||||
|
"__rmonSetVRegs",
|
||||||
|
"__rmonGetRegisterContents",
|
||||||
|
|
||||||
|
// rmonbrk
|
||||||
|
"SetTempBreakpoint",
|
||||||
|
"ClearTempBreakpoint",
|
||||||
|
"__rmonSetBreak",
|
||||||
|
"__rmonListBreak",
|
||||||
|
"__rmonClearBreak",
|
||||||
|
"__rmonGetBranchTarget",
|
||||||
|
"IsJump",
|
||||||
|
"__rmonSetSingleStep",
|
||||||
|
"__rmonGetExceptionStatus",
|
||||||
|
"rmonSendBreakMessage",
|
||||||
|
"__rmonHitBreak",
|
||||||
|
"__rmonHitSpBreak",
|
||||||
|
"__rmonHitCpuFault",
|
||||||
|
"rmonFindFaultedThreads",
|
||||||
|
|
||||||
|
// kdebugserver
|
||||||
|
"string_to_u32",
|
||||||
|
"send_packet",
|
||||||
|
"clear_IP6",
|
||||||
|
"send",
|
||||||
|
"kdebugserver",
|
||||||
};
|
};
|
||||||
|
|
||||||
std::unordered_set<std::string> renamed_funcs{
|
std::unordered_set<std::string> renamed_funcs{
|
||||||
|
|
Loading…
Add table
Reference in a new issue