Skip to content

Commit 8774404

Browse files
committed
update inline value
1 parent 9c75afb commit 8774404

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/hotspot/cpu/s390/c2_globals_s390.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2016, 2018 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -44,7 +44,7 @@ define_pd_global(intx, CompileThreshold, 10000);
4444

4545
define_pd_global(intx, OnStackReplacePercentage, 140);
4646
define_pd_global(intx, ConditionalMoveLimit, 4);
47-
define_pd_global(intx, FreqInlineSize, 175);
47+
define_pd_global(intx, FreqInlineSize, 325);
4848
define_pd_global(intx, InteriorEntryAlignment, 4);
4949
define_pd_global(size_t, NewSizeThreadIncrease, ScaleForWordSize(4*K));
5050
define_pd_global(intx, RegisterCostAreaRatio, 12000);

src/hotspot/share/compiler/compilerDefinitions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ void CompilerConfig::set_compilation_policy_flags() {
406406
if (CompilerConfig::is_tiered() && CompilerConfig::is_c2_enabled()) {
407407
#ifdef COMPILER2
408408
// Some inlining tuning
409-
#if defined(X86) || defined(AARCH64) || defined(RISCV64) || defined(PPC64)
409+
#if defined(X86) || defined(AARCH64) || defined(RISCV64) || defined(PPC64) || defined(S390)
410410
if (FLAG_IS_DEFAULT(InlineSmallCode)) {
411411
FLAG_SET_DEFAULT(InlineSmallCode, 2500);
412412
}

0 commit comments

Comments
 (0)