| abs-accumulate| result += abs (src1, src2) |
| signed min | result = (src1 < src2) ? src1 : src2 use bitmanip |
| signed max | result = (src1 > src2) ? src1 : src2 use bitmanip |
-| bitwise sel | (a ? b : c) - use bitmanip ternary |
-| int/fp move | GPR(RT) = FPR(FRA) and FPR(FRT) = GPR(RA) |
+| bitwise sel | (a ? b : c) - use [[sv/bitmanip]] ternary |
+| int/fp move | covered by [[sv/int_fp_mv]] |
All other capabilities (saturate in particular) are achieved with [[sv/svp64]] modes and swizzle. Note that minmax and ternary are added in bitmanip.