capstone
capstone copied to clipboard
How to determine whether the CS_GRP_JUMP is a conditional jump or unconditional jump??
There is no general way to determine this currently. It depends on the arch. If you need to know this for ARM you can check the conditional code via cs_arm->cc
.
For PPC you can check cs_ppc->bc
. Check for similar members for other archs.