< prev index next >

src/cpu/sparc/vm/globals_sparc.hpp

Print this page




  62 #define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+2))
  63 
  64 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
  65 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
  66 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  67 #define MIN_STACK_RESERVED_PAGES (0)
  68 
  69 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
  70 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
  71 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
  72 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
  73 
  74 define_pd_global(bool, RewriteBytecodes,     true);
  75 define_pd_global(bool, RewriteFrequentPairs, true);
  76 
  77 define_pd_global(bool, UseMembar,            false);
  78 
  79 define_pd_global(bool, PreserveFramePointer, false);
  80 
  81 define_pd_global(bool, ValueTypePassFieldsAsArgs, false);

  82 
  83 // GC Ergo Flags
  84 define_pd_global(size_t, CMSYoungGenPerWorker, 16*M);  // default max size of CMS young gen, per GC worker thread
  85 
  86 define_pd_global(uintx, TypeProfileLevel, 111);
  87 
  88 define_pd_global(bool, CompactStrings, true);
  89 
  90 define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
  91 
  92 #define ARCH_FLAGS(develop, \
  93                    product, \
  94                    diagnostic, \
  95                    experimental, \
  96                    notproduct, \
  97                    range, \
  98                    constraint, \
  99                    writeable) \
 100                                                                             \
 101   product(intx, UseVIS, 99,                                                 \




  62 #define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+2))
  63 
  64 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
  65 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
  66 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  67 #define MIN_STACK_RESERVED_PAGES (0)
  68 
  69 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
  70 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
  71 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
  72 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
  73 
  74 define_pd_global(bool, RewriteBytecodes,     true);
  75 define_pd_global(bool, RewriteFrequentPairs, true);
  76 
  77 define_pd_global(bool, UseMembar,            false);
  78 
  79 define_pd_global(bool, PreserveFramePointer, false);
  80 
  81 define_pd_global(bool, ValueTypePassFieldsAsArgs, false);
  82 define_pd_global(bool, ValueTypeReturnedAsFields, false);
  83 
  84 // GC Ergo Flags
  85 define_pd_global(size_t, CMSYoungGenPerWorker, 16*M);  // default max size of CMS young gen, per GC worker thread
  86 
  87 define_pd_global(uintx, TypeProfileLevel, 111);
  88 
  89 define_pd_global(bool, CompactStrings, true);
  90 
  91 define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
  92 
  93 #define ARCH_FLAGS(develop, \
  94                    product, \
  95                    diagnostic, \
  96                    experimental, \
  97                    notproduct, \
  98                    range, \
  99                    constraint, \
 100                    writeable) \
 101                                                                             \
 102   product(intx, UseVIS, 99,                                                 \


< prev index next >