src/hotspot/share/runtime/vm_version.hpp
author vlivanov
Thu, 30 May 2019 13:39:13 +0300
changeset 55105 9ad765641e8f
parent 54899 e4cff3cf0234
child 57804 9b7b9f16dfd9
permissions -rw-r--r--
8223213: Implement fast class initialization checks on x86-64 Reviewed-by: kvn, redestad, dholmes, mdoerr, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52916
diff changeset
     2
 * Copyright (c) 1997, 2019, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52916
diff changeset
    25
#ifndef SHARE_RUNTIME_VM_VERSION_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52916
diff changeset
    26
#define SHARE_RUNTIME_VM_VERSION_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "utilities/ostream.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38220
diff changeset
    30
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    31
54485
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    32
typedef enum {
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    33
  NoDetectedVirtualization,
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    34
  XenHVM,
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    35
  KVM,
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    36
  VMWare,
54899
e4cff3cf0234 8223438: add VirtualizationInformation JFR event
mbaesken
parents: 54485
diff changeset
    37
  HyperV,
e4cff3cf0234 8223438: add VirtualizationInformation JFR event
mbaesken
parents: 54485
diff changeset
    38
  PowerVM, // on AIX or Linux ppc64(le)
e4cff3cf0234 8223438: add VirtualizationInformation JFR event
mbaesken
parents: 54485
diff changeset
    39
  PowerFullPartitionMode, // on Linux ppc64(le)
e4cff3cf0234 8223438: add VirtualizationInformation JFR event
mbaesken
parents: 54485
diff changeset
    40
  PowerKVM
54485
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    41
} VirtualizationType;
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    42
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// VM_Version provides information about the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class Abstract_VM_Version: AllStatic {
35148
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    46
  friend class VMStructs;
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    47
  friend class JVMCIVMStructs;
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    48
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static const char*  _s_vm_release;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static const char*  _s_internal_vm_info_string;
35148
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    52
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    53
  // CPU feature flags.
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    54
  static uint64_t _features;
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    55
  static const char* _features_string;
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
    56
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // These are set by machine-dependent initializations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static bool         _supports_cx8;
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    59
  static bool         _supports_atomic_getset4;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    60
  static bool         _supports_atomic_getset8;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    61
  static bool         _supports_atomic_getadd4;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    62
  static bool         _supports_atomic_getadd8;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  static unsigned int _logical_processors_per_package;
25633
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 24238
diff changeset
    64
  static unsigned int _L1_data_cache_line_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static int          _vm_major_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static int          _vm_minor_version;
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30585
diff changeset
    67
  static int          _vm_security_version;
33959
36f534ca18c0 8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents: 33957
diff changeset
    68
  static int          _vm_patch_version;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static int          _vm_build_number;
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
    70
54485
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    71
  static VirtualizationType _detected_virtualization;
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
    72
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 public:
35043
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    74
  // Called as part of the runtime services initialization which is
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    75
  // called from the management module initialization (via init_globals())
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    76
  // after argument parsing and attaching of the main thread has
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    77
  // occurred.  Examines a variety of the hardware capabilities of
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    78
  // the platform to determine which features can be used to execute the
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    79
  // program.
