1 /* 2 * Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved. 3 * Copyright (c) 2012, 2020 SAP SE. All rights reserved. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 * 6 * This code is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 only, as 8 * published by the Free Software Foundation. 9 * 10 * This code is distributed in the hope that it will be useful, but WITHOUT 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13 * version 2 for more details (a copy is included in the LICENSE file that 14 * accompanied this code). 15 * 16 * You should have received a copy of the GNU General Public License version 17 * 2 along with this work; if not, write to the Free Software Foundation, 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 * 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 * or visit www.oracle.com if you need additional information or have any 22 * questions. 23 * 24 */ 25 26 #ifndef CPU_PPC_GLOBALS_PPC_HPP 27 #define CPU_PPC_GLOBALS_PPC_HPP 28 29 #include "utilities/globalDefinitions.hpp" 30 #include "utilities/macros.hpp" 31 32 // Sets the default values for platform dependent flags used by the runtime system. 33 // (see globals.hpp) 34 35 define_pd_global(bool, ImplicitNullChecks, true); // Generate code for implicit null checks. 36 define_pd_global(bool, TrapBasedNullChecks, true); 37 define_pd_global(bool, UncommonNullCast, true); // Uncommon-trap NULLs passed to check cast. 38 39 #define DEFAULT_STACK_YELLOW_PAGES (2) 40 #define DEFAULT_STACK_RED_PAGES (1) 41 // Java_java_net_SocketOutputStream_socketWrite0() uses a 64k buffer on the 42 // stack if compiled for unix and LP64. To pass stack overflow tests we need 43 // 20 shadow pages. 44 #define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+2)) 45 #define DEFAULT_STACK_RESERVED_PAGES (1) 46 47 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES 48 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES 49 #define MIN_STACK_SHADOW_PAGES (3 DEBUG_ONLY(+1)) 50 #define MIN_STACK_RESERVED_PAGES (0) 51 52 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES); 53 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES); 54 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES); 55 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES); 56 57 // Use large code-entry alignment. 58 define_pd_global(uintx, CodeCacheSegmentSize, 128); 59 define_pd_global(intx, CodeEntryAlignment, 128); 60 define_pd_global(intx, OptoLoopAlignment, 16); 61 define_pd_global(intx, InlineFrequencyCount, 100); 62 define_pd_global(intx, InlineSmallCode, 1500); 63 64 // Flags for template interpreter. 65 define_pd_global(bool, RewriteBytecodes, true); 66 define_pd_global(bool, RewriteFrequentPairs, true); 67 68 define_pd_global(bool, PreserveFramePointer, false); 69 70 define_pd_global(uintx, TypeProfileLevel, 111); 71 72 define_pd_global(bool, CompactStrings, true); 73 74 // 2x unrolled loop is shorter with more than 9 HeapWords. 75 define_pd_global(intx, InitArrayShortSize, 9*BytesPerLong); 76 77 // Platform dependent flag handling: flags only defined on this platform. 78 #define ARCH_FLAGS(develop, \ 79 product, \ 80 notproduct, \ 81 range, \ 82 constraint) \ 83 \ 84 product(uintx, PowerArchitecturePPC64, 0, DIAGNOSTIC, \ 85 "Specify the PowerPC family version in use. If not provided, " \ 86 "HotSpot will determine it automatically. Host family version " \ 87 "is the maximum value allowed (instructions are not emulated).") \ 88 \ 89 /* Reoptimize code-sequences of calls at runtime, e.g. replace an */ \ 90 /* indirect call by a direct call. */ \ 91 product(bool, ReoptimizeCallSequences, true, DIAGNOSTIC, \ 92 "Reoptimize code-sequences of calls at runtime.") \ 93 \ 94 /* Power 8: Configure Data Stream Control Register. */ \ 95 product(uint64_t, DSCR_PPC64, (uint64_t)-1, \ 96 "Power8 or later: Specify encoded value for Data Stream Control " \ 97 "Register") \ 98 product(uint64_t, DSCR_DPFD_PPC64, 8, \ 99 "Power8 or later: DPFD (default prefetch depth) value of the " \ 100 "Data Stream Control Register." \ 101 " 0: hardware default, 1: none, 2-7: min-max, 8: don't touch") \ 102 product(uint64_t, DSCR_URG_PPC64, 8, \ 103 "Power8 or later: URG (depth attainment urgency) value of the " \ 104 "Data Stream Control Register." \ 105 " 0: hardware default, 1: none, 2-7: min-max, 8: don't touch") \ 106 \ 107 product(bool, UseLoadInstructionsForStackBangingPPC64, false, DIAGNOSTIC, \ 108 "Use load instructions for stack banging.") \ 109 \ 110 product(bool, UseStaticBranchPredictionInCompareAndSwapPPC64, true, DIAGNOSTIC,\ 111 "Use static branch prediction hints in CAS operations.") \ 112 product(bool, UseStaticBranchPredictionForUncommonPathsPPC64, false, DIAGNOSTIC,\ 113 "Use static branch prediction hints for uncommon paths.") \ 114 \ 115 /* special instructions */ \ 116 product(bool, SuperwordUseVSX, false, \ 117 "Use Power8 VSX instructions for superword optimization.") \ 118 \ 119 product(bool, UseByteReverseInstructions, false, DIAGNOSTIC, \ 120 "Use byte reverse instructions.") \ 121 \ 122 product(bool, UseVectorByteReverseInstructionsPPC64, false, DIAGNOSTIC, \ 123 "Use Power9 xxbr* vector byte reverse instructions.") \ 124 \ 125 product(bool, UseCountLeadingZerosInstructionsPPC64, true, DIAGNOSTIC, \ 126 "Use count leading zeros instructions.") \ 127 \ 128 product(bool, UseCountTrailingZerosInstructionsPPC64, false, DIAGNOSTIC, \ 129 "Use count trailing zeros instructions.") \ 130 \ 131 product(bool, UseExtendedLoadAndReserveInstructionsPPC64, false, DIAGNOSTIC,\ 132 "Use extended versions of load-and-reserve instructions.") \ 133 \ 134 product(bool, UseRotateAndMaskInstructionsPPC64, true, DIAGNOSTIC, \ 135 "Use rotate and mask instructions.") \ 136 \ 137 /* Trap based checks. */ \ 138 /* Trap based checks use the ppc trap instructions to check certain */ \ 139 /* conditions. This instruction raises a SIGTRAP caught by the */ \ 140 /* exception handler of the VM. */ \ 141 product(bool, UseSIGTRAP, true, \ 142 "Allow trap instructions that make use of SIGTRAP. Use this to " \ 143 "switch off all optimizations requiring SIGTRAP.") \ 144 product(bool, TrapBasedICMissChecks, true, DIAGNOSTIC, \ 145 "Raise and handle SIGTRAP if inline cache miss detected.") \ 146 \ 147 product(bool, TraceTraps, false, DIAGNOSTIC, \ 148 "Trace all traps the signal handler handles.") \ 149 \ 150 develop(bool, ZapMemory, false, \ 151 "Write 0x0101... to empty memory. Use this to ease debugging.") \ 152 \ 153 /* Use Restricted Transactional Memory for lock elision */ \ 154 product(bool, UseRTMLocking, false, \ 155 "Enable RTM lock eliding for inflated locks in compiled code") \ 156 \ 157 product(bool, UseRTMForStackLocks, false, EXPERIMENTAL, \ 158 "Enable RTM lock eliding for stack locks in compiled code") \ 159 \ 160 product(bool, UseRTMDeopt, false, \ 161 "Perform deopt and recompilation based on RTM abort ratio") \ 162 \ 163 product(int, RTMRetryCount, 5, \ 164 "Number of RTM retries on lock abort or busy") \ 165 range(0, max_jint) \ 166 \ 167 product(int, RTMSpinLoopCount, 100, EXPERIMENTAL, \ 168 "Spin count for lock to become free before RTM retry") \ 169 range(0, 32767) /* immediate operand limit on ppc */ \ 170 \ 171 product(int, RTMAbortThreshold, 1000, EXPERIMENTAL, \ 172 "Calculate abort ratio after this number of aborts") \ 173 range(0, max_jint) \ 174 \ 175 product(int, RTMLockingThreshold, 10000, EXPERIMENTAL, \ 176 "Lock count at which to do RTM lock eliding without " \ 177 "abort ratio calculation") \ 178 range(0, max_jint) \ 179 \ 180 product(int, RTMAbortRatio, 50, EXPERIMENTAL, \ 181 "Lock abort ratio at which to stop use RTM lock eliding") \ 182 range(0, 100) /* natural range */ \ 183 \ 184 product(int, RTMTotalCountIncrRate, 64, EXPERIMENTAL, \ 185 "Increment total RTM attempted lock count once every n times") \ 186 range(1, 32767) /* immediate operand limit on ppc */ \ 187 constraint(RTMTotalCountIncrRateConstraintFunc,AfterErgo) \ 188 \ 189 product(intx, RTMLockingCalculationDelay, 0, EXPERIMENTAL, \ 190 "Number of milliseconds to wait before start calculating aborts " \ 191 "for RTM locking") \ 192 \ 193 product(bool, UseRTMXendForLockBusy, true, EXPERIMENTAL, \ 194 "Use RTM Xend instead of Xabort when lock busy") 195 196 // end of ARCH_FLAGS 197 198 #endif // CPU_PPC_GLOBALS_PPC_HPP 199