Skip to content

Commit 1900317

Browse files
committed
8370263: [lworld] Fix compile commands after JDK-8369437
Reviewed-by: thartmann
1 parent b5e30d5 commit 1900317

File tree

4 files changed

+52
-50
lines changed

4 files changed

+52
-50
lines changed

test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestC2CCalls.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
4444
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
4545
* -XX:-UseBimorphicInlining -Xbatch
46-
* -XX:CompileCommand=compileonly,TestC2CCalls*::test*
47-
* -XX:CompileCommand=dontinline,TestC2CCalls*::test*
46+
* -XX:CompileCommand=compileonly,*TestC2CCalls*::test*
47+
* -XX:CompileCommand=dontinline,*TestC2CCalls*::test*
4848
* compiler.valhalla.inlinetypes.TestC2CCalls
4949
*/
5050

@@ -58,8 +58,8 @@
5858
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
5959
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
6060
* -XX:-UseBimorphicInlining -Xbatch -XX:-ProfileInterpreter
61-
* -XX:CompileCommand=compileonly,TestC2CCalls*::test*
62-
* -XX:CompileCommand=dontinline,TestC2CCalls*::test*
61+
* -XX:CompileCommand=compileonly,*TestC2CCalls*::test*
62+
* -XX:CompileCommand=dontinline,*TestC2CCalls*::test*
6363
* compiler.valhalla.inlinetypes.TestC2CCalls
6464
*/
6565

@@ -73,8 +73,8 @@
7373
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
7474
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
7575
* -XX:-UseBimorphicInlining -Xbatch
76-
* -XX:CompileCommand=compileonly,TestC2CCalls::test*
77-
* -XX:CompileCommand=dontinline,TestC2CCalls*::test*
76+
* -XX:CompileCommand=compileonly,*TestC2CCalls::test*
77+
* -XX:CompileCommand=dontinline,*TestC2CCalls*::test*
7878
* compiler.valhalla.inlinetypes.TestC2CCalls
7979
*/
8080

@@ -88,8 +88,8 @@
8888
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
8989
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
9090
* -XX:-UseBimorphicInlining -Xbatch -XX:-ProfileInterpreter
91-
* -XX:CompileCommand=compileonly,TestC2CCalls::test*
92-
* -XX:CompileCommand=dontinline,TestC2CCalls*::test*
91+
* -XX:CompileCommand=compileonly,*TestC2CCalls::test*
92+
* -XX:CompileCommand=dontinline,*TestC2CCalls*::test*
9393
* compiler.valhalla.inlinetypes.TestC2CCalls
9494
*/
9595

test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestOopsInReturnConvention.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
3131
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
3232
* -Xbatch -XX:-TieredCompilation
33-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
34-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
33+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
34+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
3535
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention Interpreted
3636
*/
3737

@@ -44,8 +44,8 @@
4444
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
4545
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
4646
* -Xbatch
47-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
48-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
47+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
48+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
4949
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention C1
5050
*/
5151

@@ -58,8 +58,8 @@
5858
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
5959
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
6060
* -Xbatch
61-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
62-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
61+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
62+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
6363
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention C2
6464
*/
6565

@@ -73,8 +73,8 @@
7373
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
7474
* -Xbatch -XX:-TieredCompilation
7575
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressCallingConvention
76-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
77-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
76+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
77+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
7878
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention Interpreted
7979
*/
8080

@@ -87,8 +87,8 @@
8787
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
8888
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
8989
* -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:+StressCallingConvention
90-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
91-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
90+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
91+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
9292
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention C1
9393
*/
9494

@@ -101,8 +101,8 @@
101101
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
102102
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
103103
* -Xbatch -XX:-TieredCompilation -XX:+IgnoreUnrecognizedVMOptions -XX:+StressCallingConvention
104-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
105-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
104+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
105+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
106106
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention C2
107107
*/
108108

@@ -116,8 +116,8 @@
116116
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
117117
* -Xbatch -XX:-TieredCompilation
118118
* -XX:+IgnoreUnrecognizedVMOptions -XX:-PreloadClasses
119-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
120-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
119+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
120+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
121121
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention Interpreted
122122
*/
123123

