a73c06de2a
Co-authored-by: yulei <lei.yul@alibaba-inc.com> Reviewed-by: thartmann, kvn
91 lines
2.6 KiB
Java
91 lines
2.6 KiB
Java
/*
|
|
* Copyright (c) 2021, Alibaba Group Holding Limited. 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
|
|
* @key randomness
|
|
* @bug 8273021
|
|
* @summary C2: Improve Add and Xor ideal optimizations
|
|
* @library /test/lib
|
|
* @run main/othervm -XX:-TieredCompilation
|
|
* -XX:CompileCommand=dontinline,compiler.c2.TestAddXorIdeal::test*
|
|
* compiler.c2.TestAddXorIdeal
|
|
*/
|
|
package compiler.c2;
|
|
|
|
import java.util.Random;
|
|
|
|
import jdk.test.lib.Asserts;
|
|
import jdk.test.lib.Utils;
|
|
|
|
public class TestAddXorIdeal {
|
|
|
|
public static int test1(int x) {
|
|
return ~x + 1;
|
|
}
|
|
|
|
public static int test2(int x) {
|
|
return ~(x - 1);
|
|
}
|
|
|
|
public static long test3(long x) {
|
|
return ~x + 1L;
|
|
}
|
|
|
|
public static long test4(long x) {
|
|
return ~(x - 1L);
|
|
}
|
|
|
|
public static int test5(int x) {
|
|
return 1 + ~x;
|
|
}
|
|
|
|
public static int test6(int x) {
|
|
return ~(-1 + x);
|
|
}
|
|
|
|
public static long test7(long x) {
|
|
return 1L + ~x;
|
|
}
|
|
|
|
public static long test8(long x) {
|
|
return ~(-1L + x);
|
|
}
|
|
|
|
public static void main(String... args) {
|
|
Random random = Utils.getRandomInstance();
|
|
for (int i = 0; i < 50_000; i++) {
|
|
int a = random.nextInt();
|
|
long b = random.nextLong();
|
|
Asserts.assertTrue(test1(a) == -a);
|
|
Asserts.assertTrue(test2(a) == -a);
|
|
Asserts.assertTrue(test3(b) == -b);
|
|
Asserts.assertTrue(test4(b) == -b);
|
|
Asserts.assertTrue(test5(a) == -a);
|
|
Asserts.assertTrue(test6(a) == -a);
|
|
Asserts.assertTrue(test7(b) == -b);
|
|
Asserts.assertTrue(test8(b) == -b);
|
|
}
|
|
}
|
|
} |