src/cpu/sparc/vm/globals_sparc.hpp

changeset 1499
473cce303f13
parent 1279
bd02caa94611
child 1800
6476042f815c
     1.1 --- a/src/cpu/sparc/vm/globals_sparc.hpp	Fri Oct 23 18:44:33 2009 -0700
     1.2 +++ b/src/cpu/sparc/vm/globals_sparc.hpp	Wed Oct 28 16:25:51 2009 -0400
     1.3 @@ -22,10 +22,8 @@
     1.4   *
     1.5   */
     1.6  
     1.7 -//
     1.8  // Sets the default values for platform dependent flags used by the runtime system.
     1.9  // (see globals.hpp)
    1.10 -//
    1.11  
    1.12  // For sparc we do not do call backs when a thread is in the interpreter, because the
    1.13  // interpreter dispatch needs at least two instructions - first to load the dispatch address
    1.14 @@ -41,26 +39,23 @@
    1.15  define_pd_global(bool, ImplicitNullChecks,          true);  // Generate code for implicit null checks
    1.16  define_pd_global(bool, UncommonNullCast,            true);  // Uncommon-trap NULLs past to check cast
    1.17  
    1.18 -define_pd_global(intx,  CodeEntryAlignment,    32);
    1.19 -define_pd_global(uintx, TLABSize,              0);
    1.20 -define_pd_global(uintx, NewSize, ScaleForWordSize((2048 * K) + (2 * (64 * K))));
    1.21 -define_pd_global(intx,  SurvivorRatio,         8);
    1.22 -define_pd_global(intx,  InlineFrequencyCount,  50);  // we can use more inlining on the SPARC
    1.23 -define_pd_global(intx,  InlineSmallCode,       1500);
    1.24 +define_pd_global(intx, CodeEntryAlignment,    32);
    1.25 +define_pd_global(intx, InlineFrequencyCount,  50);  // we can use more inlining on the SPARC
    1.26 +define_pd_global(intx, InlineSmallCode,       1500);
    1.27  #ifdef _LP64
    1.28  // Stack slots are 2X larger in LP64 than in the 32 bit VM.
    1.29 -define_pd_global(intx,  ThreadStackSize,       1024);
    1.30 -define_pd_global(intx,  VMThreadStackSize,     1024);
    1.31 +define_pd_global(intx, ThreadStackSize,       1024);
    1.32 +define_pd_global(intx, VMThreadStackSize,     1024);
    1.33  #else
    1.34 -define_pd_global(intx,  ThreadStackSize,       512);
    1.35 -define_pd_global(intx,  VMThreadStackSize,     512);
    1.36 +define_pd_global(intx, ThreadStackSize,       512);
    1.37 +define_pd_global(intx, VMThreadStackSize,     512);
    1.38  #endif
    1.39  
    1.40  define_pd_global(intx, StackYellowPages, 2);
    1.41  define_pd_global(intx, StackRedPages, 1);
    1.42  define_pd_global(intx, StackShadowPages, 3 DEBUG_ONLY(+1));
    1.43  
    1.44 -define_pd_global(intx,  PreInflateSpin,        40);  // Determined by running design center
    1.45 +define_pd_global(intx, PreInflateSpin,       40);  // Determined by running design center
    1.46  
    1.47  define_pd_global(bool, RewriteBytecodes,     true);
    1.48  define_pd_global(bool, RewriteFrequentPairs, true);

mercurial