@@ -131,8 +131,8 @@
131131
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
132132
* -Xbatch
133133
* -XX:+IgnoreUnrecognizedVMOptions -XX:-PreloadClasses
134-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
135-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
134+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
135+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
136136
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention C1
137137
*/
138138

@@ -146,8 +146,8 @@
146146
* @run main/othervm/timeout=300 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
147147
* -Xbatch -XX:-TieredCompilation
148148
* -XX:+IgnoreUnrecognizedVMOptions -XX:-PreloadClasses
149-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention::callee
150-
* -XX:CompileCommand=dontinline,TestOopsInReturnConvention*::verify
149+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::callee
150+
* -XX:CompileCommand=dontinline,*TestOopsInReturnConvention*::verify
151151
* compiler.valhalla.inlinetypes.TestOopsInReturnConvention C2
152152
*/
153153

test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestUnloadedInlineTypeArray.java

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
* @modules java.base/jdk.internal.value
4545
* java.base/jdk.internal.vm.annotation
4646
* @run main/othervm -Xcomp -XX:-UseArrayFlattening
47-
* -XX:CompileCommand=compileonly,TestUnloadedInlineTypeArray::test*
48-
* TestUnloadedInlineTypeArray
47+
* -XX:CompileCommand=compileonly,*TestUnloadedInlineTypeArray::test*
48+
* compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
4949
*/
5050

5151
/*
@@ -56,7 +56,7 @@
5656
* @enablePreview
5757
* @modules java.base/jdk.internal.value
5858
* java.base/jdk.internal.vm.annotation
59-
* @run main/othervm -Xcomp TestUnloadedInlineTypeArray
59+
* @run main/othervm -Xcomp compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
6060
*/
6161

6262
/*
@@ -68,7 +68,7 @@
6868
* @modules java.base/jdk.internal.value
6969
* java.base/jdk.internal.vm.annotation
7070
* @run main/othervm -Xcomp -XX:-UseArrayFlattening
71-
* TestUnloadedInlineTypeArray
71+
* compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
7272
*/
7373

7474
/*
@@ -80,8 +80,8 @@
8080
* @modules java.base/jdk.internal.value
8181
* java.base/jdk.internal.vm.annotation
8282
* @run main/othervm -Xcomp -XX:-TieredCompilation
83-
* -XX:CompileCommand=compileonly,TestUnloadedInlineTypeArray::test*
84-
* TestUnloadedInlineTypeArray
83+
* -XX:CompileCommand=compileonly,*TestUnloadedInlineTypeArray::test*
84+
* compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
8585
*/
8686

8787
/*
@@ -93,8 +93,8 @@
9393
* @modules java.base/jdk.internal.value
9494
* java.base/jdk.internal.vm.annotation
9595
* @run main/othervm -Xcomp -XX:-TieredCompilation -XX:-UseArrayFlattening
96-
* -XX:CompileCommand=compileonly,TestUnloadedInlineTypeArray::test*
97-
* TestUnloadedInlineTypeArray
96+
* -XX:CompileCommand=compileonly,*TestUnloadedInlineTypeArray::test*
97+
* compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
9898
*/
9999

100100
/*
@@ -106,7 +106,7 @@
106106
* @modules java.base/jdk.internal.value
107107
* java.base/jdk.internal.vm.annotation
108108
* @run main/othervm -Xcomp -XX:-TieredCompilation
109-
* TestUnloadedInlineTypeArray
109+
* compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
110110
*/
111111

112112
/*
@@ -118,9 +118,11 @@
118118
* @modules java.base/jdk.internal.value
119119
* java.base/jdk.internal.vm.annotation
120120
* @run main/othervm -Xcomp -XX:-TieredCompilation -XX:-UseArrayFlattening
121-
* TestUnloadedInlineTypeArray
121+
* compiler.valhalla.inlinetypes.TestUnloadedInlineTypeArray
122122
*/
123123

124+
package compiler.valhalla.inlinetypes;
125+
124126
import jdk.test.lib.Asserts;
125127

126128
import jdk.internal.value.ValueClass;

test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestVirtualThreads.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @build jdk.test.whitebox.WhiteBox
3131
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
3232
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
33-
* compiler.valhalla.inlinetypes.TestVirtualThreads
33+
* compiler.valhalla.inlinetypes.TestVirtualThreads
3434
*/
3535

