hotspot/src/share/vm/runtime/vm_version.cpp
author never
Tue, 13 Oct 2009 12:04:21 -0700
changeset 4013 b154310845de
parent 3261 c7d5aae8d3f7
child 5542 be05c5ffe905
permissions -rw-r--r--
6890308: integrate zero assembler hotspot changes Reviewed-by: never Contributed-by: gbenson@redhat.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2257
diff changeset
     2
 * Copyright 1998-2009 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_vm_version.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
const char* Abstract_VM_Version::_s_vm_release = Abstract_VM_Version::vm_release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
const char* Abstract_VM_Version::_s_internal_vm_info_string = Abstract_VM_Version::internal_vm_info_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
bool Abstract_VM_Version::_supports_cx8 = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#ifndef HOTSPOT_RELEASE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  #error HOTSPOT_RELEASE_VERSION must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#ifndef JRE_RELEASE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  #error JRE_RELEASE_VERSION must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#ifndef HOTSPOT_BUILD_TARGET
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  #error HOTSPOT_BUILD_TARGET must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  #define VM_RELEASE HOTSPOT_RELEASE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  #define VM_RELEASE HOTSPOT_RELEASE_VERSION "-" HOTSPOT_BUILD_TARGET
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// HOTSPOT_RELEASE_VERSION must follow the release version naming convention
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// <major_ver>.<minor_ver>-b<nn>[-<identifier>][-<debug_target>]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
int Abstract_VM_Version::_vm_major_version = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
int Abstract_VM_Version::_vm_minor_version = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
int Abstract_VM_Version::_vm_build_number = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
bool Abstract_VM_Version::_initialized = false;
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
    55
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
    56
