/* * Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /** * @test * @bug 7200264 * @summary 7192963 changes disabled shift vectors * @library /test/lib / * @run driver compiler.c2.cr7200264.TestIntVect */ package compiler.c2.cr7200264; import compiler.lib.ir_framework.*; /* * Based on test/hotspot/jtreg/compiler/c2/cr6340864/TestIntVect.java without performance tests. */ public class TestIntVect { private static final int ARRLEN = 997; private static final int ITERS = 11000; private static final int ADD_INIT = Integer.MAX_VALUE-500; private static final int BIT_MASK = 0xEC80F731; private static final int VALUE = 15; private static final int SHIFT = 32; public static void main(String[] args) { TestFramework.run(); } @Run(test = { "test_sum", "test_addc", "test_addv", "test_adda", "test_subc", "test_subv", "test_suba", "test_mulc", "test_mulc_n", "test_mulv", "test_mula", "test_divc", "test_divc_n", "test_divv", "test_diva", "test_andc", "test_andv", "test_anda", "test_orc", "test_orv", "test_ora", "test_xorc", "test_xorv", "test_xora", "test_sllc", "test_sllc_n", "test_sllc_o", "test_sllc_on", "test_sllv", "test_srlc", "test_srlc_n", "test_srlc_o", "test_srlc_on", "test_srlv", "test_srac", "test_srac_n", "test_srac_o", "test_srac_on", "test_srav", "test_pack2", "test_unpack2", "test_pack2_swap", "test_unpack2_swap" }, mode = RunMode.STANDALONE) public void run() { System.out.println("Testing Integer vectors"); // Initialize int[] a0 = new int[ARRLEN]; int[] a1 = new int[ARRLEN]; int[] a2 = new int[ARRLEN]; int[] a3 = new int[ARRLEN]; int[] a4 = new int[ARRLEN]; long[] p2 = new long[ARRLEN/2]; int gold_sum = 0; for (int i=0; i>>VALUE)); } test_srlv(a0, a1, VALUE); for (int i=0; i>>VALUE)); } test_srac(a0, a1); for (int i=0; i>VALUE)); } test_srav(a0, a1, VALUE); for (int i=0; i>VALUE)); } test_sllc_n(a0, a1); for (int i=0; i>>(-VALUE))); } test_srlv(a0, a1, -VALUE); for (int i=0; i>>(-VALUE))); } test_srac_n(a0, a1); for (int i=0; i>(-VALUE))); } test_srav(a0, a1, -VALUE); for (int i=0; i>(-VALUE))); } test_sllc_o(a0, a1); for (int i=0; i>>SHIFT)); } test_srlv(a0, a1, SHIFT); for (int i=0; i>>SHIFT)); } test_srac_o(a0, a1); for (int i=0; i>SHIFT)); } test_srav(a0, a1, SHIFT); for (int i=0; i>SHIFT)); } test_sllc_on(a0, a1); for (int i=0; i>>(-SHIFT))); } test_srlv(a0, a1, -SHIFT); for (int i=0; i>>(-SHIFT))); } test_srac_on(a0, a1); for (int i=0; i>(-SHIFT))); } test_srav(a0, a1, -SHIFT); for (int i=0; i>(-SHIFT))); } test_pack2(p2, a1); for (int i=0; i 0) { throw new Error("FAILED: " + errn + " errors"); } System.out.println("PASSED"); } // Not vectorized: simple addition not profitable, see JDK-8307516. NOTE: // This check does not document the _desired_ behavior of the system but // the current behavior (no vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) int test_sum(int[] a1) { int sum = 0; for (int i = 0; i < a1.length; i+=1) { sum += a1[i]; } return sum; } @Test @IR(counts = { IRNode.ADD_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_addc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]+VALUE); } } @Test @IR(counts = { IRNode.ADD_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_addv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]+b); } } @Test @IR(counts = { IRNode.ADD_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_adda(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]+a2[i]); } } @Test @IR(counts = { IRNode.ADD_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_subc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]-VALUE); } } @Test @IR(counts = { IRNode.SUB_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_subv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]-b); } } @Test @IR(counts = { IRNode.SUB_VI, "> 0", }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_suba(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]-a2[i]); } } @Test @IR(counts = { IRNode.SUB_VI, "> 0", IRNode.LSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_mulc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]*VALUE); } } @Test @IR(counts = { IRNode.SUB_VI, "> 0", IRNode.LSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_mulc_n(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]*(-VALUE)); } } @Test @IR(counts = { IRNode.MUL_VI, "> 0" }, applyIfCPUFeatureOr = {"sse4.1", "true", "asimd", "true"}) void test_mulv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]*b); } } @Test @IR(counts = { IRNode.MUL_VI, "> 0" }, applyIfCPUFeatureOr = {"sse4.1", "true", "asimd", "true"}) void test_mula(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]*a2[i]); } } @Test @IR(counts = { IRNode.ADD_VI, IRNode.VECTOR_SIZE + "min(max_int, max_long)", "> 0", IRNode.RSHIFT_VI, IRNode.VECTOR_SIZE + "min(max_int, max_long)", "> 0", IRNode.SUB_VI, IRNode.VECTOR_SIZE + "min(max_int, max_long)", "> 0" }, applyIfCPUFeatureOr = {"avx2", "true", "sve", "true", "rvv", "true"}) // Not vectorized: On aarch64, vectorization for this example results in // MulVL nodes, which asimd does not support. @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0", IRNode.MUL_L, "> 0" }, applyIfCPUFeatureAnd = {"asimd", "true", "sve", "false"}) void test_divc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]/VALUE); } } @Test @IR(counts = { IRNode.ADD_VI, IRNode.VECTOR_SIZE + "min(max_int, max_long)", "> 0", IRNode.RSHIFT_VI, IRNode.VECTOR_SIZE + "min(max_int, max_long)", "> 0", IRNode.SUB_VI, IRNode.VECTOR_SIZE + "min(max_int, max_long)", "> 0" }, applyIfCPUFeatureOr = {"avx2", "true", "sve", "true", "rvv", "true"}) // Not vectorized: On aarch64, vectorization for this example results in // MulVL nodes, which asimd does not support. @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0", IRNode.MUL_L, "> 0" }, applyIfCPUFeatureAnd = {"asimd", "true", "sve", "false"}) void test_divc_n(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]/(-VALUE)); } } // Not vectorized: no vector div. NOTE: This check does not document the // _desired_ behavior of the system but the current behavior (no // vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) void test_divv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]/b); } } // Not vectorized: no vector div. NOTE: This check does not document the // _desired_ behavior of the system but the current behavior (no // vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) void test_diva(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]/a2[i]); } } @Test @IR(counts = { IRNode.AND_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_andc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]&BIT_MASK); } } @Test @IR(counts = { IRNode.AND_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_andv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]&b); } } @Test @IR(counts = { IRNode.AND_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_anda(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]&a2[i]); } } @Test @IR(counts = { IRNode.OR_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_orc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]|BIT_MASK); } } @Test @IR(counts = { IRNode.OR_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_orv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]|b); } } @Test @IR(counts = { IRNode.OR_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_ora(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]|a2[i]); } } @Test @IR(counts = { IRNode.XOR_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_xorc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]^BIT_MASK); } } @Test @IR(counts = { IRNode.XOR_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_xorv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]^b); } } @Test @IR(counts = { IRNode.XOR_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true"}) void test_xora(int[] a0, int[] a1, int[] a2) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]^a2[i]); } } @Test @IR(counts = { IRNode.LSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_sllc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]< 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_sllc_n(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]<<(-VALUE)); } } // Vector shift not expected as shift is a NOP. @Test @IR(counts = { IRNode.LSHIFT_VI, "= 0", IRNode.LOAD_VECTOR_I, "> 0", IRNode.STORE_VECTOR, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_sllc_o(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]< 0", IRNode.STORE_VECTOR, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_sllc_on(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]<<(-SHIFT)); } } @Test @IR(counts = { IRNode.LSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_sllv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]< 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srlc(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>>VALUE); } } @Test @IR(counts = { IRNode.URSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srlc_n(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>>(-VALUE)); } } // Vector shift not expected as shift is a NOP. @Test @IR(counts = { IRNode.URSHIFT_VI, "= 0", IRNode.LOAD_VECTOR_I, "> 0", IRNode.STORE_VECTOR, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srlc_o(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>>SHIFT); } } // Vector shift not expected as shift is a NOP. @Test @IR(counts = { IRNode.URSHIFT_VI, "= 0", IRNode.LOAD_VECTOR_I, "> 0", IRNode.STORE_VECTOR, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srlc_on(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>>(-SHIFT)); } } @Test @IR(counts = { IRNode.URSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srlv(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>>b); } } @Test @IR(counts = { IRNode.RSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srac(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>VALUE); } } @Test @IR(counts = { IRNode.RSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srac_n(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>(-VALUE)); } } // Vector shift not expected as shift is a NOP. @Test @IR(counts = { IRNode.RSHIFT_VI, "= 0", IRNode.LOAD_VECTOR_I, "> 0", IRNode.STORE_VECTOR, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srac_o(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>SHIFT); } } // Vector shift not expected as shift is a NOP. @Test @IR(counts = { IRNode.RSHIFT_VI, "= 0", IRNode.LOAD_VECTOR_I, "> 0", IRNode.STORE_VECTOR, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srac_on(int[] a0, int[] a1) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>(-SHIFT)); } } @Test @IR(counts = { IRNode.RSHIFT_VI, "> 0" }, applyIfCPUFeatureOr = {"sse2", "true", "asimd", "true", "rvv", "true"}) void test_srav(int[] a0, int[] a1, int b) { for (int i = 0; i < a0.length; i+=1) { a0[i] = (int)(a1[i]>>b); } } // Not vectorized currently. NOTE: This check does not document the // _desired_ behavior of the system but the current behavior (no // vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) void test_pack2(long[] p2, int[] a1) { if (p2.length*2 > a1.length) return; for (int i = 0; i < p2.length; i+=1) { long l0 = (long)a1[i*2+0]; long l1 = (long)a1[i*2+1]; p2[i] = (l1 << 32) | (l0 & 0xFFFFFFFFl); } } // Not vectorized currently. NOTE: This check does not document the // _desired_ behavior of the system but the current behavior (no // vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) void test_unpack2(int[] a0, long[] p2) { if (p2.length*2 > a0.length) return; for (int i = 0; i < p2.length; i+=1) { long l = p2[i]; a0[i*2+0] = (int)(l & 0xFFFFFFFFl); a0[i*2+1] = (int)(l >> 32); } } // Not vectorized currently. NOTE: This check does not document the // _desired_ behavior of the system but the current behavior (no // vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) void test_pack2_swap(long[] p2, int[] a1) { if (p2.length*2 > a1.length) return; for (int i = 0; i < p2.length; i+=1) { long l0 = (long)a1[i*2+0]; long l1 = (long)a1[i*2+1]; p2[i] = (l0 << 32) | (l1 & 0xFFFFFFFFl); } } // Not vectorized currently. NOTE: This check does not document the // _desired_ behavior of the system but the current behavior (no // vectorization) @Test @IR(counts = { IRNode.LOAD_VECTOR_I, "= 0", IRNode.STORE_VECTOR, "= 0" }) void test_unpack2_swap(int[] a0, long[] p2) { if (p2.length*2 > a0.length) return; for (int i = 0; i < p2.length; i+=1) { long l = p2[i]; a0[i*2+0] = (int)(l >> 32); a0[i*2+1] = (int)(l & 0xFFFFFFFFl); } } static int verify(String text, int i, int elem, int val) { if (elem != val) { System.err.println(text + "[" + i + "] = " + elem + " != " + val); return 1; } return 0; } static int verify(String text, int i, long elem, long val) { if (elem != val) { System.err.println(text + "[" + i + "] = " + Long.toHexString(elem) + " != " + Long.toHexString(val)); return 1; } return 0; } }