< prev index next >

src/cpu/zero/vm/globals_zero.hpp

Print this page




  52 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
  53 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
  54 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  55 
  56 define_pd_global(intx,  StackYellowPages,     DEFAULT_STACK_YELLOW_PAGES);
  57 define_pd_global(intx,  StackRedPages,        DEFAULT_STACK_RED_PAGES);
  58 define_pd_global(intx,  StackShadowPages,     DEFAULT_STACK_SHADOW_PAGES);
  59 
  60 define_pd_global(bool,  RewriteBytecodes,     true);
  61 define_pd_global(bool,  RewriteFrequentPairs, true);
  62 
  63 define_pd_global(bool,  UseMembar,            true);
  64 
  65 // GC Ergo Flags
  66 define_pd_global(size_t, CMSYoungGenPerWorker, 16*M);  // default max size of CMS young gen, per GC worker thread
  67 
  68 define_pd_global(uintx, TypeProfileLevel, 0);
  69 
  70 define_pd_global(bool, PreserveFramePointer, false);
  71 



  72 #define ARCH_FLAGS(develop, product, diagnostic, experimental, notproduct, range, constraint)  \
  73                                                                             \
  74   product(bool, UseFastEmptyMethods, true,                                  \
  75           "Use fast method entry code for empty methods")                   \
  76                                                                             \
  77   product(bool, UseFastAccessorMethods, true,                               \
  78           "Use fast method entry code for accessor methods")                \
  79                                                                             \
  80 
  81 #endif // CPU_ZERO_VM_GLOBALS_ZERO_HPP


  52 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
  53 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
  54 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  55 
  56 define_pd_global(intx,  StackYellowPages,     DEFAULT_STACK_YELLOW_PAGES);
  57 define_pd_global(intx,  StackRedPages,        DEFAULT_STACK_RED_PAGES);
  58 define_pd_global(intx,  StackShadowPages,     DEFAULT_STACK_SHADOW_PAGES);
  59 
  60 define_pd_global(bool,  RewriteBytecodes,     true);
  61 define_pd_global(bool,  RewriteFrequentPairs, true);
  62 
  63 define_pd_global(bool,  UseMembar,            true);
  64 
  65 // GC Ergo Flags
  66 define_pd_global(size_t, CMSYoungGenPerWorker, 16*M);  // default max size of CMS young gen, per GC worker thread
  67 
  68 define_pd_global(uintx, TypeProfileLevel, 0);
  69 
  70 define_pd_global(bool, PreserveFramePointer, false);
  71 
  72 // No performance work done here yet.
  73 define_pd_global(bool, CompactStrings, false);
  74 
  75 #define ARCH_FLAGS(develop, product, diagnostic, experimental, notproduct, range, constraint)  \
  76                                                                             \
  77   product(bool, UseFastEmptyMethods, true,                                  \
  78           "Use fast method entry code for empty methods")                   \
  79                                                                             \
  80   product(bool, UseFastAccessorMethods, true,                               \
  81           "Use fast method entry code for accessor methods")                \
  82                                                                             \
  83 
  84 #endif // CPU_ZERO_VM_GLOBALS_ZERO_HPP
< prev index next >