3636
/*
@@ -42,8 +42,8 @@
4242
* @build jdk.test.whitebox.WhiteBox
4343
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
4444
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
45-
* -Xbatch -XX:CompileCommand=compileonly,TestVirtualThreads*::*
46-
* compiler.valhalla.inlinetypes.TestVirtualThreads
45+
* -Xbatch -XX:CompileCommand=compileonly,*TestVirtualThreads*::*
46+
* compiler.valhalla.inlinetypes.TestVirtualThreads
4747
*/
4848

4949
/*
@@ -55,7 +55,7 @@
5555
* @build jdk.test.whitebox.WhiteBox
5656
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
5757
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
58-
* -Xbatch -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
58+
* -Xbatch -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
5959
* compiler.valhalla.inlinetypes.TestVirtualThreads
6060
*/
6161

@@ -69,7 +69,7 @@
6969
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
7070
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
7171
* -Xbatch -XX:CompileCommand=dontinline,*::dontinline
72-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
72+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
7373
* -XX:CompileCommand=dontinline,*::test*
7474
* compiler.valhalla.inlinetypes.TestVirtualThreads
7575
*/
@@ -84,7 +84,7 @@
8484
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
8585
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
8686
* -Xbatch -XX:CompileCommand=dontinline,*::dontinline
87-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
87+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
8888
* -XX:CompileCommand=dontinline,*::*Helper
8989
* compiler.valhalla.inlinetypes.TestVirtualThreads
9090
*/
@@ -99,7 +99,7 @@
9999
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
100100
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
101101
* -Xbatch -XX:CompileCommand=dontinline,*::dontinline
102-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
102+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
103103
* -XX:CompileCommand=exclude,*::*Helper
104104
* compiler.valhalla.inlinetypes.TestVirtualThreads
105105
*/
@@ -113,7 +113,7 @@
113113
* @build jdk.test.whitebox.WhiteBox
114114
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
115115
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
116-
* -Xcomp -XX:CompileCommand=compileonly,TestVirtualThreads*::*
116+
* -Xcomp -XX:CompileCommand=compileonly,*TestVirtualThreads*::*
117117
* compiler.valhalla.inlinetypes.TestVirtualThreads
118118
*/
119119

@@ -126,7 +126,7 @@
126126
* @build jdk.test.whitebox.WhiteBox
127127
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
128128
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
129-
* -Xcomp -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
129+
* -Xcomp -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
130130
* compiler.valhalla.inlinetypes.TestVirtualThreads
131131
*/
132132

@@ -140,7 +140,7 @@
140140
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
141141
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
142142
* -Xcomp -XX:CompileCommand=dontinline,*::dontinline
143-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
143+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
144144
* -XX:CompileCommand=dontinline,*::test*
145145
* compiler.valhalla.inlinetypes.TestVirtualThreads
146146
*/
@@ -155,7 +155,7 @@
155155
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
156156
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
157157
* -Xcomp -XX:CompileCommand=dontinline,*::dontinline
158-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
158+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
159159
* -XX:CompileCommand=dontinline,*::*Helper
160160
* compiler.valhalla.inlinetypes.TestVirtualThreads
161161
*/
@@ -170,7 +170,7 @@
170170
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
171171
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
172172
* -Xcomp -XX:CompileCommand=dontinline,*::dontinline
173-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::test*
173+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::test*
174174
* -XX:CompileCommand=exclude,*::*Helper
175175
* compiler.valhalla.inlinetypes.TestVirtualThreads
176176
*/
@@ -185,7 +185,7 @@
185185
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
186186
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
187187
* -Xbatch -XX:CompileCommand=dontinline,*::*
188-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::*
188+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::*
189189
* compiler.valhalla.inlinetypes.TestVirtualThreads 250000
190190
*/
191191

@@ -199,7 +199,7 @@
199199
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
200200
* @run main/othervm/timeout=600 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
201201
* -Xcomp -XX:CompileCommand=dontinline,*::*
202-
* -XX:CompileCommand=compileonly,TestVirtualThreads*::*
202+
* -XX:CompileCommand=compileonly,*TestVirtualThreads*::*
203203
* compiler.valhalla.inlinetypes.TestVirtualThreads 250000
204204
*/
205205

0 commit comments

Comments
 (0)