src/cpu/ppc/vm/vm_version_ppc.cpp

Thu, 22 Sep 2016 12:17:24 +0200

author
mdoerr
date
Thu, 22 Sep 2016 12:17:24 +0200
changeset 9497
f892c3b6b651
parent 9496
bcccbecdde63
child 9572
624a0741915c
child 9662
6eedcffa129d
permissions
-rw-r--r--

8164920: ppc: enhancement of CRC32 intrinsic
Reviewed-by: goetz, mdoerr
Contributed-by: Hiroshi H Horii <horii@jp.ibm.com>

goetz@6458 1 /*
drchase@6680 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
goetz@6515 3 * Copyright 2012, 2014 SAP AG. All rights reserved.
goetz@6458 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
goetz@6458 5 *
goetz@6458 6 * This code is free software; you can redistribute it and/or modify it
goetz@6458 7 * under the terms of the GNU General Public License version 2 only, as
goetz@6458 8 * published by the Free Software Foundation.
goetz@6458 9 *
goetz@6458 10 * This code is distributed in the hope that it will be useful, but WITHOUT
goetz@6458 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
goetz@6458 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
goetz@6458 13 * version 2 for more details (a copy is included in the LICENSE file that
goetz@6458 14 * accompanied this code).
goetz@6458 15 *
goetz@6458 16 * You should have received a copy of the GNU General Public License version
goetz@6458 17 * 2 along with this work; if not, write to the Free Software Foundation,
goetz@6458 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
goetz@6458 19 *
goetz@6458 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
goetz@6458 21 * or visit www.oracle.com if you need additional information or have any
goetz@6458 22 * questions.
goetz@6458 23 *
goetz@6458 24 */
goetz@6458 25
goetz@6458 26 #include "precompiled.hpp"
goetz@6511 27 #include "asm/assembler.inline.hpp"
goetz@6511 28 #include "asm/macroAssembler.inline.hpp"
goetz@6458 29 #include "compiler/disassembler.hpp"
goetz@6458 30 #include "memory/resourceArea.hpp"
goetz@6458 31 #include "runtime/java.hpp"
goetz@6458 32 #include "runtime/stubCodeGenerator.hpp"
goetz@6458 33 #include "utilities/defaultStream.hpp"
goetz@6458 34 #include "vm_version_ppc.hpp"
goetz@6458 35 #ifdef TARGET_OS_FAMILY_aix
goetz@6458 36 # include "os_aix.inline.hpp"
goetz@6458 37 #endif
goetz@6458 38 #ifdef TARGET_OS_FAMILY_linux
goetz@6458 39 # include "os_linux.inline.hpp"
goetz@6458 40 #endif
goetz@6458 41
goetz@6458 42 # include <sys/sysinfo.h>
goetz@6458 43
goetz@6458 44 int VM_Version::_features = VM_Version::unknown_m;
goetz@6458 45 int VM_Version::_measured_cache_line_size = 128; // default value
goetz@6458 46 const char* VM_Version::_features_str = "";
goetz@6458 47 bool VM_Version::_is_determine_features_test_running = false;
goetz@6458 48
goetz@6458 49
goetz@6458 50 #define MSG(flag) \
goetz@6458 51 if (flag && !FLAG_IS_DEFAULT(flag)) \
goetz@6458 52 jio_fprintf(defaultStream::error_stream(), \
goetz@6458 53 "warning: -XX:+" #flag " requires -XX:+UseSIGTRAP\n" \
goetz@6458 54 " -XX:+" #flag " will be disabled!\n");
goetz@6458 55
goetz@6458 56 void VM_Version::initialize() {
goetz@6458 57
goetz@6458 58 // Test which instructions are supported and measure cache line size.
goetz@6458 59 determine_features();
goetz@6458 60
goetz@6458 61 // If PowerArchitecturePPC64 hasn't been specified explicitly determine from features.
goetz@6458 62 if (FLAG_IS_DEFAULT(PowerArchitecturePPC64)) {
goetz@6458 63 if (VM_Version::has_popcntw()) {
goetz@6458 64 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 7);
goetz@6458 65 } else if (VM_Version::has_cmpb()) {
goetz@6458 66 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 6);
goetz@6458 67 } else if (VM_Version::has_popcntb()) {
goetz@6458 68 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 5);
goetz@6458 69 } else {
goetz@6458 70 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 0);
goetz@6458 71 }
goetz@6458 72 }
goetz@6458 73 guarantee(PowerArchitecturePPC64 == 0 || PowerArchitecturePPC64 == 5 ||
goetz@6458 74 PowerArchitecturePPC64 == 6 || PowerArchitecturePPC64 == 7,
goetz@6458 75 "PowerArchitecturePPC64 should be 0, 5, 6 or 7");
goetz@6458 76
goetz@6458 77 if (!UseSIGTRAP) {
goetz@6458 78 MSG(TrapBasedICMissChecks);
goetz@6458 79 MSG(TrapBasedNotEntrantChecks);
goetz@6458 80 MSG(TrapBasedNullChecks);
goetz@6458 81 FLAG_SET_ERGO(bool, TrapBasedNotEntrantChecks, false);
goetz@6458 82 FLAG_SET_ERGO(bool, TrapBasedNullChecks, false);
goetz@6458 83 FLAG_SET_ERGO(bool, TrapBasedICMissChecks, false);
goetz@6458 84 }
goetz@6458 85
goetz@6458 86 #ifdef COMPILER2
goetz@6490 87 if (!UseSIGTRAP) {
goetz@6490 88 MSG(TrapBasedRangeChecks);
goetz@6490 89 FLAG_SET_ERGO(bool, TrapBasedRangeChecks, false);
goetz@6490 90 }
goetz@6490 91
goetz@6458 92 // On Power6 test for section size.
goetz@6495 93 if (PowerArchitecturePPC64 == 6) {
goetz@6458 94 determine_section_size();
goetz@6495 95 // TODO: PPC port } else {
goetz@6458 96 // TODO: PPC port PdScheduling::power6SectorSize = 0x20;
goetz@6495 97 }
goetz@6458 98
goetz@6458 99 MaxVectorSize = 8;
goetz@6458 100 #endif
goetz@6458 101
goetz@6458 102 // Create and print feature-string.
goetz@6495 103 char buf[(num_features+1) * 16]; // Max 16 chars per feature.
goetz@6458 104 jio_snprintf(buf, sizeof(buf),
mdoerr@9497 105 "ppc64%s%s%s%s%s%s%s%s%s%s",
goetz@6458 106 (has_fsqrt() ? " fsqrt" : ""),
goetz@6458 107 (has_isel() ? " isel" : ""),
goetz@6458 108 (has_lxarxeh() ? " lxarxeh" : ""),
goetz@6458 109 (has_cmpb() ? " cmpb" : ""),
goetz@6458 110 //(has_mftgpr()? " mftgpr" : ""),
goetz@6458 111 (has_popcntb() ? " popcntb" : ""),
goetz@6458 112 (has_popcntw() ? " popcntw" : ""),
goetz@6458 113 (has_fcfids() ? " fcfids" : ""),
simonis@8608 114 (has_vand() ? " vand" : ""),
mdoerr@9497 115 (has_vcipher() ? " aes" : ""),
mdoerr@9497 116 (has_vpmsumb() ? " vpmsumb" : "")
goetz@6458 117 // Make sure number of %s matches num_features!
goetz@6458 118 );
goetz@6458 119 _features_str = strdup(buf);
goetz@6458 120 NOT_PRODUCT(if (Verbose) print_features(););
goetz@6458 121
goetz@6458 122 // PPC64 supports 8-byte compare-exchange operations (see
goetz@6458 123 // Atomic::cmpxchg and StubGenerator::generate_atomic_cmpxchg_ptr)
goetz@6458 124 // and 'atomic long memory ops' (see Unsafe_GetLongVolatile).
goetz@6458 125 _supports_cx8 = true;
goetz@6458 126
goetz@6458 127 UseSSE = 0; // Only on x86 and x64
goetz@6458 128
goetz@6458 129 intx cache_line_size = _measured_cache_line_size;
goetz@6458 130
goetz@6458 131 if (FLAG_IS_DEFAULT(AllocatePrefetchStyle)) AllocatePrefetchStyle = 1;
goetz@6458 132
goetz@6458 133 if (AllocatePrefetchStyle == 4) {
goetz@6495 134 AllocatePrefetchStepSize = cache_line_size; // Need exact value.
goetz@6495 135 if (FLAG_IS_DEFAULT(AllocatePrefetchLines)) AllocatePrefetchLines = 12; // Use larger blocks by default.
goetz@6495 136 if (AllocatePrefetchDistance < 0) AllocatePrefetchDistance = 2*cache_line_size; // Default is not defined?
goetz@6458 137 } else {
goetz@6458 138 if (cache_line_size > AllocatePrefetchStepSize) AllocatePrefetchStepSize = cache_line_size;
goetz@6495 139 if (FLAG_IS_DEFAULT(AllocatePrefetchLines)) AllocatePrefetchLines = 3; // Optimistic value.
goetz@6495 140 if (AllocatePrefetchDistance < 0) AllocatePrefetchDistance = 3*cache_line_size; // Default is not defined?
goetz@6458 141 }
goetz@6458 142
goetz@6458 143 assert(AllocatePrefetchLines > 0, "invalid value");
goetz@7424 144 if (AllocatePrefetchLines < 1) { // Set valid value in product VM.
goetz@6495 145 AllocatePrefetchLines = 1; // Conservative value.
goetz@7424 146 }
goetz@6458 147
goetz@7424 148 if (AllocatePrefetchStyle == 3 && AllocatePrefetchDistance < cache_line_size) {
goetz@6495 149 AllocatePrefetchStyle = 1; // Fall back if inappropriate.
goetz@7424 150 }
goetz@6458 151
goetz@6458 152 assert(AllocatePrefetchStyle >= 0, "AllocatePrefetchStyle should be positive");
goetz@7424 153
gromero@9496 154 // Implementation does not use any of the vector instructions
gromero@9496 155 // available with Power8. Their exploitation is still pending.
gromero@9496 156 if (!UseCRC32Intrinsics) {
gromero@9496 157 if (FLAG_IS_DEFAULT(UseCRC32Intrinsics)) {
gromero@9496 158 FLAG_SET_DEFAULT(UseCRC32Intrinsics, true);
gromero@9496 159 }
goetz@7424 160 }
goetz@7424 161
goetz@7424 162 // The AES intrinsic stubs require AES instruction support.
simonis@8608 163 #if defined(VM_LITTLE_ENDIAN)
simonis@8608 164 if (has_vcipher()) {
simonis@8608 165 if (FLAG_IS_DEFAULT(UseAES)) {
simonis@8608 166 UseAES = true;
simonis@8608 167 }
simonis@8608 168 } else if (UseAES) {
simonis@8608 169 if (!FLAG_IS_DEFAULT(UseAES))
simonis@8608 170 warning("AES instructions are not available on this CPU");
simonis@8608 171 FLAG_SET_DEFAULT(UseAES, false);
simonis@8608 172 }
simonis@8608 173
simonis@8608 174 if (UseAES && has_vcipher()) {
simonis@8608 175 if (FLAG_IS_DEFAULT(UseAESIntrinsics)) {
simonis@8608 176 UseAESIntrinsics = true;
simonis@8608 177 }
simonis@8608 178 } else if (UseAESIntrinsics) {
simonis@8608 179 if (!FLAG_IS_DEFAULT(UseAESIntrinsics))
simonis@8608 180 warning("AES intrinsics are not available on this CPU");
simonis@8608 181 FLAG_SET_DEFAULT(UseAESIntrinsics, false);
simonis@8608 182 }
simonis@8608 183
simonis@8608 184 #else
goetz@7424 185 if (UseAES) {
goetz@7424 186 warning("AES instructions are not available on this CPU");
goetz@7424 187 FLAG_SET_DEFAULT(UseAES, false);
goetz@7424 188 }
goetz@7424 189 if (UseAESIntrinsics) {
goetz@7424 190 if (!FLAG_IS_DEFAULT(UseAESIntrinsics))
goetz@7424 191 warning("AES intrinsics are not available on this CPU");
goetz@7424 192 FLAG_SET_DEFAULT(UseAESIntrinsics, false);
goetz@7424 193 }
simonis@8608 194 #endif
goetz@7424 195
goetz@7424 196 if (UseSHA) {
goetz@7424 197 warning("SHA instructions are not available on this CPU");
goetz@7424 198 FLAG_SET_DEFAULT(UseSHA, false);
goetz@7424 199 }
goetz@7424 200 if (UseSHA1Intrinsics || UseSHA256Intrinsics || UseSHA512Intrinsics) {
goetz@7424 201 warning("SHA intrinsics are not available on this CPU");
goetz@7424 202 FLAG_SET_DEFAULT(UseSHA1Intrinsics, false);
goetz@7424 203 FLAG_SET_DEFAULT(UseSHA256Intrinsics, false);
goetz@7424 204 FLAG_SET_DEFAULT(UseSHA512Intrinsics, false);
goetz@7424 205 }
goetz@7424 206
mdoerr@8903 207 if (FLAG_IS_DEFAULT(UseMontgomeryMultiplyIntrinsic)) {
mdoerr@8903 208 UseMontgomeryMultiplyIntrinsic = true;
mdoerr@8903 209 }
mdoerr@8903 210 if (FLAG_IS_DEFAULT(UseMontgomerySquareIntrinsic)) {
mdoerr@8903 211 UseMontgomerySquareIntrinsic = true;
mdoerr@8903 212 }
goetz@6458 213 }
goetz@6458 214
goetz@6458 215 void VM_Version::print_features() {
drchase@6680 216 tty->print_cr("Version: %s cache_line_size = %d", cpu_features(), (int) get_cache_line_size());
goetz@6458 217 }
goetz@6458 218
goetz@6458 219 #ifdef COMPILER2
goetz@6458 220 // Determine section size on power6: If section size is 8 instructions,
goetz@6458 221 // there should be a difference between the two testloops of ~15 %. If
goetz@6458 222 // no difference is detected the section is assumed to be 32 instructions.
goetz@6458 223 void VM_Version::determine_section_size() {
goetz@6458 224
goetz@6458 225 int unroll = 80;
goetz@6458 226
goetz@6458 227 const int code_size = (2* unroll * 32 + 100)*BytesPerInstWord;
goetz@6458 228
goetz@6495 229 // Allocate space for the code.
goetz@6458 230 ResourceMark rm;
goetz@6458 231 CodeBuffer cb("detect_section_size", code_size, 0);
goetz@6458 232 MacroAssembler* a = new MacroAssembler(&cb);
goetz@6458 233
goetz@6458 234 uint32_t *code = (uint32_t *)a->pc();
goetz@6495 235 // Emit code.
goetz@6511 236 void (*test1)() = (void(*)())(void *)a->function_entry();
goetz@6458 237
goetz@6458 238 Label l1;
goetz@6458 239
goetz@6458 240 a->li(R4, 1);
goetz@6458 241 a->sldi(R4, R4, 28);
goetz@6458 242 a->b(l1);
goetz@6458 243 a->align(CodeEntryAlignment);
goetz@6458 244
goetz@6458 245 a->bind(l1);
goetz@6458 246
goetz@6458 247 for (int i = 0; i < unroll; i++) {
goetz@6458 248 // Schleife 1
goetz@6458 249 // ------- sector 0 ------------
goetz@6458 250 // ;; 0
goetz@6458 251 a->nop(); // 1
goetz@6458 252 a->fpnop0(); // 2
goetz@6458 253 a->fpnop1(); // 3
goetz@6458 254 a->addi(R4,R4, -1); // 4
goetz@6458 255
goetz@6458 256 // ;; 1
goetz@6458 257 a->nop(); // 5
goetz@6495 258 a->fmr(F6, F6); // 6
goetz@6495 259 a->fmr(F7, F7); // 7
goetz@6458 260 a->endgroup(); // 8
goetz@6458 261 // ------- sector 8 ------------
goetz@6458 262
goetz@6458 263 // ;; 2
goetz@6458 264 a->nop(); // 9
goetz@6458 265 a->nop(); // 10
goetz@6495 266 a->fmr(F8, F8); // 11
goetz@6495 267 a->fmr(F9, F9); // 12
goetz@6458 268
goetz@6458 269 // ;; 3
goetz@6458 270 a->nop(); // 13
goetz@6495 271 a->fmr(F10, F10); // 14
goetz@6495 272 a->fmr(F11, F11); // 15
goetz@6458 273 a->endgroup(); // 16
goetz@6458 274 // -------- sector 16 -------------
goetz@6458 275
goetz@6458 276 // ;; 4
goetz@6458 277 a->nop(); // 17
goetz@6458 278 a->nop(); // 18
goetz@6495 279 a->fmr(F15, F15); // 19
goetz@6495 280 a->fmr(F16, F16); // 20
goetz@6458 281
goetz@6458 282 // ;; 5
goetz@6458 283 a->nop(); // 21
goetz@6495 284 a->fmr(F17, F17); // 22
goetz@6495 285 a->fmr(F18, F18); // 23
goetz@6458 286 a->endgroup(); // 24
goetz@6458 287 // ------- sector 24 ------------
goetz@6458 288
goetz@6458 289 // ;; 6
goetz@6458 290 a->nop(); // 25
goetz@6458 291 a->nop(); // 26
goetz@6495 292 a->fmr(F19, F19); // 27
goetz@6495 293 a->fmr(F20, F20); // 28
goetz@6458 294
goetz@6458 295 // ;; 7
goetz@6458 296 a->nop(); // 29
goetz@6495 297 a->fmr(F21, F21); // 30
goetz@6495 298 a->fmr(F22, F22); // 31
goetz@6458 299 a->brnop0(); // 32
goetz@6458 300
goetz@6458 301 // ------- sector 32 ------------
goetz@6458 302 }
goetz@6458 303
goetz@6458 304 // ;; 8
goetz@6495 305 a->cmpdi(CCR0, R4, unroll); // 33
goetz@6495 306 a->bge(CCR0, l1); // 34
goetz@6458 307 a->blr();
goetz@6458 308
goetz@6495 309 // Emit code.
goetz@6511 310 void (*test2)() = (void(*)())(void *)a->function_entry();
goetz@6458 311 // uint32_t *code = (uint32_t *)a->pc();
goetz@6458 312
goetz@6458 313 Label l2;
goetz@6458 314
goetz@6458 315 a->li(R4, 1);
goetz@6458 316 a->sldi(R4, R4, 28);
goetz@6458 317 a->b(l2);
goetz@6458 318 a->align(CodeEntryAlignment);
goetz@6458 319
goetz@6458 320 a->bind(l2);
goetz@6458 321
goetz@6458 322 for (int i = 0; i < unroll; i++) {
goetz@6458 323 // Schleife 2
goetz@6458 324 // ------- sector 0 ------------
goetz@6458 325 // ;; 0
goetz@6458 326 a->brnop0(); // 1
goetz@6458 327 a->nop(); // 2
goetz@6458 328 //a->cmpdi(CCR0, R4, unroll);
goetz@6458 329 a->fpnop0(); // 3
goetz@6458 330 a->fpnop1(); // 4
goetz@6458 331 a->addi(R4,R4, -1); // 5
goetz@6458 332
goetz@6458 333 // ;; 1
goetz@6458 334
goetz@6458 335 a->nop(); // 6
goetz@6458 336 a->fmr(F6, F6); // 7
goetz@6458 337 a->fmr(F7, F7); // 8
goetz@6458 338 // ------- sector 8 ---------------
goetz@6458 339
goetz@6458 340 // ;; 2
goetz@6458 341 a->endgroup(); // 9
goetz@6458 342
goetz@6458 343 // ;; 3
goetz@6458 344 a->nop(); // 10
goetz@6458 345 a->nop(); // 11
goetz@6458 346 a->fmr(F8, F8); // 12
goetz@6458 347
goetz@6458 348 // ;; 4
goetz@6458 349 a->fmr(F9, F9); // 13
goetz@6458 350 a->nop(); // 14
goetz@6458 351 a->fmr(F10, F10); // 15
goetz@6458 352
goetz@6458 353 // ;; 5
goetz@6458 354 a->fmr(F11, F11); // 16
goetz@6458 355 // -------- sector 16 -------------
goetz@6458 356
goetz@6458 357 // ;; 6
goetz@6458 358 a->endgroup(); // 17
goetz@6458 359
goetz@6458 360 // ;; 7
goetz@6458 361 a->nop(); // 18
goetz@6458 362 a->nop(); // 19
goetz@6458 363 a->fmr(F15, F15); // 20
goetz@6458 364
goetz@6458 365 // ;; 8
goetz@6458 366 a->fmr(F16, F16); // 21
goetz@6458 367 a->nop(); // 22
goetz@6458 368 a->fmr(F17, F17); // 23
goetz@6458 369
goetz@6458 370 // ;; 9
goetz@6458 371 a->fmr(F18, F18); // 24
goetz@6458 372 // -------- sector 24 -------------
goetz@6458 373
goetz@6458 374 // ;; 10
goetz@6458 375 a->endgroup(); // 25
goetz@6458 376
goetz@6458 377 // ;; 11
goetz@6458 378 a->nop(); // 26
goetz@6458 379 a->nop(); // 27
goetz@6458 380 a->fmr(F19, F19); // 28
goetz@6458 381
goetz@6458 382 // ;; 12
goetz@6458 383 a->fmr(F20, F20); // 29
goetz@6458 384 a->nop(); // 30
goetz@6458 385 a->fmr(F21, F21); // 31
goetz@6458 386
goetz@6458 387 // ;; 13
goetz@6458 388 a->fmr(F22, F22); // 32
goetz@6458 389 }
goetz@6458 390
goetz@6458 391 // -------- sector 32 -------------
goetz@6458 392 // ;; 14
goetz@6458 393 a->cmpdi(CCR0, R4, unroll); // 33
goetz@6458 394 a->bge(CCR0, l2); // 34
goetz@6458 395
goetz@6458 396 a->blr();
goetz@6458 397 uint32_t *code_end = (uint32_t *)a->pc();
goetz@6458 398 a->flush();
goetz@6458 399
goetz@6458 400 double loop1_seconds,loop2_seconds, rel_diff;
goetz@6458 401 uint64_t start1, stop1;
goetz@6458 402
goetz@6458 403 start1 = os::current_thread_cpu_time(false);
goetz@6458 404 (*test1)();
goetz@6458 405 stop1 = os::current_thread_cpu_time(false);
goetz@6458 406 loop1_seconds = (stop1- start1) / (1000 *1000 *1000.0);
goetz@6458 407
goetz@6458 408
goetz@6458 409 start1 = os::current_thread_cpu_time(false);
goetz@6458 410 (*test2)();
goetz@6458 411 stop1 = os::current_thread_cpu_time(false);
goetz@6458 412
goetz@6458 413 loop2_seconds = (stop1 - start1) / (1000 *1000 *1000.0);
goetz@6458 414
goetz@6458 415 rel_diff = (loop2_seconds - loop1_seconds) / loop1_seconds *100;
goetz@6458 416
goetz@6458 417 if (PrintAssembly) {
goetz@6458 418 ttyLocker ttyl;
coleenp@7358 419 tty->print_cr("Decoding section size detection stub at " INTPTR_FORMAT " before execution:", p2i(code));
goetz@6458 420 Disassembler::decode((u_char*)code, (u_char*)code_end, tty);
goetz@6458 421 tty->print_cr("Time loop1 :%f", loop1_seconds);
goetz@6458 422 tty->print_cr("Time loop2 :%f", loop2_seconds);
goetz@6458 423 tty->print_cr("(time2 - time1) / time1 = %f %%", rel_diff);
goetz@6458 424
goetz@6458 425 if (rel_diff > 12.0) {
goetz@6458 426 tty->print_cr("Section Size 8 Instructions");
goetz@6458 427 } else{
goetz@6458 428 tty->print_cr("Section Size 32 Instructions or Power5");
goetz@6458 429 }
goetz@6458 430 }
goetz@6458 431
goetz@6458 432 #if 0 // TODO: PPC port
goetz@6458 433 // Set sector size (if not set explicitly).
goetz@6458 434 if (FLAG_IS_DEFAULT(Power6SectorSize128PPC64)) {
goetz@6458 435 if (rel_diff > 12.0) {
goetz@6458 436 PdScheduling::power6SectorSize = 0x20;
goetz@6458 437 } else {
goetz@6458 438 PdScheduling::power6SectorSize = 0x80;
goetz@6458 439 }
goetz@6458 440 } else if (Power6SectorSize128PPC64) {
goetz@6458 441 PdScheduling::power6SectorSize = 0x80;
goetz@6458 442 } else {
goetz@6458 443 PdScheduling::power6SectorSize = 0x20;
goetz@6458 444 }
goetz@6458 445 #endif
goetz@6458 446 if (UsePower6SchedulerPPC64) Unimplemented();
goetz@6458 447 }
goetz@6458 448 #endif // COMPILER2
goetz@6458 449
goetz@6458 450 void VM_Version::determine_features() {
goetz@6511 451 #if defined(ABI_ELFv2)
goetz@6511 452 const int code_size = (num_features+1+2*7)*BytesPerInstWord; // TODO(asmundak): calculation is incorrect.
goetz@6511 453 #else
goetz@6495 454 // 7 InstWords for each call (function descriptor + blr instruction).
goetz@6495 455 const int code_size = (num_features+1+2*7)*BytesPerInstWord;
goetz@6511 456 #endif
goetz@6458 457 int features = 0;
goetz@6458 458
goetz@6458 459 // create test area
goetz@6495 460 enum { BUFFER_SIZE = 2*4*K }; // Needs to be >=2* max cache line size (cache line size can't exceed min page size).
goetz@6458 461 char test_area[BUFFER_SIZE];
goetz@6458 462 char *mid_of_test_area = &test_area[BUFFER_SIZE>>1];
goetz@6458 463
goetz@6495 464 // Allocate space for the code.
goetz@6458 465 ResourceMark rm;
goetz@6458 466 CodeBuffer cb("detect_cpu_features", code_size, 0);
goetz@6458 467 MacroAssembler* a = new MacroAssembler(&cb);
goetz@6458 468
goetz@6515 469 // Must be set to true so we can generate the test code.
goetz@6515 470 _features = VM_Version::all_features_m;
goetz@6515 471
goetz@6495 472 // Emit code.
goetz@6511 473 void (*test)(address addr, uint64_t offset)=(void(*)(address addr, uint64_t offset))(void *)a->function_entry();
goetz@6458 474 uint32_t *code = (uint32_t *)a->pc();
goetz@6458 475 // Don't use R0 in ldarx.
goetz@6495 476 // Keep R3_ARG1 unmodified, it contains &field (see below).
goetz@6495 477 // Keep R4_ARG2 unmodified, it contains offset = 0 (see below).
goetz@6495 478 a->fsqrt(F3, F4); // code[0] -> fsqrt_m
goetz@6515 479 a->fsqrts(F3, F4); // code[1] -> fsqrts_m
goetz@6515 480 a->isel(R7, R5, R6, 0); // code[2] -> isel_m
goetz@6515 481 a->ldarx_unchecked(R7, R3_ARG1, R4_ARG2, 1); // code[3] -> lxarx_m
goetz@6515 482 a->cmpb(R7, R5, R6); // code[4] -> bcmp
goetz@6515 483 //a->mftgpr(R7, F3); // code[5] -> mftgpr
goetz@6515 484 a->popcntb(R7, R5); // code[6] -> popcntb
goetz@6515 485 a->popcntw(R7, R5); // code[7] -> popcntw
goetz@6515 486 a->fcfids(F3, F4); // code[8] -> fcfids
goetz@6515 487 a->vand(VR0, VR0, VR0); // code[9] -> vand
simonis@8608 488 a->vcipher(VR0, VR1, VR2); // code[10] -> vcipher
mdoerr@9497 489 a->vpmsumb(VR0, VR1, VR2); // code[11] -> vpmsumb
goetz@6458 490 a->blr();
goetz@6458 491
goetz@6495 492 // Emit function to set one cache line to zero. Emit function descriptor and get pointer to it.
goetz@6511 493 void (*zero_cacheline_func_ptr)(char*) = (void(*)(char*))(void *)a->function_entry();
goetz@6495 494 a->dcbz(R3_ARG1); // R3_ARG1 = addr
goetz@6458 495 a->blr();
goetz@6458 496
goetz@6458 497 uint32_t *code_end = (uint32_t *)a->pc();
goetz@6458 498 a->flush();
goetz@6515 499 _features = VM_Version::unknown_m;
goetz@6458 500
goetz@6458 501 // Print the detection code.
goetz@6458 502 if (PrintAssembly) {
goetz@6458 503 ttyLocker ttyl;
coleenp@7358 504 tty->print_cr("Decoding cpu-feature detection stub at " INTPTR_FORMAT " before execution:", p2i(code));
goetz@6458 505 Disassembler::decode((u_char*)code, (u_char*)code_end, tty);
goetz@6458 506 }
goetz@6458 507
goetz@6458 508 // Measure cache line size.
goetz@6495 509 memset(test_area, 0xFF, BUFFER_SIZE); // Fill test area with 0xFF.
goetz@6495 510 (*zero_cacheline_func_ptr)(mid_of_test_area); // Call function which executes dcbz to the middle.
goetz@6458 511 int count = 0; // count zeroed bytes
goetz@6458 512 for (int i = 0; i < BUFFER_SIZE; i++) if (test_area[i] == 0) count++;
goetz@6458 513 guarantee(is_power_of_2(count), "cache line size needs to be a power of 2");
goetz@6458 514 _measured_cache_line_size = count;
goetz@6458 515
goetz@6458 516 // Execute code. Illegal instructions will be replaced by 0 in the signal handler.
goetz@6458 517 VM_Version::_is_determine_features_test_running = true;
goetz@6458 518 (*test)((address)mid_of_test_area, (uint64_t)0);
goetz@6458 519 VM_Version::_is_determine_features_test_running = false;
goetz@6458 520
goetz@6458 521 // determine which instructions are legal.
goetz@6458 522 int feature_cntr = 0;
goetz@6458 523 if (code[feature_cntr++]) features |= fsqrt_m;
goetz@6515 524 if (code[feature_cntr++]) features |= fsqrts_m;
goetz@6458 525 if (code[feature_cntr++]) features |= isel_m;
goetz@6458 526 if (code[feature_cntr++]) features |= lxarxeh_m;
goetz@6458 527 if (code[feature_cntr++]) features |= cmpb_m;
goetz@6458 528 //if(code[feature_cntr++])features |= mftgpr_m;
goetz@6458 529 if (code[feature_cntr++]) features |= popcntb_m;
goetz@6458 530 if (code[feature_cntr++]) features |= popcntw_m;
goetz@6458 531 if (code[feature_cntr++]) features |= fcfids_m;
goetz@6458 532 if (code[feature_cntr++]) features |= vand_m;
simonis@8608 533 if (code[feature_cntr++]) features |= vcipher_m;
mdoerr@9497 534 if (code[feature_cntr++]) features |= vpmsumb_m;
goetz@6458 535
goetz@6458 536 // Print the detection code.
goetz@6458 537 if (PrintAssembly) {
goetz@6458 538 ttyLocker ttyl;
coleenp@7358 539 tty->print_cr("Decoding cpu-feature detection stub at " INTPTR_FORMAT " after execution:", p2i(code));
goetz@6458 540 Disassembler::decode((u_char*)code, (u_char*)code_end, tty);
goetz@6458 541 }
goetz@6458 542
goetz@6458 543 _features = features;
goetz@6458 544 }
goetz@6458 545
goetz@6458 546
goetz@6458 547 static int saved_features = 0;
goetz@6458 548
goetz@6458 549 void VM_Version::allow_all() {
goetz@6458 550 saved_features = _features;
goetz@6458 551 _features = all_features_m;
goetz@6458 552 }
goetz@6458 553
goetz@6458 554 void VM_Version::revert() {
goetz@6458 555 _features = saved_features;
goetz@6458 556 }

mercurial