src/cpu/ppc/vm/vm_version_ppc.cpp

Wed, 27 Nov 2013 16:16:21 -0800

author
goetz
date
Wed, 27 Nov 2013 16:16:21 -0800
changeset 6490
41b780b43b74
parent 6458
ec28f9c041ff
child 6495
67fa91961822
permissions
-rw-r--r--

8029015: PPC64 (part 216): opto: trap based null and range checks
Summary: On PPC64 use tdi instruction that does a compare and raises SIGTRAP for NULL and range checks.
Reviewed-by: kvn

goetz@6458 1 /*
goetz@6458 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
goetz@6458 3 * Copyright 2012, 2013 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@6458 27 #include "assembler_ppc.inline.hpp"
goetz@6458 28 #include "compiler/disassembler.hpp"
goetz@6458 29 #include "memory/resourceArea.hpp"
goetz@6458 30 #include "runtime/java.hpp"
goetz@6458 31 #include "runtime/stubCodeGenerator.hpp"
goetz@6458 32 #include "utilities/defaultStream.hpp"
goetz@6458 33 #include "vm_version_ppc.hpp"
goetz@6458 34 #ifdef TARGET_OS_FAMILY_aix
goetz@6458 35 # include "os_aix.inline.hpp"
goetz@6458 36 #endif
goetz@6458 37 #ifdef TARGET_OS_FAMILY_linux
goetz@6458 38 # include "os_linux.inline.hpp"
goetz@6458 39 #endif
goetz@6458 40
goetz@6458 41 # include <sys/sysinfo.h>
goetz@6458 42
goetz@6458 43 int VM_Version::_features = VM_Version::unknown_m;
goetz@6458 44 int VM_Version::_measured_cache_line_size = 128; // default value
goetz@6458 45 const char* VM_Version::_features_str = "";
goetz@6458 46 bool VM_Version::_is_determine_features_test_running = false;
goetz@6458 47
goetz@6458 48
goetz@6458 49 #define MSG(flag) \
goetz@6458 50 if (flag && !FLAG_IS_DEFAULT(flag)) \
goetz@6458 51 jio_fprintf(defaultStream::error_stream(), \
goetz@6458 52 "warning: -XX:+" #flag " requires -XX:+UseSIGTRAP\n" \
goetz@6458 53 " -XX:+" #flag " will be disabled!\n");
goetz@6458 54
goetz@6458 55 void VM_Version::initialize() {
goetz@6458 56
goetz@6458 57 // Test which instructions are supported and measure cache line size.
goetz@6458 58 determine_features();
goetz@6458 59
goetz@6458 60 // If PowerArchitecturePPC64 hasn't been specified explicitly determine from features.
goetz@6458 61 if (FLAG_IS_DEFAULT(PowerArchitecturePPC64)) {
goetz@6458 62 if (VM_Version::has_popcntw()) {
goetz@6458 63 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 7);
goetz@6458 64 } else if (VM_Version::has_cmpb()) {
goetz@6458 65 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 6);
goetz@6458 66 } else if (VM_Version::has_popcntb()) {
goetz@6458 67 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 5);
goetz@6458 68 } else {
goetz@6458 69 FLAG_SET_ERGO(uintx, PowerArchitecturePPC64, 0);
goetz@6458 70 }
goetz@6458 71 }
goetz@6458 72 guarantee(PowerArchitecturePPC64 == 0 || PowerArchitecturePPC64 == 5 ||
goetz@6458 73 PowerArchitecturePPC64 == 6 || PowerArchitecturePPC64 == 7,
goetz@6458 74 "PowerArchitecturePPC64 should be 0, 5, 6 or 7");
goetz@6458 75
goetz@6458 76 if (!UseSIGTRAP) {
goetz@6458 77 MSG(TrapBasedICMissChecks);
goetz@6458 78 MSG(TrapBasedNotEntrantChecks);
goetz@6458 79 MSG(TrapBasedNullChecks);
goetz@6458 80 FLAG_SET_ERGO(bool, TrapBasedNotEntrantChecks, false);
goetz@6458 81 FLAG_SET_ERGO(bool, TrapBasedNullChecks, false);
goetz@6458 82 FLAG_SET_ERGO(bool, TrapBasedICMissChecks, false);
goetz@6458 83 }
goetz@6458 84
goetz@6458 85 #ifdef COMPILER2
goetz@6490 86 if (!UseSIGTRAP) {
goetz@6490 87 MSG(TrapBasedRangeChecks);
goetz@6490 88 FLAG_SET_ERGO(bool, TrapBasedRangeChecks, false);
goetz@6490 89 }
goetz@6490 90
goetz@6458 91 // On Power6 test for section size.
goetz@6458 92 if (PowerArchitecturePPC64 == 6)
goetz@6458 93 determine_section_size();
goetz@6458 94 // TODO: PPC port else
goetz@6458 95 // TODO: PPC port PdScheduling::power6SectorSize = 0x20;
goetz@6458 96
goetz@6458 97 MaxVectorSize = 8;
goetz@6458 98 #endif
goetz@6458 99
goetz@6458 100 // Create and print feature-string.
goetz@6458 101 char buf[(num_features+1) * 16]; // max 16 chars per feature
goetz@6458 102 jio_snprintf(buf, sizeof(buf),
goetz@6458 103 "ppc64%s%s%s%s%s%s%s%s",
goetz@6458 104 (has_fsqrt() ? " fsqrt" : ""),
goetz@6458 105 (has_isel() ? " isel" : ""),
goetz@6458 106 (has_lxarxeh() ? " lxarxeh" : ""),
goetz@6458 107 (has_cmpb() ? " cmpb" : ""),
goetz@6458 108 //(has_mftgpr()? " mftgpr" : ""),
goetz@6458 109 (has_popcntb() ? " popcntb" : ""),
goetz@6458 110 (has_popcntw() ? " popcntw" : ""),
goetz@6458 111 (has_fcfids() ? " fcfids" : ""),
goetz@6458 112 (has_vand() ? " vand" : "")
goetz@6458 113 // Make sure number of %s matches num_features!
goetz@6458 114 );
goetz@6458 115 _features_str = strdup(buf);
goetz@6458 116 NOT_PRODUCT(if (Verbose) print_features(););
goetz@6458 117
goetz@6458 118 // PPC64 supports 8-byte compare-exchange operations (see
goetz@6458 119 // Atomic::cmpxchg and StubGenerator::generate_atomic_cmpxchg_ptr)
goetz@6458 120 // and 'atomic long memory ops' (see Unsafe_GetLongVolatile).
goetz@6458 121 _supports_cx8 = true;
goetz@6458 122
goetz@6458 123 UseSSE = 0; // Only on x86 and x64
goetz@6458 124
goetz@6458 125 intx cache_line_size = _measured_cache_line_size;
goetz@6458 126
goetz@6458 127 if (FLAG_IS_DEFAULT(AllocatePrefetchStyle)) AllocatePrefetchStyle = 1;
goetz@6458 128
goetz@6458 129 if (AllocatePrefetchStyle == 4) {
goetz@6458 130 AllocatePrefetchStepSize = cache_line_size; // need exact value
goetz@6458 131 if (FLAG_IS_DEFAULT(AllocatePrefetchLines)) AllocatePrefetchLines = 12; // use larger blocks by default
goetz@6458 132 if (AllocatePrefetchDistance < 0) AllocatePrefetchDistance = 2*cache_line_size; // default is not defined ?
goetz@6458 133 } else {
goetz@6458 134 if (cache_line_size > AllocatePrefetchStepSize) AllocatePrefetchStepSize = cache_line_size;
goetz@6458 135 if (FLAG_IS_DEFAULT(AllocatePrefetchLines)) AllocatePrefetchLines = 3; // Optimistic value
goetz@6458 136 if (AllocatePrefetchDistance < 0) AllocatePrefetchDistance = 3*cache_line_size; // default is not defined ?
goetz@6458 137 }
goetz@6458 138
goetz@6458 139 assert(AllocatePrefetchLines > 0, "invalid value");
goetz@6458 140 if (AllocatePrefetchLines < 1) // Set valid value in product VM.
goetz@6458 141 AllocatePrefetchLines = 1; // Conservative value
goetz@6458 142
goetz@6458 143 if (AllocatePrefetchStyle == 3 && AllocatePrefetchDistance < cache_line_size)
goetz@6458 144 AllocatePrefetchStyle = 1; // fall back if inappropriate
goetz@6458 145
goetz@6458 146 assert(AllocatePrefetchStyle >= 0, "AllocatePrefetchStyle should be positive");
goetz@6458 147 }
goetz@6458 148
goetz@6458 149 void VM_Version::print_features() {
goetz@6458 150 tty->print_cr("Version: %s cache_line_size = %d", cpu_features(), get_cache_line_size());
goetz@6458 151 }
goetz@6458 152
goetz@6458 153 #ifdef COMPILER2
goetz@6458 154 // Determine section size on power6: If section size is 8 instructions,
goetz@6458 155 // there should be a difference between the two testloops of ~15 %. If
goetz@6458 156 // no difference is detected the section is assumed to be 32 instructions.
goetz@6458 157 void VM_Version::determine_section_size() {
goetz@6458 158
goetz@6458 159 int unroll = 80;
goetz@6458 160
goetz@6458 161 const int code_size = (2* unroll * 32 + 100)*BytesPerInstWord;
goetz@6458 162
goetz@6458 163 // Allocate space for the code
goetz@6458 164 ResourceMark rm;
goetz@6458 165 CodeBuffer cb("detect_section_size", code_size, 0);
goetz@6458 166 MacroAssembler* a = new MacroAssembler(&cb);
goetz@6458 167
goetz@6458 168 uint32_t *code = (uint32_t *)a->pc();
goetz@6458 169 // emit code.
goetz@6458 170 void (*test1)() = (void(*)())(void *)a->emit_fd();
goetz@6458 171
goetz@6458 172 Label l1;
goetz@6458 173
goetz@6458 174 a->li(R4, 1);
goetz@6458 175 a->sldi(R4, R4, 28);
goetz@6458 176 a->b(l1);
goetz@6458 177 a->align(CodeEntryAlignment);
goetz@6458 178
goetz@6458 179 a->bind(l1);
goetz@6458 180
goetz@6458 181 for (int i = 0; i < unroll; i++) {
goetz@6458 182 // Schleife 1
goetz@6458 183 // ------- sector 0 ------------
goetz@6458 184 // ;; 0
goetz@6458 185 a->nop(); // 1
goetz@6458 186 a->fpnop0(); // 2
goetz@6458 187 a->fpnop1(); // 3
goetz@6458 188 a->addi(R4,R4, -1); // 4
goetz@6458 189
goetz@6458 190 // ;; 1
goetz@6458 191 a->nop(); // 5
goetz@6458 192 a->fmr(F6, F6); // 6
goetz@6458 193 a->fmr(F7, F7); // 7
goetz@6458 194 a->endgroup(); // 8
goetz@6458 195 // ------- sector 8 ------------
goetz@6458 196
goetz@6458 197 // ;; 2
goetz@6458 198 a->nop(); // 9
goetz@6458 199 a->nop(); // 10
goetz@6458 200 a->fmr(F8, F8); // 11
goetz@6458 201 a->fmr(F9, F9); // 12
goetz@6458 202
goetz@6458 203 // ;; 3
goetz@6458 204 a->nop(); // 13
goetz@6458 205 a->fmr(F10, F10); // 14
goetz@6458 206 a->fmr(F11, F11); // 15
goetz@6458 207 a->endgroup(); // 16
goetz@6458 208 // -------- sector 16 -------------
goetz@6458 209
goetz@6458 210 // ;; 4
goetz@6458 211 a->nop(); // 17
goetz@6458 212 a->nop(); // 18
goetz@6458 213 a->fmr(F15, F15); // 19
goetz@6458 214 a->fmr(F16, F16); // 20
goetz@6458 215
goetz@6458 216 // ;; 5
goetz@6458 217 a->nop(); // 21
goetz@6458 218 a->fmr(F17, F17); // 22
goetz@6458 219 a->fmr(F18, F18); // 23
goetz@6458 220 a->endgroup(); // 24
goetz@6458 221 // ------- sector 24 ------------
goetz@6458 222
goetz@6458 223 // ;; 6
goetz@6458 224 a->nop(); // 25
goetz@6458 225 a->nop(); // 26
goetz@6458 226 a->fmr(F19, F19); // 27
goetz@6458 227 a->fmr(F20, F20); // 28
goetz@6458 228
goetz@6458 229 // ;; 7
goetz@6458 230 a->nop(); // 29
goetz@6458 231 a->fmr(F21, F21); // 30
goetz@6458 232 a->fmr(F22, F22); // 31
goetz@6458 233 a->brnop0(); // 32
goetz@6458 234
goetz@6458 235 // ------- sector 32 ------------
goetz@6458 236 }
goetz@6458 237
goetz@6458 238 // ;; 8
goetz@6458 239 a->cmpdi(CCR0, R4, unroll);// 33
goetz@6458 240 a->bge(CCR0, l1); // 34
goetz@6458 241 a->blr();
goetz@6458 242
goetz@6458 243 // emit code.
goetz@6458 244 void (*test2)() = (void(*)())(void *)a->emit_fd();
goetz@6458 245 // uint32_t *code = (uint32_t *)a->pc();
goetz@6458 246
goetz@6458 247 Label l2;
goetz@6458 248
goetz@6458 249 a->li(R4, 1);
goetz@6458 250 a->sldi(R4, R4, 28);
goetz@6458 251 a->b(l2);
goetz@6458 252 a->align(CodeEntryAlignment);
goetz@6458 253
goetz@6458 254 a->bind(l2);
goetz@6458 255
goetz@6458 256 for (int i = 0; i < unroll; i++) {
goetz@6458 257 // Schleife 2
goetz@6458 258 // ------- sector 0 ------------
goetz@6458 259 // ;; 0
goetz@6458 260 a->brnop0(); // 1
goetz@6458 261 a->nop(); // 2
goetz@6458 262 //a->cmpdi(CCR0, R4, unroll);
goetz@6458 263 a->fpnop0(); // 3
goetz@6458 264 a->fpnop1(); // 4
goetz@6458 265 a->addi(R4,R4, -1); // 5
goetz@6458 266
goetz@6458 267 // ;; 1
goetz@6458 268
goetz@6458 269 a->nop(); // 6
goetz@6458 270 a->fmr(F6, F6); // 7
goetz@6458 271 a->fmr(F7, F7); // 8
goetz@6458 272 // ------- sector 8 ---------------
goetz@6458 273
goetz@6458 274 // ;; 2
goetz@6458 275 a->endgroup(); // 9
goetz@6458 276
goetz@6458 277 // ;; 3
goetz@6458 278 a->nop(); // 10
goetz@6458 279 a->nop(); // 11
goetz@6458 280 a->fmr(F8, F8); // 12
goetz@6458 281
goetz@6458 282 // ;; 4
goetz@6458 283 a->fmr(F9, F9); // 13
goetz@6458 284 a->nop(); // 14
goetz@6458 285 a->fmr(F10, F10); // 15
goetz@6458 286
goetz@6458 287 // ;; 5
goetz@6458 288 a->fmr(F11, F11); // 16
goetz@6458 289 // -------- sector 16 -------------
goetz@6458 290
goetz@6458 291 // ;; 6
goetz@6458 292 a->endgroup(); // 17
goetz@6458 293
goetz@6458 294 // ;; 7
goetz@6458 295 a->nop(); // 18
goetz@6458 296 a->nop(); // 19
goetz@6458 297 a->fmr(F15, F15); // 20
goetz@6458 298
goetz@6458 299 // ;; 8
goetz@6458 300 a->fmr(F16, F16); // 21
goetz@6458 301 a->nop(); // 22
goetz@6458 302 a->fmr(F17, F17); // 23
goetz@6458 303
goetz@6458 304 // ;; 9
goetz@6458 305 a->fmr(F18, F18); // 24
goetz@6458 306 // -------- sector 24 -------------
goetz@6458 307
goetz@6458 308 // ;; 10
goetz@6458 309 a->endgroup(); // 25
goetz@6458 310
goetz@6458 311 // ;; 11
goetz@6458 312 a->nop(); // 26
goetz@6458 313 a->nop(); // 27
goetz@6458 314 a->fmr(F19, F19); // 28
goetz@6458 315
goetz@6458 316 // ;; 12
goetz@6458 317 a->fmr(F20, F20); // 29
goetz@6458 318 a->nop(); // 30
goetz@6458 319 a->fmr(F21, F21); // 31
goetz@6458 320
goetz@6458 321 // ;; 13
goetz@6458 322 a->fmr(F22, F22); // 32
goetz@6458 323 }
goetz@6458 324
goetz@6458 325 // -------- sector 32 -------------
goetz@6458 326 // ;; 14
goetz@6458 327 a->cmpdi(CCR0, R4, unroll); // 33
goetz@6458 328 a->bge(CCR0, l2); // 34
goetz@6458 329
goetz@6458 330 a->blr();
goetz@6458 331 uint32_t *code_end = (uint32_t *)a->pc();
goetz@6458 332 a->flush();
goetz@6458 333
goetz@6458 334 double loop1_seconds,loop2_seconds, rel_diff;
goetz@6458 335 uint64_t start1, stop1;
goetz@6458 336
goetz@6458 337 start1 = os::current_thread_cpu_time(false);
goetz@6458 338 (*test1)();
goetz@6458 339 stop1 = os::current_thread_cpu_time(false);
goetz@6458 340 loop1_seconds = (stop1- start1) / (1000 *1000 *1000.0);
goetz@6458 341
goetz@6458 342
goetz@6458 343 start1 = os::current_thread_cpu_time(false);
goetz@6458 344 (*test2)();
goetz@6458 345 stop1 = os::current_thread_cpu_time(false);
goetz@6458 346
goetz@6458 347 loop2_seconds = (stop1 - start1) / (1000 *1000 *1000.0);
goetz@6458 348
goetz@6458 349 rel_diff = (loop2_seconds - loop1_seconds) / loop1_seconds *100;
goetz@6458 350
goetz@6458 351 if (PrintAssembly) {
goetz@6458 352 ttyLocker ttyl;
goetz@6458 353 tty->print_cr("Decoding section size detection stub at " INTPTR_FORMAT " before execution:", code);
goetz@6458 354 Disassembler::decode((u_char*)code, (u_char*)code_end, tty);
goetz@6458 355 tty->print_cr("Time loop1 :%f", loop1_seconds);
goetz@6458 356 tty->print_cr("Time loop2 :%f", loop2_seconds);
goetz@6458 357 tty->print_cr("(time2 - time1) / time1 = %f %%", rel_diff);
goetz@6458 358
goetz@6458 359 if (rel_diff > 12.0) {
goetz@6458 360 tty->print_cr("Section Size 8 Instructions");
goetz@6458 361 } else{
goetz@6458 362 tty->print_cr("Section Size 32 Instructions or Power5");
goetz@6458 363 }
goetz@6458 364 }
goetz@6458 365
goetz@6458 366 #if 0 // TODO: PPC port
goetz@6458 367 // Set sector size (if not set explicitly).
goetz@6458 368 if (FLAG_IS_DEFAULT(Power6SectorSize128PPC64)) {
goetz@6458 369 if (rel_diff > 12.0) {
goetz@6458 370 PdScheduling::power6SectorSize = 0x20;
goetz@6458 371 } else {
goetz@6458 372 PdScheduling::power6SectorSize = 0x80;
goetz@6458 373 }
goetz@6458 374 } else if (Power6SectorSize128PPC64) {
goetz@6458 375 PdScheduling::power6SectorSize = 0x80;
goetz@6458 376 } else {
goetz@6458 377 PdScheduling::power6SectorSize = 0x20;
goetz@6458 378 }
goetz@6458 379 #endif
goetz@6458 380 if (UsePower6SchedulerPPC64) Unimplemented();
goetz@6458 381 }
goetz@6458 382 #endif // COMPILER2
goetz@6458 383
goetz@6458 384 void VM_Version::determine_features() {
goetz@6458 385 const int code_size = (num_features+1+2*7)*BytesPerInstWord; // 7 InstWords for each call (function descriptor + blr instruction)
goetz@6458 386 int features = 0;
goetz@6458 387
goetz@6458 388 // create test area
goetz@6458 389 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 390 char test_area[BUFFER_SIZE];
goetz@6458 391 char *mid_of_test_area = &test_area[BUFFER_SIZE>>1];
goetz@6458 392
goetz@6458 393 // Allocate space for the code
goetz@6458 394 ResourceMark rm;
goetz@6458 395 CodeBuffer cb("detect_cpu_features", code_size, 0);
goetz@6458 396 MacroAssembler* a = new MacroAssembler(&cb);
goetz@6458 397
goetz@6458 398 // emit code.
goetz@6458 399 void (*test)(address addr, uint64_t offset)=(void(*)(address addr, uint64_t offset))(void *)a->emit_fd();
goetz@6458 400 uint32_t *code = (uint32_t *)a->pc();
goetz@6458 401 // Don't use R0 in ldarx.
goetz@6458 402 // keep R3_ARG1 = R3 unmodified, it contains &field (see below)
goetz@6458 403 // keep R4_ARG2 = R4 unmodified, it contains offset = 0 (see below)
goetz@6458 404 a->fsqrt(F3, F4); // code[0] -> fsqrt_m
goetz@6458 405 a->isel(R7, R5, R6, 0); // code[1] -> isel_m
goetz@6458 406 a->ldarx_unchecked(R7, R3_ARG1, R4_ARG2, 1);// code[2] -> lxarx_m
goetz@6458 407 a->cmpb(R7, R5, R6); // code[3] -> bcmp
goetz@6458 408 //a->mftgpr(R7, F3); // code[4] -> mftgpr
goetz@6458 409 a->popcntb(R7, R5); // code[5] -> popcntb
goetz@6458 410 a->popcntw(R7, R5); // code[6] -> popcntw
goetz@6458 411 a->fcfids(F3, F4); // code[7] -> fcfids
goetz@6458 412 a->vand(VR0, VR0, VR0); // code[8] -> vand
goetz@6458 413 a->blr();
goetz@6458 414
goetz@6458 415 // Emit function to set one cache line to zero
goetz@6458 416 void (*zero_cacheline_func_ptr)(char*) = (void(*)(char*))(void *)a->emit_fd(); // emit function descriptor and get pointer to it
goetz@6458 417 a->dcbz(R3_ARG1); // R3_ARG1 = R3 = addr
goetz@6458 418 a->blr();
goetz@6458 419
goetz@6458 420 uint32_t *code_end = (uint32_t *)a->pc();
goetz@6458 421 a->flush();
goetz@6458 422
goetz@6458 423 // Print the detection code.
goetz@6458 424 if (PrintAssembly) {
goetz@6458 425 ttyLocker ttyl;
goetz@6458 426 tty->print_cr("Decoding cpu-feature detection stub at " INTPTR_FORMAT " before execution:", code);
goetz@6458 427 Disassembler::decode((u_char*)code, (u_char*)code_end, tty);
goetz@6458 428 }
goetz@6458 429
goetz@6458 430 // Measure cache line size.
goetz@6458 431 memset(test_area, 0xFF, BUFFER_SIZE); // fill test area with 0xFF
goetz@6458 432 (*zero_cacheline_func_ptr)(mid_of_test_area); // call function which executes dcbz to the middle
goetz@6458 433 int count = 0; // count zeroed bytes
goetz@6458 434 for (int i = 0; i < BUFFER_SIZE; i++) if (test_area[i] == 0) count++;
goetz@6458 435 guarantee(is_power_of_2(count), "cache line size needs to be a power of 2");
goetz@6458 436 _measured_cache_line_size = count;
goetz@6458 437
goetz@6458 438 // Execute code. Illegal instructions will be replaced by 0 in the signal handler.
goetz@6458 439 VM_Version::_is_determine_features_test_running = true;
goetz@6458 440 (*test)((address)mid_of_test_area, (uint64_t)0);
goetz@6458 441 VM_Version::_is_determine_features_test_running = false;
goetz@6458 442
goetz@6458 443 // determine which instructions are legal.
goetz@6458 444 int feature_cntr = 0;
goetz@6458 445 if (code[feature_cntr++]) features |= fsqrt_m;
goetz@6458 446 if (code[feature_cntr++]) features |= isel_m;
goetz@6458 447 if (code[feature_cntr++]) features |= lxarxeh_m;
goetz@6458 448 if (code[feature_cntr++]) features |= cmpb_m;
goetz@6458 449 //if(code[feature_cntr++])features |= mftgpr_m;
goetz@6458 450 if (code[feature_cntr++]) features |= popcntb_m;
goetz@6458 451 if (code[feature_cntr++]) features |= popcntw_m;
goetz@6458 452 if (code[feature_cntr++]) features |= fcfids_m;
goetz@6458 453 if (code[feature_cntr++]) features |= vand_m;
goetz@6458 454
goetz@6458 455 // Print the detection code.
goetz@6458 456 if (PrintAssembly) {
goetz@6458 457 ttyLocker ttyl;
goetz@6458 458 tty->print_cr("Decoding cpu-feature detection stub at " INTPTR_FORMAT " after execution:", code);
goetz@6458 459 Disassembler::decode((u_char*)code, (u_char*)code_end, tty);
goetz@6458 460 }
goetz@6458 461
goetz@6458 462 _features = features;
goetz@6458 463 }
goetz@6458 464
goetz@6458 465
goetz@6458 466 static int saved_features = 0;
goetz@6458 467
goetz@6458 468 void VM_Version::allow_all() {
goetz@6458 469 saved_features = _features;
goetz@6458 470 _features = all_features_m;
goetz@6458 471 }
goetz@6458 472
goetz@6458 473 void VM_Version::revert() {
goetz@6458 474 _features = saved_features;
goetz@6458 475 }

mercurial