MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / GetInstructionInfoCallback

Method GetInstructionInfoCallback

architecture.cpp:255–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253
254
255bool 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
268bool Architecture::GetInstructionTextCallback(

Callers

nothing calls this directly

Calls 1

GetInstructionInfoMethod · 0.45

Tested by

no test coverage detected