1 /*
   2  * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  *
  23  */
  24 
  25 # include "incls/_precompiled.incl"
  26 # include "incls/_vm_version_x86_32.cpp.incl"
  27 
  28 
  29 int VM_Version::_cpu;
  30 int VM_Version::_model;
  31 int VM_Version::_stepping;
  32 int VM_Version::_cpuFeatures;
  33 const char*           VM_Version::_features_str = "";
  34 VM_Version::CpuidInfo VM_Version::_cpuid_info   = { 0, };
  35 
  36 static BufferBlob* stub_blob;
  37 static const int stub_size = 300;
  38 
  39 extern "C" {
  40   typedef void (*getPsrInfo_stub_t)(void*);
  41 }
  42 static getPsrInfo_stub_t getPsrInfo_stub = NULL;
  43 
  44 
  45 class VM_Version_StubGenerator: public StubCodeGenerator {
  46  public:
  47 
  48   VM_Version_StubGenerator(CodeBuffer *c) : StubCodeGenerator(c) {}
  49 
  50   address generate_getPsrInfo() {
  51     // Flags to test CPU type.
  52     const uint32_t EFL_AC           = 0x40000;
  53     const uint32_t EFL_ID           = 0x200000;
  54     // Values for when we don't have a CPUID instruction.
  55     const int      CPU_FAMILY_SHIFT = 8;
  56     const uint32_t CPU_FAMILY_386   = (3 << CPU_FAMILY_SHIFT);
  57     const uint32_t CPU_FAMILY_486   = (4 << CPU_FAMILY_SHIFT);
  58 
  59     Label detect_486, cpu486, detect_586, std_cpuid1;
  60     Label ext_cpuid1, ext_cpuid5, done;
  61 
  62     StubCodeMark mark(this, "VM_Version", "getPsrInfo_stub");
  63 #   define __ _masm->
  64 
  65     address start = __ pc();
  66 
  67     //
  68     // void getPsrInfo(VM_Version::CpuidInfo* cpuid_info);
  69     //
  70     __ pushl(rbp);
  71     __ movl(rbp, Address(rsp, 8)); // cpuid_info address
  72     __ pushl(rbx);
  73     __ pushl(rsi);
  74     __ pushfd();                // preserve rbx, and flags
  75     __ popl(rax);
  76     __ pushl(rax);
  77     __ movl(rcx, rax);
  78     //
  79     // if we are unable to change the AC flag, we have a 386
  80     //
  81     __ xorl(rax, EFL_AC);
  82     __ pushl(rax);
  83     __ popfd();
  84     __ pushfd();
  85     __ popl(rax);
  86     __ cmpl(rax, rcx);
  87     __ jccb(Assembler::notEqual, detect_486);
  88 
  89     __ movl(rax, CPU_FAMILY_386);
  90     __ movl(Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())), rax);
  91     __ jmp(done);
  92 
  93     //
  94     // If we are unable to change the ID flag, we have a 486 which does
  95     // not support the "cpuid" instruction.
  96     //
  97     __ bind(detect_486);
  98     __ movl(rax, rcx);
  99     __ xorl(rax, EFL_ID);
 100     __ pushl(rax);
 101     __ popfd();
 102     __ pushfd();
 103     __ popl(rax);
 104     __ cmpl(rcx, rax);
 105     __ jccb(Assembler::notEqual, detect_586);
 106 
 107     __ bind(cpu486);
 108     __ movl(rax, CPU_FAMILY_486);
 109     __ movl(Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())), rax);
 110     __ jmp(done);
 111 
 112     //
 113     // at this point, we have a chip which supports the "cpuid" instruction
 114     //
 115     __ bind(detect_586);
 116     __ xorl(rax, rax);
 117     __ cpuid();
 118     __ orl(rax, rax);
 119     __ jcc(Assembler::equal, cpu486);   // if cpuid doesn't support an input
 120                                         // value of at least 1, we give up and
 121                                         // assume a 486
 122     __ leal(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid0_offset())));
 123     __ movl(Address(rsi, 0), rax);
 124     __ movl(Address(rsi, 4), rbx);
 125     __ movl(Address(rsi, 8), rcx);
 126     __ movl(Address(rsi,12), rdx);
 127 
 128     __ cmpl(rax, 3);     // Is cpuid(0x4) supported?
 129     __ jccb(Assembler::belowEqual, std_cpuid1);
 130 
 131     //
 132     // cpuid(0x4) Deterministic cache params
 133     //
 134     __ movl(rax, 4);     // and rcx already set to 0x0
 135     __ xorl(rcx, rcx);
 136     __ cpuid();
 137     __ pushl(rax);
 138     __ andl(rax, 0x1f);  // Determine if valid cache parameters used
 139     __ orl(rax, rax);    // rax,[4:0] == 0 indicates invalid cache
 140     __ popl(rax);
 141     __ jccb(Assembler::equal, std_cpuid1);
 142 
 143     __ leal(rsi, Address(rbp, in_bytes(VM_Version::dcp_cpuid4_offset())));
 144     __ movl(Address(rsi, 0), rax);
 145     __ movl(Address(rsi, 4), rbx);
 146     __ movl(Address(rsi, 8), rcx);
 147     __ movl(Address(rsi,12), rdx);
 148 
 149     //
 150     // Standard cpuid(0x1)
 151     //
 152     __ bind(std_cpuid1);
 153     __ movl(rax, 1);
 154     __ cpuid();
 155     __ leal(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())));
 156     __ movl(Address(rsi, 0), rax);
 157     __ movl(Address(rsi, 4), rbx);
 158     __ movl(Address(rsi, 8), rcx);
 159     __ movl(Address(rsi,12), rdx);
 160 
 161     __ movl(rax, 0x80000000);
 162     __ cpuid();
 163     __ cmpl(rax, 0x80000000);     // Is cpuid(0x80000001) supported?
 164     __ jcc(Assembler::belowEqual, done);
 165     __ cmpl(rax, 0x80000004);     // Is cpuid(0x80000005) supported?
 166     __ jccb(Assembler::belowEqual, ext_cpuid1);
 167     __ cmpl(rax, 0x80000007);     // Is cpuid(0x80000008) supported?
 168     __ jccb(Assembler::belowEqual, ext_cpuid5);
 169     //
 170     // Extended cpuid(0x80000008)
 171     //
 172     __ movl(rax, 0x80000008);
 173     __ cpuid();
 174     __ leal(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid8_offset())));
 175     __ movl(Address(rsi, 0), rax);
 176     __ movl(Address(rsi, 4), rbx);
 177     __ movl(Address(rsi, 8), rcx);
 178     __ movl(Address(rsi,12), rdx);
 179 
 180     //
 181     // Extended cpuid(0x80000005)
 182     //
 183     __ bind(ext_cpuid5);
 184     __ movl(rax, 0x80000005);
 185     __ cpuid();
 186     __ leal(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid5_offset())));
 187     __ movl(Address(rsi, 0), rax);
 188     __ movl(Address(rsi, 4), rbx);
 189     __ movl(Address(rsi, 8), rcx);
 190     __ movl(Address(rsi,12), rdx);
 191 
 192     //
 193     // Extended cpuid(0x80000001)
 194     //
 195     __ bind(ext_cpuid1);
 196     __ movl(rax, 0x80000001);
 197     __ cpuid();
 198     __ leal(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid1_offset())));
 199     __ movl(Address(rsi, 0), rax);
 200     __ movl(Address(rsi, 4), rbx);
 201     __ movl(Address(rsi, 8), rcx);
 202     __ movl(Address(rsi,12), rdx);
 203 
 204     //
 205     // return
 206     //
 207     __ bind(done);
 208     __ popfd();
 209     __ popl(rsi);
 210     __ popl(rbx);
 211     __ popl(rbp);
 212     __ ret(0);
 213 
 214 #   undef __
 215 
 216     return start;
 217   };
 218 };
 219 
 220 
 221 void VM_Version::get_processor_features() {
 222 
 223   _cpu = 4; // 486 by default
 224   _model = 0;
 225   _stepping = 0;
 226   _cpuFeatures = 0;
 227   _logical_processors_per_package = 1;
 228   if (!Use486InstrsOnly) {
 229     // Get raw processor info
 230     getPsrInfo_stub(&_cpuid_info);
 231     assert_is_initialized();
 232     _cpu = extended_cpu_family();
 233     _model = extended_cpu_model();
 234     _stepping = cpu_stepping();
 235     if (cpu_family() > 4) { // it supports CPUID
 236       _cpuFeatures = feature_flags();
 237       // Logical processors are only available on P4s and above,
 238       // and only if hyperthreading is available.
 239       _logical_processors_per_package = logical_processor_count();
 240     }
 241   }
 242   _supports_cx8 = supports_cmpxchg8();
 243   // if the OS doesn't support SSE, we can't use this feature even if the HW does
 244   if( !os::supports_sse())
 245     _cpuFeatures &= ~(CPU_SSE|CPU_SSE2|CPU_SSE3|CPU_SSSE3|CPU_SSE4|CPU_SSE4A);
 246   if (UseSSE < 4)
 247     _cpuFeatures &= ~CPU_SSE4;
 248   if (UseSSE < 3) {
 249     _cpuFeatures &= ~CPU_SSE3;
 250     _cpuFeatures &= ~CPU_SSSE3;
 251     _cpuFeatures &= ~CPU_SSE4A;
 252   }
 253   if (UseSSE < 2)
 254     _cpuFeatures &= ~CPU_SSE2;
 255   if (UseSSE < 1)
 256     _cpuFeatures &= ~CPU_SSE;
 257 
 258   if (logical_processors_per_package() == 1) {
 259     // HT processor could be installed on a system which doesn't support HT.
 260     _cpuFeatures &= ~CPU_HT;
 261   }
 262 
 263   char buf[256];
 264   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",
 265                cores_per_cpu(), threads_per_core(),
 266                cpu_family(), _model, _stepping,
 267                (supports_cmov() ? ", cmov" : ""),
 268                (supports_cmpxchg8() ? ", cx8" : ""),
 269                (supports_fxsr() ? ", fxsr" : ""),
 270                (supports_mmx()  ? ", mmx"  : ""),
 271                (supports_sse()  ? ", sse"  : ""),
 272                (supports_sse2() ? ", sse2" : ""),
 273                (supports_sse3() ? ", sse3" : ""),
 274                (supports_ssse3()? ", ssse3": ""),
 275                (supports_sse4() ? ", sse4" : ""),
 276                (supports_mmx_ext() ? ", mmxext" : ""),
 277                (supports_3dnow()   ? ", 3dnow"  : ""),
 278                (supports_3dnow2()  ? ", 3dnowext" : ""),
 279                (supports_sse4a()   ? ", sse4a": ""),
 280                (supports_ht() ? ", ht": ""));
 281   _features_str = strdup(buf);
 282 
 283   // UseSSE is set to the smaller of what hardware supports and what
 284   // the command line requires.  I.e., you cannot set UseSSE to 2 on
 285   // older Pentiums which do not support it.
 286   if( UseSSE > 4 ) UseSSE=4;
 287   if( UseSSE < 0 ) UseSSE=0;
 288   if( !supports_sse4() ) // Drop to 3 if no SSE4 support
 289     UseSSE = MIN2((intx)3,UseSSE);
 290   if( !supports_sse3() ) // Drop to 2 if no SSE3 support
 291     UseSSE = MIN2((intx)2,UseSSE);
 292   if( !supports_sse2() ) // Drop to 1 if no SSE2 support
 293     UseSSE = MIN2((intx)1,UseSSE);
 294   if( !supports_sse () ) // Drop to 0 if no SSE  support
 295     UseSSE = 0;
 296 
 297   // On new cpus instructions which update whole XMM register should be used
 298   // to prevent partial register stall due to dependencies on high half.
 299   //
 300   // UseXmmLoadAndClearUpper == true  --> movsd(xmm, mem)
 301   // UseXmmLoadAndClearUpper == false --> movlpd(xmm, mem)
 302   // UseXmmRegToRegMoveAll == true  --> movaps(xmm, xmm), movapd(xmm, xmm).
 303   // UseXmmRegToRegMoveAll == false --> movss(xmm, xmm),  movsd(xmm, xmm).
 304 
 305   if( is_amd() ) { // AMD cpus specific settings
 306     if( supports_sse2() && FLAG_IS_DEFAULT(UseAddressNop) ) {
 307       // Use it on new AMD cpus starting from Opteron.
 308       UseAddressNop = true;
 309     }
 310     if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
 311       if( supports_sse4a() ) {
 312         UseXmmLoadAndClearUpper = true; // use movsd only on '10h' Opteron
 313       } else {
 314         UseXmmLoadAndClearUpper = false;
 315       }
 316     }
 317     if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
 318       if( supports_sse4a() ) {
 319         UseXmmRegToRegMoveAll = true; // use movaps, movapd only on '10h'
 320       } else {
 321         UseXmmRegToRegMoveAll = false;
 322       }
 323     }
 324     if( FLAG_IS_DEFAULT(UseXmmI2F) ) {
 325       if( supports_sse4a() ) {
 326         UseXmmI2F = true;
 327       } else {
 328         UseXmmI2F = false;
 329       }
 330     }
 331     if( FLAG_IS_DEFAULT(UseXmmI2D) ) {
 332       if( supports_sse4a() ) {
 333         UseXmmI2D = true;
 334       } else {
 335         UseXmmI2D = false;
 336       }
 337     }
 338   }
 339 
 340   if( is_intel() ) { // Intel cpus specific settings
 341     if( FLAG_IS_DEFAULT(UseStoreImmI16) ) {
 342       UseStoreImmI16 = false; // don't use it on Intel cpus
 343     }
 344     if( cpu_family() == 6 || cpu_family() == 15 ) {
 345       if( FLAG_IS_DEFAULT(UseAddressNop) ) {
 346         // Use it on all Intel cpus starting from PentiumPro
 347         UseAddressNop = true;
 348       }
 349     }
 350     if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
 351       UseXmmLoadAndClearUpper = true; // use movsd on all Intel cpus
 352     }
 353     if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
 354       if( supports_sse3() ) {
 355         UseXmmRegToRegMoveAll = true; // use movaps, movapd on new Intel cpus
 356       } else {
 357         UseXmmRegToRegMoveAll = false;
 358       }
 359     }
 360     if( cpu_family() == 6 && supports_sse3() ) { // New Intel cpus
 361 #ifdef COMPILER2
 362       if( FLAG_IS_DEFAULT(MaxLoopPad) ) {
 363         // For new Intel cpus do the next optimization:
 364         // don't align the beginning of a loop if there are enough instructions
 365         // left (NumberOfLoopInstrToAlign defined in c2_globals.hpp)
 366         // in current fetch line (OptoLoopAlignment) or the padding
 367         // is big (> MaxLoopPad).
 368         // Set MaxLoopPad to 11 for new Intel cpus to reduce number of
 369         // generated NOP instructions. 11 is the largest size of one
 370         // address NOP instruction '0F 1F' (see Assembler::nop(i)).
 371         MaxLoopPad = 11;
 372       }
 373 #endif // COMPILER2
 374     }
 375   }
 376 
 377   assert(0 <= ReadPrefetchInstr && ReadPrefetchInstr <= 3, "invalid value");
 378   assert(0 <= AllocatePrefetchInstr && AllocatePrefetchInstr <= 3, "invalid value");
 379 
 380   // set valid Prefetch instruction
 381   if( ReadPrefetchInstr < 0 ) ReadPrefetchInstr = 0;
 382   if( ReadPrefetchInstr > 3 ) ReadPrefetchInstr = 3;
 383   if( ReadPrefetchInstr == 3 && !supports_3dnow() ) ReadPrefetchInstr = 0;
 384   if( !supports_sse() && supports_3dnow() ) ReadPrefetchInstr = 3;
 385 
 386   if( AllocatePrefetchInstr < 0 ) AllocatePrefetchInstr = 0;
 387   if( AllocatePrefetchInstr > 3 ) AllocatePrefetchInstr = 3;
 388   if( AllocatePrefetchInstr == 3 && !supports_3dnow() ) AllocatePrefetchInstr=0;
 389   if( !supports_sse() && supports_3dnow() ) AllocatePrefetchInstr = 3;
 390 
 391   // Allocation prefetch settings
 392   intx cache_line_size = L1_data_cache_line_size();
 393   if( cache_line_size > AllocatePrefetchStepSize )
 394     AllocatePrefetchStepSize = cache_line_size;
 395   if( FLAG_IS_DEFAULT(AllocatePrefetchLines) )
 396     AllocatePrefetchLines = 3; // Optimistic value
 397   assert(AllocatePrefetchLines > 0, "invalid value");
 398   if( AllocatePrefetchLines < 1 ) // set valid value in product VM
 399     AllocatePrefetchLines = 1; // Conservative value
 400 
 401   AllocatePrefetchDistance = allocate_prefetch_distance();
 402   AllocatePrefetchStyle    = allocate_prefetch_style();
 403 
 404   if( AllocatePrefetchStyle == 2 && is_intel() &&
 405       cpu_family() == 6 && supports_sse3() ) { // watermark prefetching on Core
 406     AllocatePrefetchDistance = 320;
 407   }
 408   assert(AllocatePrefetchDistance % AllocatePrefetchStepSize == 0, "invalid value");
 409 
 410 #ifndef PRODUCT
 411   if (PrintMiscellaneous && Verbose) {
 412     tty->print_cr("Logical CPUs per package: %u",
 413                   logical_processors_per_package());
 414     tty->print_cr("UseSSE=%d",UseSSE);
 415     tty->print("Allocation: ");
 416     if (AllocatePrefetchStyle <= 0 || UseSSE == 0 && !supports_3dnow()) {
 417       tty->print_cr("no prefetching");
 418     } else {
 419       if (UseSSE == 0 && supports_3dnow()) {
 420         tty->print("PREFETCHW");
 421       } else if (UseSSE >= 1) {
 422         if (AllocatePrefetchInstr == 0) {
 423           tty->print("PREFETCHNTA");
 424         } else if (AllocatePrefetchInstr == 1) {
 425           tty->print("PREFETCHT0");
 426         } else if (AllocatePrefetchInstr == 2) {
 427           tty->print("PREFETCHT2");
 428         } else if (AllocatePrefetchInstr == 3) {
 429           tty->print("PREFETCHW");
 430         }
 431       }
 432       if (AllocatePrefetchLines > 1) {
 433         tty->print_cr(" %d, %d lines with step %d bytes", AllocatePrefetchDistance, AllocatePrefetchLines, AllocatePrefetchStepSize);
 434       } else {
 435         tty->print_cr(" %d, one line", AllocatePrefetchDistance);
 436       }
 437     }
 438   }
 439 #endif // !PRODUCT
 440 }
 441 
 442 void VM_Version::initialize() {
 443   ResourceMark rm;
 444   // Making this stub must be FIRST use of assembler
 445 
 446   stub_blob = BufferBlob::create("getPsrInfo_stub", stub_size);
 447   if (stub_blob == NULL) {
 448     vm_exit_during_initialization("Unable to allocate getPsrInfo_stub");
 449   }
 450   CodeBuffer c(stub_blob->instructions_begin(),
 451                stub_blob->instructions_size());
 452   VM_Version_StubGenerator g(&c);
 453   getPsrInfo_stub = CAST_TO_FN_PTR(getPsrInfo_stub_t,
 454                                    g.generate_getPsrInfo());
 455 
 456   get_processor_features();
 457 }