8271366: [REDO] JDK-8266054 VectorAPI rotate operation optimization

Reviewed-by: sviswanathan, psandoz
This commit is contained in:
Jatin Bhateja 2021-08-13 04:33:53 +00:00
parent 4d4ba5c5b4
commit 020aec5318
57 changed files with 4376 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;