forked from dragonwell-project/dragonwell8
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Misc] Enlarge default ReservedCodeCacheSize in aarch64 from 128m to …
…240m Summary: In current jdk8 community master branch. Default value of ReservedCodeCacheSize on aarch64 systems is 128m while on all other architectures, the value is 240m. This difference may cause performance issues due to code cache full. This patch set ReservedCodeCacheSize on aarch64 to 240m, the same as other architectures. Test Plan: hotspot/test/codecache/TestDefaultCodeCacheSize.sh Reviewed-by: kuaiwei, JoshuaZhuwj Issue: dragonwell-project#567
- Loading branch information
1 parent
dc18872
commit a27d43d
Showing
2 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
hotspot/test/compiler/codecache/TestDefaultCodeCacheSize.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# Copyright (c) 2023 Alibaba Group Holding Limited. All Rights Reserved. | ||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
# | ||
# This code is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License version 2 only, as | ||
# published by the Free Software Foundation. Alibaba designates this | ||
# particular file as subject to the "Classpath" exception as provided | ||
# by Oracle in the LICENSE file that accompanied this code. | ||
# | ||
# This code is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
# version 2 for more details (a copy is included in the LICENSE file that | ||
# accompanied this code). | ||
# | ||
# You should have received a copy of the GNU General Public License version | ||
# 2 along with this work; if not, write to the Free Software Foundation, | ||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
# | ||
|
||
# | ||
# @test | ||
# @summary test the default value of ReservedCodeCacheSize. It should be 240m | ||
# @run shell TestDefaultCodeCacheSize.sh | ||
# | ||
|
||
${TESTJAVA}/bin/java -XX:+PrintFlagsFinal -version | grep ReservedCodeCacheSize |grep 251658240 | ||
|
||
if [ "0" == $? ]; | ||
then | ||
echo "ReservedCodeCacheSize is 240m" | ||
echo "--- Test passed" | ||
else | ||
echo "ReservedCodeCacheSize is not 240m" | ||
echo "--- Test failed" | ||
exit 1 | ||
fi |