Conditional Operations
Many branches are very short, e.g.:
IF A<0 THEN A = -A;
Would normally be a short branch but can be a conditional operation
Avoids delay of fetching a branch target, and also reduces number of branches that need prediction
<BACK
INDEX
NEXT>