| 253 | |
| 254 | |
| 255 | bool Architecture::GetInstructionInfoCallback( |
| 256 | void* ctxt, const uint8_t* data, uint64_t addr, size_t maxLen, BNInstructionInfo* result) |
| 257 | { |
| 258 | CallbackRef<Architecture> arch(ctxt); |
| 259 | |
| 260 | InstructionInfo info; |
| 261 | info.delaySlots = result->delaySlots; |
| 262 | bool ok = arch->GetInstructionInfo(data, addr, maxLen, info); |
| 263 | *result = info; |
| 264 | return ok; |
| 265 | } |
| 266 | |
| 267 | |
| 268 | bool Architecture::GetInstructionTextCallback( |
nothing calls this directly
no test coverage detected