cs_op_count

Count the number of operands of a given type. Find the operand type in header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...)

NOTE: this API is only valid when detail option is ON (which is OFF by default)

@handle: handle returned by cs_open() @insn: disassembled instruction structure received from cs_disasm() or cs_disasm_iter() @op_type: Operand type to be found.

@return: number of operands of given type @op_type in instruction @insn, or -1 on failure.

extern (C)
int
cs_op_count
(
csh handle
,
const(cs_insn)* insn
,
uint op_type
)

Meta