Skip to content

Commit 3e19bf8

Browse files
committedJan 12, 2024
8323529: Relativize test image dependencies in microbenchmarks
Reviewed-by: mcimadamore, jvernee, erikj
1 parent ba23025 commit 3e19bf8

17 files changed

+21
-16
lines changed
 

‎make/RunTests.gmk

+5
Original file line numberDiff line numberDiff line change
@@ -620,11 +620,16 @@ define SetupRunMicroTestBody
620620
$1_MICRO_WARMUP_TIME := -w $$(MICRO_WARMUP_TIME)
621621
endif
622622

623+
# Microbenchmarks are executed from the root of the test image directory.
624+
# This enables JMH tests to add dependencies using relative paths such as
625+
# -Djava.library.path=micro/native
626+
623627
run-test-$1: pre-run-test
624628
$$(call LogWarn)
625629
$$(call LogWarn, Running test '$$($1_TEST)')
626630
$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
627631
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/micro, ( \
632+
$$(CD) $$(TEST_IMAGE_DIR) && \
628633
$$(FIXPATH) $$($1_MICRO_TEST_JDK)/bin/java $$($1_MICRO_JAVA_OPTIONS) \
629634
-jar $$($1_MICRO_BENCHMARKS_JAR) \
630635
$$($1_MICRO_ITER) $$($1_MICRO_FORK) $$($1_MICRO_TIME) \

‎test/micro/org/openjdk/bench/java/lang/foreign/CallOverheadConstant.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4242
@State(org.openjdk.jmh.annotations.Scope.Thread)
4343
@OutputTimeUnit(TimeUnit.NANOSECONDS)
44-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
44+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4545
public class CallOverheadConstant {
4646

4747
@Benchmark

‎test/micro/org/openjdk/bench/java/lang/foreign/CallOverheadVirtual.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4242
@State(org.openjdk.jmh.annotations.Scope.Thread)
4343
@OutputTimeUnit(TimeUnit.NANOSECONDS)
44-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
44+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4545
public class CallOverheadVirtual {
4646

4747
@Benchmark

‎test/micro/org/openjdk/bench/java/lang/foreign/CriticalCalls.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
5252
@State(org.openjdk.jmh.annotations.Scope.Thread)
5353
@OutputTimeUnit(TimeUnit.NANOSECONDS)
54-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
54+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
5555
public class CriticalCalls {
5656

5757
static final MethodHandle PINNED;

‎test/micro/org/openjdk/bench/java/lang/foreign/LoopOverOfAddress.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4444
@State(org.openjdk.jmh.annotations.Scope.Thread)
4545
@OutputTimeUnit(TimeUnit.MILLISECONDS)
46-
@Fork(3)
46+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
4747
public class LoopOverOfAddress extends JavaLayouts {
4848

4949
static final int ITERATIONS = 1_000_000;

‎test/micro/org/openjdk/bench/java/lang/foreign/PointerInvoke.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4444
@State(org.openjdk.jmh.annotations.Scope.Thread)
4545
@OutputTimeUnit(TimeUnit.NANOSECONDS)
46-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
46+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4747
public class PointerInvoke extends CLayouts {
4848

4949
Arena arena = Arena.ofConfined();

‎test/micro/org/openjdk/bench/java/lang/foreign/QSort.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4747
@State(org.openjdk.jmh.annotations.Scope.Thread)
4848
@OutputTimeUnit(TimeUnit.NANOSECONDS)
49-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
49+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
5050
public class QSort extends CLayouts {
5151

5252
static final Linker abi = Linker.nativeLinker();

‎test/micro/org/openjdk/bench/java/lang/foreign/StrLenTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4949
@State(org.openjdk.jmh.annotations.Scope.Thread)
5050
@OutputTimeUnit(TimeUnit.NANOSECONDS)
51-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
51+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
5252
public class StrLenTest extends CLayouts {
5353

5454
Arena arena = Arena.ofConfined();

‎test/micro/org/openjdk/bench/java/lang/foreign/ToCStringTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
5252
@State(org.openjdk.jmh.annotations.Scope.Thread)
5353
@OutputTimeUnit(TimeUnit.NANOSECONDS)
54-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
54+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
5555
public class ToCStringTest extends CLayouts {
5656

5757
@Param({"5", "20", "100", "200"})

‎test/micro/org/openjdk/bench/java/lang/foreign/ToJavaStringTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4444
@State(Scope.Benchmark)
4545
@OutputTimeUnit(TimeUnit.NANOSECONDS)
46-
@Fork(value = 3, jvmArgsAppend = {"--enable-native-access=ALL-UNNAMED", "--enable-preview"})
46+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "--enable-preview", "-Djava.library.path=micro/native" })
4747
public class ToJavaStringTest {
4848

4949
private MemorySegment strSegment;

‎test/micro/org/openjdk/bench/java/lang/foreign/Upcalls.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4646
@State(org.openjdk.jmh.annotations.Scope.Thread)
4747
@OutputTimeUnit(TimeUnit.NANOSECONDS)
48-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
48+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4949
public class Upcalls extends CLayouts {
5050

5151
static final Linker abi = Linker.nativeLinker();

‎test/micro/org/openjdk/bench/java/lang/foreign/pointers/PointerBench.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@Warmup(iterations = 3, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4747
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4848
@OutputTimeUnit(TimeUnit.MILLISECONDS)
49-
@Fork(3)
49+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
5050
@State(Scope.Benchmark)
5151
public class PointerBench {
5252

‎test/micro/org/openjdk/bench/java/lang/foreign/points/PointsAccess.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4444
@State(org.openjdk.jmh.annotations.Scope.Thread)
4545
@OutputTimeUnit(TimeUnit.NANOSECONDS)
46-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
46+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4747
public class PointsAccess {
4848

4949
BBPoint BBPoint;

‎test/micro/org/openjdk/bench/java/lang/foreign/points/PointsAlloc.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4242
@State(org.openjdk.jmh.annotations.Scope.Thread)
4343
@OutputTimeUnit(TimeUnit.NANOSECONDS)
44-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
44+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4545
public class PointsAlloc {
4646

4747
@Benchmark

‎test/micro/org/openjdk/bench/java/lang/foreign/points/PointsDistance.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4444
@State(org.openjdk.jmh.annotations.Scope.Thread)
4545
@OutputTimeUnit(TimeUnit.NANOSECONDS)
46-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
46+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4747
public class PointsDistance {
4848

4949
BBPoint jniP1;

‎test/micro/org/openjdk/bench/java/lang/foreign/points/PointsFree.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
4343
@State(org.openjdk.jmh.annotations.Scope.Thread)
4444
@OutputTimeUnit(TimeUnit.NANOSECONDS)
45-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
45+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
4646
public class PointsFree {
4747

4848
JNIPoint jniPoint;

‎test/micro/org/openjdk/bench/java/lang/foreign/xor/XorTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
2020
@State(org.openjdk.jmh.annotations.Scope.Thread)
2121
@OutputTimeUnit(TimeUnit.MILLISECONDS)
22-
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED" })
22+
@Fork(value = 3, jvmArgsAppend = { "--enable-native-access=ALL-UNNAMED", "-Djava.library.path=micro/native" })
2323

2424
public class XorTest {
2525

0 commit comments

Comments
 (0)
Please sign in to comment.