src/cpu/x86/vm/globals_x86.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot.open Sdiff src/cpu/x86/vm

src/cpu/x86/vm/globals_x86.hpp

Print this page




  46 define_pd_global(intx, CodeEntryAlignment,       16);
  47 #endif // COMPILER2
  48 define_pd_global(intx, OptoLoopAlignment,        16);
  49 define_pd_global(intx, InlineFrequencyCount,     100);
  50 define_pd_global(intx, InlineSmallCode,          1000);
  51 
  52 define_pd_global(intx, StackYellowPages, 2);
  53 define_pd_global(intx, StackRedPages, 1);
  54 #ifdef AMD64
  55 // Very large C++ stack frames using solaris-amd64 optimized builds
  56 // due to lack of optimization caused by C++ compiler bugs
  57 define_pd_global(intx, StackShadowPages, SOLARIS_ONLY(20) NOT_SOLARIS(6) DEBUG_ONLY(+2));
  58 #else
  59 define_pd_global(intx, StackShadowPages, 3 DEBUG_ONLY(+1));
  60 #endif // AMD64
  61 
  62 define_pd_global(intx, PreInflateSpin,           10);
  63 
  64 define_pd_global(bool, RewriteBytecodes,     true);
  65 define_pd_global(bool, RewriteFrequentPairs, true);




  46 define_pd_global(intx, CodeEntryAlignment,       16);
  47 #endif // COMPILER2
  48 define_pd_global(intx, OptoLoopAlignment,        16);
  49 define_pd_global(intx, InlineFrequencyCount,     100);
  50 define_pd_global(intx, InlineSmallCode,          1000);
  51 
  52 define_pd_global(intx, StackYellowPages, 2);
  53 define_pd_global(intx, StackRedPages, 1);
  54 #ifdef AMD64
  55 // Very large C++ stack frames using solaris-amd64 optimized builds
  56 // due to lack of optimization caused by C++ compiler bugs
  57 define_pd_global(intx, StackShadowPages, SOLARIS_ONLY(20) NOT_SOLARIS(6) DEBUG_ONLY(+2));
  58 #else
  59 define_pd_global(intx, StackShadowPages, 3 DEBUG_ONLY(+1));
  60 #endif // AMD64
  61 
  62 define_pd_global(intx, PreInflateSpin,           10);
  63 
  64 define_pd_global(bool, RewriteBytecodes,     true);
  65 define_pd_global(bool, RewriteFrequentPairs, true);
  66 
  67 define_pd_global(bool, UseMembar,            false);
src/cpu/x86/vm/globals_x86.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File