hotspot/src/share/vm/runtime/vm_version.cpp
author amurillo
Thu, 24 Apr 2014 14:06:40 -0700
changeset 24238 641b2b1b0163
parent 22828 17ecb098bc1e
child 24424 2658d7834c6e
permissions -rw-r--r--
8030011: Update Hotspot version string output Reviewed-by: dholmes, jcoomes, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15432
9d976ca484d8 8000692: Remove old KERNEL code
zgu
parents: 14572
diff changeset
     2
 * Copyright (c) 1998, 2013, 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: 5542
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5542
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: 5542
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: 6470
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    26
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    27
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    28
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    29
#ifdef TARGET_ARCH_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    30
# include "vm_version_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    31
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    32
#ifdef TARGET_ARCH_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    33
# include "vm_version_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    34
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    35
#ifdef TARGET_ARCH_zero
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    36
# include "vm_version_zero.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6470
diff changeset
    37
#endif
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    38
#ifdef TARGET_ARCH_arm
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    39
# include "vm_version_arm.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    40
#endif
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    41
#ifdef TARGET_ARCH_ppc
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    42
# include "vm_version_ppc.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    43
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
const char* Abstract_VM_Version::_s_vm_release = Abstract_VM_Version::vm_release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
const char* Abstract_VM_Version::_s_internal_vm_info_string = Abstract_VM_Version::internal_vm_info_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
bool Abstract_VM_Version::_supports_cx8 = false;
13886
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    48
bool Abstract_VM_Version::_supports_atomic_getset4 = false;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    49
bool Abstract_VM_Version::_supports_atomic_getset8 = false;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    50
bool Abstract_VM_Version::_supports_atomic_getadd4 = false;
8d82c4dfa722 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 11720
diff changeset
    51
bool Abstract_VM_Version::_supports_atomic_getadd8 = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U;
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 8921
diff changeset
    53
int Abstract_VM_Version::_reserve_for_allocation_prefetch = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#ifndef HOTSPOT_RELEASE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  #error HOTSPOT_RELEASE_VERSION must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#endif
24238
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    58
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    59
#ifndef JDK_MAJOR_VERSION
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    60
  #error JDK_MAJOR_VERSION must be defined
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    61
#endif
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    62
#ifndef JDK_MINOR_VERSION
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    63
  #error JDK_MINOR_VERSION must be defined
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    64
#endif
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    65
#ifndef JDK_MICRO_VERSION
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    66
  #error JDK_MICRO_VERSION must be defined
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    67
#endif
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    68
#ifndef JDK_BUILD_NUMBER
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    69
  #error JDK_BUILD_NUMBER must be defined
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    70
#endif
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    71
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
#ifndef JRE_RELEASE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  #error JRE_RELEASE_VERSION must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#ifndef HOTSPOT_BUILD_TARGET
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  #error HOTSPOT_BUILD_TARGET must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  #define VM_RELEASE HOTSPOT_RELEASE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  #define VM_RELEASE HOTSPOT_RELEASE_VERSION "-" HOTSPOT_BUILD_TARGET
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
24238
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    85
// HOTSPOT_RELEASE_VERSION follows the JDK release version naming convention
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    86
// <major_ver>.<minor_ver>.<micro_ver>[-<identifier>][-<debug_target>][-b<nn>]
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
int Abstract_VM_Version::_vm_major_version = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
int Abstract_VM_Version::_vm_minor_version = 0;
24238
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    89
int Abstract_VM_Version::_vm_micro_version = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
int Abstract_VM_Version::_vm_build_number = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
bool Abstract_VM_Version::_initialized = false;
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
    92
int Abstract_VM_Version::_parallel_worker_threads = 0;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
    93
