| 299 | |
| 300 | |
| 301 | bool Architecture::GetInstructionLowLevelILCallback( |
| 302 | void* ctxt, const uint8_t* data, uint64_t addr, size_t* len, BNLowLevelILFunction* il) |
| 303 | { |
| 304 | CallbackRef<Architecture> arch(ctxt); |
| 305 | Ref<LowLevelILFunction> func(new LowLevelILFunction(BNNewLowLevelILFunctionReference(il))); |
| 306 | return arch->GetInstructionLowLevelIL(data, addr, *len, *func); |
| 307 | } |
| 308 | |
| 309 | |
| 310 | char* Architecture::GetRegisterNameCallback(void* ctxt, uint32_t reg) |
nothing calls this directly
no test coverage detected