52148
2d9f8845d0ae 7041262: VM_Version should be called instead of Abstract_VM_Version so that overriding works
hseigel
parents: 47216
diff changeset
    80
  static void initialize() { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
31367
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    82
  // This allows for early initialization of VM_Version information
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    83
  // that may be needed later in the initialization sequence but before
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    84
  // full VM_Version initialization is possible. It can not depend on any
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    85
  // other part of the VM being initialized when called. Platforms that
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    86
  // need to specialize this define VM_Version::early_initialize().
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    87
  static void early_initialize() { }
25d3fbc1fa5f 8080776: ARM 32 bit binaries do not run on 64 bit ARM v8 hardware
bpittore
parents: 30585
diff changeset
    88
35043
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    89
  // Called to initialize VM variables needing initialization
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    90
  // after command line parsing. Platforms that need to specialize
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    91
  // this should define VM_Version::init_before_ergo().
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    92
  static void init_before_ergo() {}
30543d2a0a20 8133023: ParallelGCThreads is not calculated correctly
jmasa
parents: 33977
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static const char* vm_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Vendor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static const char* vm_vendor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // VM version information string printed by launcher (java -version)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static const char* vm_info_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static const char* vm_release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static const char* vm_platform_string();
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   102
  static const char* vm_build_user();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
33959
36f534ca18c0 8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents: 33957
diff changeset
   104
  static int vm_major_version()               { return _vm_major_version; }
36f534ca18c0 8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents: 33957
diff changeset
   105
  static int vm_minor_version()               { return _vm_minor_version; }
36f534ca18c0 8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents: 33957
diff changeset
   106
  static int vm_security_version()            { return _vm_security_version; }
36f534ca18c0 8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents: 33957
diff changeset
   107
  static int vm_patch_version()               { return _vm_patch_version; }
36f534ca18c0 8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents: 33957
diff changeset
   108
  static int vm_build_number()                { return _vm_build_number; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Gets the jvm_version_info.jvm_version defined in jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static unsigned int jvm_version();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Internal version providing additional build information
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static const char* internal_vm_info_string();
11720
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10267
diff changeset
   115
  static const char* jre_release_version();
33977
a27f0d8a7861 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 33962
diff changeset
   116
  static const char* jdk_debug_level();
35453
d164ee5260a6 8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents: 35148
diff changeset
   117
  static const char* printable_jdk_debug_level();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
35148
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   119
  static uint64_t features() {
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   120
    return _features;
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   121
  }
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   122
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   123
  static const char* features_string() {
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   124
    return _features_string;
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   125
  }
5cfafc99d791 8143072: [JVMCI] Port JVMCI to AArch64
twisti
parents: 35043
diff changeset
   126
54485
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   127
  static VirtualizationType get_detected_virtualization() {
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   128
    return _detected_virtualization;
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   129
  }
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   130
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   131
  // platforms that need to specialize this
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   132
  // define VM_Version::print_platform_virtualization_info()
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   133
  static void print_platform_virtualization_info(outputStream*) { }
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   134
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // does HW support an 8-byte compare-exchange operation?
20075
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   136
  static bool supports_cx8()  {
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   137
#ifdef SUPPORTS_NATIVE_CX8
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   138
    return true;
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   139
#else
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   140
    return _supports_cx8;
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   141
#endif
29996eb926f5 8014911: Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
bpittore
parents: 13963
diff changeset
   142
  }
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   143
  // does HW support atomic get-and-set or atomic get-and-add?  Used
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   144
  // to guide intrinsification decisions for Unsafe atomic ops
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   145
  static bool supports_atomic_getset4()  {return _supports_atomic_getset4;}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   146
  static bool supports_atomic_getset8()  {return _supports_atomic_getset8;}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   147
  static bool supports_atomic_getadd4()  {return _supports_atomic_getadd4;}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   148
  static bool supports_atomic_getadd8()  {return _supports_atomic_getadd8;}
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
   149
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  static unsigned int logical_processors_per_package() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    return _logical_processors_per_package;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
25633
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 24238
diff changeset
   154
  static unsigned int L1_data_cache_line_size() {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 24238
diff changeset
   155
    return _L1_data_cache_line_size;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 24238
diff changeset
   156
  }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 24238
diff changeset
   157
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   158
  // ARCH specific policy for the BiasedLocking
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   159
  static bool use_biased_locking()  { return true; }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   160
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Number of page sizes efficiently supported by the hardware.  Most chips now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // support two sizes, thus this default implementation.  Processor-specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // subclasses should define new versions to hide this one as needed.  Note
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // that the O/S may support more sizes, but at most this many are used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static uint page_size_count() { return 2; }
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   166
52904
d2f118d3f8e7 8213224: Move code related to GC threads calculation out of AdaptiveSizePolicy
manc
parents: 52148
diff changeset
   167
  // Denominator for computing default ParallelGCThreads for machines with
d2f118d3f8e7 8213224: Move code related to GC threads calculation out of AdaptiveSizePolicy
manc
parents: 52148
diff changeset
   168
  // a large number of cores.
d2f118d3f8e7 8213224: Move code related to GC threads calculation out of AdaptiveSizePolicy
manc
parents: 52148
diff changeset
   169
  static uint parallel_worker_threads_denominator() { return 8; }
38017
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 35453
diff changeset
   170
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 35453
diff changeset
   171
  // Does this CPU support spin wait instruction?
55047d16f141 8147844: new method j.l.Runtime.onSpinWait() and the corresponding x86 hotspot instrinsic
ikrylov
parents: 35453
diff changeset
   172
  static bool supports_on_spin_wait() { return false; }
54485
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   173
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54899
diff changeset
   174
  // Does platform support fast class initialization checks for static methods?
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54899
diff changeset
   175
  static bool supports_fast_class_init_checks() { return false; }
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54899
diff changeset
   176
54485
ddc19ea5059c 8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
mbaesken
parents: 53244
diff changeset
   177
  static bool print_matching_lines_from_file(const char* filename, outputStream* st, const char* keywords_to_match[]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   179
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38220
diff changeset
   180
#include CPU_HEADER(vm_version)
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24238
diff changeset
   181
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52916
diff changeset
   182
#endif // SHARE_RUNTIME_VM_VERSION_HPP