src/cpu/x86/vm/vm_version_x86.cpp

Tue, 29 Jun 2010 10:34:00 -0700

author
kvn
date
Tue, 29 Jun 2010 10:34:00 -0700
changeset 1977
76efbe666d6c
parent 1907
c18cbe5936b8
child 2085
f55c4f82ab9d
permissions
-rw-r--r--

6964774: Adjust optimization flags setting
Summary: Adjust performance flags settings.
Reviewed-by: never, phh

twisti@1020 1 /*
kvn@1977 2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All Rights Reserved.
twisti@1020 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
twisti@1020 4 *
twisti@1020 5 * This code is free software; you can redistribute it and/or modify it
twisti@1020 6 * under the terms of the GNU General Public License version 2 only, as
twisti@1020 7 * published by the Free Software Foundation.
twisti@1020 8 *
twisti@1020 9 * This code is distributed in the hope that it will be useful, but WITHOUT
twisti@1020 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
twisti@1020 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
twisti@1020 12 * version 2 for more details (a copy is included in the LICENSE file that
twisti@1020 13 * accompanied this code).
twisti@1020 14 *
twisti@1020 15 * You should have received a copy of the GNU General Public License version
twisti@1020 16 * 2 along with this work; if not, write to the Free Software Foundation,
twisti@1020 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
twisti@1020 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
twisti@1020 22 *
twisti@1020 23 */
twisti@1020 24
twisti@1020 25 # include "incls/_precompiled.incl"
twisti@1020 26 # include "incls/_vm_version_x86.cpp.incl"
twisti@1020 27
twisti@1020 28
twisti@1020 29 int VM_Version::_cpu;
twisti@1020 30 int VM_Version::_model;
twisti@1020 31 int VM_Version::_stepping;
twisti@1020 32 int VM_Version::_cpuFeatures;
twisti@1020 33 const char* VM_Version::_features_str = "";
twisti@1020 34 VM_Version::CpuidInfo VM_Version::_cpuid_info = { 0, };
twisti@1020 35
twisti@1020 36 static BufferBlob* stub_blob;
kvn@1977 37 static const int stub_size = 400;
twisti@1020 38
twisti@1020 39 extern "C" {
twisti@1020 40 typedef void (*getPsrInfo_stub_t)(void*);
twisti@1020 41 }
twisti@1020 42 static getPsrInfo_stub_t getPsrInfo_stub = NULL;
twisti@1020 43
twisti@1020 44
twisti@1020 45 class VM_Version_StubGenerator: public StubCodeGenerator {
twisti@1020 46 public:
twisti@1020 47
twisti@1020 48 VM_Version_StubGenerator(CodeBuffer *c) : StubCodeGenerator(c) {}
twisti@1020 49
twisti@1020 50 address generate_getPsrInfo() {
twisti@1020 51 // Flags to test CPU type.
twisti@1020 52 const uint32_t EFL_AC = 0x40000;
twisti@1020 53 const uint32_t EFL_ID = 0x200000;
twisti@1020 54 // Values for when we don't have a CPUID instruction.
twisti@1020 55 const int CPU_FAMILY_SHIFT = 8;
twisti@1020 56 const uint32_t CPU_FAMILY_386 = (3 << CPU_FAMILY_SHIFT);
twisti@1020 57 const uint32_t CPU_FAMILY_486 = (4 << CPU_FAMILY_SHIFT);
twisti@1020 58
kvn@1977 59 Label detect_486, cpu486, detect_586, std_cpuid1, std_cpuid4;
twisti@1020 60 Label ext_cpuid1, ext_cpuid5, done;
twisti@1020 61
twisti@1020 62 StubCodeMark mark(this, "VM_Version", "getPsrInfo_stub");
twisti@1020 63 # define __ _masm->
twisti@1020 64
twisti@1020 65 address start = __ pc();
twisti@1020 66
twisti@1020 67 //
twisti@1020 68 // void getPsrInfo(VM_Version::CpuidInfo* cpuid_info);
twisti@1020 69 //
twisti@1020 70 // LP64: rcx and rdx are first and second argument registers on windows
twisti@1020 71
twisti@1020 72 __ push(rbp);
twisti@1020 73 #ifdef _LP64
twisti@1020 74 __ mov(rbp, c_rarg0); // cpuid_info address
twisti@1020 75 #else
twisti@1020 76 __ movptr(rbp, Address(rsp, 8)); // cpuid_info address
twisti@1020 77 #endif
twisti@1020 78 __ push(rbx);
twisti@1020 79 __ push(rsi);
twisti@1020 80 __ pushf(); // preserve rbx, and flags
twisti@1020 81 __ pop(rax);
twisti@1020 82 __ push(rax);
twisti@1020 83 __ mov(rcx, rax);
twisti@1020 84 //
twisti@1020 85 // if we are unable to change the AC flag, we have a 386
twisti@1020 86 //
twisti@1020 87 __ xorl(rax, EFL_AC);
twisti@1020 88 __ push(rax);
twisti@1020 89 __ popf();
twisti@1020 90 __ pushf();
twisti@1020 91 __ pop(rax);
twisti@1020 92 __ cmpptr(rax, rcx);
twisti@1020 93 __ jccb(Assembler::notEqual, detect_486);
twisti@1020 94
twisti@1020 95 __ movl(rax, CPU_FAMILY_386);
twisti@1020 96 __ movl(Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())), rax);
twisti@1020 97 __ jmp(done);
twisti@1020 98
twisti@1020 99 //
twisti@1020 100 // If we are unable to change the ID flag, we have a 486 which does
twisti@1020 101 // not support the "cpuid" instruction.
twisti@1020 102 //
twisti@1020 103 __ bind(detect_486);
twisti@1020 104 __ mov(rax, rcx);
twisti@1020 105 __ xorl(rax, EFL_ID);
twisti@1020 106 __ push(rax);
twisti@1020 107 __ popf();
twisti@1020 108 __ pushf();
twisti@1020 109 __ pop(rax);
twisti@1020 110 __ cmpptr(rcx, rax);
twisti@1020 111 __ jccb(Assembler::notEqual, detect_586);
twisti@1020 112
twisti@1020 113 __ bind(cpu486);
twisti@1020 114 __ movl(rax, CPU_FAMILY_486);
twisti@1020 115 __ movl(Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())), rax);
twisti@1020 116 __ jmp(done);
twisti@1020 117
twisti@1020 118 //
twisti@1020 119 // At this point, we have a chip which supports the "cpuid" instruction
twisti@1020 120 //
twisti@1020 121 __ bind(detect_586);
twisti@1020 122 __ xorl(rax, rax);
twisti@1020 123 __ cpuid();
twisti@1020 124 __ orl(rax, rax);
twisti@1020 125 __ jcc(Assembler::equal, cpu486); // if cpuid doesn't support an input
twisti@1020 126 // value of at least 1, we give up and
twisti@1020 127 // assume a 486
twisti@1020 128 __ lea(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid0_offset())));
twisti@1020 129 __ movl(Address(rsi, 0), rax);
twisti@1020 130 __ movl(Address(rsi, 4), rbx);
twisti@1020 131 __ movl(Address(rsi, 8), rcx);
twisti@1020 132 __ movl(Address(rsi,12), rdx);
twisti@1020 133
kvn@1977 134 __ cmpl(rax, 0xa); // Is cpuid(0xB) supported?
kvn@1977 135 __ jccb(Assembler::belowEqual, std_cpuid4);
kvn@1977 136
kvn@1977 137 //
kvn@1977 138 // cpuid(0xB) Processor Topology
kvn@1977 139 //
kvn@1977 140 __ movl(rax, 0xb);
kvn@1977 141 __ xorl(rcx, rcx); // Threads level
kvn@1977 142 __ cpuid();
kvn@1977 143
kvn@1977 144 __ lea(rsi, Address(rbp, in_bytes(VM_Version::tpl_cpuidB0_offset())));
kvn@1977 145 __ movl(Address(rsi, 0), rax);
kvn@1977 146 __ movl(Address(rsi, 4), rbx);
kvn@1977 147 __ movl(Address(rsi, 8), rcx);
kvn@1977 148 __ movl(Address(rsi,12), rdx);
kvn@1977 149
kvn@1977 150 __ movl(rax, 0xb);
kvn@1977 151 __ movl(rcx, 1); // Cores level
kvn@1977 152 __ cpuid();
kvn@1977 153 __ push(rax);
kvn@1977 154 __ andl(rax, 0x1f); // Determine if valid topology level
kvn@1977 155 __ orl(rax, rbx); // eax[4:0] | ebx[0:15] == 0 indicates invalid level
kvn@1977 156 __ andl(rax, 0xffff);
kvn@1977 157 __ pop(rax);
kvn@1977 158 __ jccb(Assembler::equal, std_cpuid4);
kvn@1977 159
kvn@1977 160 __ lea(rsi, Address(rbp, in_bytes(VM_Version::tpl_cpuidB1_offset())));
kvn@1977 161 __ movl(Address(rsi, 0), rax);
kvn@1977 162 __ movl(Address(rsi, 4), rbx);
kvn@1977 163 __ movl(Address(rsi, 8), rcx);
kvn@1977 164 __ movl(Address(rsi,12), rdx);
kvn@1977 165
kvn@1977 166 __ movl(rax, 0xb);
kvn@1977 167 __ movl(rcx, 2); // Packages level
kvn@1977 168 __ cpuid();
kvn@1977 169 __ push(rax);
kvn@1977 170 __ andl(rax, 0x1f); // Determine if valid topology level
kvn@1977 171 __ orl(rax, rbx); // eax[4:0] | ebx[0:15] == 0 indicates invalid level
kvn@1977 172 __ andl(rax, 0xffff);
kvn@1977 173 __ pop(rax);
kvn@1977 174 __ jccb(Assembler::equal, std_cpuid4);
kvn@1977 175
kvn@1977 176 __ lea(rsi, Address(rbp, in_bytes(VM_Version::tpl_cpuidB2_offset())));
kvn@1977 177 __ movl(Address(rsi, 0), rax);
kvn@1977 178 __ movl(Address(rsi, 4), rbx);
kvn@1977 179 __ movl(Address(rsi, 8), rcx);
kvn@1977 180 __ movl(Address(rsi,12), rdx);
twisti@1020 181
twisti@1020 182 //
twisti@1020 183 // cpuid(0x4) Deterministic cache params
twisti@1020 184 //
kvn@1977 185 __ bind(std_cpuid4);
twisti@1020 186 __ movl(rax, 4);
kvn@1977 187 __ cmpl(rax, Address(rbp, in_bytes(VM_Version::std_cpuid0_offset()))); // Is cpuid(0x4) supported?
kvn@1977 188 __ jccb(Assembler::greater, std_cpuid1);
kvn@1977 189
twisti@1020 190 __ xorl(rcx, rcx); // L1 cache
twisti@1020 191 __ cpuid();
twisti@1020 192 __ push(rax);
twisti@1020 193 __ andl(rax, 0x1f); // Determine if valid cache parameters used
twisti@1020 194 __ orl(rax, rax); // eax[4:0] == 0 indicates invalid cache
twisti@1020 195 __ pop(rax);
twisti@1020 196 __ jccb(Assembler::equal, std_cpuid1);
twisti@1020 197
twisti@1020 198 __ lea(rsi, Address(rbp, in_bytes(VM_Version::dcp_cpuid4_offset())));
twisti@1020 199 __ movl(Address(rsi, 0), rax);
twisti@1020 200 __ movl(Address(rsi, 4), rbx);
twisti@1020 201 __ movl(Address(rsi, 8), rcx);
twisti@1020 202 __ movl(Address(rsi,12), rdx);
twisti@1020 203
twisti@1020 204 //
twisti@1020 205 // Standard cpuid(0x1)
twisti@1020 206 //
twisti@1020 207 __ bind(std_cpuid1);
twisti@1020 208 __ movl(rax, 1);
twisti@1020 209 __ cpuid();
twisti@1020 210 __ lea(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())));
twisti@1020 211 __ movl(Address(rsi, 0), rax);
twisti@1020 212 __ movl(Address(rsi, 4), rbx);
twisti@1020 213 __ movl(Address(rsi, 8), rcx);
twisti@1020 214 __ movl(Address(rsi,12), rdx);
twisti@1020 215
twisti@1020 216 __ movl(rax, 0x80000000);
twisti@1020 217 __ cpuid();
twisti@1020 218 __ cmpl(rax, 0x80000000); // Is cpuid(0x80000001) supported?
twisti@1020 219 __ jcc(Assembler::belowEqual, done);
twisti@1020 220 __ cmpl(rax, 0x80000004); // Is cpuid(0x80000005) supported?
twisti@1020 221 __ jccb(Assembler::belowEqual, ext_cpuid1);
twisti@1020 222 __ cmpl(rax, 0x80000007); // Is cpuid(0x80000008) supported?
twisti@1020 223 __ jccb(Assembler::belowEqual, ext_cpuid5);
twisti@1020 224 //
twisti@1020 225 // Extended cpuid(0x80000008)
twisti@1020 226 //
twisti@1020 227 __ movl(rax, 0x80000008);
twisti@1020 228 __ cpuid();
twisti@1020 229 __ lea(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid8_offset())));
twisti@1020 230 __ movl(Address(rsi, 0), rax);
twisti@1020 231 __ movl(Address(rsi, 4), rbx);
twisti@1020 232 __ movl(Address(rsi, 8), rcx);
twisti@1020 233 __ movl(Address(rsi,12), rdx);
twisti@1020 234
twisti@1020 235 //
twisti@1020 236 // Extended cpuid(0x80000005)
twisti@1020 237 //
twisti@1020 238 __ bind(ext_cpuid5);
twisti@1020 239 __ movl(rax, 0x80000005);
twisti@1020 240 __ cpuid();
twisti@1020 241 __ lea(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid5_offset())));
twisti@1020 242 __ movl(Address(rsi, 0), rax);
twisti@1020 243 __ movl(Address(rsi, 4), rbx);
twisti@1020 244 __ movl(Address(rsi, 8), rcx);
twisti@1020 245 __ movl(Address(rsi,12), rdx);
twisti@1020 246
twisti@1020 247 //
twisti@1020 248 // Extended cpuid(0x80000001)
twisti@1020 249 //
twisti@1020 250 __ bind(ext_cpuid1);
twisti@1020 251 __ movl(rax, 0x80000001);
twisti@1020 252 __ cpuid();
twisti@1020 253 __ lea(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid1_offset())));
twisti@1020 254 __ movl(Address(rsi, 0), rax);
twisti@1020 255 __ movl(Address(rsi, 4), rbx);
twisti@1020 256 __ movl(Address(rsi, 8), rcx);
twisti@1020 257 __ movl(Address(rsi,12), rdx);
twisti@1020 258
twisti@1020 259 //
twisti@1020 260 // return
twisti@1020 261 //
twisti@1020 262 __ bind(done);
twisti@1020 263 __ popf();
twisti@1020 264 __ pop(rsi);
twisti@1020 265 __ pop(rbx);
twisti@1020 266 __ pop(rbp);
twisti@1020 267 __ ret(0);
twisti@1020 268
twisti@1020 269 # undef __
twisti@1020 270
twisti@1020 271 return start;
twisti@1020 272 };
twisti@1020 273 };
twisti@1020 274
twisti@1020 275
twisti@1020 276 void VM_Version::get_processor_features() {
twisti@1020 277
twisti@1020 278 _cpu = 4; // 486 by default
twisti@1020 279 _model = 0;
twisti@1020 280 _stepping = 0;
twisti@1020 281 _cpuFeatures = 0;
twisti@1020 282 _logical_processors_per_package = 1;
twisti@1020 283
twisti@1020 284 if (!Use486InstrsOnly) {
twisti@1020 285 // Get raw processor info
twisti@1020 286 getPsrInfo_stub(&_cpuid_info);
twisti@1020 287 assert_is_initialized();
twisti@1020 288 _cpu = extended_cpu_family();
twisti@1020 289 _model = extended_cpu_model();
twisti@1020 290 _stepping = cpu_stepping();
twisti@1020 291
twisti@1020 292 if (cpu_family() > 4) { // it supports CPUID
twisti@1020 293 _cpuFeatures = feature_flags();
twisti@1020 294 // Logical processors are only available on P4s and above,
twisti@1020 295 // and only if hyperthreading is available.
twisti@1020 296 _logical_processors_per_package = logical_processor_count();
twisti@1020 297 }
twisti@1020 298 }
twisti@1020 299
twisti@1020 300 _supports_cx8 = supports_cmpxchg8();
twisti@1020 301
twisti@1020 302 #ifdef _LP64
twisti@1020 303 // OS should support SSE for x64 and hardware should support at least SSE2.
twisti@1020 304 if (!VM_Version::supports_sse2()) {
twisti@1020 305 vm_exit_during_initialization("Unknown x64 processor: SSE2 not supported");
twisti@1020 306 }
roland@1495 307 // in 64 bit the use of SSE2 is the minimum
roland@1495 308 if (UseSSE < 2) UseSSE = 2;
twisti@1020 309 #endif
twisti@1020 310
twisti@1020 311 // If the OS doesn't support SSE, we can't use this feature even if the HW does
twisti@1020 312 if (!os::supports_sse())
twisti@1020 313 _cpuFeatures &= ~(CPU_SSE|CPU_SSE2|CPU_SSE3|CPU_SSSE3|CPU_SSE4A|CPU_SSE4_1|CPU_SSE4_2);
twisti@1020 314
twisti@1020 315 if (UseSSE < 4) {
twisti@1020 316 _cpuFeatures &= ~CPU_SSE4_1;
twisti@1020 317 _cpuFeatures &= ~CPU_SSE4_2;
twisti@1020 318 }
twisti@1020 319
twisti@1020 320 if (UseSSE < 3) {
twisti@1020 321 _cpuFeatures &= ~CPU_SSE3;
twisti@1020 322 _cpuFeatures &= ~CPU_SSSE3;
twisti@1020 323 _cpuFeatures &= ~CPU_SSE4A;
twisti@1020 324 }
twisti@1020 325
twisti@1020 326 if (UseSSE < 2)
twisti@1020 327 _cpuFeatures &= ~CPU_SSE2;
twisti@1020 328
twisti@1020 329 if (UseSSE < 1)
twisti@1020 330 _cpuFeatures &= ~CPU_SSE;
twisti@1020 331
twisti@1020 332 if (logical_processors_per_package() == 1) {
twisti@1020 333 // HT processor could be installed on a system which doesn't support HT.
twisti@1020 334 _cpuFeatures &= ~CPU_HT;
twisti@1020 335 }
twisti@1020 336
twisti@1020 337 char buf[256];
twisti@1210 338 jio_snprintf(buf, sizeof(buf), "(%u cores per cpu, %u threads per core) family %d model %d stepping %d%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
twisti@1020 339 cores_per_cpu(), threads_per_core(),
twisti@1020 340 cpu_family(), _model, _stepping,
twisti@1020 341 (supports_cmov() ? ", cmov" : ""),
twisti@1020 342 (supports_cmpxchg8() ? ", cx8" : ""),
twisti@1020 343 (supports_fxsr() ? ", fxsr" : ""),
twisti@1020 344 (supports_mmx() ? ", mmx" : ""),
twisti@1020 345 (supports_sse() ? ", sse" : ""),
twisti@1020 346 (supports_sse2() ? ", sse2" : ""),
twisti@1020 347 (supports_sse3() ? ", sse3" : ""),
twisti@1020 348 (supports_ssse3()? ", ssse3": ""),
twisti@1020 349 (supports_sse4_1() ? ", sse4.1" : ""),
twisti@1020 350 (supports_sse4_2() ? ", sse4.2" : ""),
twisti@1078 351 (supports_popcnt() ? ", popcnt" : ""),
twisti@1020 352 (supports_mmx_ext() ? ", mmxext" : ""),
twisti@1020 353 (supports_3dnow() ? ", 3dnow" : ""),
twisti@1020 354 (supports_3dnow2() ? ", 3dnowext" : ""),
twisti@1210 355 (supports_lzcnt() ? ", lzcnt": ""),
twisti@1020 356 (supports_sse4a() ? ", sse4a": ""),
twisti@1020 357 (supports_ht() ? ", ht": ""));
twisti@1020 358 _features_str = strdup(buf);
twisti@1020 359
twisti@1020 360 // UseSSE is set to the smaller of what hardware supports and what
twisti@1020 361 // the command line requires. I.e., you cannot set UseSSE to 2 on
twisti@1020 362 // older Pentiums which do not support it.
twisti@1020 363 if( UseSSE > 4 ) UseSSE=4;
twisti@1020 364 if( UseSSE < 0 ) UseSSE=0;
twisti@1020 365 if( !supports_sse4_1() ) // Drop to 3 if no SSE4 support
twisti@1020 366 UseSSE = MIN2((intx)3,UseSSE);
twisti@1020 367 if( !supports_sse3() ) // Drop to 2 if no SSE3 support
twisti@1020 368 UseSSE = MIN2((intx)2,UseSSE);
twisti@1020 369 if( !supports_sse2() ) // Drop to 1 if no SSE2 support
twisti@1020 370 UseSSE = MIN2((intx)1,UseSSE);
twisti@1020 371 if( !supports_sse () ) // Drop to 0 if no SSE support
twisti@1020 372 UseSSE = 0;
twisti@1020 373
twisti@1020 374 // On new cpus instructions which update whole XMM register should be used
twisti@1020 375 // to prevent partial register stall due to dependencies on high half.
twisti@1020 376 //
twisti@1020 377 // UseXmmLoadAndClearUpper == true --> movsd(xmm, mem)
twisti@1020 378 // UseXmmLoadAndClearUpper == false --> movlpd(xmm, mem)
twisti@1020 379 // UseXmmRegToRegMoveAll == true --> movaps(xmm, xmm), movapd(xmm, xmm).
twisti@1020 380 // UseXmmRegToRegMoveAll == false --> movss(xmm, xmm), movsd(xmm, xmm).
twisti@1020 381
twisti@1020 382 if( is_amd() ) { // AMD cpus specific settings
twisti@1020 383 if( supports_sse2() && FLAG_IS_DEFAULT(UseAddressNop) ) {
twisti@1020 384 // Use it on new AMD cpus starting from Opteron.
twisti@1020 385 UseAddressNop = true;
twisti@1020 386 }
twisti@1020 387 if( supports_sse2() && FLAG_IS_DEFAULT(UseNewLongLShift) ) {
twisti@1020 388 // Use it on new AMD cpus starting from Opteron.
twisti@1020 389 UseNewLongLShift = true;
twisti@1020 390 }
twisti@1020 391 if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
twisti@1020 392 if( supports_sse4a() ) {
twisti@1020 393 UseXmmLoadAndClearUpper = true; // use movsd only on '10h' Opteron
twisti@1020 394 } else {
twisti@1020 395 UseXmmLoadAndClearUpper = false;
twisti@1020 396 }
twisti@1020 397 }
twisti@1020 398 if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
twisti@1020 399 if( supports_sse4a() ) {
twisti@1020 400 UseXmmRegToRegMoveAll = true; // use movaps, movapd only on '10h'
twisti@1020 401 } else {
twisti@1020 402 UseXmmRegToRegMoveAll = false;
twisti@1020 403 }
twisti@1020 404 }
twisti@1020 405 if( FLAG_IS_DEFAULT(UseXmmI2F) ) {
twisti@1020 406 if( supports_sse4a() ) {
twisti@1020 407 UseXmmI2F = true;
twisti@1020 408 } else {
twisti@1020 409 UseXmmI2F = false;
twisti@1020 410 }
twisti@1020 411 }
twisti@1020 412 if( FLAG_IS_DEFAULT(UseXmmI2D) ) {
twisti@1020 413 if( supports_sse4a() ) {
twisti@1020 414 UseXmmI2D = true;
twisti@1020 415 } else {
twisti@1020 416 UseXmmI2D = false;
twisti@1020 417 }
twisti@1020 418 }
twisti@1210 419
twisti@1210 420 // Use count leading zeros count instruction if available.
twisti@1210 421 if (supports_lzcnt()) {
twisti@1210 422 if (FLAG_IS_DEFAULT(UseCountLeadingZerosInstruction)) {
twisti@1210 423 UseCountLeadingZerosInstruction = true;
twisti@1210 424 }
twisti@1210 425 }
twisti@1020 426 }
twisti@1020 427
twisti@1020 428 if( is_intel() ) { // Intel cpus specific settings
twisti@1020 429 if( FLAG_IS_DEFAULT(UseStoreImmI16) ) {
twisti@1020 430 UseStoreImmI16 = false; // don't use it on Intel cpus
twisti@1020 431 }
twisti@1020 432 if( cpu_family() == 6 || cpu_family() == 15 ) {
twisti@1020 433 if( FLAG_IS_DEFAULT(UseAddressNop) ) {
twisti@1020 434 // Use it on all Intel cpus starting from PentiumPro
twisti@1020 435 UseAddressNop = true;
twisti@1020 436 }
twisti@1020 437 }
twisti@1020 438 if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
twisti@1020 439 UseXmmLoadAndClearUpper = true; // use movsd on all Intel cpus
twisti@1020 440 }
twisti@1020 441 if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
twisti@1020 442 if( supports_sse3() ) {
twisti@1020 443 UseXmmRegToRegMoveAll = true; // use movaps, movapd on new Intel cpus
twisti@1020 444 } else {
twisti@1020 445 UseXmmRegToRegMoveAll = false;
twisti@1020 446 }
twisti@1020 447 }
twisti@1020 448 if( cpu_family() == 6 && supports_sse3() ) { // New Intel cpus
twisti@1020 449 #ifdef COMPILER2
twisti@1020 450 if( FLAG_IS_DEFAULT(MaxLoopPad) ) {
twisti@1020 451 // For new Intel cpus do the next optimization:
twisti@1020 452 // don't align the beginning of a loop if there are enough instructions
twisti@1020 453 // left (NumberOfLoopInstrToAlign defined in c2_globals.hpp)
twisti@1020 454 // in current fetch line (OptoLoopAlignment) or the padding
twisti@1020 455 // is big (> MaxLoopPad).
twisti@1020 456 // Set MaxLoopPad to 11 for new Intel cpus to reduce number of
twisti@1020 457 // generated NOP instructions. 11 is the largest size of one
twisti@1020 458 // address NOP instruction '0F 1F' (see Assembler::nop(i)).
twisti@1020 459 MaxLoopPad = 11;
twisti@1020 460 }
twisti@1020 461 #endif // COMPILER2
twisti@1020 462 if( FLAG_IS_DEFAULT(UseXMMForArrayCopy) ) {
twisti@1020 463 UseXMMForArrayCopy = true; // use SSE2 movq on new Intel cpus
twisti@1020 464 }
twisti@1020 465 if( supports_sse4_2() && supports_ht() ) { // Newest Intel cpus
twisti@1020 466 if( FLAG_IS_DEFAULT(UseUnalignedLoadStores) && UseXMMForArrayCopy ) {
twisti@1020 467 UseUnalignedLoadStores = true; // use movdqu on newest Intel cpus
twisti@1020 468 }
twisti@1020 469 }
cfang@1116 470 if( supports_sse4_2() && UseSSE >= 4 ) {
cfang@1116 471 if( FLAG_IS_DEFAULT(UseSSE42Intrinsics)) {
cfang@1116 472 UseSSE42Intrinsics = true;
cfang@1116 473 }
cfang@1116 474 }
twisti@1020 475 }
twisti@1020 476 }
twisti@1020 477
twisti@1078 478 // Use population count instruction if available.
twisti@1078 479 if (supports_popcnt()) {
twisti@1078 480 if (FLAG_IS_DEFAULT(UsePopCountInstruction)) {
twisti@1078 481 UsePopCountInstruction = true;
twisti@1078 482 }
twisti@1078 483 }
twisti@1078 484
twisti@1020 485 assert(0 <= ReadPrefetchInstr && ReadPrefetchInstr <= 3, "invalid value");
twisti@1020 486 assert(0 <= AllocatePrefetchInstr && AllocatePrefetchInstr <= 3, "invalid value");
twisti@1020 487
twisti@1020 488 // set valid Prefetch instruction
twisti@1020 489 if( ReadPrefetchInstr < 0 ) ReadPrefetchInstr = 0;
twisti@1020 490 if( ReadPrefetchInstr > 3 ) ReadPrefetchInstr = 3;
twisti@1020 491 if( ReadPrefetchInstr == 3 && !supports_3dnow() ) ReadPrefetchInstr = 0;
twisti@1020 492 if( !supports_sse() && supports_3dnow() ) ReadPrefetchInstr = 3;
twisti@1020 493
twisti@1020 494 if( AllocatePrefetchInstr < 0 ) AllocatePrefetchInstr = 0;
twisti@1020 495 if( AllocatePrefetchInstr > 3 ) AllocatePrefetchInstr = 3;
twisti@1020 496 if( AllocatePrefetchInstr == 3 && !supports_3dnow() ) AllocatePrefetchInstr=0;
twisti@1020 497 if( !supports_sse() && supports_3dnow() ) AllocatePrefetchInstr = 3;
twisti@1020 498
twisti@1020 499 // Allocation prefetch settings
twisti@1020 500 intx cache_line_size = L1_data_cache_line_size();
twisti@1020 501 if( cache_line_size > AllocatePrefetchStepSize )
twisti@1020 502 AllocatePrefetchStepSize = cache_line_size;
twisti@1020 503 if( FLAG_IS_DEFAULT(AllocatePrefetchLines) )
twisti@1020 504 AllocatePrefetchLines = 3; // Optimistic value
twisti@1020 505 assert(AllocatePrefetchLines > 0, "invalid value");
twisti@1020 506 if( AllocatePrefetchLines < 1 ) // set valid value in product VM
twisti@1020 507 AllocatePrefetchLines = 1; // Conservative value
twisti@1020 508
twisti@1020 509 AllocatePrefetchDistance = allocate_prefetch_distance();
twisti@1020 510 AllocatePrefetchStyle = allocate_prefetch_style();
twisti@1020 511
kvn@1977 512 if( is_intel() && cpu_family() == 6 && supports_sse3() ) {
kvn@1977 513 if( AllocatePrefetchStyle == 2 ) { // watermark prefetching on Core
twisti@1020 514 #ifdef _LP64
kvn@1977 515 AllocatePrefetchDistance = 384;
twisti@1020 516 #else
kvn@1977 517 AllocatePrefetchDistance = 320;
twisti@1020 518 #endif
kvn@1977 519 }
kvn@1977 520 if( supports_sse4_2() && supports_ht() ) { // Nehalem based cpus
kvn@1977 521 AllocatePrefetchDistance = 192;
kvn@1977 522 AllocatePrefetchLines = 4;
kvn@1977 523 }
twisti@1020 524 }
twisti@1020 525 assert(AllocatePrefetchDistance % AllocatePrefetchStepSize == 0, "invalid value");
twisti@1020 526
twisti@1020 527 #ifdef _LP64
twisti@1020 528 // Prefetch settings
twisti@1020 529 PrefetchCopyIntervalInBytes = prefetch_copy_interval_in_bytes();
twisti@1020 530 PrefetchScanIntervalInBytes = prefetch_scan_interval_in_bytes();
twisti@1020 531 PrefetchFieldsAhead = prefetch_fields_ahead();
twisti@1020 532 #endif
twisti@1020 533
twisti@1020 534 #ifndef PRODUCT
twisti@1020 535 if (PrintMiscellaneous && Verbose) {
twisti@1020 536 tty->print_cr("Logical CPUs per core: %u",
twisti@1020 537 logical_processors_per_package());
twisti@1020 538 tty->print_cr("UseSSE=%d",UseSSE);
twisti@1020 539 tty->print("Allocation: ");
twisti@1020 540 if (AllocatePrefetchStyle <= 0 || UseSSE == 0 && !supports_3dnow()) {
twisti@1020 541 tty->print_cr("no prefetching");
twisti@1020 542 } else {
twisti@1020 543 if (UseSSE == 0 && supports_3dnow()) {
twisti@1020 544 tty->print("PREFETCHW");
twisti@1020 545 } else if (UseSSE >= 1) {
twisti@1020 546 if (AllocatePrefetchInstr == 0) {
twisti@1020 547 tty->print("PREFETCHNTA");
twisti@1020 548 } else if (AllocatePrefetchInstr == 1) {
twisti@1020 549 tty->print("PREFETCHT0");
twisti@1020 550 } else if (AllocatePrefetchInstr == 2) {
twisti@1020 551 tty->print("PREFETCHT2");
twisti@1020 552 } else if (AllocatePrefetchInstr == 3) {
twisti@1020 553 tty->print("PREFETCHW");
twisti@1020 554 }
twisti@1020 555 }
twisti@1020 556 if (AllocatePrefetchLines > 1) {
twisti@1020 557 tty->print_cr(" %d, %d lines with step %d bytes", AllocatePrefetchDistance, AllocatePrefetchLines, AllocatePrefetchStepSize);
twisti@1020 558 } else {
twisti@1020 559 tty->print_cr(" %d, one line", AllocatePrefetchDistance);
twisti@1020 560 }
twisti@1020 561 }
twisti@1020 562
twisti@1020 563 if (PrefetchCopyIntervalInBytes > 0) {
twisti@1020 564 tty->print_cr("PrefetchCopyIntervalInBytes %d", PrefetchCopyIntervalInBytes);
twisti@1020 565 }
twisti@1020 566 if (PrefetchScanIntervalInBytes > 0) {
twisti@1020 567 tty->print_cr("PrefetchScanIntervalInBytes %d", PrefetchScanIntervalInBytes);
twisti@1020 568 }
twisti@1020 569 if (PrefetchFieldsAhead > 0) {
twisti@1020 570 tty->print_cr("PrefetchFieldsAhead %d", PrefetchFieldsAhead);
twisti@1020 571 }
twisti@1020 572 }
twisti@1020 573 #endif // !PRODUCT
twisti@1020 574 }
twisti@1020 575
twisti@1020 576 void VM_Version::initialize() {
twisti@1020 577 ResourceMark rm;
twisti@1020 578 // Making this stub must be FIRST use of assembler
twisti@1020 579
twisti@1020 580 stub_blob = BufferBlob::create("getPsrInfo_stub", stub_size);
twisti@1020 581 if (stub_blob == NULL) {
twisti@1020 582 vm_exit_during_initialization("Unable to allocate getPsrInfo_stub");
twisti@1020 583 }
twisti@1020 584 CodeBuffer c(stub_blob->instructions_begin(),
twisti@1020 585 stub_blob->instructions_size());
twisti@1020 586 VM_Version_StubGenerator g(&c);
twisti@1020 587 getPsrInfo_stub = CAST_TO_FN_PTR(getPsrInfo_stub_t,
twisti@1020 588 g.generate_getPsrInfo());
twisti@1020 589
twisti@1020 590 get_processor_features();
twisti@1020 591 }

mercurial