bool Abstract_VM_Version::_parallel_worker_threads_initialized = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
24238
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    95
#ifdef ASSERT
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    96
static void assert_digits(const char * s, const char * message) {
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    97
  for (int i = 0; s[i] != '\0'; i++) {
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    98
    assert(isdigit(s[i]), message);
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
    99
  }
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   100
}
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   101
#endif
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   102
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   103
static void set_version_field(int * version_field, const char * version_str,
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   104
                              const char * const assert_msg) {
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   105
  if (version_str != NULL && *version_str != '\0') {
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   106
    DEBUG_ONLY(assert_digits(version_str, assert_msg));
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   107
    *version_field = atoi(version_str);
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   108
  }
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   109
}
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   110
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void Abstract_VM_Version::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (_initialized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
24238
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   116
  set_version_field(&_vm_major_version, JDK_MAJOR_VERSION, "bad major version");
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   117
  set_version_field(&_vm_minor_version, JDK_MINOR_VERSION, "bad minor version");
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   118
  set_version_field(&_vm_micro_version, JDK_MICRO_VERSION, "bad micro version");
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   119
  int offset = (JDK_BUILD_NUMBER != NULL && JDK_BUILD_NUMBER[0] == 'b') ? 1 : 0;
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   120
  set_version_field(&_vm_build_number, JDK_BUILD_NUMBER + offset,
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   121
                    "bad build number");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _initialized = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
#if defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  #define VMLP "64-Bit "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  #define VMLP ""
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   132
#ifndef VMTYPE
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   133
  #ifdef TIERED
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   134
    #define VMTYPE "Server"
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   135
  #else // TIERED
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   136
  #ifdef ZERO
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   137
  #ifdef SHARK
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   138
    #define VMTYPE "Shark"
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   139
  #else // SHARK
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   140
    #define VMTYPE "Zero"
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   141
  #endif // SHARK
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   142
  #else // ZERO
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   143
     #define VMTYPE COMPILER1_PRESENT("Client")   \
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   144
                    COMPILER2_PRESENT("Server")
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   145
  #endif // ZERO
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   146
  #endif // TIERED
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13886
diff changeset
   147
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
#ifndef HOTSPOT_VM_DISTRO
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  #error HOTSPOT_VM_DISTRO must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
#endif
10738
cc19612c6b9f 7096278: Update the VM name to indicate it is an embedded build
dholmes
parents: 10565
diff changeset
   152
#define VMNAME HOTSPOT_VM_DISTRO " " VMLP EMBEDDED_ONLY("Embedded ") VMTYPE " VM"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
const char* Abstract_VM_Version::vm_name() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return VMNAME;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
const char* Abstract_VM_Version::vm_vendor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#ifdef VENDOR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return XSTR(VENDOR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
#else
6470
829a79f301ad 6981753: Rebrand vm vendor property settings
zgu
parents: 6187
diff changeset
   163
  return JDK_Version::is_gte_jdk17x_version() ?
829a79f301ad 6981753: Rebrand vm vendor property settings
zgu
parents: 6187
diff changeset
   164
    "Oracle Corporation" : "Sun Microsystems Inc.";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
const char* Abstract_VM_Version::vm_info_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  switch (Arguments::mode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    case Arguments::_int:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      return UseSharedSpaces ? "interpreted mode, sharing" : "interpreted mode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    case Arguments::_mixed:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      return UseSharedSpaces ? "mixed mode, sharing"       :  "mixed mode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    case Arguments::_comp:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      return UseSharedSpaces ? "compiled mode, sharing"    : "compiled mode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  return "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
// NOTE: do *not* use stringStream. this function is called by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
//       fatal error handler. if the crash is in native thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
//       stringStream cannot get resource allocated and will SEGV.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
const char* Abstract_VM_Version::vm_release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  return VM_RELEASE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
11720
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   189
// NOTE: do *not* use stringStream. this function is called by
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   190
//       fatal error handlers. if the crash is in native thread,
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   191
//       stringStream cannot get resource allocated and will SEGV.
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   192
const char* Abstract_VM_Version::jre_release_version() {
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   193
  return JRE_RELEASE_VERSION;
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   194
}
b20268d74484 7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents: 10738
diff changeset
   195
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#define OS       LINUX_ONLY("linux")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
                 WINDOWS_ONLY("windows")         \
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10267
diff changeset
   198
                 SOLARIS_ONLY("solaris")         \
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 22807
diff changeset
   199
                 AIX_ONLY("aix")                 \
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10267
diff changeset
   200
                 BSD_ONLY("bsd")
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   202
#ifdef ZERO
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   203
#define CPU      ZERO_LIBARCH
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   204
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
#define CPU      IA32_ONLY("x86")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
                 IA64_ONLY("ia64")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                 AMD64_ONLY("amd64")             \
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   208
                 ARM_ONLY("arm")                 \
22806
7d1955769e90 8016491: PPC64 (part 2): Clean up PPC defines.
goetz
parents: 16358
diff changeset
   209
                 PPC32_ONLY("ppc")               \
22807
1cf02ef734e2 8016586: PPC64 (part 3): basic changes for PPC64
goetz
parents: 22806
diff changeset
   210
                 PPC64_ONLY("ppc64")             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
                 SPARC_ONLY("sparc")
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   212
#endif // ZERO
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
const char *Abstract_VM_Version::vm_platform_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  return OS "-" CPU;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
const char* Abstract_VM_Version::internal_vm_info_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  #ifndef HOTSPOT_BUILD_USER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    #define HOTSPOT_BUILD_USER unknown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  #ifndef HOTSPOT_BUILD_COMPILER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    #ifdef _MSC_VER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
      #if   _MSC_VER == 1100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 5.0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
      #elif _MSC_VER == 1200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 6.0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      #elif _MSC_VER == 1310
2257
d8e6e11e7f32 6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents: 670
diff changeset
   230
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 7.1 (VS2003)"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      #elif _MSC_VER == 1400
2257
d8e6e11e7f32 6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents: 670
diff changeset
   232
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 8.0 (VS2005)"
d8e6e11e7f32 6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents: 670
diff changeset
   233
      #elif _MSC_VER == 1500
d8e6e11e7f32 6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
kvn
parents: 670
diff changeset
   234
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 9.0 (VS2008)"
16358
ebf30634b326 8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents: 15432
diff changeset
   235
      #elif _MSC_VER == 1600
ebf30634b326 8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents: 15432
diff changeset
   236
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 10.0 (VS2010)"
ebf30634b326 8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents: 15432
diff changeset
   237
      #elif _MSC_VER == 1700
ebf30634b326 8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents: 15432
diff changeset
   238
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 11.0 (VS2012)"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
        #define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    #elif defined(__SUNPRO_CC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      #if   __SUNPRO_CC == 0x420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
        #define HOTSPOT_BUILD_COMPILER "Workshop 4.2"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      #elif __SUNPRO_CC == 0x500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.0 compat=" XSTR(__SUNPRO_CC_COMPAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      #elif __SUNPRO_CC == 0x520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.2 compat=" XSTR(__SUNPRO_CC_COMPAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      #elif __SUNPRO_CC == 0x580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.8"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      #elif __SUNPRO_CC == 0x590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.9"
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 4013
diff changeset
   253
      #elif __SUNPRO_CC == 0x5100
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 4013
diff changeset
   254
        #define HOTSPOT_BUILD_COMPILER "Sun Studio 12u1"
19328
544e1a8278a8 8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents: 16358
diff changeset
   255
      #elif __SUNPRO_CC == 0x5120
544e1a8278a8 8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents: 16358
diff changeset
   256
        #define HOTSPOT_BUILD_COMPILER "Sun Studio 12u3"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
        #define HOTSPOT_BUILD_COMPILER "unknown Workshop:" XSTR(__SUNPRO_CC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    #elif defined(__GNUC__)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
        #define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 22807
diff changeset
   262
    #elif defined(__IBMCPP__)
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 22807
diff changeset
   263
        #define HOTSPOT_BUILD_COMPILER "xlC " XSTR(__IBMCPP__)
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 22807
diff changeset
   264
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      #define HOTSPOT_BUILD_COMPILER "unknown compiler"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   270
  #ifndef FLOAT_ARCH
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   271
    #if defined(__SOFTFP__)
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   272
      #define FLOAT_ARCH_STR "-sflt"
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   273
    #elif defined(E500V2)
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   274
      #define FLOAT_ARCH_STR "-e500v2"
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   275
    #elif defined(ARM)
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   276
      #define FLOAT_ARCH_STR "-vfp"
22806
7d1955769e90 8016491: PPC64 (part 2): Clean up PPC defines.
goetz
parents: 16358
diff changeset
   277
    #elif defined(PPC32)
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   278
      #define FLOAT_ARCH_STR "-hflt"
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   279
    #else
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   280
      #define FLOAT_ARCH_STR ""
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   281
    #endif
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   282
  #else
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   283
    #define FLOAT_ARCH_STR XSTR(FLOAT_ARCH)
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
   284
  #endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
14572
62c896e036da 8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents: 13977
diff changeset
   286
  return VMNAME " (" VM_RELEASE ") for " OS "-" CPU FLOAT_ARCH_STR
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
         " JRE (" JRE_RELEASE_VERSION "), built on " __DATE__ " " __TIME__
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
         " by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 8107
diff changeset
   291
const char *Abstract_VM_Version::vm_build_user() {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 8107
diff changeset
   292
  return HOTSPOT_BUILD_USER;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 8107
diff changeset
   293
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 8107
diff changeset
   294
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
unsigned int Abstract_VM_Version::jvm_version() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
         ((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) |
24238
641b2b1b0163 8030011: Update Hotspot version string output
amurillo
parents: 22828
diff changeset
   298
         ((Abstract_VM_Version::vm_micro_version() & 0xFF) << 8) |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
         (Abstract_VM_Version::vm_build_number() & 0xFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
void VM_Version_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  VM_Version::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    os::print_cpu_info(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
}
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   312
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   313
unsigned int Abstract_VM_Version::nof_parallel_worker_threads(
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   314
                                                      unsigned int num,
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   315
                                                      unsigned int den,
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   316
                                                      unsigned int switch_pt) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   317
  if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   318
    assert(ParallelGCThreads == 0, "Default ParallelGCThreads is not 0");
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   319
    // For very large machines, there are diminishing returns
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   320
    // for large numbers of worker threads.  Instead of
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   321
    // hogging the whole system, use a fraction of the workers for every
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   322
    // processor after the first 8.  For example, on a 72 cpu machine
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   323
    // and a chosen fraction of 5/8
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   324
    // use 8 + (72 - 8) * (5/8) == 48 worker threads.
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   325
    unsigned int ncpus = (unsigned int) os::active_processor_count();
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   326
    return (ncpus <= switch_pt) ?
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   327
           ncpus :
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   328
          (switch_pt + ((ncpus - switch_pt) * num) / den);
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   329
  } else {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   330
    return ParallelGCThreads;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   331
  }
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   332
}
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   333
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   334
unsigned int Abstract_VM_Version::calc_parallel_worker_threads() {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   335
  return nof_parallel_worker_threads(5, 8, 8);
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   336
}
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   337
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   338
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   339
// Does not set the _initialized flag since it is
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   340
// a global flag.
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   341
unsigned int Abstract_VM_Version::parallel_worker_threads() {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   342
  if (!_parallel_worker_threads_initialized) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   343
    if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   344
      _parallel_worker_threads = VM_Version::calc_parallel_worker_threads();
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   345
    } else {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   346
      _parallel_worker_threads = ParallelGCThreads;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   347
    }
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   348
    _parallel_worker_threads_initialized = true;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   349
  }
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   350
  return _parallel_worker_threads;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   351
}