Skip to content

Commit 7ae3038

Browse files
author
SendaoYan
committedMar 27, 2025
8342958: Use jvmArgs consistently in microbenchmarks
8343345: Use -jvmArgsPrepend when running microbenchmarks in RunTests.gmk Reviewed-by: phh Backport-of: 90bd544512de541cd98889bec58f419bc69a723d
1 parent bdc3a33 commit 7ae3038

File tree

94 files changed

+119
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+119
-119
lines changed
 

‎make/RunTests.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ define SetupRunMicroTestBody
602602
$1_JMH_JVM_ARGS += $$(MICRO_VM_OPTIONS) $$(MICRO_JAVA_OPTIONS)
603603
endif
604604

605-
$1_MICRO_VM_OPTIONS := -jvmArgs $(call ShellQuote,$$($1_JMH_JVM_ARGS))
605+
$1_MICRO_VM_OPTIONS := -jvmArgsPrepend $(call ShellQuote,$$($1_JMH_JVM_ARGS))
606606

607607
ifneq ($$(MICRO_ITER), )
608608
$1_MICRO_ITER := -i $$(MICRO_ITER)

‎test/micro/org/openjdk/bench/java/lang/ObjectHashCode.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -50,37 +50,37 @@ public int mode_default() {
5050
// Experimental hashCode generation schemes. See synchronizer.cpp get_next_hash
5151
/*
5252
@Benchmark
53-
@Fork(jvmArgsPrepend = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=0"})
53+
@Fork(jvmArgs = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=0"})
5454
public int mode_0() {
5555
return System.identityHashCode(new Object());
5656
}
5757
5858
@Benchmark
59-
@Fork(jvmArgsPrepend = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=1"})
59+
@Fork(jvmArgs = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=1"})
6060
public int mode_1() {
6161
return System.identityHashCode(new Object());
6262
}
6363
6464
@Benchmark
65-
@Fork(jvmArgsPrepend = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=2"})
65+
@Fork(jvmArgs = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=2"})
6666
public int mode_2() {
6767
return System.identityHashCode(new Object());
6868
}
6969
7070
@Benchmark
71-
@Fork(jvmArgsPrepend = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=3"})
71+
@Fork(jvmArgs = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=3"})
7272
public int mode_3() {
7373
return System.identityHashCode(new Object());
7474
}
7575
7676
@Benchmark
77-
@Fork(jvmArgsPrepend = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=4"})
77+
@Fork(jvmArgs = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=4"})
7878
public int mode_4() {
7979
return System.identityHashCode(new Object());
8080
}
8181
8282
@Benchmark
83-
@Fork(jvmArgsPrepend = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=5"})
83+
@Fork(jvmArgs = {"-XX:+UnlockExperimentalVMOptions", "-XX:hashCode=5"})
8484
public int mode_5() {
8585
return System.identityHashCode(new Object());
8686
}

0 commit comments

Comments
 (0)