8254913: Increase InlineSmallCode default from 2000 to 2500 for x64

Reviewed-by: redestad, shade, azeemj
This commit is contained in:
Eric Caspole 2020-10-21 20:34:58 +00:00
parent 56ea490f1e
commit 85a8949caa

View File

@ -294,7 +294,7 @@ void TieredThresholdPolicy::initialize() {
// Some inlining tuning
#ifdef X86
if (FLAG_IS_DEFAULT(InlineSmallCode)) {
FLAG_SET_DEFAULT(InlineSmallCode, 2000);
FLAG_SET_DEFAULT(InlineSmallCode, 2500);
}
#endif