Skip to content

Commit fe3e787

Browse files
committed
Add JNI tests
Add 8 types of JNI tests to measure JNI call overhead. Signed-off-by: Nigel Yu <[email protected]>
1 parent 6dc31d7 commit fe3e787

18 files changed

+811
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@
2121

2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
24+

JNI-test-scripts/linux/build-dll.sh

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
#!/bin/bash
2+
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# you may not use this file except in compliance with the License.
4+
# You may obtain a copy of the License at
5+
#
6+
# http://www.apache.org/licenses/LICENSE-2.0
7+
#
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
######
14+
15+
if [[ ! -f $SDK_DIR/bin/java ]]; then
16+
echo "Java not found"
17+
exit -1
18+
fi
19+
20+
echo "Using this Java SDK"
21+
$SDK_DIR/bin/java -version
22+
23+
# HOME_DIR is the root of bumblebench
24+
cd ../../
25+
HOME_DIR=`pwd`
26+
27+
echo Using $HOME_DIR as bumblebench home directory.
28+
29+
rm -f ./*.o
30+
rm -f ./*.so
31+
32+
33+
CPP_DIR="$HOME_DIR/net/adoptopenjdk/bumblebench/jni/c++/"
34+
export INC_PATH=" -I$HOME_DIR -I$CPP_DIR -I$SDK_DIR/include/zos -I$SDK_DIR/include/ "
35+
36+
#
37+
# Generate header files for our JNI Java class
38+
#
39+
$SDK_DIR/bin/javah net.adoptopenjdk.bumblebench.jni.CallOverheadTestcases
40+
41+
42+
#
43+
# Compile the C++ libraries
44+
# Step 1. ascii->ebcdic conversion
45+
#
46+
#
47+
cd $CPP_DIR
48+
49+
echo "Using HOME_DIR $HOME_DIR"
50+
echo "Using JDK_HOME $JDK_HOME"
51+
echo "Clearing old builds"
52+
53+
rm -fv ./*.so
54+
rm -fv ./*.o
55+
56+
57+
CPP_DIR="$HOME_DIR/net/adoptopenjdk/bumblebench/jni/c++/"
58+
cd $CPP_DIR
59+
60+
rm -f ./*.o
61+
rm -f ./*.so
62+
63+
mv $HOME_DIR/*.h $CPP_DIR/
64+
65+
66+
CPP_FILES=`find . | grep '\.cpp' | tr '\n' ' '`
67+
68+
CXXFLAGS="-shared -v -fPIC -std=c++11 -O1"
69+
INC_PATH="-I$CPP_DIR -I$JDK_HOME/include/ -I$JDK_HOME/include/linux "
70+
71+
72+
# use g++. gcc requires -lstdc++
73+
g++ $CXXFLAGS -o libjnibench.so $INC_PATH $CPP_FILES
74+
75+
mv $CPP_DIR/*.so $HOME_DIR/
76+
77+
cd $HOME_DIR

JNI-test-scripts/linux/run-JNI-test

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
#!/bin/bash
2+
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# you may not use this file except in compliance with the License.
4+
# You may obtain a copy of the License at
5+
#
6+
# http://www.apache.org/licenses/LICENSE-2.0
7+
#
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
######
14+
15+
if [[ ! -f $SDK_DIR/bin/java ]]; then
16+
echo "Java not found"
17+
exit -1
18+
fi
19+
20+
21+
JAVA=$SDK_DIR/bin/java
22+
23+
echo "Using this Java"
24+
$JAVA -version
25+
26+
27+
##########################################################
28+
# use bumblebench directory as test home dir
29+
##########################################################
30+
cd ../..
31+
HOME_DIR=`pwd`
32+
33+
#
34+
# set up library path for z/OS
35+
#
36+
export LD_LIBRARY_PATH=./:$LD_LIBRARY_PATH
37+
38+
# run all the testcases
39+
# Add -DBumbleBench.listOptions to see all available options
40+
$JAVA -jar BumbleBench.jar NoParamNoRetBench
41+
42+
$JAVA -jar BumbleBench.jar ParamNoRetBench
43+
44+
$JAVA -jar BumbleBench.jar ParamAndRetBench
45+
46+
$JAVA -jar BumbleBench.jar SetLongFieldBench
47+
48+
$JAVA -jar BumbleBench.jar SetStaticLongFieldBench
49+
50+
$JAVA -jar BumbleBench.jar ArrayReadWriteRegionBench

JNI-test-scripts/win/build-dll.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# NOT IMPLEMENTED

JNI-test-scripts/zos/build-dll.sh

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
#!/bin/bash
2+
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# you may not use this file except in compliance with the License.
4+
# You may obtain a copy of the License at
5+
#
6+
# http://www.apache.org/licenses/LICENSE-2.0
7+
#
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
######
14+
15+
if [[ ! -f $SDK_DIR/bin/java ]]; then
16+
echo "Java not found"
17+
exit -1
18+
fi
19+
20+
echo "Using this Java SDK"
21+
$SDK_DIR/bin/java -version
22+
23+
# HOME_DIR is the root of bumblebench
24+
cd ../../
25+
HOME_DIR=`pwd`
26+
27+
echo Using $HOME_DIR as bumblebench home directory.
28+
29+
rm -f ./*.o
30+
rm -f ./*.so
31+
32+
33+
CPP_DIR="$HOME_DIR/net/adoptopenjdk/bumblebench/jni/c++/"
34+
export INC_PATH=" -I$HOME_DIR -I$CPP_DIR -I$SDK_DIR/include/zos -I$SDK_DIR/include/ "
35+
36+
#
37+
# Generate header files for our JNI Java class
38+
#
39+
$SDK_DIR/bin/javah net.adoptopenjdk.bumblebench.jni.CallOverheadTestcases
40+
41+
42+
#
43+
# Compile the C++ libraries
44+
# Step 1. ascii->ebcdic conversion
45+
#
46+
#
47+
cd $CPP_DIR
48+
49+
rm -f ./*.so
50+
rm -f ./*.o
51+
rm -f ./*.asmlist
52+
53+
CPP_FILES=`find . | grep '\.cpp' | tr '\n' ' '`
54+
55+
if [[ ! -f "EBCDIC_DONE" ]]; then
56+
iconv -fISO8859-1 -tIBM-1047 CallOverheadTestcases.cpp > CallOverheadTestcases.cpp-ebc
57+
iconv -fISO8859-1 -tIBM-1047 Portal.h > Portal.h-ebc
58+
rm -f Portal.h CallOverheadTestcases.cpp
59+
mv Portal.h-ebc Portal.h
60+
mv CallOverheadTestcases.cpp-ebc CallOverheadTestcases.cpp
61+
touch EBCDIC_DONE
62+
fi
63+
64+
mv $HOME_DIR/*.h $CPP_DIR/
65+
66+
#
67+
# Compile the C++ libraries
68+
# Step 2. compile
69+
#
70+
#
71+
# make a Std non-xplink JNI benchmark DLL
72+
#
73+
#
74+
# NOTE: xlc can't handle files with the same name. Hence, the **JavaObject.cpp file names.
75+
#
76+
echo "Making 32-bit standard non-xplink JNI benchmark DLL"
77+
export CXXFLAGS="-qlist=no-xplink.asmlist -Dnullptr=NULL -Wc,convlit(ISO8859-1) -Wc,NOANSIALIAS -q32 -Wc,noxplink -O -qlanglvl=extended0x -Wc,DLL,EXPORTALL -Wa,DLL -Wc,ARCH(7) -Wc,TUNE(10) "
78+
xlC $CXXFLAGS -o libstdlinkjnibench.so $INC_PATH $CPP_FILES
79+
80+
81+
echo "Making 32-bit xplink JNI benchmark DLL"
82+
export CXXFLAGS="-qlist=xplink32.asmlist -Dnullptr=NULL -Wc,convlit(ISO8859-1) -Wc,NOANSIALIAS -q32 -Wc,xplink -O -qlanglvl=extended0x -Wc,DLL,EXPORTALL -Wa,DLL -Wc,ARCH(7) -Wc,TUNE(10) "
83+
xlC $CXXFLAGS -o libxplinkjnibench31.so $INC_PATH $CPP_FILES
84+
85+
86+
echo "Making 64-bit xplink JNI benchmark DLL"
87+
rm -f ./*.o
88+
export CXXFLAGS=" -qlist=xplink64.asmlist -Dnullptr=NULL -Wc,convlit(ISO8859-1) -Wc,NOANSIALIAS -Wc,xplink -Wc,lp64 -O -qlanglvl=extended0x -Wc,DLL,EXPORTALL -Wa,DLL -Wc,ARCH(7) -Wc,TUNE(10) "
89+
xlC $CXXFLAGS -o libxplinkjnibench64.so $INC_PATH $CPP_FILES
90+
91+
92+
93+
#
94+
#
95+
# Move all DLL to bumblebench home directory
96+
#
97+
mv $CPP_DIR/*.so $HOME_DIR/
98+
cd $HOME_DIR

JNI-test-scripts/zos/run-JNI-test.sh

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#!/bin/bash
2+
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# you may not use this file except in compliance with the License.
4+
# You may obtain a copy of the License at
5+
#
6+
# http://www.apache.org/licenses/LICENSE-2.0
7+
#
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
######
14+
15+
JAVA=$SDK_DIR/bin/java
16+
17+
18+
#
19+
# use bumblebench directory as test home dir
20+
cd ../..
21+
HOME_DIR=`pwd`
22+
23+
#
24+
# z/OS specific. Default to test 64-bit
25+
#
26+
cp -f libxplinkjnibench64.so libjnibench.so
27+
28+
#
29+
# set up library path for z/OS
30+
#
31+
export LIBPATH=./:$LIBPATH
32+
33+
34+
# Add -DBumbleBench.listOptions to see all available options
35+
$JAVA -jar BumbleBench.jar NoParamNoRetBench
36+
37+
$JAVA -jar BumbleBench.jar ParamNoRetBench
38+
39+
$JAVA -jar BumbleBench.jar ParamAndRetBench
40+
41+
$JAVA -jar BumbleBench.jar SetLongFieldBench
42+
43+
$JAVA -jar BumbleBench.jar SetStaticLongFieldBench
44+
45+
$JAVA -jar BumbleBench.jar ArrayReadWriteRegionBench

0 commit comments

Comments
 (0)