src/cpu/mips/vm/globals_mips.hpp

Tue, 26 Jul 2016 17:06:17 +0800

author
fujie
date
Tue, 26 Jul 2016 17:06:17 +0800
changeset 41
d885f8d65c58
parent 10
0b0d61d41da1
child 179
e67dc9f1ba90
permissions
-rw-r--r--

Add multiply word to GPR instruction (mul) in MIPS assembler.

aoqi@1 1 /*
aoqi@1 2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@1 3 * Copyright (c) 2015, 2016, Loongson Technology. All rights reserved.
aoqi@1 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@1 5 *
aoqi@1 6 * This code is free software; you can redistribute it and/or modify it
aoqi@1 7 * under the terms of the GNU General Public License version 2 only, as
aoqi@1 8 * published by the Free Software Foundation.
aoqi@1 9 *
aoqi@1 10 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@1 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@1 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@1 13 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@1 14 * accompanied this code).
aoqi@1 15 *
aoqi@1 16 * You should have received a copy of the GNU General Public License version
aoqi@1 17 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@1 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@1 19 *
aoqi@1 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@1 21 * or visit www.oracle.com if you need additional information or have any
aoqi@1 22 * questions.
aoqi@1 23 *
aoqi@1 24 */
aoqi@1 25
aoqi@1 26 #ifndef CPU_MIPS_VM_GLOBALS_MIPS_HPP
aoqi@1 27 #define CPU_MIPS_VM_GLOBALS_MIPS_HPP
aoqi@1 28
aoqi@1 29 #include "utilities/globalDefinitions.hpp"
aoqi@1 30 #include "utilities/macros.hpp"
aoqi@1 31
aoqi@1 32 //
aoqi@1 33 // Sets the default values for platform dependent flags used by the runtime system.
aoqi@1 34 // (see globals.hpp)
aoqi@1 35 //
aoqi@1 36 #ifdef CORE
aoqi@1 37 define_pd_global(bool, UseSSE, 0);
aoqi@1 38 #endif /* CORE */
aoqi@1 39 define_pd_global(bool, ConvertSleepToYield, true);
aoqi@1 40 define_pd_global(bool, ShareVtableStubs, true);
aoqi@1 41 define_pd_global(bool, CountInterpCalls, true);
aoqi@1 42
aoqi@1 43 define_pd_global(bool, ImplicitNullChecks, true); // Generate code for implicit null checks
aoqi@1 44 define_pd_global(bool, TrapBasedNullChecks, false); // Not needed on x86.
aoqi@1 45 define_pd_global(bool, UncommonNullCast, true); // Uncommon-trap NULLs passed to check cast
aoqi@1 46 define_pd_global(bool, NeedsDeoptSuspend, false); // only register window machines need this
aoqi@1 47
aoqi@1 48 // See 4827828 for this change. There is no globals_core_i486.hpp. I can't
aoqi@1 49 // assign a different value for C2 without touching a number of files. Use
aoqi@1 50 // #ifdef to minimize the change as it's late in Mantis. -- FIXME.
aoqi@1 51 // c1 doesn't have this problem because the fix to 4858033 assures us
aoqi@1 52 // the the vep is aligned at CodeEntryAlignment whereas c2 only aligns
aoqi@1 53 // the uep and the vep doesn't get real alignment but just slops on by
aoqi@1 54 // only assured that the entry instruction meets the 5 byte size requirement.
aoqi@1 55 define_pd_global(intx, CodeEntryAlignment, 32);
aoqi@1 56 define_pd_global(intx, OptoLoopAlignment, 16);
aoqi@1 57 define_pd_global(intx, InlineFrequencyCount, 100);
Jin@10 58 define_pd_global(intx, InlineSmallCode, 4000); // 2016/5/11 Jin: MIPS generates 3x instructions than X86
aoqi@1 59
aoqi@1 60 define_pd_global(uintx, TLABSize, 0);
aoqi@1 61 define_pd_global(uintx, NewSize, 1024 * K);
aoqi@1 62 define_pd_global(intx, PreInflateSpin, 10);
aoqi@1 63
aoqi@1 64 define_pd_global(intx, PrefetchCopyIntervalInBytes, -1);
aoqi@1 65 define_pd_global(intx, PrefetchScanIntervalInBytes, -1);
aoqi@1 66 define_pd_global(intx, PrefetchFieldsAhead, -1);
aoqi@1 67
aoqi@1 68 define_pd_global(intx, StackYellowPages, 2);
aoqi@1 69 define_pd_global(intx, StackRedPages, 1);
aoqi@1 70 define_pd_global(intx, StackShadowPages, 3 DEBUG_ONLY(+1));
aoqi@1 71
aoqi@1 72 define_pd_global(bool, RewriteBytecodes, true);
aoqi@1 73 define_pd_global(bool, RewriteFrequentPairs, true);
aoqi@1 74 #ifdef _ALLBSD_SOURCE
aoqi@1 75 define_pd_global(bool, UseMembar, true);
aoqi@1 76 #else
aoqi@1 77 define_pd_global(bool, UseMembar, false);
aoqi@1 78 #endif
aoqi@1 79 // GC Ergo Flags
aoqi@1 80 define_pd_global(intx, CMSYoungGenPerWorker, 64*M); // default max size of CMS young gen, per GC worker thread
aoqi@1 81
aoqi@1 82 define_pd_global(uintx, TypeProfileLevel, 111);
aoqi@1 83
aoqi@1 84 // Only c2 cares about this at the moment
aoqi@1 85 define_pd_global(intx, AllocatePrefetchStyle, 2);
aoqi@1 86 define_pd_global(intx, AllocatePrefetchDistance, -1);
aoqi@1 87
aoqi@1 88 #define ARCH_FLAGS(develop, product, diagnostic, experimental, notproduct) \
aoqi@1 89 \
aoqi@1 90 develop(bool, IEEEPrecision, true, \
aoqi@1 91 "Enables IEEE precision (for INTEL only)") \
aoqi@1 92 \
aoqi@1 93 product(intx, FenceInstruction, 0, \
aoqi@1 94 "(Unsafe,Unstable) Experimental") \
aoqi@1 95 \
aoqi@1 96 product(intx, ReadPrefetchInstr, 0, \
aoqi@1 97 "Prefetch instruction to prefetch ahead") \
aoqi@1 98 \
aoqi@1 99 product(bool, UseStoreImmI16, true, \
aoqi@1 100 "Use store immediate 16-bits value instruction on x86") \
aoqi@1 101 \
aoqi@1 102 product(intx, UseAVX, 99, \
aoqi@1 103 "Highest supported AVX instructions set on x86/x64") \
aoqi@1 104 \
aoqi@1 105 diagnostic(bool, UseIncDec, true, \
aoqi@1 106 "Use INC, DEC instructions on x86") \
aoqi@1 107 \
aoqi@1 108 product(bool, UseNewLongLShift, false, \
aoqi@1 109 "Use optimized bitwise shift left") \
aoqi@1 110 \
aoqi@1 111 product(bool, UseAddressNop, false, \
aoqi@1 112 "Use '0F 1F [addr]' NOP instructions on x86 cpus") \
aoqi@1 113 \
aoqi@1 114 product(bool, UseXmmLoadAndClearUpper, true, \
aoqi@1 115 "Load low part of XMM register and clear upper part") \
aoqi@1 116 \
aoqi@1 117 product(bool, UseXmmRegToRegMoveAll, false, \
aoqi@1 118 "Copy all XMM register bits when moving value between registers") \
aoqi@1 119 \
aoqi@1 120 product(bool, UseXmmI2D, false, \
aoqi@1 121 "Use SSE2 CVTDQ2PD instruction to convert Integer to Double") \
aoqi@1 122 \
aoqi@1 123 product(bool, UseXmmI2F, false, \
aoqi@1 124 "Use SSE2 CVTDQ2PS instruction to convert Integer to Float") \
aoqi@1 125 \
aoqi@1 126 product(bool, UseUnalignedLoadStores, false, \
aoqi@1 127 "Use SSE2 MOVDQU instruction for Arraycopy") \
aoqi@1 128 \
aoqi@1 129 /* assembler */ \
aoqi@1 130 product(bool, Use486InstrsOnly, false, \
aoqi@1 131 "Use 80486 Compliant instruction subset") \
aoqi@1 132 \
aoqi@1 133 product(bool, UseCountLeadingZerosInstruction, false, \
aoqi@1 134 "Use count leading zeros instruction") \
aoqi@1 135 \
aoqi@1 136 /* 2014/04/22 Fu: Added to improve the startup performance */ \
aoqi@1 137 product(intx, MaxCompileQueueSize, 64, \
aoqi@1 138 "The maximum size of compile queue") \
aoqi@1 139 \
aoqi@1 140 /* 2014/07/07 Fu: Added to implement the size-and-speed scheduling */ \
aoqi@1 141 product(intx, FactorOfSizeScheduling, 90, \
aoqi@1 142 "The impact factor of size in the size-and-speed scheduling") \
aoqi@1 143 \
aoqi@1 144 product(intx, MinWatchTime, 800, \
aoqi@1 145 "The min time to determine whether to remove a task in queue") \
aoqi@1 146 \
aoqi@1 147 product(intx, MinUpdateTime, 5, \
aoqi@1 148 "The min time to update the speed of a method") \
aoqi@1 149 \
aoqi@1 150 /* Use Restricted Transactional Memory for lock eliding */ \
aoqi@1 151 experimental(bool, UseRTMLocking, false, \
aoqi@1 152 "Enable RTM lock eliding for inflated locks in compiled code") \
aoqi@1 153 \
aoqi@1 154 experimental(bool, UseRTMForStackLocks, false, \
aoqi@1 155 "Enable RTM lock eliding for stack locks in compiled code") \
aoqi@1 156 \
aoqi@1 157 experimental(bool, UseRTMDeopt, false, \
aoqi@1 158 "Perform deopt and recompilation based on RTM abort ratio") \
aoqi@1 159 \
aoqi@1 160 experimental(uintx, RTMRetryCount, 5, \
aoqi@1 161 "Number of RTM retries on lock abort or busy") \
aoqi@1 162 \
aoqi@1 163 experimental(intx, RTMSpinLoopCount, 100, \
aoqi@1 164 "Spin count for lock to become free before RTM retry") \
aoqi@1 165 \
aoqi@1 166 experimental(intx, RTMAbortThreshold, 1000, \
aoqi@1 167 "Calculate abort ratio after this number of aborts") \
aoqi@1 168 \
aoqi@1 169 experimental(intx, RTMLockingThreshold, 10000, \
aoqi@1 170 "Lock count at which to do RTM lock eliding without " \
aoqi@1 171 "abort ratio calculation") \
aoqi@1 172 \
aoqi@1 173 experimental(intx, RTMAbortRatio, 50, \
aoqi@1 174 "Lock abort ratio at which to stop use RTM lock eliding") \
aoqi@1 175 \
aoqi@1 176 experimental(intx, RTMTotalCountIncrRate, 64, \
aoqi@1 177 "Increment total RTM attempted lock count once every n times") \
aoqi@1 178 \
aoqi@1 179 experimental(intx, RTMLockingCalculationDelay, 0, \
aoqi@1 180 "Number of milliseconds to wait before start calculating aborts " \
aoqi@1 181 "for RTM locking") \
aoqi@1 182 \
aoqi@1 183 experimental(bool, UseRTMXendForLockBusy, true, \
aoqi@1 184 "Use RTM Xend instead of Xabort when lock busy") \
aoqi@1 185 \
aoqi@1 186 product(intx, MaxUpdateTime, 80, \
aoqi@1 187 "The max time to update the speed of a method") \
aoqi@1 188 \
aoqi@1 189 product(intx, InvocationOldThreshold, 12000, \
aoqi@1 190 "The invocation counter threshold for an old method") \
aoqi@1 191 \
aoqi@1 192 product(intx, LoopOldThreshold, 20000, \
aoqi@1 193 "The backedge counter threshold for an old method") \
aoqi@1 194 \
aoqi@1 195 product(bool, UseCountTrailingZerosInstruction, false, \
aoqi@1 196 "Use count trailing zeros instruction") \
aoqi@1 197 \
aoqi@1 198 product(bool, UseBMI1Instructions, false, \
aoqi@1 199 "Use BMI instructions")
aoqi@1 200
aoqi@1 201 #endif // CPU_MIPS_VM_GLOBALS_MIPS_HPP
aoqi@1 202

mercurial