< prev index next >

src/hotspot/cpu/aarch64/c1_globals_aarch64.hpp

Print this page
rev 53735 : AArch64 support for ValueTypes


  23  *
  24  */
  25 
  26 #ifndef CPU_AARCH64_VM_C1_GLOBALS_AARCH64_HPP
  27 #define CPU_AARCH64_VM_C1_GLOBALS_AARCH64_HPP
  28 
  29 #include "utilities/globalDefinitions.hpp"
  30 #include "utilities/macros.hpp"
  31 
  32 // Sets the default values for platform dependent flags used by the client compiler.
  33 // (see c1_globals.hpp)
  34 
  35 #ifndef TIERED
  36 define_pd_global(bool, BackgroundCompilation,        true );
  37 define_pd_global(bool, UseTLAB,                      true );
  38 define_pd_global(bool, ResizeTLAB,                   true );
  39 define_pd_global(bool, InlineIntrinsics,             true );
  40 define_pd_global(bool, PreferInterpreterNativeStubs, false);
  41 define_pd_global(bool, ProfileTraps,                 false);
  42 define_pd_global(bool, UseOnStackReplacement,        true );
  43 define_pd_global(bool, TieredCompilation,            false);
  44 #ifdef BUILTIN_SIM
  45 // We compile very aggressively with the builtin simulator because
  46 // doing so greatly reduces run times and tests more code.
  47 define_pd_global(intx, CompileThreshold,             150 );
  48 #else
  49 define_pd_global(intx, CompileThreshold,             1500 );
  50 #endif
  51 
  52 define_pd_global(intx, OnStackReplacePercentage,     933  );
  53 define_pd_global(intx, FreqInlineSize,               325  );
  54 define_pd_global(intx, NewSizeThreadIncrease,        4*K  );
  55 define_pd_global(intx, InitialCodeCacheSize,         160*K);
  56 define_pd_global(intx, ReservedCodeCacheSize,        32*M );
  57 define_pd_global(intx, NonProfiledCodeHeapSize,      13*M );
  58 define_pd_global(intx, ProfiledCodeHeapSize,         14*M );
  59 define_pd_global(intx, NonNMethodCodeHeapSize,       5*M  );
  60 define_pd_global(bool, ProfileInterpreter,           false);
  61 define_pd_global(intx, CodeCacheExpansionSize,       32*K );
  62 define_pd_global(uintx, CodeCacheMinBlockLength,     1);
  63 define_pd_global(uintx, CodeCacheMinimumUseSpace,    400*K);


  23  *
  24  */
  25 
  26 #ifndef CPU_AARCH64_VM_C1_GLOBALS_AARCH64_HPP
  27 #define CPU_AARCH64_VM_C1_GLOBALS_AARCH64_HPP
  28 
  29 #include "utilities/globalDefinitions.hpp"
  30 #include "utilities/macros.hpp"
  31 
  32 // Sets the default values for platform dependent flags used by the client compiler.
  33 // (see c1_globals.hpp)
  34 
  35 #ifndef TIERED
  36 define_pd_global(bool, BackgroundCompilation,        true );
  37 define_pd_global(bool, UseTLAB,                      true );
  38 define_pd_global(bool, ResizeTLAB,                   true );
  39 define_pd_global(bool, InlineIntrinsics,             true );
  40 define_pd_global(bool, PreferInterpreterNativeStubs, false);
  41 define_pd_global(bool, ProfileTraps,                 false);
  42 define_pd_global(bool, UseOnStackReplacement,        true );
  43 define_pd_global(bool, TieredCompilation,            true);
  44 #ifdef BUILTIN_SIM
  45 // We compile very aggressively with the builtin simulator because
  46 // doing so greatly reduces run times and tests more code.
  47 define_pd_global(intx, CompileThreshold,             150 );
  48 #else
  49 define_pd_global(intx, CompileThreshold,             1500 );
  50 #endif
  51 
  52 define_pd_global(intx, OnStackReplacePercentage,     933  );
  53 define_pd_global(intx, FreqInlineSize,               325  );
  54 define_pd_global(intx, NewSizeThreadIncrease,        4*K  );
  55 define_pd_global(intx, InitialCodeCacheSize,         160*K);
  56 define_pd_global(intx, ReservedCodeCacheSize,        32*M );
  57 define_pd_global(intx, NonProfiledCodeHeapSize,      13*M );
  58 define_pd_global(intx, ProfiledCodeHeapSize,         14*M );
  59 define_pd_global(intx, NonNMethodCodeHeapSize,       5*M  );
  60 define_pd_global(bool, ProfileInterpreter,           false);
  61 define_pd_global(intx, CodeCacheExpansionSize,       32*K );
  62 define_pd_global(uintx, CodeCacheMinBlockLength,     1);
  63 define_pd_global(uintx, CodeCacheMinimumUseSpace,    400*K);
< prev index next >