blob: b6ae41e97d013ffb3b84a7ded27011738ff7ebda [file] [log] [blame]
/*
* Copyright (c) 2015, 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 8140574
* @summary Verify proper re-execution of checks after merging of uncommon traps
*
* @run main/othervm -Xcomp -XX:-TieredCompilation
* -XX:CompileCommand=compileonly,compiler.rangechecks.TestUncommonTrapMerging::test*
* compiler.rangechecks.TestUncommonTrapMerging Test1
* @run main/othervm -XX:CompileCommand=compileonly,compiler.rangechecks.TestUncommonTrapMerging::test*
* compiler.rangechecks.TestUncommonTrapMerging Test2
*/
package compiler.rangechecks;
public class TestUncommonTrapMerging {
public static void main(String[] args) throws Throwable {
if (args.length < 1) {
throw new RuntimeException("Not enough arguments!");
}
TestUncommonTrapMerging mytest = new TestUncommonTrapMerging();
String testcase = args[0];
if (testcase.equals("Test1")) {
try {
// '42' should hit the 'arg > 0' check
mytest.test(42);
} catch (OutOfMemoryError e) {
// expected
}
} else if (testcase.equals("Test2")) {
// Compile test2 with uncommon traps at path 1 and path 2
for (int i = 0; i < 100_000; i++) {
mytest.test2(-1, 0);
}
// Compile test3 which inlines test2 with uncommon traps at
// path 1 and path 2. Because test3 always passes 'value = 1',
// C2 will remove the 'value > 0' check and then merge the two
// uncommon traps.
for (int i = 0; i < 100_000; i++) {
mytest.test3(0);
}
// This should return through path 2
if (!mytest.test3(42)) {
throw new RuntimeException("test2 returned through wrong path!");
}
}
}
public void test(int arg) throws Throwable {
// The following two checks should not be merged if the
// uncommon trap of the dominating if has 'Reason_unloaded'
// because we need to re-execute both checks after deopt.
if (arg < 0) {
throw new RuntimeException("Should not reach here");
} else if (arg > 0) {
throw new OutOfMemoryError();
}
throw new RuntimeException("Should not reach here");
}
public boolean test2(int arg, int value) {
if (arg < 0) {
if (value > 0) {
// path 1
return false;
}
} else if (arg > 0) {
// path 2
return true;
}
// path 3
return false;
}
public boolean test3(int arg) {
int i;
for (i = 0; i < 1; ++i) { }
// i == 1
return test2(arg, i);
}
}