< prev index next >

src/hotspot/cpu/aarch64/globals_aarch64.hpp

Print this page




  50 // 20 shadow pages.
  51 #define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+5))
  52 #define DEFAULT_STACK_RESERVED_PAGES (1)
  53 
  54 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
  55 #define MIN_STACK_RED_PAGES    DEFAULT_STACK_RED_PAGES
  56 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  57 #define MIN_STACK_RESERVED_PAGES (0)
  58 
  59 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
  60 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
  61 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
  62 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
  63 
  64 define_pd_global(bool, RewriteBytecodes,     true);
  65 define_pd_global(bool, RewriteFrequentPairs, true);
  66 
  67 define_pd_global(bool, PreserveFramePointer, false);
  68 
  69 define_pd_global(bool, ValueTypePassFieldsAsArgs, false);

  70 
  71 // GC Ergo Flags
  72 define_pd_global(uintx, CMSYoungGenPerWorker, 64*M);  // default max size of CMS young gen, per GC worker thread
  73 
  74 define_pd_global(uintx, TypeProfileLevel, 111);
  75 
  76 define_pd_global(bool, CompactStrings, true);
  77 
  78 // Clear short arrays bigger than one word in an arch-specific way
  79 define_pd_global(intx, InitArrayShortSize, BytesPerLong);
  80 
  81 define_pd_global(bool, ThreadLocalHandshakes, true);
  82 
  83 #if defined(COMPILER1) || defined(COMPILER2)
  84 define_pd_global(intx, InlineSmallCode,          1000);
  85 #endif
  86 
  87 #ifdef BUILTIN_SIM
  88 #define UseBuiltinSim           true
  89 #define ARCH_FLAGS(develop, \




  50 // 20 shadow pages.
  51 #define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+5))
  52 #define DEFAULT_STACK_RESERVED_PAGES (1)
  53 
  54 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
  55 #define MIN_STACK_RED_PAGES    DEFAULT_STACK_RED_PAGES
  56 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  57 #define MIN_STACK_RESERVED_PAGES (0)
  58 
  59 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
  60 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
  61 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
  62 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
  63 
  64 define_pd_global(bool, RewriteBytecodes,     true);
  65 define_pd_global(bool, RewriteFrequentPairs, true);
  66 
  67 define_pd_global(bool, PreserveFramePointer, false);
  68 
  69 define_pd_global(bool, ValueTypePassFieldsAsArgs, false);
  70 define_pd_global(bool, ValueTypeReturnedAsFields, false);
  71 
  72 // GC Ergo Flags
  73 define_pd_global(uintx, CMSYoungGenPerWorker, 64*M);  // default max size of CMS young gen, per GC worker thread
  74 
  75 define_pd_global(uintx, TypeProfileLevel, 111);
  76 
  77 define_pd_global(bool, CompactStrings, true);
  78 
  79 // Clear short arrays bigger than one word in an arch-specific way
  80 define_pd_global(intx, InitArrayShortSize, BytesPerLong);
  81 
  82 define_pd_global(bool, ThreadLocalHandshakes, true);
  83 
  84 #if defined(COMPILER1) || defined(COMPILER2)
  85 define_pd_global(intx, InlineSmallCode,          1000);
  86 #endif
  87 
  88 #ifdef BUILTIN_SIM
  89 #define UseBuiltinSim           true
  90 #define ARCH_FLAGS(develop, \


< prev index next >