src/cpu/sparc/vm/c1_globals_sparc.hpp

changeset 435
a61af66fc99e
child 1499
473cce303f13
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/cpu/sparc/vm/c1_globals_sparc.hpp	Sat Dec 01 00:00:00 2007 +0000
     1.3 @@ -0,0 +1,74 @@
     1.4 +/*
     1.5 + * Copyright 2000-2007 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.
    1.11 + *
    1.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 + * version 2 for more details (a copy is included in the LICENSE file that
    1.16 + * accompanied this code).
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License version
    1.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + *
    1.22 + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    1.23 + * CA 95054 USA or visit www.sun.com if you need additional information or
    1.24 + * have any questions.
    1.25 + *
    1.26 + */
    1.27 +
    1.28 +//
    1.29 +// Sets the default values for platform dependent flags used by the client compiler.
    1.30 +// (see c1_globals.hpp)
    1.31 +//
    1.32 +#ifndef TIERED
    1.33 +define_pd_global(bool, BackgroundCompilation,        true );
    1.34 +define_pd_global(bool, CICompileOSR,                 true );
    1.35 +define_pd_global(bool, InlineIntrinsics,             true );
    1.36 +define_pd_global(bool, PreferInterpreterNativeStubs, false);
    1.37 +define_pd_global(bool, ProfileTraps,                 false);
    1.38 +define_pd_global(bool, UseOnStackReplacement,        true );
    1.39 +define_pd_global(bool, TieredCompilation,            false);
    1.40 +define_pd_global(intx, CompileThreshold,             1000 ); // Design center runs on 1.3.1
    1.41 +define_pd_global(intx, Tier2CompileThreshold,        1500 );
    1.42 +define_pd_global(intx, Tier3CompileThreshold,        2000 );
    1.43 +define_pd_global(intx, Tier4CompileThreshold,        2500 );
    1.44 +
    1.45 +define_pd_global(intx, BackEdgeThreshold,            100000);
    1.46 +define_pd_global(intx, Tier2BackEdgeThreshold,       100000);
    1.47 +define_pd_global(intx, Tier3BackEdgeThreshold,       100000);
    1.48 +define_pd_global(intx, Tier4BackEdgeThreshold,       100000);
    1.49 +
    1.50 +define_pd_global(intx, OnStackReplacePercentage,     1400 );
    1.51 +define_pd_global(bool, UseTLAB,                      true );
    1.52 +define_pd_global(bool, ProfileInterpreter,           false);
    1.53 +define_pd_global(intx, FreqInlineSize,               325  );
    1.54 +define_pd_global(intx, NewRatio,                     8    ); // Design center runs on 1.3.1
    1.55 +define_pd_global(bool, ResizeTLAB,                   true );
    1.56 +define_pd_global(intx, ReservedCodeCacheSize,        32*M );
    1.57 +define_pd_global(intx, CodeCacheExpansionSize,       32*K );
    1.58 +define_pd_global(uintx,CodeCacheMinBlockLength,      1);
    1.59 +define_pd_global(uintx, PermSize,                    12*M );
    1.60 +define_pd_global(uintx, MaxPermSize,                 64*M );
    1.61 +define_pd_global(bool, NeverActAsServerClassMachine, true);
    1.62 +define_pd_global(intx, NewSizeThreadIncrease,        16*K );
    1.63 +define_pd_global(uintx, DefaultMaxRAM,               1*G);
    1.64 +define_pd_global(intx, InitialCodeCacheSize,         160*K);
    1.65 +#endif // TIERED
    1.66 +
    1.67 +define_pd_global(bool, UseTypeProfile,               false);
    1.68 +define_pd_global(bool, RoundFPResults,               false);
    1.69 +
    1.70 +
    1.71 +define_pd_global(bool, LIRFillDelaySlots,            true);
    1.72 +define_pd_global(bool, OptimizeSinglePrecision,      false);
    1.73 +define_pd_global(bool, CSEArrayLength,               true);
    1.74 +define_pd_global(bool, TwoOperandLIRForm,            false);
    1.75 +
    1.76 +
    1.77 +define_pd_global(intx, SafepointPollOffset, 0);

mercurial