hotspot/src/os_cpu/solaris_sparc/vm/vm_version_solaris_sparc.cpp
author kvn
Wed, 11 Jun 2014 11:05:10 -0700
changeset 24953 9680119572be
parent 22554 a19b9cf9ffa8
child 26168 0011f98755e3
child 25949 34557722059b
permissions -rw-r--r--
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC Summary: Add C2 SHA intrinsics on SPARC Reviewed-by: kvn, roland Contributed-by: james.cheng@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24953
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
     2
 * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2255
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2255
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2255
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7115
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7115
diff changeset
    26
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7115
diff changeset
    27
#include "vm_version_sparc.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    29
# include <sys/auxv.h>
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    30
# include <sys/auxv_SPARC.h>
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
# include <sys/systeminfo.h>
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
    32
# include <kstat.h>
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    34
// We need to keep these here as long as we have to build on Solaris
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    35
// versions before 10.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    36
#ifndef SI_ARCHITECTURE_32
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    37
#define SI_ARCHITECTURE_32      516     /* basic 32-bit SI_ARCHITECTURE */
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    38
#endif
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    39
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    40
#ifndef SI_ARCHITECTURE_64
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    41
#define SI_ARCHITECTURE_64      517     /* basic 64-bit SI_ARCHITECTURE */
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    42
#endif
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    43
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    44
static void do_sysinfo(int si, const char* string, int* features, int mask) {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    45
  char   tmp;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    46
  size_t bufsize = sysinfo(si, &tmp, 1);
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    47
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    48
  // All SI defines used below must be supported.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    49
  guarantee(bufsize != -1, "must be supported");
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    50
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    51
  char* buf = (char*) malloc(bufsize);
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    52
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    53
  if (buf == NULL)
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    54
    return;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    55
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    56
  if (sysinfo(si, buf, bufsize) == bufsize) {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    57
    // Compare the string.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    58
    if (strcmp(buf, string) == 0) {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    59
      *features |= mask;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    60
    }
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    61
  }
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    62
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    63
  free(buf);
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    64
}
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    65
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
int VM_Version::platform_features(int features) {
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    67
  // getisax(2), SI_ARCHITECTURE_32, and SI_ARCHITECTURE_64 are
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    68
  // supported on Solaris 10 and later.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    69
  if (os::Solaris::supports_getisax()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    71
    // Check 32-bit architecture.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    72
    do_sysinfo(SI_ARCHITECTURE_32, "sparc", &features, v8_instructions_m);
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    73
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    74
    // Check 64-bit architecture.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    75
    do_sysinfo(SI_ARCHITECTURE_64, "sparcv9", &features, generic_v9_m);
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    76
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    77
    // Extract valid instruction set extensions.
22554
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    78
    uint_t avs[2];
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    79
    uint_t avn = os::Solaris::getisax(avs, 2);
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    80
    assert(avn <= 2, "should return two or less av's");
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    81
    uint_t av = avs[0];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
    83
#ifndef PRODUCT
22554
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    84
    if (PrintMiscellaneous && Verbose) {
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    85
      tty->print("getisax(2) returned: " PTR32_FORMAT, av);
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    86
      if (avn > 1) {
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    87
        tty->print(", " PTR32_FORMAT, avs[1]);
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    88
      }
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    89
      tty->cr();
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
    90
    }
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
    91
#endif
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
    92
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    93
    if (av & AV_SPARC_MUL32)  features |= hardware_mul32_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    94
    if (av & AV_SPARC_DIV32)  features |= hardware_div32_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    95
    if (av & AV_SPARC_FSMULD) features |= hardware_fsmuld_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    96
    if (av & AV_SPARC_V8PLUS) features |= v9_instructions_m;
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 2253
diff changeset
    97
    if (av & AV_SPARC_POPC)   features |= hardware_popc_m;
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    98
    if (av & AV_SPARC_VIS)    features |= vis1_instructions_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
    99
    if (av & AV_SPARC_VIS2)   features |= vis2_instructions_m;
22554
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   100
    if (avn > 1) {
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   101
      uint_t av2 = avs[1];
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   102
#ifndef AV2_SPARC_SPARC5
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   103
#define AV2_SPARC_SPARC5 0x00000008 /* The 29 new fp and sub instructions */
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   104
#endif
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   105
      if (av2 & AV2_SPARC_SPARC5)       features |= sparc5_instructions_m;
a19b9cf9ffa8 8031290: Adjust call to getisax() for additional words returned
jmasa
parents: 22505
diff changeset
   106
    }
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   107
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   108
    // Next values are not defined before Solaris 10
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   109
    // but Solaris 8 is used for jdk6 update builds.
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   110
#ifndef AV_SPARC_ASI_BLK_INIT
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   111
#define AV_SPARC_ASI_BLK_INIT 0x0080  /* ASI_BLK_INIT_xxx ASI */
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   112
#endif
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   113
    if (av & AV_SPARC_ASI_BLK_INIT) features |= blk_init_instructions_m;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   114
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   115
#ifndef AV_SPARC_FMAF
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   116
#define AV_SPARC_FMAF 0x0100        /* Fused Multiply-Add */
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   117
#endif
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   118
    if (av & AV_SPARC_FMAF)         features |= fmaf_instructions_m;
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   119
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   120
#ifndef AV_SPARC_FMAU
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   121
#define    AV_SPARC_FMAU    0x0200  /* Unfused Multiply-Add */
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   122
#endif
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   123
    if (av & AV_SPARC_FMAU)         features |= fmau_instructions_m;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   124
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   125
#ifndef AV_SPARC_VIS3
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   126
#define    AV_SPARC_VIS3    0x0400  /* VIS3 instruction set extensions */
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   127
#endif
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   128
    if (av & AV_SPARC_VIS3)         features |= vis3_instructions_m;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   129
10252
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 8317
diff changeset
   130
#ifndef AV_SPARC_CBCOND
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 8317
diff changeset
   131
#define AV_SPARC_CBCOND 0x10000000  /* compare and branch instrs supported */
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 8317
diff changeset
   132
#endif
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 8317
diff changeset
   133
    if (av & AV_SPARC_CBCOND)       features |= cbcond_instructions_m;
0981ce1c3eef 7063628: Use cbcond on T4
kvn
parents: 8317
diff changeset
   134
22505
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 13963
diff changeset
   135
#ifndef AV_SPARC_AES
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 13963
diff changeset
   136
#define AV_SPARC_AES 0x00020000  /* aes instrs supported */
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 13963
diff changeset
   137
#endif
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 13963
diff changeset
   138
    if (av & AV_SPARC_AES)       features |= aes_instructions_m;
4523090c9674 8002074: Support for AES on SPARC
kvn
parents: 13963
diff changeset
   139
24953
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   140
#ifndef AV_SPARC_SHA1
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   141
#define AV_SPARC_SHA1   0x00400000  /* sha1 instruction supported */
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   142
#endif
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   143
    if (av & AV_SPARC_SHA1)         features |= sha1_instruction_m;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   144
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   145
#ifndef AV_SPARC_SHA256
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   146
#define AV_SPARC_SHA256 0x00800000  /* sha256 instruction supported */
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   147
#endif
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   148
    if (av & AV_SPARC_SHA256)       features |= sha256_instruction_m;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   149
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   150
#ifndef AV_SPARC_SHA512
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   151
#define AV_SPARC_SHA512 0x01000000  /* sha512 instruction supported */
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   152
#endif
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   153
    if (av & AV_SPARC_SHA512)       features |= sha512_instruction_m;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22554
diff changeset
   154
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   155
  } else {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   156
    // getisax(2) failed, use the old legacy code.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   157
#ifndef PRODUCT
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   158
    if (PrintMiscellaneous && Verbose)
7115
32300e243300 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 5547
diff changeset
   159
      tty->print_cr("getisax(2) is not supported.");
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   160
#endif
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   161
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   162
    char   tmp;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   163
    size_t bufsize = sysinfo(SI_ISALIST, &tmp, 1);
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   164
    char*  buf     = (char*) malloc(bufsize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   166
    if (buf != NULL) {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   167
      if (sysinfo(SI_ISALIST, buf, bufsize) == bufsize) {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   168
        // Figure out what kind of sparc we have
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   169
        char *sparc_string = strstr(buf, "sparc");
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   170
        if (sparc_string != NULL) {              features |= v8_instructions_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   171
          if (sparc_string[5] == 'v') {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   172
            if (sparc_string[6] == '8') {
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   173
              if (sparc_string[7] == '-') {      features |= hardware_mul32_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   174
                                                 features |= hardware_div32_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   175
              } else if (sparc_string[7] == 'p') features |= generic_v9_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   176
              else                               features |= generic_v8_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   177
            } else if (sparc_string[6] == '9')   features |= generic_v9_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   178
          }
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   179
        }
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   180
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   181
        // Check for visualization instructions
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   182
        char *vis = strstr(buf, "vis");
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   183
        if (vis != NULL) {                       features |= vis1_instructions_m;
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   184
          if (vis[3] == '2')                     features |= vis2_instructions_m;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      }
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   187
      free(buf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   191
  // Determine the machine type.
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 1
diff changeset
   192
  do_sysinfo(SI_MACHINE, "sun4v", &features, sun4v_m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   194
  {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   195
    // Using kstat to determine the machine type.
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   196
    kstat_ctl_t* kc = kstat_open();
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   197
    kstat_t* ksp = kstat_lookup(kc, (char*)"cpu_info", -1, NULL);
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   198
    const char* implementation = "UNKNOWN";
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   199
    if (ksp != NULL) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   200
      if (kstat_read(kc, ksp, NULL) != -1 && ksp->ks_data != NULL) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   201
        kstat_named_t* knm = (kstat_named_t *)ksp->ks_data;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   202
        for (int i = 0; i < ksp->ks_ndata; i++) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   203
          if (strcmp((const char*)&(knm[i].name),"implementation") == 0) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   204
#ifndef KSTAT_DATA_STRING
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   205
#define KSTAT_DATA_STRING   9
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   206
#endif
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   207
            if (knm[i].data_type == KSTAT_DATA_CHAR) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   208
              // VM is running on Solaris 8 which does not have value.str.
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   209
              implementation = &(knm[i].value.c[0]);
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   210
            } else if (knm[i].data_type == KSTAT_DATA_STRING) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   211
              // VM is running on Solaris 10.
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   212
#ifndef KSTAT_NAMED_STR_PTR
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   213
              // Solaris 8 was used to build VM, define the structure it misses.
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   214
              struct str_t {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   215
                union {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   216
                  char *ptr;     /* NULL-term string */
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   217
                  char __pad[8]; /* 64-bit padding */
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   218
                } addr;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   219
                uint32_t len;    /* # bytes for strlen + '\0' */
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   220
              };
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   221
#define KSTAT_NAMED_STR_PTR(knptr) (( (str_t*)&((knptr)->value) )->addr.ptr)
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   222
#endif
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   223
              implementation = KSTAT_NAMED_STR_PTR(&knm[i]);
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   224
            }
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   225
#ifndef PRODUCT
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   226
            if (PrintMiscellaneous && Verbose) {
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   227
              tty->print_cr("cpu_info.implementation: %s", implementation);
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   228
            }
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   229
#endif
8317
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   230
            // Convert to UPPER case before compare.
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   231
            char* impl = strdup(implementation);
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   232
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   233
            for (int i = 0; impl[i] != 0; i++)
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   234
              impl[i] = (char)toupper((uint)impl[i]);
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   235
            if (strstr(impl, "SPARC64") != NULL) {
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   236
              features |= sparc64_family_m;
13394
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   237
            } else if (strstr(impl, "SPARC-M") != NULL) {
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   238
              // M-series SPARC is based on T-series.
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   239
              features |= (M_family_m | T_family_m);
8317
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   240
            } else if (strstr(impl, "SPARC-T") != NULL) {
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   241
              features |= T_family_m;
8317
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   242
              if (strstr(impl, "SPARC-T1") != NULL) {
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   243
                features |= T1_model_m;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   244
              }
8317
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   245
            } else {
13394
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   246
              if (strstr(impl, "SPARC") == NULL) {
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   247
#ifndef PRODUCT
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   248
                // kstat on Solaris 8 virtual machines (branded zones)
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   249
                // returns "(unsupported)" implementation.
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   250
                warning("kstat cpu_info implementation = '%s', should contain SPARC", impl);
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   251
#endif
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   252
                implementation = "SPARC";
930691003b55 7188227: VM should recognize M-series SPARC
kvn
parents: 10252
diff changeset
   253
              }
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   254
            }
8317
34de38f6de90 7014998: assert(is_T_family(features) == is_niagara(features)) failed: Niagara should be T series
kvn
parents: 7704
diff changeset
   255
            free((void*)impl);
7704
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   256
            break;
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   257
          }
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   258
        } // for(
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   259
      }
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   260
    }
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   261
    assert(strcmp(implementation, "UNKNOWN") != 0,
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   262
           "unknown cpu info (changed kstat interface?)");
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   263
    kstat_close(kc);
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   264
  }
cc9d3ed42704 7006505: Use kstat info to identify SPARC processor
kvn
parents: 7397
diff changeset
   265
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  return features;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}