| 25 | const size_t MAX_DEPTH = 1024; |
| 26 | |
| 27 | static u32 GuessEntry(DebugInterface* cpu, u32 pc) |
| 28 | { |
| 29 | FunctionInfo function = cpu->GetSymbolGuardian().FunctionOverlappingAddress(pc); |
| 30 | if (!function.address.valid()) |
| 31 | return INVALIDTARGET; |
| 32 | |
| 33 | return function.address.value; |
| 34 | } |
| 35 | |
| 36 | bool IsSWInstr(const R5900::OPCODE& op) |
| 37 | { |
no test coverage detected