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

Function get_accum_array

arch/arm64/disassembler/format.c:463–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

461}
462
463uint32_t get_accum_array(const InstructionOperand *operand, char *outBuffer, uint32_t outBufferSize)
464{
465 if(snprintf(outBuffer, outBufferSize, "ZA[%s, #%" PRIu64 "]",
466 get_register_name(operand->reg[0]), operand->immediate
467 ) >= outBufferSize)
468 return FAILED_TO_DISASSEMBLE_OPERAND;
469
470 return DISASM_SUCCESS;
471}
472
473//-----------------------------------------------------------------------------
474// disassemble (decoded Instruction -> string)

Callers 1

aarch64_disassembleFunction · 0.85

Calls 1

get_register_nameFunction · 0.70

Tested by

no test coverage detected