src/share/vm/runtime/vm_version.cpp

Sun, 03 Feb 2013 22:43:57 +0100

author
ewendeli
date
Sun, 03 Feb 2013 22:43:57 +0100
changeset 4703
b5cb079ecaa4
parent 4288
6b881a6b0665
child 4492
8b46b0196eb0
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "memory/universe.hpp"
    27 #include "oops/oop.inline.hpp"
    28 #include "runtime/arguments.hpp"
    29 #ifdef TARGET_ARCH_x86
    30 # include "vm_version_x86.hpp"
    31 #endif
    32 #ifdef TARGET_ARCH_sparc
    33 # include "vm_version_sparc.hpp"
    34 #endif
    35 #ifdef TARGET_ARCH_zero
    36 # include "vm_version_zero.hpp"
    37 #endif
    38 #ifdef TARGET_ARCH_arm
    39 # include "vm_version_arm.hpp"
    40 #endif
    41 #ifdef TARGET_ARCH_ppc
    42 # include "vm_version_ppc.hpp"
    43 #endif
    45 const char* Abstract_VM_Version::_s_vm_release = Abstract_VM_Version::vm_release();
    46 const char* Abstract_VM_Version::_s_internal_vm_info_string = Abstract_VM_Version::internal_vm_info_string();
    47 bool Abstract_VM_Version::_supports_cx8 = false;
    48 bool Abstract_VM_Version::_supports_atomic_getset4 = false;
    49 bool Abstract_VM_Version::_supports_atomic_getset8 = false;
    50 bool Abstract_VM_Version::_supports_atomic_getadd4 = false;
    51 bool Abstract_VM_Version::_supports_atomic_getadd8 = false;
    52 unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U;
    53 int Abstract_VM_Version::_reserve_for_allocation_prefetch = 0;
    55 #ifndef HOTSPOT_RELEASE_VERSION
    56   #error HOTSPOT_RELEASE_VERSION must be defined
    57 #endif
    58 #ifndef JRE_RELEASE_VERSION
    59   #error JRE_RELEASE_VERSION must be defined
    60 #endif
    61 #ifndef HOTSPOT_BUILD_TARGET
    62   #error HOTSPOT_BUILD_TARGET must be defined
    63 #endif
    65 #ifdef PRODUCT
    66   #define VM_RELEASE HOTSPOT_RELEASE_VERSION
    67 #else
    68   #define VM_RELEASE HOTSPOT_RELEASE_VERSION "-" HOTSPOT_BUILD_TARGET
    69 #endif
    71 // HOTSPOT_RELEASE_VERSION must follow the release version naming convention
    72 // <major_ver>.<minor_ver>-b<nn>[-<identifier>][-<debug_target>]
    73 int Abstract_VM_Version::_vm_major_version = 0;
    74 int Abstract_VM_Version::_vm_minor_version = 0;
    75 int Abstract_VM_Version::_vm_build_number = 0;
    76 bool Abstract_VM_Version::_initialized = false;
    77 int Abstract_VM_Version::_parallel_worker_threads = 0;
    78 bool Abstract_VM_Version::_parallel_worker_threads_initialized = false;
    80 void Abstract_VM_Version::initialize() {
    81   if (_initialized) {
    82     return;
    83   }
    84   char* vm_version = os::strdup(HOTSPOT_RELEASE_VERSION);
    86   // Expecting the next vm_version format:
    87   // <major_ver>.<minor_ver>-b<nn>[-<identifier>]
    88   char* vm_major_ver = vm_version;
    89   assert(isdigit(vm_major_ver[0]),"wrong vm major version number");
    90   char* vm_minor_ver = strchr(vm_major_ver, '.');
    91   assert(vm_minor_ver != NULL && isdigit(vm_minor_ver[1]),"wrong vm minor version number");
    92   vm_minor_ver[0] = '\0'; // terminate vm_major_ver
    93   vm_minor_ver += 1;
    94   char* vm_build_num = strchr(vm_minor_ver, '-');
    95   assert(vm_build_num != NULL && vm_build_num[1] == 'b' && isdigit(vm_build_num[2]),"wrong vm build number");
    96   vm_build_num[0] = '\0'; // terminate vm_minor_ver
    97   vm_build_num += 2;
    99   _vm_major_version = atoi(vm_major_ver);
   100   _vm_minor_version = atoi(vm_minor_ver);
   101   _vm_build_number  = atoi(vm_build_num);
   103   os::free(vm_version);
   104   _initialized = true;
   105 }
   107 #if defined(_LP64)
   108   #define VMLP "64-Bit "
   109 #else
   110   #define VMLP ""
   111 #endif
   113 #ifndef VMTYPE
   114   #ifdef KERNEL
   115     #define VMTYPE "Kernel"
   116   #else // KERNEL
   117   #ifdef TIERED
   118     #define VMTYPE "Server"
   119   #else // TIERED
   120   #ifdef ZERO
   121   #ifdef SHARK
   122     #define VMTYPE "Shark"
   123   #else // SHARK
   124     #define VMTYPE "Zero"
   125   #endif // SHARK
   126   #else // ZERO
   127      #define VMTYPE COMPILER1_PRESENT("Client")   \
   128                     COMPILER2_PRESENT("Server")
   129   #endif // ZERO
   130   #endif // TIERED
   131   #endif // KERNEL
   132 #endif
   134 #ifndef HOTSPOT_VM_DISTRO
   135   #error HOTSPOT_VM_DISTRO must be defined
   136 #endif
   137 #define VMNAME HOTSPOT_VM_DISTRO " " VMLP EMBEDDED_ONLY("Embedded ") VMTYPE " VM"
   139 const char* Abstract_VM_Version::vm_name() {
   140   return VMNAME;
   141 }
   144 const char* Abstract_VM_Version::vm_vendor() {
   145 #ifdef VENDOR
   146   return XSTR(VENDOR);
   147 #else
   148   return JDK_Version::is_gte_jdk17x_version() ?
   149     "Oracle Corporation" : "Sun Microsystems Inc.";
   150 #endif
   151 }
   154 const char* Abstract_VM_Version::vm_info_string() {
   155   switch (Arguments::mode()) {
   156     case Arguments::_int:
   157       return UseSharedSpaces ? "interpreted mode, sharing" : "interpreted mode";
   158     case Arguments::_mixed:
   159       return UseSharedSpaces ? "mixed mode, sharing"       :  "mixed mode";
   160     case Arguments::_comp:
   161       return UseSharedSpaces ? "compiled mode, sharing"    : "compiled mode";
   162   };
   163   ShouldNotReachHere();
   164   return "";
   165 }
   167 // NOTE: do *not* use stringStream. this function is called by
   168 //       fatal error handler. if the crash is in native thread,
   169 //       stringStream cannot get resource allocated and will SEGV.
   170 const char* Abstract_VM_Version::vm_release() {
   171   return VM_RELEASE;
   172 }
   174 // NOTE: do *not* use stringStream. this function is called by
   175 //       fatal error handlers. if the crash is in native thread,
   176 //       stringStream cannot get resource allocated and will SEGV.
   177 const char* Abstract_VM_Version::jre_release_version() {
   178   return JRE_RELEASE_VERSION;
   179 }
   181 #define OS       LINUX_ONLY("linux")             \
   182                  WINDOWS_ONLY("windows")         \
   183                  SOLARIS_ONLY("solaris")         \
   184                  BSD_ONLY("bsd")
   186 #ifdef ZERO
   187 #define CPU      ZERO_LIBARCH
   188 #else
   189 #define CPU      IA32_ONLY("x86")                \
   190                  IA64_ONLY("ia64")               \
   191                  AMD64_ONLY("amd64")             \
   192                  ARM_ONLY("arm")                 \
   193                  PPC_ONLY("ppc")                 \
   194                  SPARC_ONLY("sparc")
   195 #endif // ZERO
   197 const char *Abstract_VM_Version::vm_platform_string() {
   198   return OS "-" CPU;
   199 }
   201 const char* Abstract_VM_Version::internal_vm_info_string() {
   202   #ifndef HOTSPOT_BUILD_USER
   203     #define HOTSPOT_BUILD_USER unknown
   204   #endif
   206   #ifndef HOTSPOT_BUILD_COMPILER
   207     #ifdef _MSC_VER
   208       #if   _MSC_VER == 1100
   209         #define HOTSPOT_BUILD_COMPILER "MS VC++ 5.0"
   210       #elif _MSC_VER == 1200
   211         #define HOTSPOT_BUILD_COMPILER "MS VC++ 6.0"
   212       #elif _MSC_VER == 1310
   213         #define HOTSPOT_BUILD_COMPILER "MS VC++ 7.1 (VS2003)"
   214       #elif _MSC_VER == 1400
   215         #define HOTSPOT_BUILD_COMPILER "MS VC++ 8.0 (VS2005)"
   216       #elif _MSC_VER == 1500
   217         #define HOTSPOT_BUILD_COMPILER "MS VC++ 9.0 (VS2008)"
   218       #else
   219         #define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
   220       #endif
   221     #elif defined(__SUNPRO_CC)
   222       #if   __SUNPRO_CC == 0x420
   223         #define HOTSPOT_BUILD_COMPILER "Workshop 4.2"
   224       #elif __SUNPRO_CC == 0x500
   225         #define HOTSPOT_BUILD_COMPILER "Workshop 5.0 compat=" XSTR(__SUNPRO_CC_COMPAT)
   226       #elif __SUNPRO_CC == 0x520
   227         #define HOTSPOT_BUILD_COMPILER "Workshop 5.2 compat=" XSTR(__SUNPRO_CC_COMPAT)
   228       #elif __SUNPRO_CC == 0x580
   229         #define HOTSPOT_BUILD_COMPILER "Workshop 5.8"
   230       #elif __SUNPRO_CC == 0x590
   231         #define HOTSPOT_BUILD_COMPILER "Workshop 5.9"
   232       #elif __SUNPRO_CC == 0x5100
   233         #define HOTSPOT_BUILD_COMPILER "Sun Studio 12u1"
   234       #else
   235         #define HOTSPOT_BUILD_COMPILER "unknown Workshop:" XSTR(__SUNPRO_CC)
   236       #endif
   237     #elif defined(__GNUC__)
   238         #define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__
   239     #else
   240       #define HOTSPOT_BUILD_COMPILER "unknown compiler"
   241     #endif
   242   #endif
   244   #ifndef FLOAT_ARCH
   245     #if defined(__SOFTFP__)
   246       #define FLOAT_ARCH_STR "-sflt"
   247     #elif defined(E500V2)
   248       #define FLOAT_ARCH_STR "-e500v2"
   249     #elif defined(ARM)
   250       #define FLOAT_ARCH_STR "-vfp"
   251     #elif defined(PPC)
   252       #define FLOAT_ARCH_STR "-hflt"
   253     #else
   254       #define FLOAT_ARCH_STR ""
   255     #endif
   256   #else
   257     #define FLOAT_ARCH_STR XSTR(FLOAT_ARCH)
   258   #endif
   260   return VMNAME " (" VM_RELEASE ") for " OS "-" CPU FLOAT_ARCH_STR
   261          " JRE (" JRE_RELEASE_VERSION "), built on " __DATE__ " " __TIME__
   262          " by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER;
   263 }
   265 const char *Abstract_VM_Version::vm_build_user() {
   266   return HOTSPOT_BUILD_USER;
   267 }
   269 unsigned int Abstract_VM_Version::jvm_version() {
   270   return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) |
   271          ((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) |
   272          (Abstract_VM_Version::vm_build_number() & 0xFF);
   273 }
   276 void VM_Version_init() {
   277   VM_Version::initialize();
   279 #ifndef PRODUCT
   280   if (PrintMiscellaneous && Verbose) {
   281     os::print_cpu_info(tty);
   282   }
   283 #endif
   284 }
   286 unsigned int Abstract_VM_Version::nof_parallel_worker_threads(
   287                                                       unsigned int num,
   288                                                       unsigned int den,
   289                                                       unsigned int switch_pt) {
   290   if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
   291     assert(ParallelGCThreads == 0, "Default ParallelGCThreads is not 0");
   292     // For very large machines, there are diminishing returns
   293     // for large numbers of worker threads.  Instead of
   294     // hogging the whole system, use a fraction of the workers for every
   295     // processor after the first 8.  For example, on a 72 cpu machine
   296     // and a chosen fraction of 5/8
   297     // use 8 + (72 - 8) * (5/8) == 48 worker threads.
   298     unsigned int ncpus = (unsigned int) os::active_processor_count();
   299     return (ncpus <= switch_pt) ?
   300            ncpus :
   301           (switch_pt + ((ncpus - switch_pt) * num) / den);
   302   } else {
   303     return ParallelGCThreads;
   304   }
   305 }
   307 unsigned int Abstract_VM_Version::calc_parallel_worker_threads() {
   308   return nof_parallel_worker_threads(5, 8, 8);
   309 }
   312 // Does not set the _initialized flag since it is
   313 // a global flag.
   314 unsigned int Abstract_VM_Version::parallel_worker_threads() {
   315   if (!_parallel_worker_threads_initialized) {
   316     if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
   317       _parallel_worker_threads = VM_Version::calc_parallel_worker_threads();
   318     } else {
   319       _parallel_worker_threads = ParallelGCThreads;
   320     }
   321     _parallel_worker_threads_initialized = true;
   322   }
   323   return _parallel_worker_threads;
   324 }

mercurial