< prev index next >

test/compiler/c2/TestMultiplyLongHiZero.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 24,38 **** /* * @test * @bug 6921969 * @summary Tests shorter long multiply sequences when the high 32 bits of long operands are known to be zero on x86_32 ! * @run main/othervm -Xbatch -XX:-Inline -XX:CompileOnly=.testNormal,.testLeftOptimized,.testRightOptimized,.testOptimized,.testLeftOptimized_LoadUI2L,.testRightOptimized_LoadUI2L,.testOptimized_LoadUI2L TestMultiplyLongHiZero */ ! // This test must run without any command line arguments. public class TestMultiplyLongHiZero { private static void check(long leftFactor, long rightFactor, long optimizedProduct, long constantProduct) { long normalProduct = leftFactor * rightFactor; // unaffected by the new optimization if (optimizedProduct != constantProduct || normalProduct != constantProduct) { --- 24,47 ---- /* * @test * @bug 6921969 * @summary Tests shorter long multiply sequences when the high 32 bits of long operands are known to be zero on x86_32 ! * @run main/othervm -Xbatch -XX:-Inline ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testNormal ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testLeftOptimized ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testRightOptimized ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testOptimized ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testLeftOptimized_LoadUI2L ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testRightOptimized_LoadUI2L ! * -XX:CompileCommand=compileonly,compiler.c2.TestMultiplyLongHiZero::testOptimized_LoadUI2L ! * compiler.c2.TestMultiplyLongHiZero */ ! package compiler.c2; + // This test must run without any command line arguments. public class TestMultiplyLongHiZero { private static void check(long leftFactor, long rightFactor, long optimizedProduct, long constantProduct) { long normalProduct = leftFactor * rightFactor; // unaffected by the new optimization if (optimizedProduct != constantProduct || normalProduct != constantProduct) {
< prev index next >