1 /* 2 * Copyright (c) 2002, 2024, Oracle and/or its affiliates. All rights reserved. 3 * Copyright (c) 2012, 2023 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_pd_global(bool, DelayCompilerStubsGeneration, COMPILER2_OR_JVMCI); 40 41 #define DEFAULT_STACK_YELLOW_PAGES (2) 42 #define DEFAULT_STACK_RED_PAGES (1) 43 // Java_java_net_SocketOutputStream_socketWrite0() uses a 64k buffer on the 44 // stack if compiled for unix and LP64. To pass stack overflow tests we need 45 // 20 shadow pages. 46 #define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+2)) 47 #define DEFAULT_STACK_RESERVED_PAGES (1) 48 49 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES 50 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES 51 #define MIN_STACK_SHADOW_PAGES (3 DEBUG_ONLY(+1)) 52 #define MIN_STACK_RESERVED_PAGES (0) 53 54 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES); 55 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES); 56 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES); 57 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES); 58 59 define_pd_global(bool, VMContinuations, true); 60 61 // Use large code-entry alignment. 62 define_pd_global(uintx, CodeCacheSegmentSize, 128); 63 define_pd_global(intx, CodeEntryAlignment, 64); 64 define_pd_global(intx, OptoLoopAlignment, 16); 65 define_pd_global(intx, InlineSmallCode, 1500); 66 67 // Flags for template interpreter. 68 define_pd_global(bool, RewriteBytecodes, true); 69 define_pd_global(bool, RewriteFrequentPairs, true); 70 71 define_pd_global(bool, PreserveFramePointer, false); 72 73 define_pd_global(bool, InlineTypePassFieldsAsArgs, false); 74 define_pd_global(bool, InlineTypeReturnedAsFields, false); 75 76 define_pd_global(uintx, TypeProfileLevel, 111); 77 78 define_pd_global(bool, CompactStrings, true); 79 80 // 2x unrolled loop is shorter with more than 9 HeapWords. 81 define_pd_global(intx, InitArrayShortSize, 9*BytesPerLong); 82 83 // Platform dependent flag handling: flags only defined on this platform. 84 #define ARCH_FLAGS(develop, \ 85 product, \ 86 range, \ 87 constraint) \ 88 \ 89 product(uintx, PowerArchitecturePPC64, 0, DIAGNOSTIC, \ 90 "Specify the PowerPC family version in use. If not provided, " \ 91 "HotSpot will determine it automatically. Host family version " \ 92 "is the maximum value allowed (instructions are not emulated).") \ 93 \ 94 /* Reoptimize code-sequences of calls at runtime, e.g. replace an */ \ 95 /* indirect call by a direct call. */ \ 96 product(bool, ReoptimizeCallSequences, true, DIAGNOSTIC, \ 97 "Reoptimize code-sequences of calls at runtime.") \ 98 \ 99 /* Power 8: Configure Data Stream Control Register. */ \ 100 product(uint64_t, DSCR_PPC64, (uint64_t)-1, \ 101 "Power8 or later: Specify encoded value for Data Stream Control " \ 102 "Register") \ 103 product(uint64_t, DSCR_DPFD_PPC64, 8, \ 104 "Power8 or later: DPFD (default prefetch depth) value of the " \ 105 "Data Stream Control Register." \ 106 " 0: hardware default, 1: none, 2-7: min-max, 8: don't touch") \ 107 product(uint64_t, DSCR_URG_PPC64, 8, \ 108 "Power8 or later: URG (depth attainment urgency) value of the " \ 109 "Data Stream Control Register." \ 110 " 0: hardware default, 1: none, 2-7: min-max, 8: don't touch") \ 111 \ 112 product(bool, UseLoadInstructionsForStackBangingPPC64, false, DIAGNOSTIC, \ 113 "Use load instructions for stack banging.") \ 114 \ 115 product(bool, UseStaticBranchPredictionInCompareAndSwapPPC64, true, DIAGNOSTIC,\ 116 "Use static branch prediction hints in CAS operations.") \ 117 product(bool, UseStaticBranchPredictionForUncommonPathsPPC64, false, DIAGNOSTIC,\ 118 "Use static branch prediction hints for uncommon paths.") \ 119 \ 120 /* special instructions */ \ 121 product(bool, SuperwordUseVSX, false, \ 122 "Use Power8 VSX instructions for superword optimization.") \ 123 \ 124 product(bool, UseByteReverseInstructions, false, DIAGNOSTIC, \ 125 "Use byte reverse instructions.") \ 126 \ 127 product(bool, UseVectorByteReverseInstructionsPPC64, false, DIAGNOSTIC, \ 128 "Use Power9 xxbr* vector byte reverse instructions.") \ 129 \ 130 product(bool, UseCountLeadingZerosInstructionsPPC64, true, DIAGNOSTIC, \ 131 "Use count leading zeros instructions.") \ 132 \ 133 product(bool, UseCountTrailingZerosInstructionsPPC64, false, DIAGNOSTIC, \ 134 "Use count trailing zeros instructions.") \ 135 \ 136 product(bool, UseExtendedLoadAndReserveInstructionsPPC64, false, DIAGNOSTIC,\ 137 "Use extended versions of load-and-reserve instructions.") \ 138 \ 139 product(bool, UseRotateAndMaskInstructionsPPC64, true, DIAGNOSTIC, \ 140 "Use rotate and mask instructions.") \ 141 \ 142 /* Trap based checks. */ \ 143 /* Trap based checks use the ppc trap instructions to check certain */ \ 144 /* conditions. This instruction raises a SIGTRAP caught by the */ \ 145 /* exception handler of the VM. */ \ 146 product(bool, UseSIGTRAP, true, \ 147 "Allow trap instructions that make use of SIGTRAP. Use this to " \ 148 "switch off all optimizations requiring SIGTRAP.") \ 149 product(bool, TrapBasedICMissChecks, true, DIAGNOSTIC, \ 150 "Raise and handle SIGTRAP if inline cache miss detected.") \ 151 \ 152 product(bool, TraceTraps, false, DIAGNOSTIC, \ 153 "Trace all traps the signal handler handles.") \ 154 \ 155 develop(bool, ZapMemory, false, \ 156 "Write 0x0101... to empty memory. Use this to ease debugging.") 157 158 // end of ARCH_FLAGS 159 160 #endif // CPU_PPC_GLOBALS_PPC_HPP