OpenJDK / jdk / jdk
changeset 31053:91b652361bce
8085805: aarch64: AdvancedThresholdPolicy lacks tuning of InlineSmallCode size
Summary: Set default value of InlineSmallCode to 2500 on aarch64
Reviewed-by: kvn
author | enevill |
---|---|
date | Wed, 10 Jun 2015 12:29:07 +0000 |
parents | 4c45af8f8225 |
children | 4ba02b88b7ed 2075de0e1460 |
files | hotspot/src/share/vm/runtime/advancedThresholdPolicy.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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); }