< prev index next >

src/hotspot/cpu/sparc/globals_sparc.hpp

Print this page
rev 57232 : v2.00 -> v2.08 (CR8/v2.08/11-for-jdk14) patches combined into one; merge with jdk-14+25 snapshot; merge with jdk-14+26 snapshot.


  64 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  65 #define MIN_STACK_RESERVED_PAGES (0)
  66 
  67 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
  68 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
  69 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
  70 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
  71 
  72 define_pd_global(bool, RewriteBytecodes,     true);
  73 define_pd_global(bool, RewriteFrequentPairs, true);
  74 
  75 define_pd_global(bool, PreserveFramePointer, false);
  76 
  77 define_pd_global(uintx, TypeProfileLevel, 111);
  78 
  79 define_pd_global(bool, CompactStrings, true);
  80 
  81 define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
  82 
  83 define_pd_global(bool, ThreadLocalHandshakes, true);



  84 
  85 #define ARCH_FLAGS(develop, \
  86                    product, \
  87                    diagnostic, \
  88                    experimental, \
  89                    notproduct, \
  90                    range, \
  91                    constraint, \
  92                    writeable) \
  93                                                                             \
  94   product(intx, UseVIS, 99,                                                 \
  95           "Highest supported VIS instructions set on SPARC")                \
  96           range(0, 99)                                                      \
  97                                                                             \
  98   product(bool, UseCBCond, false,                                           \
  99           "Use compare and branch instruction on SPARC")                    \
 100                                                                             \
 101   product(bool, UseMPMUL, false,                                            \
 102           "Use multi-precision multiply instruction (mpmul) on SPARC")      \
 103                                                                             \




  64 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
  65 #define MIN_STACK_RESERVED_PAGES (0)
  66 
  67 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
  68 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
  69 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
  70 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
  71 
  72 define_pd_global(bool, RewriteBytecodes,     true);
  73 define_pd_global(bool, RewriteFrequentPairs, true);
  74 
  75 define_pd_global(bool, PreserveFramePointer, false);
  76 
  77 define_pd_global(uintx, TypeProfileLevel, 111);
  78 
  79 define_pd_global(bool, CompactStrings, true);
  80 
  81 define_pd_global(intx, InitArrayShortSize, 8*BytesPerLong);
  82 
  83 define_pd_global(bool, ThreadLocalHandshakes, true);
  84 // ObjectMonitor ref_count not implemented in C2 fast_lock() or
  85 // fast_unlock() so use a handshake for safety.
  86 define_pd_global(bool, HandshakeAfterDeflateIdleMonitors, true);
  87 
  88 #define ARCH_FLAGS(develop, \
  89                    product, \
  90                    diagnostic, \
  91                    experimental, \
  92                    notproduct, \
  93                    range, \
  94                    constraint, \
  95                    writeable) \
  96                                                                             \
  97   product(intx, UseVIS, 99,                                                 \
  98           "Highest supported VIS instructions set on SPARC")                \
  99           range(0, 99)                                                      \
 100                                                                             \
 101   product(bool, UseCBCond, false,                                           \
 102           "Use compare and branch instruction on SPARC")                    \
 103                                                                             \
 104   product(bool, UseMPMUL, false,                                            \
 105           "Use multi-precision multiply instruction (mpmul) on SPARC")      \
 106                                                                             \


< prev index next >