more tests

This commit is contained in:
tstuefe 2025-11-17 15:29:29 +01:00
parent 90bc506742
commit 6f2bfbdebd
6 changed files with 1 additions and 126 deletions

View File

@ -34,10 +34,6 @@
* @run main/othervm -XX:CompileCommand=compileonly,compiler.arraycopy.TestObjectArrayClone::testClone*
* -XX:CompileCommand=compileonly,jdk.internal.reflect.GeneratedMethodAccessor*::invoke
* compiler.arraycopy.TestObjectArrayClone
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE -Xmx128m
* -XX:CompileCommand=compileonly,compiler.arraycopy.TestObjectArrayClone::testClone*
* -XX:CompileCommand=compileonly,jdk.internal.reflect.GeneratedMethodAccessor*::invoke
* compiler.arraycopy.TestObjectArrayClone
* @run main/othervm -Xbatch -XX:-UseTypeProfile
* -XX:CompileCommand=compileonly,compiler.arraycopy.TestObjectArrayClone::testClone*
* -XX:CompileCommand=compileonly,jdk.internal.reflect.GeneratedMethodAccessor*::invoke

View File

@ -25,8 +25,7 @@
* @test
* @bug 8160591
* @summary C1-generated code for System.arraycopy() does not throw an ArrayStoreException if 'dst' is no a "proper" array (i.e., it is java.lang.Object)
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xcomp -XX:-USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE -XX:CompileOnly=TestArrayCopyToFromObject::test TestArrayCopyToFromObject
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xcomp -XX:+USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE -XX:CompileOnly=TestArrayCopyToFromObject::test TestArrayCopyToFromObject
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xcomp -XX:CompileOnly=TestArrayCopyToFromObject::test TestArrayCopyToFromObject
*/
public class TestArrayCopyToFromObject {

View File

@ -1,63 +0,0 @@
/*
* Copyright (c) 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 8330795
* @summary Check that Reduce Allocation Merges doesn't crash when CompressedClassPointers
* is disabled and there is an access to Klass "field" through the phi.
* @requires vm.bits == 64 & vm.flagless & vm.compiler2.enabled & vm.opt.final.EliminateAllocations
* @run main/othervm -XX:CompileCommand=dontinline,*TestReduceAllocationAndLoadKlass*::test
* -XX:CompileCommand=compileonly,*TestReduceAllocationAndLoadKlass*::test
* -XX:CompileCommand=compileonly,*Shape*::*init*
* -XX:CompileCommand=compileonly,*Point*::*init*
* -XX:CompileCommand=exclude,*TestReduceAllocationAndLoadKlass*::dummy
* -XX:-TieredCompilation
* -XX:-USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE
* -Xbatch
* -Xcomp
* compiler.c2.TestReduceAllocationAndLoadKlass
*/
package compiler.c2;
public class TestReduceAllocationAndLoadKlass {
public static void main(String[] args) {
Point p = new Point();
Line q = new Line();
test(true);
test(false);
}
static Class test(boolean cond) {
Object p = cond ? dummy() : new Line();
return p.getClass();
}
static Point dummy() { return new Point(); }
static class Shape { }
static class Point extends Shape { }
static class Line extends Shape { }
}

View File

@ -159,7 +159,6 @@ public class GetResolvedJavaTypeTest {
/* a compressed parameter for tested method is set to false because
unsafe.getKlassPointer always returns uncompressed pointer */
private static final boolean COMPRESSED = false;
// = WB.getBooleanVMFlag("USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE");
private static long getPtrToKlass() {
Field field;

View File

@ -30,9 +30,6 @@
* @run main/othervm -XX:-TieredCompilation -XX:-UseOnStackReplacement -XX:-BackgroundCompilation
* -XX:CompileOnly=TestCheckCastPPBecomesTOP::test1 -XX:LoopMaxUnroll=0
* -XX:CompileCommand=dontinline,TestCheckCastPPBecomesTOP::notInlined -XX:+UseParallelGC TestCheckCastPPBecomesTOP
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -XX:-UseOnStackReplacement -XX:-BackgroundCompilation
* -XX:CompileOnly=TestCheckCastPPBecomesTOP::test1 -XX:LoopMaxUnroll=0
* -XX:CompileCommand=dontinline,TestCheckCastPPBecomesTOP::notInlined -XX:+UseParallelGC -XX:-USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE TestCheckCastPPBecomesTOP
*
*/

View File

@ -1,53 +0,0 @@
/*
* Copyright (c) 2013, 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.
*/
package gc.arguments;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.Platform;
/*
* @test
* @bug 8015107
* @summary Tests that VM prints a warning when -XX:CompressedClassSpaceSize
* is used together with -XX:-USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE
* @library /test/lib
* @library /
* @modules java.base/jdk.internal.misc
* java.management
* @requires vm.opt.CompressedClassSpaceSize == null & vm.opt.USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE == null
* @run driver gc.arguments.TestCompressedClassFlags
*/
public class TestCompressedClassFlags {
public static void main(String[] args) throws Exception {
if (Platform.is64bit()) {
OutputAnalyzer output = GCArguments.executeTestJava(
"-XX:CompressedClassSpaceSize=1g",
"-XX:-USE_COMPRESSED_CLASS_POINTERS_ALWAYS_TRUE",
"-version");
output.shouldContain("warning");
output.shouldNotContain("error");
output.shouldHaveExitValue(0);
}
}
}