src/cpu/mips/vm/globals_mips.hpp

Thu, 07 Sep 2017 09:12:16 +0800

author
aoqi
date
Thu, 07 Sep 2017 09:12:16 +0800
changeset 6880
52ea28d233d2
parent 6879
11d997b1e656
child 7994
04ff2f6cd0eb
permissions
-rw-r--r--

#5745 [Code Reorganization] code cleanup and code style fix
This is a huge patch, but only code cleanup, code style fix and useless code deletion are included, for example:
tab -> two spaces, deleted spacees at the end of a line, delete useless comments.

This patch also included:
Declaration and definition of class MacroAssembler is moved from assembler_mips.h/cpp to macroAssembler_mips.h/cpp

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 // Sets the default values for platform dependent flags used by the runtime system.
aoqi@1 33 // (see globals.hpp)
aoqi@6880 34
aoqi@1 35 #ifdef CORE
aoqi@1 36 define_pd_global(bool, UseSSE, 0);
aoqi@1 37 #endif /* CORE */
aoqi@1 38 define_pd_global(bool, ConvertSleepToYield, true);
aoqi@1 39 define_pd_global(bool, ShareVtableStubs, true);
aoqi@1 40 define_pd_global(bool, CountInterpCalls, true);
aoqi@1 41
aoqi@1 42 define_pd_global(bool, ImplicitNullChecks, true); // Generate code for implicit null checks
aoqi@1 43 define_pd_global(bool, TrapBasedNullChecks, false); // Not needed on x86.
aoqi@1 44 define_pd_global(bool, UncommonNullCast, true); // Uncommon-trap NULLs passed to check cast
aoqi@1 45 define_pd_global(bool, NeedsDeoptSuspend, false); // only register window machines need this
aoqi@1 46
aoqi@1 47 // See 4827828 for this change. There is no globals_core_i486.hpp. I can't
aoqi@6880 48 // assign a different value for C2 without touching a number of files. Use
aoqi@1 49 // #ifdef to minimize the change as it's late in Mantis. -- FIXME.
aoqi@1 50 // c1 doesn't have this problem because the fix to 4858033 assures us
aoqi@1 51 // the the vep is aligned at CodeEntryAlignment whereas c2 only aligns
aoqi@1 52 // the uep and the vep doesn't get real alignment but just slops on by
aoqi@1 53 // only assured that the entry instruction meets the 5 byte size requirement.
aoqi@6880 54 define_pd_global(intx, CodeEntryAlignment, 16);
aoqi@1 55 define_pd_global(intx, OptoLoopAlignment, 16);
aoqi@1 56 define_pd_global(intx, InlineFrequencyCount, 100);
Jin@10 57 define_pd_global(intx, InlineSmallCode, 4000); // 2016/5/11 Jin: MIPS generates 3x instructions than X86
aoqi@1 58
aoqi@6880 59 define_pd_global(uintx, TLABSize, 0);
aoqi@1 60 define_pd_global(uintx, NewSize, 1024 * K);
aoqi@6880 61 define_pd_global(intx, PreInflateSpin, 10);
aoqi@1 62
aoqi@1 63 define_pd_global(intx, PrefetchCopyIntervalInBytes, -1);
aoqi@1 64 define_pd_global(intx, PrefetchScanIntervalInBytes, -1);
aoqi@1 65 define_pd_global(intx, PrefetchFieldsAhead, -1);
aoqi@1 66
aoqi@1 67 define_pd_global(intx, StackYellowPages, 2);
aoqi@1 68 define_pd_global(intx, StackRedPages, 1);
aoqi@1 69 define_pd_global(intx, StackShadowPages, 3 DEBUG_ONLY(+1));
aoqi@1 70
aoqi@1 71 define_pd_global(bool, RewriteBytecodes, true);
aoqi@1 72 define_pd_global(bool, RewriteFrequentPairs, true);
aoqi@1 73 #ifdef _ALLBSD_SOURCE
aoqi@1 74 define_pd_global(bool, UseMembar, true);
aoqi@1 75 #else
aoqi@1 76 define_pd_global(bool, UseMembar, false);
aoqi@1 77 #endif
aoqi@1 78 // GC Ergo Flags
aoqi@1 79 define_pd_global(intx, CMSYoungGenPerWorker, 64*M); // default max size of CMS young gen, per GC worker thread
aoqi@1 80
aoqi@1 81 define_pd_global(uintx, TypeProfileLevel, 111);
aoqi@1 82
aoqi@1 83 // Only c2 cares about this at the moment
aoqi@1 84 define_pd_global(intx, AllocatePrefetchStyle, 2);
aoqi@1 85 define_pd_global(intx, AllocatePrefetchDistance, -1);
aoqi@1 86
aoqi@1 87 #define ARCH_FLAGS(develop, product, diagnostic, experimental, notproduct) \
aoqi@1 88 \
aoqi@6880 89 product(bool, UseLoongsonISA, false, \
aoqi@180 90 "Use LoongsonISA on Loongson CPUs") \
aoqi@180 91 \
aoqi@6880 92 product(bool, Use3A2000, false, \
aoqi@180 93 "Use Loongson 3A2000 CPU") \
aoqi@180 94 \
fujie@389 95 product(bool, UseCodeCacheAllocOpt, true, \
fujie@389 96 "Allocate code cache within 32-bit memory address space") \
fujie@389 97 \
fujie@382 98 product(intx, UseSyncLevel, 1000, \
fujie@336 99 "The sync level on Loongson CPUs" \
fujie@336 100 "for GS464E, UseSyncLevel >= 2000" \
fujie@336 101 "others, UseSyncLevel <= 1000") \
fujie@336 102 \
jiangshaofeng@362 103 develop(bool, UseBoundCheckInstruction, false, \
jiangshaofeng@362 104 "Use bound check instruction") \
jiangshaofeng@362 105 \
aoqi@179 106 product(intx, SetFSFOFN, 999, \
aoqi@179 107 "Set the FS/FO/FN bits in FCSR" \
aoqi@179 108 "999 means FS/FO/FN will not be changed" \
aoqi@179 109 "=XYZ, with X:FS, Y:FO, Z:FN, X, Y and Z in 0=off, 1=on") \
aoqi@179 110 \
aoqi@1 111 develop(bool, IEEEPrecision, true, \
aoqi@1 112 "Enables IEEE precision (for INTEL only)") \
aoqi@1 113 \
aoqi@1 114 product(intx, FenceInstruction, 0, \
aoqi@1 115 "(Unsafe,Unstable) Experimental") \
aoqi@1 116 \
aoqi@1 117 product(intx, ReadPrefetchInstr, 0, \
aoqi@1 118 "Prefetch instruction to prefetch ahead") \
aoqi@1 119 \
aoqi@1 120 product(bool, UseStoreImmI16, true, \
aoqi@1 121 "Use store immediate 16-bits value instruction on x86") \
aoqi@1 122 \
aoqi@1 123 product(intx, UseAVX, 99, \
aoqi@1 124 "Highest supported AVX instructions set on x86/x64") \
aoqi@1 125 \
aoqi@1 126 diagnostic(bool, UseIncDec, true, \
aoqi@1 127 "Use INC, DEC instructions on x86") \
aoqi@1 128 \
aoqi@1 129 product(bool, UseNewLongLShift, false, \
aoqi@1 130 "Use optimized bitwise shift left") \
aoqi@1 131 \
aoqi@1 132 product(bool, UseAddressNop, false, \
aoqi@1 133 "Use '0F 1F [addr]' NOP instructions on x86 cpus") \
aoqi@1 134 \
aoqi@1 135 product(bool, UseXmmLoadAndClearUpper, true, \
aoqi@1 136 "Load low part of XMM register and clear upper part") \
aoqi@1 137 \
aoqi@1 138 product(bool, UseXmmRegToRegMoveAll, false, \
aoqi@1 139 "Copy all XMM register bits when moving value between registers") \
aoqi@1 140 \
aoqi@1 141 product(bool, UseXmmI2D, false, \
aoqi@1 142 "Use SSE2 CVTDQ2PD instruction to convert Integer to Double") \
aoqi@1 143 \
aoqi@1 144 product(bool, UseXmmI2F, false, \
aoqi@1 145 "Use SSE2 CVTDQ2PS instruction to convert Integer to Float") \
aoqi@1 146 \
aoqi@1 147 product(bool, UseUnalignedLoadStores, false, \
aoqi@1 148 "Use SSE2 MOVDQU instruction for Arraycopy") \
aoqi@1 149 \
aoqi@1 150 /* assembler */ \
aoqi@1 151 product(bool, Use486InstrsOnly, false, \
aoqi@1 152 "Use 80486 Compliant instruction subset") \
aoqi@1 153 \
fujie@213 154 product(bool, UseCountLeadingZerosInstruction, true, \
aoqi@1 155 "Use count leading zeros instruction") \
aoqi@1 156 \
aoqi@1 157 product(bool, UseCountTrailingZerosInstruction, false, \
aoqi@1 158 "Use count trailing zeros instruction") \
aoqi@1 159 \
aoqi@1 160 product(bool, UseBMI1Instructions, false, \
aoqi@1 161 "Use BMI instructions")
aoqi@1 162
aoqi@1 163 #endif // CPU_MIPS_VM_GLOBALS_MIPS_HPP

mercurial