1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef CPU_X86_VM_VM_VERSION_X86_HPP
  26 #define CPU_X86_VM_VM_VERSION_X86_HPP
  27 
  28 #include "runtime/globals_extension.hpp"
  29 #include "runtime/vm_version.hpp"
  30 
  31 class VM_Version : public Abstract_VM_Version {
  32   friend class VMStructs;
  33   friend class JVMCIVMStructs;
  34 
  35  public:
  36   // cpuid result register layouts.  These are all unions of a uint32_t
  37   // (in case anyone wants access to the register as a whole) and a bitfield.
  38 
  39   union StdCpuid1Eax {
  40     uint32_t value;
  41     struct {
  42       uint32_t stepping   : 4,
  43                model      : 4,
  44                family     : 4,
  45                proc_type  : 2,
  46                           : 2,
  47                ext_model  : 4,
  48                ext_family : 8,
  49                           : 4;
  50     } bits;
  51   };
  52 
  53   union StdCpuid1Ebx { // example, unused
  54     uint32_t value;
  55     struct {
  56       uint32_t brand_id         : 8,
  57                clflush_size     : 8,
  58                threads_per_cpu  : 8,
  59                apic_id          : 8;
  60     } bits;
  61   };
  62 
  63   union StdCpuid1Ecx {
  64     uint32_t value;
  65     struct {
  66       uint32_t sse3     : 1,
  67                clmul    : 1,
  68                         : 1,
  69                monitor  : 1,
  70                         : 1,
  71                vmx      : 1,
  72                         : 1,
  73                est      : 1,
  74                         : 1,
  75                ssse3    : 1,
  76                cid      : 1,
  77                         : 1,
  78                fma      : 1,
  79                cmpxchg16: 1,
  80                         : 4,
  81                dca      : 1,
  82                sse4_1   : 1,
  83                sse4_2   : 1,
  84                         : 2,
  85                popcnt   : 1,
  86                         : 1,
  87                aes      : 1,
  88                         : 1,
  89                osxsave  : 1,
  90                avx      : 1,
  91                         : 3;
  92     } bits;
  93   };
  94 
  95   union StdCpuid1Edx {
  96     uint32_t value;
  97     struct {
  98       uint32_t          : 4,
  99                tsc      : 1,
 100                         : 3,
 101                cmpxchg8 : 1,
 102                         : 6,
 103                cmov     : 1,
 104                         : 3,
 105                clflush  : 1,
 106                         : 3,
 107                mmx      : 1,
 108                fxsr     : 1,
 109                sse      : 1,
 110                sse2     : 1,
 111                         : 1,
 112                ht       : 1,
 113                         : 3;
 114     } bits;
 115   };
 116 
 117   union DcpCpuid4Eax {
 118     uint32_t value;
 119     struct {
 120       uint32_t cache_type    : 5,
 121                              : 21,
 122                cores_per_cpu : 6;
 123     } bits;
 124   };
 125 
 126   union DcpCpuid4Ebx {
 127     uint32_t value;
 128     struct {
 129       uint32_t L1_line_size  : 12,
 130                partitions    : 10,
 131                associativity : 10;
 132     } bits;
 133   };
 134 
 135   union TplCpuidBEbx {
 136     uint32_t value;
 137     struct {
 138       uint32_t logical_cpus : 16,
 139                             : 16;
 140     } bits;
 141   };
 142 
 143   union ExtCpuid1Ecx {
 144     uint32_t value;
 145     struct {
 146       uint32_t LahfSahf     : 1,
 147                CmpLegacy    : 1,
 148                             : 3,
 149                lzcnt_intel  : 1,
 150                lzcnt        : 1,
 151                sse4a        : 1,
 152                misalignsse  : 1,
 153                prefetchw    : 1,
 154                             : 22;
 155     } bits;
 156   };
 157 
 158   union ExtCpuid1Edx {
 159     uint32_t value;
 160     struct {
 161       uint32_t           : 22,
 162                mmx_amd   : 1,
 163                mmx       : 1,
 164                fxsr      : 1,
 165                          : 4,
 166                long_mode : 1,
 167                tdnow2    : 1,
 168                tdnow     : 1;
 169     } bits;
 170   };
 171 
 172   union ExtCpuid5Ex {
 173     uint32_t value;
 174     struct {
 175       uint32_t L1_line_size : 8,
 176                L1_tag_lines : 8,
 177                L1_assoc     : 8,
 178                L1_size      : 8;
 179     } bits;
 180   };
 181 
 182   union ExtCpuid7Edx {
 183     uint32_t value;
 184     struct {
 185       uint32_t               : 8,
 186               tsc_invariance : 1,
 187                              : 23;
 188     } bits;
 189   };
 190 
 191   union ExtCpuid8Ecx {
 192     uint32_t value;
 193     struct {
 194       uint32_t cores_per_cpu : 8,
 195                              : 24;
 196     } bits;
 197   };
 198 
 199   union SefCpuid7Eax {
 200     uint32_t value;
 201   };
 202 
 203   union SefCpuid7Ebx {
 204     uint32_t value;
 205     struct {
 206       uint32_t fsgsbase : 1,
 207                         : 2,
 208                    bmi1 : 1,
 209                         : 1,
 210                    avx2 : 1,
 211                         : 2,
 212                    bmi2 : 1,
 213                    erms : 1,
 214                         : 1,
 215                     rtm : 1,
 216                         : 4,
 217                 avx512f : 1,
 218                avx512dq : 1,
 219                         : 1,
 220                     adx : 1,
 221                         : 3,
 222              clflushopt : 1,
 223                    clwb : 1,
 224                         : 1,
 225                avx512pf : 1,
 226                avx512er : 1,
 227                avx512cd : 1,
 228                     sha : 1,
 229                avx512bw : 1,
 230                avx512vl : 1;
 231     } bits;
 232   };
 233 
 234   union SefCpuid7Ecx {
 235     uint32_t value;
 236     struct {
 237       uint32_t prefetchwt1 : 1,
 238                avx512_vbmi : 1,
 239                       umip : 1,
 240                        pku : 1,
 241                      ospke : 1,
 242                            : 1,
 243               avx512_vbmi2 : 1,
 244                            : 1,
 245                       gfni : 1,
 246                       vaes : 1,
 247                 vpclmulqdq : 1,
 248                avx512_vnni : 1,
 249              avx512_bitalg : 1,
 250                            : 1,
 251           avx512_vpopcntdq : 1,
 252                            : 17;
 253     } bits;
 254   };
 255 
 256   union SefCpuid7Edx {
 257     uint32_t value;
 258     struct {
 259       uint32_t             : 2,
 260              avx512_4vnniw : 1,
 261              avx512_4fmaps : 1,
 262                            : 28;
 263     } bits;
 264   };
 265 
 266   union ExtCpuid1EEbx {
 267     uint32_t value;
 268     struct {
 269       uint32_t                  : 8,
 270                threads_per_core : 8,
 271                                 : 16;
 272     } bits;
 273   };
 274 
 275   union XemXcr0Eax {
 276     uint32_t value;
 277     struct {
 278       uint32_t x87     : 1,
 279                sse     : 1,
 280                ymm     : 1,
 281                bndregs : 1,
 282                bndcsr  : 1,
 283                opmask  : 1,
 284                zmm512  : 1,
 285                zmm32   : 1,
 286                        : 24;
 287     } bits;
 288   };
 289 
 290 protected:
 291   static int _cpu;
 292   static int _model;
 293   static int _stepping;
 294 
 295   static address   _cpuinfo_segv_addr; // address of instruction which causes SEGV
 296   static address   _cpuinfo_cont_addr; // address of instruction after the one which causes SEGV
 297 
 298   enum Feature_Flag {
 299     CPU_CX8      = (1 << 0), // next bits are from cpuid 1 (EDX)
 300     CPU_CMOV     = (1 << 1),
 301     CPU_FXSR     = (1 << 2),
 302     CPU_HT       = (1 << 3),
 303     CPU_MMX      = (1 << 4),
 304     CPU_3DNOW_PREFETCH = (1 << 5), // Processor supports 3dnow prefetch and prefetchw instructions
 305                                    // may not necessarily support other 3dnow instructions
 306     CPU_SSE      = (1 << 6),
 307     CPU_SSE2     = (1 << 7),
 308     CPU_SSE3     = (1 << 8),  // SSE3 comes from cpuid 1 (ECX)
 309     CPU_SSSE3    = (1 << 9),
 310     CPU_SSE4A    = (1 << 10),
 311     CPU_SSE4_1   = (1 << 11),
 312     CPU_SSE4_2   = (1 << 12),
 313     CPU_POPCNT   = (1 << 13),
 314     CPU_LZCNT    = (1 << 14),
 315     CPU_TSC      = (1 << 15),
 316     CPU_TSCINV   = (1 << 16),
 317     CPU_AVX      = (1 << 17),
 318     CPU_AVX2     = (1 << 18),
 319     CPU_AES      = (1 << 19),
 320     CPU_ERMS     = (1 << 20), // enhanced 'rep movsb/stosb' instructions
 321     CPU_CLMUL    = (1 << 21), // carryless multiply for CRC
 322     CPU_BMI1     = (1 << 22),
 323     CPU_BMI2     = (1 << 23),
 324     CPU_RTM      = (1 << 24), // Restricted Transactional Memory instructions
 325     CPU_ADX      = (1 << 25),
 326     CPU_AVX512F  = (1 << 26), // AVX 512bit foundation instructions
 327     CPU_AVX512DQ = (1 << 27),
 328     CPU_AVX512PF = (1 << 28),
 329     CPU_AVX512ER = (1 << 29),
 330     CPU_AVX512CD = (1 << 30)
 331     // Keeping sign bit 31 unassigned.
 332   };
 333 
 334 #define CPU_AVX512BW ((uint64_t)UCONST64(0x100000000)) // enums are limited to 31 bit
 335 #define CPU_AVX512VL ((uint64_t)UCONST64(0x200000000)) // EVEX instructions with smaller vector length
 336 #define CPU_SHA ((uint64_t)UCONST64(0x400000000))      // SHA instructions
 337 #define CPU_FMA ((uint64_t)UCONST64(0x800000000))      // FMA instructions
 338 #define CPU_VZEROUPPER ((uint64_t)UCONST64(0x1000000000))       // Vzeroupper instruction
 339 #define CPU_AVX512_VPOPCNTDQ ((uint64_t)UCONST64(0x2000000000)) // Vector popcount
 340 #define CPU_VPCLMULQDQ ((uint64_t)UCONST64(0x4000000000)) //Vector carryless multiplication
 341 #define CPU_VAES ((uint64_t)UCONST64(0x8000000000))    // Vector AES instructions
 342 
 343 #define CPU_FLUSHOPT ((uint64_t)UCONST64(0x10000000000)) // flushopt instruction
 344 #define CPU_CLWB ((uint64_t)UCONST64(0x20000000000)) // clwb instruction
 345 
 346 enum Extended_Family {
 347     // AMD
 348     CPU_FAMILY_AMD_11H       = 0x11,
 349     // ZX
 350     CPU_FAMILY_ZX_CORE_F6    = 6,
 351     CPU_FAMILY_ZX_CORE_F7    = 7,
 352     // Intel
 353     CPU_FAMILY_INTEL_CORE    = 6,
 354     CPU_MODEL_NEHALEM        = 0x1e,
 355     CPU_MODEL_NEHALEM_EP     = 0x1a,
 356     CPU_MODEL_NEHALEM_EX     = 0x2e,
 357     CPU_MODEL_WESTMERE       = 0x25,
 358     CPU_MODEL_WESTMERE_EP    = 0x2c,
 359     CPU_MODEL_WESTMERE_EX    = 0x2f,
 360     CPU_MODEL_SANDYBRIDGE    = 0x2a,
 361     CPU_MODEL_SANDYBRIDGE_EP = 0x2d,
 362     CPU_MODEL_IVYBRIDGE_EP   = 0x3a,
 363     CPU_MODEL_HASWELL_E3     = 0x3c,
 364     CPU_MODEL_HASWELL_E7     = 0x3f,
 365     CPU_MODEL_BROADWELL      = 0x3d,
 366     CPU_MODEL_SKYLAKE        = CPU_MODEL_HASWELL_E3
 367   };
 368 
 369   // cpuid information block.  All info derived from executing cpuid with
 370   // various function numbers is stored here.  Intel and AMD info is
 371   // merged in this block: accessor methods disentangle it.
 372   //
 373   // The info block is laid out in subblocks of 4 dwords corresponding to
 374   // eax, ebx, ecx and edx, whether or not they contain anything useful.
 375   struct CpuidInfo {
 376     // cpuid function 0
 377     uint32_t std_max_function;
 378     uint32_t std_vendor_name_0;
 379     uint32_t std_vendor_name_1;
 380     uint32_t std_vendor_name_2;
 381 
 382     // cpuid function 1
 383     StdCpuid1Eax std_cpuid1_eax;
 384     StdCpuid1Ebx std_cpuid1_ebx;
 385     StdCpuid1Ecx std_cpuid1_ecx;
 386     StdCpuid1Edx std_cpuid1_edx;
 387 
 388     // cpuid function 4 (deterministic cache parameters)
 389     DcpCpuid4Eax dcp_cpuid4_eax;
 390     DcpCpuid4Ebx dcp_cpuid4_ebx;
 391     uint32_t     dcp_cpuid4_ecx; // unused currently
 392     uint32_t     dcp_cpuid4_edx; // unused currently
 393 
 394     // cpuid function 7 (structured extended features)
 395     SefCpuid7Eax sef_cpuid7_eax;
 396     SefCpuid7Ebx sef_cpuid7_ebx;
 397     SefCpuid7Ecx sef_cpuid7_ecx;
 398     SefCpuid7Edx sef_cpuid7_edx;
 399 
 400     // cpuid function 0xB (processor topology)
 401     // ecx = 0
 402     uint32_t     tpl_cpuidB0_eax;
 403     TplCpuidBEbx tpl_cpuidB0_ebx;
 404     uint32_t     tpl_cpuidB0_ecx; // unused currently
 405     uint32_t     tpl_cpuidB0_edx; // unused currently
 406 
 407     // ecx = 1
 408     uint32_t     tpl_cpuidB1_eax;
 409     TplCpuidBEbx tpl_cpuidB1_ebx;
 410     uint32_t     tpl_cpuidB1_ecx; // unused currently
 411     uint32_t     tpl_cpuidB1_edx; // unused currently
 412 
 413     // ecx = 2
 414     uint32_t     tpl_cpuidB2_eax;
 415     TplCpuidBEbx tpl_cpuidB2_ebx;
 416     uint32_t     tpl_cpuidB2_ecx; // unused currently
 417     uint32_t     tpl_cpuidB2_edx; // unused currently
 418 
 419     // cpuid function 0x80000000 // example, unused
 420     uint32_t ext_max_function;
 421     uint32_t ext_vendor_name_0;
 422     uint32_t ext_vendor_name_1;
 423     uint32_t ext_vendor_name_2;
 424 
 425     // cpuid function 0x80000001
 426     uint32_t     ext_cpuid1_eax; // reserved
 427     uint32_t     ext_cpuid1_ebx; // reserved
 428     ExtCpuid1Ecx ext_cpuid1_ecx;
 429     ExtCpuid1Edx ext_cpuid1_edx;
 430 
 431     // cpuid functions 0x80000002 thru 0x80000004: example, unused
 432     uint32_t proc_name_0, proc_name_1, proc_name_2, proc_name_3;
 433     uint32_t proc_name_4, proc_name_5, proc_name_6, proc_name_7;
 434     uint32_t proc_name_8, proc_name_9, proc_name_10,proc_name_11;
 435 
 436     // cpuid function 0x80000005 // AMD L1, Intel reserved
 437     uint32_t     ext_cpuid5_eax; // unused currently
 438     uint32_t     ext_cpuid5_ebx; // reserved
 439     ExtCpuid5Ex  ext_cpuid5_ecx; // L1 data cache info (AMD)
 440     ExtCpuid5Ex  ext_cpuid5_edx; // L1 instruction cache info (AMD)
 441 
 442     // cpuid function 0x80000007
 443     uint32_t     ext_cpuid7_eax; // reserved
 444     uint32_t     ext_cpuid7_ebx; // reserved
 445     uint32_t     ext_cpuid7_ecx; // reserved
 446     ExtCpuid7Edx ext_cpuid7_edx; // tscinv
 447 
 448     // cpuid function 0x80000008
 449     uint32_t     ext_cpuid8_eax; // unused currently
 450     uint32_t     ext_cpuid8_ebx; // reserved
 451     ExtCpuid8Ecx ext_cpuid8_ecx;
 452     uint32_t     ext_cpuid8_edx; // reserved
 453 
 454     // cpuid function 0x8000001E // AMD 17h
 455     uint32_t      ext_cpuid1E_eax;
 456     ExtCpuid1EEbx ext_cpuid1E_ebx; // threads per core (AMD17h)
 457     uint32_t      ext_cpuid1E_ecx;
 458     uint32_t      ext_cpuid1E_edx; // unused currently
 459 
 460     // extended control register XCR0 (the XFEATURE_ENABLED_MASK register)
 461     XemXcr0Eax   xem_xcr0_eax;
 462     uint32_t     xem_xcr0_edx; // reserved
 463 
 464     // Space to save ymm registers after signal handle
 465     int          ymm_save[8*4]; // Save ymm0, ymm7, ymm8, ymm15
 466 
 467     // Space to save zmm registers after signal handle
 468     int          zmm_save[16*4]; // Save zmm0, zmm7, zmm8, zmm31
 469   };
 470 
 471   // The actual cpuid info block
 472   static CpuidInfo _cpuid_info;
 473 
 474   // Extractors and predicates
 475   static uint32_t extended_cpu_family() {
 476     uint32_t result = _cpuid_info.std_cpuid1_eax.bits.family;
 477     result += _cpuid_info.std_cpuid1_eax.bits.ext_family;
 478     return result;
 479   }
 480 
 481   static uint32_t extended_cpu_model() {
 482     uint32_t result = _cpuid_info.std_cpuid1_eax.bits.model;
 483     result |= _cpuid_info.std_cpuid1_eax.bits.ext_model << 4;
 484     return result;
 485   }
 486 
 487   static uint32_t cpu_stepping() {
 488     uint32_t result = _cpuid_info.std_cpuid1_eax.bits.stepping;
 489     return result;
 490   }
 491 
 492   static uint logical_processor_count() {
 493     uint result = threads_per_core();
 494     return result;
 495   }
 496 
 497   static uint64_t feature_flags() {
 498     uint64_t result = 0;
 499     if (_cpuid_info.std_cpuid1_edx.bits.cmpxchg8 != 0)
 500       result |= CPU_CX8;
 501     if (_cpuid_info.std_cpuid1_edx.bits.cmov != 0)
 502       result |= CPU_CMOV;
 503     if (_cpuid_info.std_cpuid1_edx.bits.fxsr != 0 || (is_amd() &&
 504         _cpuid_info.ext_cpuid1_edx.bits.fxsr != 0))
 505       result |= CPU_FXSR;
 506     // HT flag is set for multi-core processors also.
 507     if (threads_per_core() > 1)
 508       result |= CPU_HT;
 509     if (_cpuid_info.std_cpuid1_edx.bits.mmx != 0 || (is_amd() &&
 510         _cpuid_info.ext_cpuid1_edx.bits.mmx != 0))
 511       result |= CPU_MMX;
 512     if (_cpuid_info.std_cpuid1_edx.bits.sse != 0)
 513       result |= CPU_SSE;
 514     if (_cpuid_info.std_cpuid1_edx.bits.sse2 != 0)
 515       result |= CPU_SSE2;
 516     if (_cpuid_info.std_cpuid1_ecx.bits.sse3 != 0)
 517       result |= CPU_SSE3;
 518     if (_cpuid_info.std_cpuid1_ecx.bits.ssse3 != 0)
 519       result |= CPU_SSSE3;
 520     if (_cpuid_info.std_cpuid1_ecx.bits.sse4_1 != 0)
 521       result |= CPU_SSE4_1;
 522     if (_cpuid_info.std_cpuid1_ecx.bits.sse4_2 != 0)
 523       result |= CPU_SSE4_2;
 524     if (_cpuid_info.std_cpuid1_ecx.bits.popcnt != 0)
 525       result |= CPU_POPCNT;
 526     if (_cpuid_info.std_cpuid1_ecx.bits.avx != 0 &&
 527         _cpuid_info.std_cpuid1_ecx.bits.osxsave != 0 &&
 528         _cpuid_info.xem_xcr0_eax.bits.sse != 0 &&
 529         _cpuid_info.xem_xcr0_eax.bits.ymm != 0) {
 530       result |= CPU_AVX;
 531       result |= CPU_VZEROUPPER;
 532       if (_cpuid_info.sef_cpuid7_ebx.bits.avx2 != 0)
 533         result |= CPU_AVX2;
 534       if (_cpuid_info.sef_cpuid7_ebx.bits.avx512f != 0 &&
 535           _cpuid_info.xem_xcr0_eax.bits.opmask != 0 &&
 536           _cpuid_info.xem_xcr0_eax.bits.zmm512 != 0 &&
 537           _cpuid_info.xem_xcr0_eax.bits.zmm32 != 0) {
 538         result |= CPU_AVX512F;
 539         if (_cpuid_info.sef_cpuid7_ebx.bits.avx512cd != 0)
 540           result |= CPU_AVX512CD;
 541         if (_cpuid_info.sef_cpuid7_ebx.bits.avx512dq != 0)
 542           result |= CPU_AVX512DQ;
 543         if (_cpuid_info.sef_cpuid7_ebx.bits.avx512pf != 0)
 544           result |= CPU_AVX512PF;
 545         if (_cpuid_info.sef_cpuid7_ebx.bits.avx512er != 0)
 546           result |= CPU_AVX512ER;
 547         if (_cpuid_info.sef_cpuid7_ebx.bits.avx512bw != 0)
 548           result |= CPU_AVX512BW;
 549         if (_cpuid_info.sef_cpuid7_ebx.bits.avx512vl != 0)
 550           result |= CPU_AVX512VL;
 551         if (_cpuid_info.sef_cpuid7_ecx.bits.avx512_vpopcntdq != 0)
 552           result |= CPU_AVX512_VPOPCNTDQ;
 553         if (_cpuid_info.sef_cpuid7_ecx.bits.vpclmulqdq != 0)
 554           result |= CPU_VPCLMULQDQ;
 555         if (_cpuid_info.sef_cpuid7_ecx.bits.vaes != 0)
 556           result |= CPU_VAES;
 557       }
 558     }
 559     if(_cpuid_info.sef_cpuid7_ebx.bits.bmi1 != 0)
 560       result |= CPU_BMI1;
 561     if (_cpuid_info.std_cpuid1_edx.bits.tsc != 0)
 562       result |= CPU_TSC;
 563     if (_cpuid_info.ext_cpuid7_edx.bits.tsc_invariance != 0)
 564       result |= CPU_TSCINV;
 565     if (_cpuid_info.std_cpuid1_ecx.bits.aes != 0)
 566       result |= CPU_AES;
 567     if (_cpuid_info.sef_cpuid7_ebx.bits.erms != 0)
 568       result |= CPU_ERMS;
 569     if (_cpuid_info.std_cpuid1_ecx.bits.clmul != 0)
 570       result |= CPU_CLMUL;
 571     if (_cpuid_info.sef_cpuid7_ebx.bits.rtm != 0)
 572       result |= CPU_RTM;
 573     if(_cpuid_info.sef_cpuid7_ebx.bits.adx != 0)
 574        result |= CPU_ADX;
 575     if(_cpuid_info.sef_cpuid7_ebx.bits.bmi2 != 0)
 576       result |= CPU_BMI2;
 577     if (_cpuid_info.sef_cpuid7_ebx.bits.sha != 0)
 578       result |= CPU_SHA;
 579     if (_cpuid_info.std_cpuid1_ecx.bits.fma != 0)
 580       result |= CPU_FMA;
 581     if (_cpuid_info.sef_cpuid7_ebx.bits.clflushopt != 0)
 582       result |= CPU_FLUSHOPT;
 583 
 584     // AMD features.
 585     if (is_amd()) {
 586       if ((_cpuid_info.ext_cpuid1_edx.bits.tdnow != 0) ||
 587           (_cpuid_info.ext_cpuid1_ecx.bits.prefetchw != 0))
 588         result |= CPU_3DNOW_PREFETCH;
 589       if (_cpuid_info.ext_cpuid1_ecx.bits.lzcnt != 0)
 590         result |= CPU_LZCNT;
 591       if (_cpuid_info.ext_cpuid1_ecx.bits.sse4a != 0)
 592         result |= CPU_SSE4A;
 593     }
 594     // Intel features.
 595     if(is_intel()) {
 596       if(_cpuid_info.ext_cpuid1_ecx.bits.lzcnt_intel != 0)
 597         result |= CPU_LZCNT;
 598       // for Intel, ecx.bits.misalignsse bit (bit 8) indicates support for prefetchw
 599       if (_cpuid_info.ext_cpuid1_ecx.bits.misalignsse != 0) {
 600         result |= CPU_3DNOW_PREFETCH;
 601       }
 602       if (_cpuid_info.sef_cpuid7_ebx.bits.clwb != 0) {
 603         result |= CPU_CLWB;
 604       }
 605     }
 606 
 607     // ZX features.
 608     if (is_zx()) {
 609       if (_cpuid_info.ext_cpuid1_ecx.bits.lzcnt_intel != 0)
 610         result |= CPU_LZCNT;
 611       // for ZX, ecx.bits.misalignsse bit (bit 8) indicates support for prefetchw
 612       if (_cpuid_info.ext_cpuid1_ecx.bits.misalignsse != 0) {
 613         result |= CPU_3DNOW_PREFETCH;
 614       }
 615     }
 616 
 617     return result;
 618   }
 619 
 620   static bool os_supports_avx_vectors() {
 621     bool retVal = false;
 622     if (supports_evex()) {
 623       // Verify that OS save/restore all bits of EVEX registers
 624       // during signal processing.
 625       int nreg = 2 LP64_ONLY(+2);
 626       retVal = true;
 627       for (int i = 0; i < 16 * nreg; i++) { // 64 bytes per zmm register
 628         if (_cpuid_info.zmm_save[i] != ymm_test_value()) {
 629           retVal = false;
 630           break;
 631         }
 632       }
 633     } else if (supports_avx()) {
 634       // Verify that OS save/restore all bits of AVX registers
 635       // during signal processing.
 636       int nreg = 2 LP64_ONLY(+2);
 637       retVal = true;
 638       for (int i = 0; i < 8 * nreg; i++) { // 32 bytes per ymm register
 639         if (_cpuid_info.ymm_save[i] != ymm_test_value()) {
 640           retVal = false;
 641           break;
 642         }
 643       }
 644       // zmm_save will be set on a EVEX enabled machine even if we choose AVX code gen
 645       if (retVal == false) {
 646         // Verify that OS save/restore all bits of EVEX registers
 647         // during signal processing.
 648         int nreg = 2 LP64_ONLY(+2);
 649         retVal = true;
 650         for (int i = 0; i < 16 * nreg; i++) { // 64 bytes per zmm register
 651           if (_cpuid_info.zmm_save[i] != ymm_test_value()) {
 652             retVal = false;
 653             break;
 654           }
 655         }
 656       }
 657     }
 658     return retVal;
 659   }
 660 
 661   static void get_processor_features();
 662 
 663 public:
 664   // Offsets for cpuid asm stub
 665   static ByteSize std_cpuid0_offset() { return byte_offset_of(CpuidInfo, std_max_function); }
 666   static ByteSize std_cpuid1_offset() { return byte_offset_of(CpuidInfo, std_cpuid1_eax); }
 667   static ByteSize dcp_cpuid4_offset() { return byte_offset_of(CpuidInfo, dcp_cpuid4_eax); }
 668   static ByteSize sef_cpuid7_offset() { return byte_offset_of(CpuidInfo, sef_cpuid7_eax); }
 669   static ByteSize ext_cpuid1_offset() { return byte_offset_of(CpuidInfo, ext_cpuid1_eax); }
 670   static ByteSize ext_cpuid5_offset() { return byte_offset_of(CpuidInfo, ext_cpuid5_eax); }
 671   static ByteSize ext_cpuid7_offset() { return byte_offset_of(CpuidInfo, ext_cpuid7_eax); }
 672   static ByteSize ext_cpuid8_offset() { return byte_offset_of(CpuidInfo, ext_cpuid8_eax); }
 673   static ByteSize ext_cpuid1E_offset() { return byte_offset_of(CpuidInfo, ext_cpuid1E_eax); }
 674   static ByteSize tpl_cpuidB0_offset() { return byte_offset_of(CpuidInfo, tpl_cpuidB0_eax); }
 675   static ByteSize tpl_cpuidB1_offset() { return byte_offset_of(CpuidInfo, tpl_cpuidB1_eax); }
 676   static ByteSize tpl_cpuidB2_offset() { return byte_offset_of(CpuidInfo, tpl_cpuidB2_eax); }
 677   static ByteSize xem_xcr0_offset() { return byte_offset_of(CpuidInfo, xem_xcr0_eax); }
 678   static ByteSize ymm_save_offset() { return byte_offset_of(CpuidInfo, ymm_save); }
 679   static ByteSize zmm_save_offset() { return byte_offset_of(CpuidInfo, zmm_save); }
 680 
 681   // The value used to check ymm register after signal handle
 682   static int ymm_test_value()    { return 0xCAFEBABE; }
 683 
 684   static void get_cpu_info_wrapper();
 685   static void set_cpuinfo_segv_addr(address pc) { _cpuinfo_segv_addr = pc; }
 686   static bool  is_cpuinfo_segv_addr(address pc) { return _cpuinfo_segv_addr == pc; }
 687   static void set_cpuinfo_cont_addr(address pc) { _cpuinfo_cont_addr = pc; }
 688   static address  cpuinfo_cont_addr()           { return _cpuinfo_cont_addr; }
 689 
 690   static void clean_cpuFeatures()   { _features = 0; }
 691   static void set_avx_cpuFeatures() { _features = (CPU_SSE | CPU_SSE2 | CPU_AVX | CPU_VZEROUPPER ); }
 692   static void set_evex_cpuFeatures() { _features = (CPU_AVX512F | CPU_SSE | CPU_SSE2 | CPU_VZEROUPPER ); }
 693 
 694 
 695   // Initialization
 696   static void initialize();
 697 
 698   // Override Abstract_VM_Version implementation
 699   static bool use_biased_locking();
 700 
 701   // Asserts
 702   static void assert_is_initialized() {
 703     assert(_cpuid_info.std_cpuid1_eax.bits.family != 0, "VM_Version not initialized");
 704   }
 705 
 706   //
 707   // Processor family:
 708   //       3   -  386
 709   //       4   -  486
 710   //       5   -  Pentium
 711   //       6   -  PentiumPro, Pentium II, Celeron, Xeon, Pentium III, Athlon,
 712   //              Pentium M, Core Solo, Core Duo, Core2 Duo
 713   //    family 6 model:   9,        13,       14,        15
 714   //    0x0f   -  Pentium 4, Opteron
 715   //
 716   // Note: The cpu family should be used to select between
 717   //       instruction sequences which are valid on all Intel
 718   //       processors.  Use the feature test functions below to
 719   //       determine whether a particular instruction is supported.
 720   //
 721   static int  cpu_family()        { return _cpu;}
 722   static bool is_P6()             { return cpu_family() >= 6; }
 723   static bool is_amd()            { assert_is_initialized(); return _cpuid_info.std_vendor_name_0 == 0x68747541; } // 'htuA'
 724   static bool is_intel()          { assert_is_initialized(); return _cpuid_info.std_vendor_name_0 == 0x756e6547; } // 'uneG'
 725   static bool is_zx()             { assert_is_initialized(); return (_cpuid_info.std_vendor_name_0 == 0x746e6543) || (_cpuid_info.std_vendor_name_0 == 0x68532020); } // 'tneC'||'hS  '
 726   static bool is_atom_family()    { return ((cpu_family() == 0x06) && ((extended_cpu_model() == 0x36) || (extended_cpu_model() == 0x37) || (extended_cpu_model() == 0x4D))); } //Silvermont and Centerton
 727   static bool is_knights_family() { return ((cpu_family() == 0x06) && ((extended_cpu_model() == 0x57) || (extended_cpu_model() == 0x85))); } // Xeon Phi 3200/5200/7200 and Future Xeon Phi
 728 
 729   static bool supports_processor_topology() {
 730     return (_cpuid_info.std_max_function >= 0xB) &&
 731            // eax[4:0] | ebx[0:15] == 0 indicates invalid topology level.
 732            // Some cpus have max cpuid >= 0xB but do not support processor topology.
 733            (((_cpuid_info.tpl_cpuidB0_eax & 0x1f) | _cpuid_info.tpl_cpuidB0_ebx.bits.logical_cpus) != 0);
 734   }
 735 
 736   static uint cores_per_cpu()  {
 737     uint result = 1;
 738     if (is_intel()) {
 739       bool supports_topology = supports_processor_topology();
 740       if (supports_topology) {
 741         result = _cpuid_info.tpl_cpuidB1_ebx.bits.logical_cpus /
 742                  _cpuid_info.tpl_cpuidB0_ebx.bits.logical_cpus;
 743       }
 744       if (!supports_topology || result == 0) {
 745         result = (_cpuid_info.dcp_cpuid4_eax.bits.cores_per_cpu + 1);
 746       }
 747     } else if (is_amd()) {
 748       result = (_cpuid_info.ext_cpuid8_ecx.bits.cores_per_cpu + 1);
 749     } else if (is_zx()) {
 750       bool supports_topology = supports_processor_topology();
 751       if (supports_topology) {
 752         result = _cpuid_info.tpl_cpuidB1_ebx.bits.logical_cpus /
 753                  _cpuid_info.tpl_cpuidB0_ebx.bits.logical_cpus;
 754       }
 755       if (!supports_topology || result == 0) {
 756         result = (_cpuid_info.dcp_cpuid4_eax.bits.cores_per_cpu + 1);
 757       }
 758     }
 759     return result;
 760   }
 761 
 762   static uint threads_per_core()  {
 763     uint result = 1;
 764     if (is_intel() && supports_processor_topology()) {
 765       result = _cpuid_info.tpl_cpuidB0_ebx.bits.logical_cpus;
 766     } else if (is_zx() && supports_processor_topology()) {
 767       result = _cpuid_info.tpl_cpuidB0_ebx.bits.logical_cpus;
 768     } else if (_cpuid_info.std_cpuid1_edx.bits.ht != 0) {
 769       if (cpu_family() >= 0x17) {
 770         result = _cpuid_info.ext_cpuid1E_ebx.bits.threads_per_core + 1;
 771       } else {
 772         result = _cpuid_info.std_cpuid1_ebx.bits.threads_per_cpu /
 773                  cores_per_cpu();
 774       }
 775     }
 776     return (result == 0 ? 1 : result);
 777   }
 778 
 779   static intx L1_line_size()  {
 780     intx result = 0;
 781     if (is_intel()) {
 782       result = (_cpuid_info.dcp_cpuid4_ebx.bits.L1_line_size + 1);
 783     } else if (is_amd()) {
 784       result = _cpuid_info.ext_cpuid5_ecx.bits.L1_line_size;
 785     } else if (is_zx()) {
 786       result = (_cpuid_info.dcp_cpuid4_ebx.bits.L1_line_size + 1);
 787     }
 788     if (result < 32) // not defined ?
 789       result = 32;   // 32 bytes by default on x86 and other x64
 790     return result;
 791   }
 792 
 793   static intx prefetch_data_size()  {
 794     return L1_line_size();
 795   }
 796 
 797   //
 798   // Feature identification
 799   //
 800   static bool supports_cpuid()    { return _features  != 0; }
 801   static bool supports_cmpxchg8() { return (_features & CPU_CX8) != 0; }
 802   static bool supports_cmov()     { return (_features & CPU_CMOV) != 0; }
 803   static bool supports_fxsr()     { return (_features & CPU_FXSR) != 0; }
 804   static bool supports_ht()       { return (_features & CPU_HT) != 0; }
 805   static bool supports_mmx()      { return (_features & CPU_MMX) != 0; }
 806   static bool supports_sse()      { return (_features & CPU_SSE) != 0; }
 807   static bool supports_sse2()     { return (_features & CPU_SSE2) != 0; }
 808   static bool supports_sse3()     { return (_features & CPU_SSE3) != 0; }
 809   static bool supports_ssse3()    { return (_features & CPU_SSSE3)!= 0; }
 810   static bool supports_sse4_1()   { return (_features & CPU_SSE4_1) != 0; }
 811   static bool supports_sse4_2()   { return (_features & CPU_SSE4_2) != 0; }
 812   static bool supports_popcnt()   { return (_features & CPU_POPCNT) != 0; }
 813   static bool supports_avx()      { return (_features & CPU_AVX) != 0; }
 814   static bool supports_avx2()     { return (_features & CPU_AVX2) != 0; }
 815   static bool supports_tsc()      { return (_features & CPU_TSC)    != 0; }
 816   static bool supports_aes()      { return (_features & CPU_AES) != 0; }
 817   static bool supports_erms()     { return (_features & CPU_ERMS) != 0; }
 818   static bool supports_clmul()    { return (_features & CPU_CLMUL) != 0; }
 819   static bool supports_rtm()      { return (_features & CPU_RTM) != 0; }
 820   static bool supports_bmi1()     { return (_features & CPU_BMI1) != 0; }
 821   static bool supports_bmi2()     { return (_features & CPU_BMI2) != 0; }
 822   static bool supports_adx()      { return (_features & CPU_ADX) != 0; }
 823   static bool supports_evex()     { return (_features & CPU_AVX512F) != 0; }
 824   static bool supports_avx512dq() { return (_features & CPU_AVX512DQ) != 0; }
 825   static bool supports_avx512pf() { return (_features & CPU_AVX512PF) != 0; }
 826   static bool supports_avx512er() { return (_features & CPU_AVX512ER) != 0; }
 827   static bool supports_avx512cd() { return (_features & CPU_AVX512CD) != 0; }
 828   static bool supports_avx512bw() { return (_features & CPU_AVX512BW) != 0; }
 829   static bool supports_avx512vl() { return (_features & CPU_AVX512VL) != 0; }
 830   static bool supports_avx512vlbw() { return (supports_avx512bw() && supports_avx512vl()); }
 831   static bool supports_avx512novl() { return (supports_evex() && !supports_avx512vl()); }
 832   static bool supports_avx512nobw() { return (supports_evex() && !supports_avx512bw()); }
 833   static bool supports_avx256only() { return (supports_avx2() && !supports_evex()); }
 834   static bool supports_avxonly()    { return ((supports_avx2() || supports_avx()) && !supports_evex()); }
 835   static bool supports_sha()        { return (_features & CPU_SHA) != 0; }
 836   static bool supports_fma()        { return (_features & CPU_FMA) != 0 && supports_avx(); }
 837   static bool supports_vzeroupper() { return (_features & CPU_VZEROUPPER) != 0; }
 838   static bool supports_vpopcntdq()  { return (_features & CPU_AVX512_VPOPCNTDQ) != 0; }
 839   static bool supports_vpclmulqdq() { return (_features & CPU_VPCLMULQDQ) != 0; }
 840   static bool supports_vaes()       { return (_features & CPU_VAES) != 0; }
 841 
 842   // Intel features
 843   static bool is_intel_family_core() { return is_intel() &&
 844                                        extended_cpu_family() == CPU_FAMILY_INTEL_CORE; }
 845 
 846   static bool is_intel_tsc_synched_at_init()  {
 847     if (is_intel_family_core()) {
 848       uint32_t ext_model = extended_cpu_model();
 849       if (ext_model == CPU_MODEL_NEHALEM_EP     ||
 850           ext_model == CPU_MODEL_WESTMERE_EP    ||
 851           ext_model == CPU_MODEL_SANDYBRIDGE_EP ||
 852           ext_model == CPU_MODEL_IVYBRIDGE_EP) {
 853         // <= 2-socket invariant tsc support. EX versions are usually used
 854         // in > 2-socket systems and likely don't synchronize tscs at
 855         // initialization.
 856         // Code that uses tsc values must be prepared for them to arbitrarily
 857         // jump forward or backward.
 858         return true;
 859       }
 860     }
 861     return false;
 862   }
 863 
 864   // AMD features
 865   static bool supports_3dnow_prefetch()    { return (_features & CPU_3DNOW_PREFETCH) != 0; }
 866   static bool supports_mmx_ext()  { return is_amd() && _cpuid_info.ext_cpuid1_edx.bits.mmx_amd != 0; }
 867   static bool supports_lzcnt()    { return (_features & CPU_LZCNT) != 0; }
 868   static bool supports_sse4a()    { return (_features & CPU_SSE4A) != 0; }
 869 
 870   static bool is_amd_Barcelona()  { return is_amd() &&
 871                                            extended_cpu_family() == CPU_FAMILY_AMD_11H; }
 872 
 873   // Intel and AMD newer cores support fast timestamps well
 874   static bool supports_tscinv_bit() {
 875     return (_features & CPU_TSCINV) != 0;
 876   }
 877   static bool supports_tscinv() {
 878     return supports_tscinv_bit() &&
 879            ( (is_amd() && !is_amd_Barcelona()) ||
 880              is_intel_tsc_synched_at_init() );
 881   }
 882 
 883   // Intel Core and newer cpus have fast IDIV instruction (excluding Atom).
 884   static bool has_fast_idiv()     { return is_intel() && cpu_family() == 6 &&
 885                                            supports_sse3() && _model != 0x1C; }
 886 
 887   static bool supports_compare_and_exchange() { return true; }
 888 
 889   static intx allocate_prefetch_distance(bool use_watermark_prefetch) {
 890     // Hardware prefetching (distance/size in bytes):
 891     // Pentium 3 -  64 /  32
 892     // Pentium 4 - 256 / 128
 893     // Athlon    -  64 /  32 ????
 894     // Opteron   - 128 /  64 only when 2 sequential cache lines accessed
 895     // Core      - 128 /  64
 896     //
 897     // Software prefetching (distance in bytes / instruction with best score):
 898     // Pentium 3 - 128 / prefetchnta
 899     // Pentium 4 - 512 / prefetchnta
 900     // Athlon    - 128 / prefetchnta
 901     // Opteron   - 256 / prefetchnta
 902     // Core      - 256 / prefetchnta
 903     // It will be used only when AllocatePrefetchStyle > 0
 904 
 905     if (is_amd()) { // AMD
 906       if (supports_sse2()) {
 907         return 256; // Opteron
 908       } else {
 909         return 128; // Athlon
 910       }
 911     } else { // Intel
 912       if (supports_sse3() && cpu_family() == 6) {
 913         if (supports_sse4_2() && supports_ht()) { // Nehalem based cpus
 914           return 192;
 915         } else if (use_watermark_prefetch) { // watermark prefetching on Core
 916 #ifdef _LP64
 917           return 384;
 918 #else
 919           return 320;
 920 #endif
 921         }
 922       }
 923       if (supports_sse2()) {
 924         if (cpu_family() == 6) {
 925           return 256; // Pentium M, Core, Core2
 926         } else {
 927           return 512; // Pentium 4
 928         }
 929       } else {
 930         return 128; // Pentium 3 (and all other old CPUs)
 931       }
 932     }
 933   }
 934 
 935   // SSE2 and later processors implement a 'pause' instruction
 936   // that can be used for efficient implementation of
 937   // the intrinsic for java.lang.Thread.onSpinWait()
 938   static bool supports_on_spin_wait() { return supports_sse2(); }
 939 
 940   // there are several insns to force cache line sync to memory which
 941   // we can use to ensure mapped persistent memory is up to date with
 942   // pending in-cache changes.
 943   //
 944   // 64 bit cpus always support clflush which writes back and evicts
 945   //
 946   // clflushopt is optional and acts like clflush except it does
 947   // not synchronize with other memory ops. it needs a preceding
 948   // and trailing StoreStore fence
 949   //
 950   // clwb is an optional, intel-specific instruction optional which
 951   // writes back without evicting the line. it also does not
 952   // synchronize with other memory ops. so, it also needs a preceding
 953   // and trailing StoreStore fence.
 954 
 955 #ifdef _LP64
 956   static bool supports_clflush() { return true; }
 957   static bool supports_clflushopt() { return ((_features & CPU_FLUSHOPT) != 0); }
 958   static bool supports_clwb() { return ((_features & CPU_CLWB) != 0); }
 959 #else
 960   static bool supports_clflush() { return true; }
 961   static bool supports_clflushopt() { return false; }
 962   static bool supports_clwb() { return false; }
 963 #endif // _LP64
 964 
 965 };
 966 
 967 #endif // CPU_X86_VM_VM_VERSION_X86_HPP
--- EOF ---