src/cpu/sparc/vm/vm_version_sparc.cpp

Thu, 27 Dec 2018 11:43:33 +0800

author
aoqi
date
Thu, 27 Dec 2018 11:43:33 +0800
changeset 9448
73d689add964
parent 9311
cb0b95b67cb2
parent 9041
95a08233f46c
child 9806
758c07667682
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
mchinnathamb@9311 2 * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "asm/macroAssembler.inline.hpp"
aoqi@0 27 #include "memory/resourceArea.hpp"
aoqi@0 28 #include "runtime/java.hpp"
aoqi@0 29 #include "runtime/stubCodeGenerator.hpp"
aoqi@0 30 #include "vm_version_sparc.hpp"
aoqi@0 31 #ifdef TARGET_OS_FAMILY_linux
aoqi@0 32 # include "os_linux.inline.hpp"
aoqi@0 33 #endif
aoqi@0 34 #ifdef TARGET_OS_FAMILY_solaris
aoqi@0 35 # include "os_solaris.inline.hpp"
aoqi@0 36 #endif
aoqi@0 37
aoqi@0 38 int VM_Version::_features = VM_Version::unknown_m;
aoqi@0 39 const char* VM_Version::_features_str = "";
iveresov@7767 40 unsigned int VM_Version::_L2_data_cache_line_size = 0;
aoqi@0 41
aoqi@0 42 void VM_Version::initialize() {
poonam@8329 43
poonam@8329 44 assert(_features != VM_Version::unknown_m, "System pre-initialization is not complete.");
poonam@8329 45 guarantee(VM_Version::has_v9(), "only SPARC v9 is supported");
poonam@8329 46
aoqi@0 47 PrefetchCopyIntervalInBytes = prefetch_copy_interval_in_bytes();
aoqi@0 48 PrefetchScanIntervalInBytes = prefetch_scan_interval_in_bytes();
aoqi@0 49 PrefetchFieldsAhead = prefetch_fields_ahead();
aoqi@0 50
aoqi@0 51 assert(0 <= AllocatePrefetchInstr && AllocatePrefetchInstr <= 1, "invalid value");
aoqi@0 52 if( AllocatePrefetchInstr < 0 ) AllocatePrefetchInstr = 0;
aoqi@0 53 if( AllocatePrefetchInstr > 1 ) AllocatePrefetchInstr = 0;
aoqi@0 54
aoqi@0 55 // Allocation prefetch settings
aoqi@0 56 intx cache_line_size = prefetch_data_size();
aoqi@0 57 if( cache_line_size > AllocatePrefetchStepSize )
aoqi@0 58 AllocatePrefetchStepSize = cache_line_size;
aoqi@0 59
aoqi@0 60 assert(AllocatePrefetchLines > 0, "invalid value");
aoqi@0 61 if( AllocatePrefetchLines < 1 ) // set valid value in product VM
aoqi@0 62 AllocatePrefetchLines = 3;
aoqi@0 63 assert(AllocateInstancePrefetchLines > 0, "invalid value");
aoqi@0 64 if( AllocateInstancePrefetchLines < 1 ) // set valid value in product VM
aoqi@0 65 AllocateInstancePrefetchLines = 1;
aoqi@0 66
aoqi@0 67 AllocatePrefetchDistance = allocate_prefetch_distance();
aoqi@0 68 AllocatePrefetchStyle = allocate_prefetch_style();
aoqi@0 69
aoqi@0 70 assert((AllocatePrefetchDistance % AllocatePrefetchStepSize) == 0 &&
aoqi@0 71 (AllocatePrefetchDistance > 0), "invalid value");
aoqi@0 72 if ((AllocatePrefetchDistance % AllocatePrefetchStepSize) != 0 ||
aoqi@0 73 (AllocatePrefetchDistance <= 0)) {
aoqi@0 74 AllocatePrefetchDistance = AllocatePrefetchStepSize;
aoqi@0 75 }
aoqi@0 76
vkempik@8645 77 if (AllocatePrefetchStyle == 3 && (!has_blk_init() || cache_line_size <= 0)) {
aoqi@0 78 warning("BIS instructions are not available on this CPU");
aoqi@0 79 FLAG_SET_DEFAULT(AllocatePrefetchStyle, 1);
aoqi@0 80 }
aoqi@0 81
aoqi@0 82 assert(ArraycopySrcPrefetchDistance < 4096, "invalid value");
aoqi@0 83 if (ArraycopySrcPrefetchDistance >= 4096)
aoqi@0 84 ArraycopySrcPrefetchDistance = 4064;
aoqi@0 85 assert(ArraycopyDstPrefetchDistance < 4096, "invalid value");
aoqi@0 86 if (ArraycopyDstPrefetchDistance >= 4096)
aoqi@0 87 ArraycopyDstPrefetchDistance = 4064;
aoqi@0 88
aoqi@0 89 UseSSE = 0; // Only on x86 and x64
aoqi@0 90
aoqi@0 91 _supports_cx8 = has_v9();
aoqi@0 92 _supports_atomic_getset4 = true; // swap instruction
aoqi@0 93
aoqi@0 94 // There are Fujitsu Sparc64 CPUs which support blk_init as well so
aoqi@0 95 // we have to take this check out of the 'is_niagara()' block below.
aoqi@0 96 if (has_blk_init()) {
aoqi@0 97 // When using CMS or G1, we cannot use memset() in BOT updates
aoqi@0 98 // because the sun4v/CMT version in libc_psr uses BIS which
aoqi@0 99 // exposes "phantom zeros" to concurrent readers. See 6948537.
aoqi@0 100 if (FLAG_IS_DEFAULT(UseMemSetInBOT) && (UseConcMarkSweepGC || UseG1GC)) {
aoqi@0 101 FLAG_SET_DEFAULT(UseMemSetInBOT, false);
aoqi@0 102 }
aoqi@0 103 // Issue a stern warning if the user has explicitly set
aoqi@0 104 // UseMemSetInBOT (it is known to cause issues), but allow
aoqi@0 105 // use for experimentation and debugging.
aoqi@0 106 if (UseConcMarkSweepGC || UseG1GC) {
aoqi@0 107 if (UseMemSetInBOT) {
aoqi@0 108 assert(!FLAG_IS_DEFAULT(UseMemSetInBOT), "Error");
aoqi@0 109 warning("Experimental flag -XX:+UseMemSetInBOT is known to cause instability"
aoqi@0 110 " on sun4v; please understand that you are using at your own risk!");
aoqi@0 111 }
aoqi@0 112 }
aoqi@0 113 }
aoqi@0 114
aoqi@0 115 if (is_niagara()) {
aoqi@0 116 // Indirect branch is the same cost as direct
aoqi@0 117 if (FLAG_IS_DEFAULT(UseInlineCaches)) {
aoqi@0 118 FLAG_SET_DEFAULT(UseInlineCaches, false);
aoqi@0 119 }
aoqi@0 120 // Align loops on a single instruction boundary.
aoqi@0 121 if (FLAG_IS_DEFAULT(OptoLoopAlignment)) {
aoqi@0 122 FLAG_SET_DEFAULT(OptoLoopAlignment, 4);
aoqi@0 123 }
aoqi@0 124 #ifdef _LP64
aoqi@0 125 // 32-bit oops don't make sense for the 64-bit VM on sparc
aoqi@0 126 // since the 32-bit VM has the same registers and smaller objects.
aoqi@0 127 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
aoqi@0 128 Universe::set_narrow_klass_shift(LogKlassAlignmentInBytes);
aoqi@0 129 #endif // _LP64
aoqi@0 130 #ifdef COMPILER2
aoqi@0 131 // Indirect branch is the same cost as direct
aoqi@0 132 if (FLAG_IS_DEFAULT(UseJumpTables)) {
aoqi@0 133 FLAG_SET_DEFAULT(UseJumpTables, true);
aoqi@0 134 }
aoqi@0 135 // Single-issue, so entry and loop tops are
aoqi@0 136 // aligned on a single instruction boundary
aoqi@0 137 if (FLAG_IS_DEFAULT(InteriorEntryAlignment)) {
aoqi@0 138 FLAG_SET_DEFAULT(InteriorEntryAlignment, 4);
aoqi@0 139 }
aoqi@0 140 if (is_niagara_plus()) {
vkempik@8645 141 if (has_blk_init() && (cache_line_size > 0) && UseTLAB &&
aoqi@0 142 FLAG_IS_DEFAULT(AllocatePrefetchInstr)) {
mchinnathamb@9311 143 if (!has_sparc5_instr()) {
mchinnathamb@9311 144 // Use BIS instruction for TLAB allocation prefetch
mchinnathamb@9311 145 // on Niagara plus processors other than those based on CoreS4.
mchinnathamb@9311 146 FLAG_SET_DEFAULT(AllocatePrefetchInstr, 1);
mchinnathamb@9311 147 } else {
mchinnathamb@9311 148 // On CoreS4 processors use prefetch instruction
mchinnathamb@9311 149 // to avoid partial RAW issue, also use prefetch style 3.
mchinnathamb@9311 150 FLAG_SET_DEFAULT(AllocatePrefetchInstr, 0);
mchinnathamb@9311 151 if (FLAG_IS_DEFAULT(AllocatePrefetchStyle)) {
mchinnathamb@9311 152 FLAG_SET_DEFAULT(AllocatePrefetchStyle, 3);
mchinnathamb@9311 153 }
aoqi@0 154 }
aoqi@0 155 if (FLAG_IS_DEFAULT(AllocatePrefetchDistance)) {
aoqi@0 156 // Use smaller prefetch distance with BIS
aoqi@0 157 FLAG_SET_DEFAULT(AllocatePrefetchDistance, 64);
aoqi@0 158 }
aoqi@0 159 }
aoqi@0 160 if (is_T4()) {
aoqi@0 161 // Double number of prefetched cache lines on T4
aoqi@0 162 // since L2 cache line size is smaller (32 bytes).
aoqi@0 163 if (FLAG_IS_DEFAULT(AllocatePrefetchLines)) {
aoqi@0 164 FLAG_SET_ERGO(intx, AllocatePrefetchLines, AllocatePrefetchLines*2);
aoqi@0 165 }
aoqi@0 166 if (FLAG_IS_DEFAULT(AllocateInstancePrefetchLines)) {
aoqi@0 167 FLAG_SET_ERGO(intx, AllocateInstancePrefetchLines, AllocateInstancePrefetchLines*2);
aoqi@0 168 }
aoqi@0 169 }
aoqi@0 170 if (AllocatePrefetchStyle != 3 && FLAG_IS_DEFAULT(AllocatePrefetchDistance)) {
aoqi@0 171 // Use different prefetch distance without BIS
aoqi@0 172 FLAG_SET_DEFAULT(AllocatePrefetchDistance, 256);
aoqi@0 173 }
aoqi@0 174 if (AllocatePrefetchInstr == 1) {
mchinnathamb@9311 175
mchinnathamb@9311 176 // Use allocation prefetch style 3 because BIS instructions
mchinnathamb@9311 177 // require aligned memory addresses.
mchinnathamb@9311 178 FLAG_SET_DEFAULT(AllocatePrefetchStyle, 3);
mchinnathamb@9311 179
aoqi@0 180 // Need a space at the end of TLAB for BIS since it
aoqi@0 181 // will fault when accessing memory outside of heap.
aoqi@0 182
aoqi@0 183 // +1 for rounding up to next cache line, +1 to be safe
aoqi@0 184 int lines = AllocatePrefetchLines + 2;
aoqi@0 185 int step_size = AllocatePrefetchStepSize;
aoqi@0 186 int distance = AllocatePrefetchDistance;
aoqi@0 187 _reserve_for_allocation_prefetch = (distance + step_size*lines)/(int)HeapWordSize;
aoqi@0 188 }
aoqi@0 189 }
aoqi@0 190 #endif
aoqi@0 191 }
aoqi@0 192
aoqi@0 193 // Use hardware population count instruction if available.
aoqi@0 194 if (has_hardware_popc()) {
aoqi@0 195 if (FLAG_IS_DEFAULT(UsePopCountInstruction)) {
aoqi@0 196 FLAG_SET_DEFAULT(UsePopCountInstruction, true);
aoqi@0 197 }
aoqi@0 198 } else if (UsePopCountInstruction) {
aoqi@0 199 warning("POPC instruction is not available on this CPU");
aoqi@0 200 FLAG_SET_DEFAULT(UsePopCountInstruction, false);
aoqi@0 201 }
aoqi@0 202
aoqi@0 203 // T4 and newer Sparc cpus have new compare and branch instruction.
aoqi@0 204 if (has_cbcond()) {
aoqi@0 205 if (FLAG_IS_DEFAULT(UseCBCond)) {
aoqi@0 206 FLAG_SET_DEFAULT(UseCBCond, true);
aoqi@0 207 }
aoqi@0 208 } else if (UseCBCond) {
aoqi@0 209 warning("CBCOND instruction is not available on this CPU");
aoqi@0 210 FLAG_SET_DEFAULT(UseCBCond, false);
aoqi@0 211 }
aoqi@0 212
aoqi@0 213 assert(BlockZeroingLowLimit > 0, "invalid value");
iveresov@7135 214 if (has_block_zeroing() && cache_line_size > 0) {
aoqi@0 215 if (FLAG_IS_DEFAULT(UseBlockZeroing)) {
aoqi@0 216 FLAG_SET_DEFAULT(UseBlockZeroing, true);
aoqi@0 217 }
aoqi@0 218 } else if (UseBlockZeroing) {
aoqi@0 219 warning("BIS zeroing instructions are not available on this CPU");
aoqi@0 220 FLAG_SET_DEFAULT(UseBlockZeroing, false);
aoqi@0 221 }
aoqi@0 222
aoqi@0 223 assert(BlockCopyLowLimit > 0, "invalid value");
iveresov@7135 224 if (has_block_zeroing() && cache_line_size > 0) { // has_blk_init() && is_T4(): core's local L2 cache
aoqi@0 225 if (FLAG_IS_DEFAULT(UseBlockCopy)) {
aoqi@0 226 FLAG_SET_DEFAULT(UseBlockCopy, true);
aoqi@0 227 }
aoqi@0 228 } else if (UseBlockCopy) {
aoqi@0 229 warning("BIS instructions are not available or expensive on this CPU");
aoqi@0 230 FLAG_SET_DEFAULT(UseBlockCopy, false);
aoqi@0 231 }
aoqi@0 232
aoqi@0 233 #ifdef COMPILER2
aoqi@0 234 // T4 and newer Sparc cpus have fast RDPC.
aoqi@0 235 if (has_fast_rdpc() && FLAG_IS_DEFAULT(UseRDPCForConstantTableBase)) {
aoqi@0 236 FLAG_SET_DEFAULT(UseRDPCForConstantTableBase, true);
aoqi@0 237 }
aoqi@0 238
aoqi@0 239 // Currently not supported anywhere.
aoqi@0 240 FLAG_SET_DEFAULT(UseFPUForSpilling, false);
aoqi@0 241
aoqi@0 242 MaxVectorSize = 8;
aoqi@0 243
aoqi@0 244 assert((InteriorEntryAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
aoqi@0 245 #endif
aoqi@0 246
aoqi@0 247 assert((CodeEntryAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
aoqi@0 248 assert((OptoLoopAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size");
aoqi@0 249
aoqi@0 250 char buf[512];
kevinw@8732 251 jio_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
aoqi@0 252 (has_v9() ? ", v9" : (has_v8() ? ", v8" : "")),
aoqi@0 253 (has_hardware_popc() ? ", popc" : ""),
aoqi@0 254 (has_vis1() ? ", vis1" : ""),
aoqi@0 255 (has_vis2() ? ", vis2" : ""),
aoqi@0 256 (has_vis3() ? ", vis3" : ""),
aoqi@0 257 (has_blk_init() ? ", blk_init" : ""),
aoqi@0 258 (has_cbcond() ? ", cbcond" : ""),
aoqi@0 259 (has_aes() ? ", aes" : ""),
kvn@7027 260 (has_sha1() ? ", sha1" : ""),
kvn@7027 261 (has_sha256() ? ", sha256" : ""),
kvn@7027 262 (has_sha512() ? ", sha512" : ""),
aoqi@0 263 (is_ultra3() ? ", ultra3" : ""),
kevinw@8732 264 (has_sparc5_instr() ? ", sparc5" : ""),
aoqi@0 265 (is_sun4v() ? ", sun4v" : ""),
aoqi@0 266 (is_niagara_plus() ? ", niagara_plus" : (is_niagara() ? ", niagara" : "")),
aoqi@0 267 (is_sparc64() ? ", sparc64" : ""),
aoqi@0 268 (!has_hardware_mul32() ? ", no-mul32" : ""),
aoqi@0 269 (!has_hardware_div32() ? ", no-div32" : ""),
aoqi@0 270 (!has_hardware_fsmuld() ? ", no-fsmuld" : ""));
aoqi@0 271
aoqi@0 272 // buf is started with ", " or is empty
aoqi@0 273 _features_str = strdup(strlen(buf) > 2 ? buf + 2 : buf);
aoqi@0 274
aoqi@0 275 // UseVIS is set to the smallest of what hardware supports and what
aoqi@0 276 // the command line requires. I.e., you cannot set UseVIS to 3 on
aoqi@0 277 // older UltraSparc which do not support it.
aoqi@0 278 if (UseVIS > 3) UseVIS=3;
aoqi@0 279 if (UseVIS < 0) UseVIS=0;
aoqi@0 280 if (!has_vis3()) // Drop to 2 if no VIS3 support
aoqi@0 281 UseVIS = MIN2((intx)2,UseVIS);
aoqi@0 282 if (!has_vis2()) // Drop to 1 if no VIS2 support
aoqi@0 283 UseVIS = MIN2((intx)1,UseVIS);
aoqi@0 284 if (!has_vis1()) // Drop to 0 if no VIS1 support
aoqi@0 285 UseVIS = 0;
aoqi@0 286
aoqi@0 287 // SPARC T4 and above should have support for AES instructions
aoqi@0 288 if (has_aes()) {
aoqi@0 289 if (UseVIS > 2) { // AES intrinsics use MOVxTOd/MOVdTOx which are VIS3
aoqi@0 290 if (FLAG_IS_DEFAULT(UseAES)) {
aoqi@0 291 FLAG_SET_DEFAULT(UseAES, true);
aoqi@0 292 }
aoqi@0 293 if (FLAG_IS_DEFAULT(UseAESIntrinsics)) {
aoqi@0 294 FLAG_SET_DEFAULT(UseAESIntrinsics, true);
aoqi@0 295 }
aoqi@0 296 // we disable both the AES flags if either of them is disabled on the command line
aoqi@0 297 if (!UseAES || !UseAESIntrinsics) {
aoqi@0 298 FLAG_SET_DEFAULT(UseAES, false);
aoqi@0 299 FLAG_SET_DEFAULT(UseAESIntrinsics, false);
aoqi@0 300 }
aoqi@0 301 } else {
aoqi@0 302 if (UseAES || UseAESIntrinsics) {
aoqi@0 303 warning("SPARC AES intrinsics require VIS3 instruction support. Intrinsics will be disabled.");
aoqi@0 304 if (UseAES) {
aoqi@0 305 FLAG_SET_DEFAULT(UseAES, false);
aoqi@0 306 }
aoqi@0 307 if (UseAESIntrinsics) {
aoqi@0 308 FLAG_SET_DEFAULT(UseAESIntrinsics, false);
aoqi@0 309 }
aoqi@0 310 }
aoqi@0 311 }
aoqi@0 312 } else if (UseAES || UseAESIntrinsics) {
aoqi@0 313 warning("AES instructions are not available on this CPU");
aoqi@0 314 if (UseAES) {
aoqi@0 315 FLAG_SET_DEFAULT(UseAES, false);
aoqi@0 316 }
aoqi@0 317 if (UseAESIntrinsics) {
aoqi@0 318 FLAG_SET_DEFAULT(UseAESIntrinsics, false);
aoqi@0 319 }
aoqi@0 320 }
aoqi@0 321
kvn@7027 322 // SHA1, SHA256, and SHA512 instructions were added to SPARC T-series at different times
kvn@7027 323 if (has_sha1() || has_sha256() || has_sha512()) {
kvn@7027 324 if (UseVIS > 0) { // SHA intrinsics use VIS1 instructions
kvn@7027 325 if (FLAG_IS_DEFAULT(UseSHA)) {
kvn@7027 326 FLAG_SET_DEFAULT(UseSHA, true);
kvn@7027 327 }
kvn@7027 328 } else {
kvn@7027 329 if (UseSHA) {
kvn@7027 330 warning("SPARC SHA intrinsics require VIS1 instruction support. Intrinsics will be disabled.");
kvn@7027 331 FLAG_SET_DEFAULT(UseSHA, false);
kvn@7027 332 }
kvn@7027 333 }
kvn@7027 334 } else if (UseSHA) {
kvn@7027 335 warning("SHA instructions are not available on this CPU");
kvn@7027 336 FLAG_SET_DEFAULT(UseSHA, false);
kvn@7027 337 }
kvn@7027 338
kvn@7027 339 if (!UseSHA) {
kvn@7027 340 FLAG_SET_DEFAULT(UseSHA1Intrinsics, false);
kvn@7027 341 FLAG_SET_DEFAULT(UseSHA256Intrinsics, false);
kvn@7027 342 FLAG_SET_DEFAULT(UseSHA512Intrinsics, false);
kvn@7027 343 } else {
kvn@7027 344 if (has_sha1()) {
kvn@7027 345 if (FLAG_IS_DEFAULT(UseSHA1Intrinsics)) {
kvn@7027 346 FLAG_SET_DEFAULT(UseSHA1Intrinsics, true);
kvn@7027 347 }
kvn@7027 348 } else if (UseSHA1Intrinsics) {
kvn@7027 349 warning("SHA1 instruction is not available on this CPU.");
kvn@7027 350 FLAG_SET_DEFAULT(UseSHA1Intrinsics, false);
kvn@7027 351 }
kvn@7027 352 if (has_sha256()) {
kvn@7027 353 if (FLAG_IS_DEFAULT(UseSHA256Intrinsics)) {
kvn@7027 354 FLAG_SET_DEFAULT(UseSHA256Intrinsics, true);
kvn@7027 355 }
kvn@7027 356 } else if (UseSHA256Intrinsics) {
kvn@7027 357 warning("SHA256 instruction (for SHA-224 and SHA-256) is not available on this CPU.");
kvn@7027 358 FLAG_SET_DEFAULT(UseSHA256Intrinsics, false);
kvn@7027 359 }
kvn@7027 360
kvn@7027 361 if (has_sha512()) {
kvn@7027 362 if (FLAG_IS_DEFAULT(UseSHA512Intrinsics)) {
kvn@7027 363 FLAG_SET_DEFAULT(UseSHA512Intrinsics, true);
kvn@7027 364 }
kvn@7027 365 } else if (UseSHA512Intrinsics) {
kvn@7027 366 warning("SHA512 instruction (for SHA-384 and SHA-512) is not available on this CPU.");
kvn@7027 367 FLAG_SET_DEFAULT(UseSHA512Intrinsics, false);
kvn@7027 368 }
kvn@7027 369 if (!(UseSHA1Intrinsics || UseSHA256Intrinsics || UseSHA512Intrinsics)) {
kvn@7027 370 FLAG_SET_DEFAULT(UseSHA, false);
kvn@7027 371 }
kvn@7027 372 }
kvn@7027 373
aoqi@0 374 if (FLAG_IS_DEFAULT(ContendedPaddingWidth) &&
aoqi@0 375 (cache_line_size > ContendedPaddingWidth))
aoqi@0 376 ContendedPaddingWidth = cache_line_size;
aoqi@0 377
aoqi@0 378 #ifndef PRODUCT
aoqi@0 379 if (PrintMiscellaneous && Verbose) {
kevinw@8729 380 tty->print_cr("L1 data cache line size: %u", L1_data_cache_line_size());
iveresov@7767 381 tty->print_cr("L2 data cache line size: %u", L2_data_cache_line_size());
aoqi@0 382 tty->print("Allocation");
aoqi@0 383 if (AllocatePrefetchStyle <= 0) {
aoqi@0 384 tty->print_cr(": no prefetching");
aoqi@0 385 } else {
aoqi@0 386 tty->print(" prefetching: ");
aoqi@0 387 if (AllocatePrefetchInstr == 0) {
aoqi@0 388 tty->print("PREFETCH");
aoqi@0 389 } else if (AllocatePrefetchInstr == 1) {
aoqi@0 390 tty->print("BIS");
aoqi@0 391 }
aoqi@0 392 if (AllocatePrefetchLines > 1) {
aoqi@0 393 tty->print_cr(" at distance %d, %d lines of %d bytes", (int) AllocatePrefetchDistance, (int) AllocatePrefetchLines, (int) AllocatePrefetchStepSize);
aoqi@0 394 } else {
aoqi@0 395 tty->print_cr(" at distance %d, one line of %d bytes", (int) AllocatePrefetchDistance, (int) AllocatePrefetchStepSize);
aoqi@0 396 }
aoqi@0 397 }
aoqi@0 398 if (PrefetchCopyIntervalInBytes > 0) {
aoqi@0 399 tty->print_cr("PrefetchCopyIntervalInBytes %d", (int) PrefetchCopyIntervalInBytes);
aoqi@0 400 }
aoqi@0 401 if (PrefetchScanIntervalInBytes > 0) {
aoqi@0 402 tty->print_cr("PrefetchScanIntervalInBytes %d", (int) PrefetchScanIntervalInBytes);
aoqi@0 403 }
aoqi@0 404 if (PrefetchFieldsAhead > 0) {
aoqi@0 405 tty->print_cr("PrefetchFieldsAhead %d", (int) PrefetchFieldsAhead);
aoqi@0 406 }
aoqi@0 407 if (ContendedPaddingWidth > 0) {
aoqi@0 408 tty->print_cr("ContendedPaddingWidth %d", (int) ContendedPaddingWidth);
aoqi@0 409 }
aoqi@0 410 }
aoqi@0 411 #endif // PRODUCT
aoqi@0 412 }
aoqi@0 413
aoqi@0 414 void VM_Version::print_features() {
aoqi@0 415 tty->print_cr("Version:%s", cpu_features());
aoqi@0 416 }
aoqi@0 417
aoqi@0 418 int VM_Version::determine_features() {
aoqi@0 419 if (UseV8InstrsOnly) {
aoqi@0 420 NOT_PRODUCT(if (PrintMiscellaneous && Verbose) tty->print_cr("Version is Forced-V8");)
aoqi@0 421 return generic_v8_m;
aoqi@0 422 }
aoqi@0 423
aoqi@0 424 int features = platform_features(unknown_m); // platform_features() is os_arch specific
aoqi@0 425
aoqi@0 426 if (features == unknown_m) {
aoqi@0 427 features = generic_v9_m;
aoqi@0 428 warning("Cannot recognize SPARC version. Default to V9");
aoqi@0 429 }
aoqi@0 430
aoqi@0 431 assert(is_T_family(features) == is_niagara(features), "Niagara should be T series");
aoqi@0 432 if (UseNiagaraInstrs) { // Force code generation for Niagara
aoqi@0 433 if (is_T_family(features)) {
aoqi@0 434 // Happy to accomodate...
aoqi@0 435 } else {
aoqi@0 436 NOT_PRODUCT(if (PrintMiscellaneous && Verbose) tty->print_cr("Version is Forced-Niagara");)
aoqi@0 437 features |= T_family_m;
aoqi@0 438 }
aoqi@0 439 } else {
aoqi@0 440 if (is_T_family(features) && !FLAG_IS_DEFAULT(UseNiagaraInstrs)) {
aoqi@0 441 NOT_PRODUCT(if (PrintMiscellaneous && Verbose) tty->print_cr("Version is Forced-Not-Niagara");)
aoqi@0 442 features &= ~(T_family_m | T1_model_m);
aoqi@0 443 } else {
aoqi@0 444 // Happy to accomodate...
aoqi@0 445 }
aoqi@0 446 }
aoqi@0 447
aoqi@0 448 return features;
aoqi@0 449 }
aoqi@0 450
aoqi@0 451 static int saved_features = 0;
aoqi@0 452
aoqi@0 453 void VM_Version::allow_all() {
aoqi@0 454 saved_features = _features;
aoqi@0 455 _features = all_features_m;
aoqi@0 456 }
aoqi@0 457
aoqi@0 458 void VM_Version::revert() {
aoqi@0 459 _features = saved_features;
aoqi@0 460 }
aoqi@0 461
aoqi@0 462 unsigned int VM_Version::calc_parallel_worker_threads() {
aoqi@0 463 unsigned int result;
kevinw@8733 464 if (is_M_series() || is_S_series()) {
kevinw@8733 465 // for now, use same gc thread calculation for M-series and S-series as for
kevinw@8733 466 // niagara-plus. In future, we may want to tweak parameters for
kevinw@8733 467 // nof_parallel_worker_thread
aoqi@0 468 result = nof_parallel_worker_threads(5, 16, 8);
aoqi@0 469 } else if (is_niagara_plus()) {
aoqi@0 470 result = nof_parallel_worker_threads(5, 16, 8);
aoqi@0 471 } else {
aoqi@0 472 result = nof_parallel_worker_threads(5, 8, 8);
aoqi@0 473 }
aoqi@0 474 return result;
aoqi@0 475 }
kevinw@8731 476
kevinw@8731 477
kevinw@8731 478 int VM_Version::parse_features(const char* implementation) {
kevinw@8731 479 int features = unknown_m;
kevinw@8731 480 // Convert to UPPER case before compare.
kevinw@8731 481 char* impl = os::strdup(implementation);
kevinw@8731 482
kevinw@8731 483 for (int i = 0; impl[i] != 0; i++)
kevinw@8731 484 impl[i] = (char)toupper((uint)impl[i]);
kevinw@8731 485
kevinw@8731 486 if (strstr(impl, "SPARC64") != NULL) {
kevinw@8731 487 features |= sparc64_family_m;
kevinw@8731 488 } else if (strstr(impl, "SPARC-M") != NULL) {
kevinw@8731 489 // M-series SPARC is based on T-series.
kevinw@8731 490 features |= (M_family_m | T_family_m);
kevinw@8733 491 } else if (strstr(impl, "SPARC-S") != NULL) {
kevinw@8733 492 // S-series SPARC is based on T-series.
kevinw@8733 493 features |= (S_family_m | T_family_m);
kevinw@8731 494 } else if (strstr(impl, "SPARC-T") != NULL) {
kevinw@8731 495 features |= T_family_m;
kevinw@8731 496 if (strstr(impl, "SPARC-T1") != NULL) {
kevinw@8731 497 features |= T1_model_m;
kevinw@8731 498 }
kevinw@8732 499 } else if (strstr(impl, "SUN4V-CPU") != NULL) {
kevinw@8732 500 // Generic or migration class LDOM
kevinw@8732 501 features |= T_family_m;
kevinw@8731 502 } else {
kevinw@8731 503 #ifndef PRODUCT
kevinw@8732 504 warning("Failed to parse CPU implementation = '%s'", impl);
kevinw@8731 505 #endif
kevinw@8731 506 }
kevinw@8731 507 os::free((void*)impl);
kevinw@8731 508 return features;
kevinw@8731 509 }

mercurial