8266054: VectorAPI rotate operation optimization

Reviewed-by: psandoz, sviswanathan
This commit is contained in:
Jatin Bhateja 2021-07-28 02:18:17 +00:00
parent ed1cb24027
commit d994b93e21
57 changed files with 4380 additions and 219 deletions

View file

@ -70,6 +70,10 @@ public class VectorSupport {
public static final int VECTOR_OP_MASK_FIRSTTRUE = 20;
public static final int VECTOR_OP_MASK_LASTTRUE = 21;
// Rotate operations
public static final int VECTOR_OP_LROTATE = 22;
public static final int VECTOR_OP_RROTATE = 23;
// Math routines
public static final int VECTOR_OP_TAN = 101;
public static final int VECTOR_OP_TANH = 102;