Skip to content

Commit 86fed79

Browse files
author
Mandy Chung
committedJan 23, 2023
8300693: Lower the compile threshold and reduce the iterations of warmup loop in VarHandles tests
Reviewed-by: jvernee, dholmes, psandoz
1 parent 4525aa3 commit 86fed79

27 files changed

+172
-128
lines changed
 

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessBoolean.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessBoolean
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessBoolean
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessBoolean
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessBoolean
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessBoolean
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessBoolean
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessBoolean
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessBoolean
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessBoolean recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessByte.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessByte
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessByte
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessByte
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessByte
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessByte
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessByte
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessByte
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessByte
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessByte recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessChar.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessChar
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessChar
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessChar
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessChar
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessChar
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessChar
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessChar
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessChar
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessChar recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessDouble.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessDouble
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessDouble
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessDouble
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessDouble
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessDouble
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessDouble
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessDouble
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessDouble
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessDouble recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessFloat.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessFloat
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessFloat
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessFloat
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessFloat
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessFloat
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessFloat
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessFloat
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessFloat
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessFloat recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessInt.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessInt
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessInt
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessInt
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessInt
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessInt
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessInt
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessInt
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessInt
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessInt recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessLong.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessLong
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessLong
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessLong
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessLong
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessLong
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessLong
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessLong
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessLong
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessLong recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessShort.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessShort
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessShort
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessShort
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessShort
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessShort
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessShort
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessShort
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessShort
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -289,9 +293,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
289293
}
290294
}
291295

292-
293-
294-
295296
static void testInstanceFinalField(VarHandleTestAccessShort recv, VarHandle vh) {
296297
// Plain
297298
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessString.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessString
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccessString
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccessString
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccessString
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccessString
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccessString
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccessString
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccessString
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -296,9 +300,6 @@ public <T> void testAccess(String desc, AccessTestCase<T> atc) throws Throwable
296300
}
297301
}
298302

299-
300-
301-
302303
static void testInstanceFinalField(VarHandleTestAccessString recv, VarHandle vh) {
303304
// Plain
304305
{

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsChar.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsChar
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAsChar
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAsChar
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsChar
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAsChar
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAsChar
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsDouble.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsDouble
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAsDouble
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAsDouble
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsDouble
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAsDouble
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAsDouble
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsFloat.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsFloat
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAsFloat
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAsFloat
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsFloat
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAsFloat
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAsFloat
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsInt.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsInt
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAsInt
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAsInt
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsInt
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAsInt
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAsInt
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsLong.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsLong
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAsLong
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAsLong
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsLong
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAsLong
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAsLong
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsShort.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsShort
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAsShort
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAsShort
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAsShort
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAsShort
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAsShort
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessBoolean.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessBoolean
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessBoolean
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessByte.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessByte
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessByte
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessChar.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessChar
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessChar
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessDouble.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessDouble
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessDouble
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessFloat.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessFloat
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessFloat
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessInt.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessInt
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessInt
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessLong.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessLong
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessLong
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessShort.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessShort
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessShort
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessString.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccessString
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccessString
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

‎test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestAccess.java.template

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,10 +23,14 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccess$Type$
27-
* @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestAccess$Type$
28-
* @run testng/othervm -Diters=20000 VarHandleTestAccess$Type$
29-
* @run testng/othervm -Diters=20000 -XX:-TieredCompilation VarHandleTestAccess$Type$
26+
* @run testng/othervm -Diters=10 -Xint VarHandleTestAccess$Type$
27+
*
28+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
29+
* to hit compilation thresholds
30+
*
31+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestAccess$Type$
32+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestAccess$Type$
33+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestAccess$Type$
3034
*/
3135

3236
import org.testng.annotations.BeforeClass;
@@ -340,9 +344,6 @@ public class VarHandleTestAccess$Type$ extends VarHandleBaseTest {
340344
}
341345
}
342346

343-
344-
345-
346347
static void testInstanceFinalField(VarHandleTestAccess$Type$ recv, VarHandle vh) {
347348
// Plain
348349
{

‎test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestByteArrayView.java.template

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,9 +24,11 @@
2424
/*
2525
* @test
2626
* @bug 8154556
27-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAs$Type$
28-
* @run testng/othervm/timeout=360 -Diters=20000 VarHandleTestByteArrayAs$Type$
29-
* @run testng/othervm/timeout=360 -Diters=20000 -XX:-TieredCompilation VarHandleTestByteArrayAs$Type$
27+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
28+
* to hit compilation thresholds
29+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:TieredStopAtLevel=1 VarHandleTestByteArrayAs$Type$
30+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestByteArrayAs$Type$
31+
* @run testng/othervm/timeout=360 -Diters=2000 -XX:CompileThresholdScaling=0.1 -XX:-TieredCompilation VarHandleTestByteArrayAs$Type$
3032
*/
3133

3234
import org.testng.annotations.DataProvider;

‎test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestMethodHandleAccess.java.template

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @run testng/othervm -Diters=20000 VarHandleTestMethodHandleAccess$Type$
26+
* @comment Set CompileThresholdScaling to 0.1 so that the warmup loop sets to 2000 iterations
27+
* to hit compilation thresholds
28+
* @run testng/othervm -Diters=2000 -XX:CompileThresholdScaling=0.1 VarHandleTestMethodHandleAccess$Type$
2729
*/
2830

2931
import org.testng.annotations.BeforeClass;

0 commit comments

Comments
 (0)
Please sign in to comment.