c1_globals_sparc.hpp revision 1472
5056N/A/*
5056N/A * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
5056N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5056N/A *
5056N/A * This code is free software; you can redistribute it and/or modify it
5056N/A * under the terms of the GNU General Public License version 2 only, as
5056N/A * published by the Free Software Foundation.
5056N/A *
5056N/A * This code is distributed in the hope that it will be useful, but WITHOUT
5056N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5056N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
5056N/A * version 2 for more details (a copy is included in the LICENSE file that
5056N/A * accompanied this code).
5056N/A *
5056N/A * You should have received a copy of the GNU General Public License version
5056N/A * 2 along with this work; if not, write to the Free Software Foundation,
5056N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5056N/A *
5056N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5056N/A * or visit www.oracle.com if you need additional information or have any
5056N/A * questions.
5056N/A *
5056N/A */
5056N/A
5056N/A// Sets the default values for platform dependent flags used by the client compiler.
5056N/A// (see c1_globals.hpp)
5056N/A
5056N/A#ifndef TIERED
5056N/Adefine_pd_global(bool, BackgroundCompilation, true );
5056N/Adefine_pd_global(bool, CICompileOSR, true );
5056N/Adefine_pd_global(bool, InlineIntrinsics, true );
5056N/Adefine_pd_global(bool, PreferInterpreterNativeStubs, false);
5056N/Adefine_pd_global(bool, ProfileTraps, false);
5056N/Adefine_pd_global(bool, UseOnStackReplacement, true );
5056N/Adefine_pd_global(bool, TieredCompilation, false);
5056N/Adefine_pd_global(intx, CompileThreshold, 1000 ); // Design center runs on 1.3.1
5056N/Adefine_pd_global(intx, Tier2CompileThreshold, 1500 );
5056N/Adefine_pd_global(intx, Tier3CompileThreshold, 2000 );
5056N/Adefine_pd_global(intx, Tier4CompileThreshold, 2500 );
5056N/A
5056N/Adefine_pd_global(intx, BackEdgeThreshold, 100000);
5056N/Adefine_pd_global(intx, Tier2BackEdgeThreshold, 100000);
5056N/Adefine_pd_global(intx, Tier3BackEdgeThreshold, 100000);
5056N/Adefine_pd_global(intx, Tier4BackEdgeThreshold, 100000);
5056N/A
5056N/Adefine_pd_global(intx, OnStackReplacePercentage, 1400 );
5056N/Adefine_pd_global(bool, UseTLAB, true );
5056N/Adefine_pd_global(bool, ProfileInterpreter, false);
5056N/Adefine_pd_global(intx, FreqInlineSize, 325 );
5056N/Adefine_pd_global(bool, ResizeTLAB, true );
5056N/Adefine_pd_global(intx, ReservedCodeCacheSize, 32*M );
define_pd_global(intx, CodeCacheExpansionSize, 32*K );
define_pd_global(uintx,CodeCacheMinBlockLength, 1);
define_pd_global(uintx,PermSize, 12*M );
define_pd_global(uintx,MaxPermSize, 64*M );
define_pd_global(bool, NeverActAsServerClassMachine, true );
define_pd_global(intx, NewSizeThreadIncrease, 16*K );
define_pd_global(uint64_t,MaxRAM, 1ULL*G);
define_pd_global(intx, InitialCodeCacheSize, 160*K);
#endif // !TIERED
define_pd_global(bool, UseTypeProfile, false);
define_pd_global(bool, RoundFPResults, false);
define_pd_global(bool, LIRFillDelaySlots, true );
define_pd_global(bool, OptimizeSinglePrecision, false);
define_pd_global(bool, CSEArrayLength, true );
define_pd_global(bool, TwoOperandLIRForm, false);
define_pd_global(intx, SafepointPollOffset, 0 );