# HG changeset patch # User enevill # Date 1433939347 0 # Node ID 91b652361bcee2d6195749a29049ada0367068cd # Parent 4c45af8f8225a2f893e5bb64a70719e5a71b589e 8085805: aarch64: AdvancedThresholdPolicy lacks tuning of InlineSmallCode size Summary: Set default value of InlineSmallCode to 2500 on aarch64 Reviewed-by: kvn diff -r 4c45af8f8225 -r 91b652361bce hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp --- a/hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp Mon Jun 08 11:11:47 2015 -0700 +++ b/hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp Wed Jun 10 12:29:07 2015 +0000 @@ -64,7 +64,7 @@ } #endif -#ifdef SPARC +#if defined SPARC || defined AARCH64 if (FLAG_IS_DEFAULT(InlineSmallCode)) { FLAG_SET_DEFAULT(InlineSmallCode, 2500); }