bool Abstract_VM_Version::_parallel_worker_threads_initialized = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void Abstract_VM_Version::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (_initialized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  char* vm_version = os::strdup(HOTSPOT_RELEASE_VERSION);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Expecting the next vm_version format:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // <major_ver>.<minor_ver>-b<nn>[-<identifier>]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  char* vm_major_ver = vm_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  assert(isdigit(vm_major_ver[0]),"wrong vm major version number");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  char* vm_minor_ver = strchr(vm_major_ver, '.');
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  assert(vm_minor_ver != NULL && isdigit(vm_minor_ver[1]),"wrong vm minor version number");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  vm_minor_ver[0] = '\0'; // terminate vm_major_ver
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  vm_minor_ver += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  char* vm_build_num = strchr(vm_minor_ver, '-');
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  assert(vm_build_num != NULL && vm_build_num[1] == 'b' && isdigit(vm_build_num[2]),"wrong vm build number");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  vm_build_num[0] = '\0'; // terminate vm_minor_ver
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  vm_build_num += 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  _vm_major_version = atoi(vm_major_ver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  _vm_minor_version = atoi(vm_minor_ver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _vm_build_number  = atoi(vm_build_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  os::free(vm_version);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  _initialized = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#if defined(_LP64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  #define VMLP "64-Bit "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  #define VMLP ""
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#ifdef KERNEL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  #define VMTYPE "Kernel"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
#else // KERNEL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  #define VMTYPE "Server"
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
    96
#else // TIERED
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
    97
#ifdef ZERO
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
    98
  #define VMTYPE "Zero"
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
    99
#else // ZERO
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   100
   #define VMTYPE COMPILER1_PRESENT("Client")   \
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   101
                  COMPILER2_PRESENT("Server")
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   102
#endif // ZERO
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#endif // KERNEL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#ifndef HOTSPOT_VM_DISTRO
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  #error HOTSPOT_VM_DISTRO must be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
#define VMNAME HOTSPOT_VM_DISTRO " " VMLP VMTYPE " VM"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
const char* Abstract_VM_Version::vm_name() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  return VMNAME;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
const char* Abstract_VM_Version::vm_vendor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
#ifdef VENDOR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  return XSTR(VENDOR);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  return "Sun Microsystems Inc.";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
const char* Abstract_VM_Version::vm_info_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  switch (Arguments::mode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    case Arguments::_int:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      return UseSharedSpaces ? "interpreted mode, sharing" : "interpreted mode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    case Arguments::_mixed:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      return UseSharedSpaces ? "mixed mode, sharing"       :  "mixed mode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    case Arguments::_comp:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      return UseSharedSpaces ? "compiled mode, sharing"    : "compiled mode";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  return "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// NOTE: do *not* use stringStream. this function is called by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
//       fatal error handler. if the crash is in native thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
//       stringStream cannot get resource allocated and will SEGV.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
const char* Abstract_VM_Version::vm_release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  return VM_RELEASE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
#define OS       LINUX_ONLY("linux")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                 WINDOWS_ONLY("windows")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                 SOLARIS_ONLY("solaris")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   149
#ifdef ZERO
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   150
#define CPU      ZERO_LIBARCH
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   151
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
#define CPU      IA32_ONLY("x86")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                 IA64_ONLY("ia64")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                 AMD64_ONLY("amd64")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                 SPARC_ONLY("sparc")
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 3261
diff changeset
   156
#endif // ZERO
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
const char *Abstract_VM_Version::vm_platform_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  return OS "-" CPU;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
const char* Abstract_VM_Version::internal_vm_info_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  #ifndef HOTSPOT_BUILD_USER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    #define HOTSPOT_BUILD_USER unknown
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
  #ifndef HOTSPOT_BUILD_COMPILER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    #ifdef _MSC_VER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      #if   _MSC_VER == 1100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 5.0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      #elif _MSC_VER == 1200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 6.0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      #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
   174
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 7.1 (VS2003)"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      #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
   176
        #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
   177
      #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
   178
        #define HOTSPOT_BUILD_COMPILER "MS VC++ 9.0 (VS2008)"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
        #define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    #elif defined(__SUNPRO_CC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      #if   __SUNPRO_CC == 0x420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
        #define HOTSPOT_BUILD_COMPILER "Workshop 4.2"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      #elif __SUNPRO_CC == 0x500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.0 compat=" XSTR(__SUNPRO_CC_COMPAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      #elif __SUNPRO_CC == 0x520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.2 compat=" XSTR(__SUNPRO_CC_COMPAT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      #elif __SUNPRO_CC == 0x580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.8"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      #elif __SUNPRO_CC == 0x590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
        #define HOTSPOT_BUILD_COMPILER "Workshop 5.9"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        #define HOTSPOT_BUILD_COMPILER "unknown Workshop:" XSTR(__SUNPRO_CC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
      #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    #elif defined(__GNUC__)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        #define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      #define HOTSPOT_BUILD_COMPILER "unknown compiler"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  return VMNAME " (" VM_RELEASE ") for " OS "-" CPU
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
         " JRE (" JRE_RELEASE_VERSION "), built on " __DATE__ " " __TIME__
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
         " by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
unsigned int Abstract_VM_Version::jvm_version() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
         ((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
         (Abstract_VM_Version::vm_build_number() & 0xFF);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
void VM_Version_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  VM_Version::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    os::print_cpu_info(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
183
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   225
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   226
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
   227
                                                      unsigned int num,
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   228
                                                      unsigned int den,
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   229
                                                      unsigned int switch_pt) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   230
  if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   231
    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
   232
    // 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
   233
    // 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
   234
    // 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
   235
    // 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
   236
    // and a chosen fraction of 5/8
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   237
    // 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
   238
    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
   239
    return (ncpus <= switch_pt) ?
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   240
           ncpus :
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   241
          (switch_pt + ((ncpus - switch_pt) * num) / den);
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   242
  } else {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   243
    return ParallelGCThreads;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   244
  }
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   245
}
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   246
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   247
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
   248
  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
   249
}
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   250
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   251
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   252
// 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
   253
// a global flag.
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   254
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
   255
  if (!_parallel_worker_threads_initialized) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   256
    if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   257
      _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
   258
    } else {
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   259
      _parallel_worker_threads = ParallelGCThreads;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   260
    }
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   261
    _parallel_worker_threads_initialized = true;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   262
  }
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   263
  return _parallel_worker_threads;
ba55c7f3fd45 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 1
diff changeset
   264
}