mirror of
https://github.com/Mr-Wiseguy/N64Recomp.git
synced 2025-01-15 11:05:22 +00:00
Add more renamed_funcs
(#35)
This commit is contained in:
parent
d4fab15fcc
commit
5d46de6de0
51
src/main.cpp
51
src/main.cpp
|
@ -505,6 +505,9 @@ std::unordered_set<std::string> ignored_funcs {
|
||||||
"__divdi3",
|
"__divdi3",
|
||||||
"__udivdi3",
|
"__udivdi3",
|
||||||
"__umoddi3",
|
"__umoddi3",
|
||||||
|
"div64_64",
|
||||||
|
"div64_32",
|
||||||
|
"__moddi3",
|
||||||
// ido math routines
|
// ido math routines
|
||||||
"__ll_div",
|
"__ll_div",
|
||||||
"__ll_lshift",
|
"__ll_lshift",
|
||||||
|
@ -534,15 +537,25 @@ std::unordered_set<std::string> ignored_funcs {
|
||||||
};
|
};
|
||||||
|
|
||||||
std::unordered_set<std::string> renamed_funcs{
|
std::unordered_set<std::string> renamed_funcs{
|
||||||
|
// Math
|
||||||
"sincosf",
|
"sincosf",
|
||||||
"sinf",
|
"sinf",
|
||||||
"cosf",
|
"cosf",
|
||||||
"__sinf",
|
"__sinf",
|
||||||
"__cosf",
|
"__cosf",
|
||||||
|
"asinf",
|
||||||
|
"acosf",
|
||||||
|
"atanf",
|
||||||
|
"atan2f",
|
||||||
|
"tanf",
|
||||||
"sqrt",
|
"sqrt",
|
||||||
"sqrtf",
|
"sqrtf",
|
||||||
|
|
||||||
|
// Memory
|
||||||
"memcpy",
|
"memcpy",
|
||||||
"memset",
|
"memset",
|
||||||
|
"memmove",
|
||||||
|
"memcmp",
|
||||||
"strcmp",
|
"strcmp",
|
||||||
"strcat",
|
"strcat",
|
||||||
"strcpy",
|
"strcpy",
|
||||||
|
@ -553,8 +566,12 @@ std::unordered_set<std::string> renamed_funcs{
|
||||||
"bzero",
|
"bzero",
|
||||||
"bcopy",
|
"bcopy",
|
||||||
"bcmp",
|
"bcmp",
|
||||||
|
|
||||||
|
// long jumps
|
||||||
"setjmp",
|
"setjmp",
|
||||||
"longjmp",
|
"longjmp",
|
||||||
|
|
||||||
|
// Math 2
|
||||||
"ldiv",
|
"ldiv",
|
||||||
"lldiv",
|
"lldiv",
|
||||||
"ceil",
|
"ceil",
|
||||||
|
@ -562,6 +579,8 @@ std::unordered_set<std::string> renamed_funcs{
|
||||||
"floor",
|
"floor",
|
||||||
"floorf",
|
"floorf",
|
||||||
"fmodf",
|
"fmodf",
|
||||||
|
"fmod",
|
||||||
|
"modf",
|
||||||
"lround",
|
"lround",
|
||||||
"lroundf",
|
"lroundf",
|
||||||
"nearbyint",
|
"nearbyint",
|
||||||
|
@ -570,11 +589,43 @@ std::unordered_set<std::string> renamed_funcs{
|
||||||
"roundf",
|
"roundf",
|
||||||
"trunc",
|
"trunc",
|
||||||
"truncf",
|
"truncf",
|
||||||
|
|
||||||
|
// printf family
|
||||||
"vsprintf",
|
"vsprintf",
|
||||||
|
"gcvt",
|
||||||
|
"fcvt",
|
||||||
|
"ecvt",
|
||||||
|
|
||||||
"__assert",
|
"__assert",
|
||||||
|
|
||||||
|
// allocations
|
||||||
"malloc",
|
"malloc",
|
||||||
"free",
|
"free",
|
||||||
"realloc",
|
"realloc",
|
||||||
|
"calloc",
|
||||||
|
|
||||||
|
// rand
|
||||||
|
"rand",
|
||||||
|
"srand",
|
||||||
|
"random",
|
||||||
|
|
||||||
|
// gzip
|
||||||
|
"huft_build",
|
||||||
|
"huft_free",
|
||||||
|
"inflate_codes",
|
||||||
|
"inflate_stored",
|
||||||
|
"inflate_fixed",
|
||||||
|
"inflate_dynamic",
|
||||||
|
"inflate_block",
|
||||||
|
"inflate",
|
||||||
|
"expand_gzip",
|
||||||
|
"auRomDataRead"
|
||||||
|
"data_write",
|
||||||
|
"unzip",
|
||||||
|
"updcrc",
|
||||||
|
"clear_bufs",
|
||||||
|
"fill_inbuf",
|
||||||
|
"flush_window",
|
||||||
};
|
};
|
||||||
|
|
||||||
bool read_symbols(RecompPort::Context& context, const ELFIO::elfio& elf_file, ELFIO::section* symtab_section, uint32_t entrypoint, bool has_entrypoint, bool use_absolute_symbols) {
|
bool read_symbols(RecompPort::Context& context, const ELFIO::elfio& elf_file, ELFIO::section* symtab_section, uint32_t entrypoint, bool has_entrypoint, bool use_absolute_symbols) {
|
||||||
|
|
Loading…
Reference in a new issue