author | pliden |
Fri, 11 Apr 2014 12:29:24 +0200 | |
changeset 24094 | 5dbf1f44de18 |
parent 22828 | 17ecb098bc1e |
child 24238 | 641b2b1b0163 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15432 | 2 |
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 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 |
|
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 | 44 |
|
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; |
|
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 | 52 |
unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U; |
10267 | 53 |
int Abstract_VM_Version::_reserve_for_allocation_prefetch = 0; |
1 | 54 |
|
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 |
|
64 |
||
65 |
#ifdef PRODUCT |
|
66 |
#define VM_RELEASE HOTSPOT_RELEASE_VERSION |
|
67 |
#else |
|
68 |
#define VM_RELEASE HOTSPOT_RELEASE_VERSION "-" HOTSPOT_BUILD_TARGET |
|
69 |
#endif |
|
70 |
||
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; |
|
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
77 |
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
|
78 |
bool Abstract_VM_Version::_parallel_worker_threads_initialized = false; |
1 | 79 |
|
80 |
void Abstract_VM_Version::initialize() { |
|
81 |
if (_initialized) { |
|
82 |
return; |
|
83 |
} |
|
84 |
char* vm_version = os::strdup(HOTSPOT_RELEASE_VERSION); |
|
85 |
||
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; |
|
98 |
||
99 |
_vm_major_version = atoi(vm_major_ver); |
|
100 |
_vm_minor_version = atoi(vm_minor_ver); |
|
101 |
_vm_build_number = atoi(vm_build_num); |
|
102 |
||
103 |
os::free(vm_version); |
|
104 |
_initialized = true; |
|
105 |
} |
|
106 |
||
107 |
#if defined(_LP64) |
|
108 |
#define VMLP "64-Bit " |
|
109 |
#else |
|
110 |
#define VMLP "" |
|
111 |
#endif |
|
112 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
113 |
#ifndef VMTYPE |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
114 |
#ifdef TIERED |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
115 |
#define VMTYPE "Server" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
116 |
#else // TIERED |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
117 |
#ifdef ZERO |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
118 |
#ifdef SHARK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
119 |
#define VMTYPE "Shark" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
120 |
#else // SHARK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
121 |
#define VMTYPE "Zero" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
122 |
#endif // SHARK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
123 |
#else // ZERO |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
124 |
#define VMTYPE COMPILER1_PRESENT("Client") \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
125 |
COMPILER2_PRESENT("Server") |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
126 |
#endif // ZERO |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
127 |
#endif // TIERED |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
128 |
#endif |
1 | 129 |
|
130 |
#ifndef HOTSPOT_VM_DISTRO |
|
131 |
#error HOTSPOT_VM_DISTRO must be defined |
|
132 |
#endif |
|
10738
cc19612c6b9f
7096278: Update the VM name to indicate it is an embedded build
dholmes
parents:
10565
diff
changeset
|
133 |
#define VMNAME HOTSPOT_VM_DISTRO " " VMLP EMBEDDED_ONLY("Embedded ") VMTYPE " VM" |
1 | 134 |
|
135 |
const char* Abstract_VM_Version::vm_name() { |
|
136 |
return VMNAME; |
|
137 |
} |
|
138 |
||
139 |
||
140 |
const char* Abstract_VM_Version::vm_vendor() { |
|
141 |
#ifdef VENDOR |
|
142 |
return XSTR(VENDOR); |
|
143 |
#else |
|
6470 | 144 |
return JDK_Version::is_gte_jdk17x_version() ? |
145 |
"Oracle Corporation" : "Sun Microsystems Inc."; |
|
1 | 146 |
#endif |
147 |
} |
|
148 |
||
149 |
||
150 |
const char* Abstract_VM_Version::vm_info_string() { |
|
151 |
switch (Arguments::mode()) { |
|
152 |
case Arguments::_int: |
|
153 |
return UseSharedSpaces ? "interpreted mode, sharing" : "interpreted mode"; |
|
154 |
case Arguments::_mixed: |
|
155 |
return UseSharedSpaces ? "mixed mode, sharing" : "mixed mode"; |
|
156 |
case Arguments::_comp: |
|
157 |
return UseSharedSpaces ? "compiled mode, sharing" : "compiled mode"; |
|
158 |
}; |
|
159 |
ShouldNotReachHere(); |
|
160 |
return ""; |
|
161 |
} |
|
162 |
||
163 |
// NOTE: do *not* use stringStream. this function is called by |
|
164 |
// fatal error handler. if the crash is in native thread, |
|
165 |
// stringStream cannot get resource allocated and will SEGV. |
|
166 |
const char* Abstract_VM_Version::vm_release() { |
|
167 |
return VM_RELEASE; |
|
168 |
} |
|
169 |
||
11720
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
170 |
// 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
|
171 |
// 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
|
172 |
// 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
|
173 |
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
|
174 |
return JRE_RELEASE_VERSION; |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
175 |
} |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
176 |
|
1 | 177 |
#define OS LINUX_ONLY("linux") \ |
178 |
WINDOWS_ONLY("windows") \ |
|
10565 | 179 |
SOLARIS_ONLY("solaris") \ |
22827 | 180 |
AIX_ONLY("aix") \ |
10565 | 181 |
BSD_ONLY("bsd") |
1 | 182 |
|
4013 | 183 |
#ifdef ZERO |
184 |
#define CPU ZERO_LIBARCH |
|
185 |
#else |
|
1 | 186 |
#define CPU IA32_ONLY("x86") \ |
187 |
IA64_ONLY("ia64") \ |
|
188 |
AMD64_ONLY("amd64") \ |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
189 |
ARM_ONLY("arm") \ |
22806 | 190 |
PPC32_ONLY("ppc") \ |
22807 | 191 |
PPC64_ONLY("ppc64") \ |
1 | 192 |
SPARC_ONLY("sparc") |
4013 | 193 |
#endif // ZERO |
1 | 194 |
|
195 |
const char *Abstract_VM_Version::vm_platform_string() { |
|
196 |
return OS "-" CPU; |
|
197 |
} |
|
198 |
||
199 |
const char* Abstract_VM_Version::internal_vm_info_string() { |
|
200 |
#ifndef HOTSPOT_BUILD_USER |
|
201 |
#define HOTSPOT_BUILD_USER unknown |
|
202 |
#endif |
|
203 |
||
204 |
#ifndef HOTSPOT_BUILD_COMPILER |
|
205 |
#ifdef _MSC_VER |
|
206 |
#if _MSC_VER == 1100 |
|
207 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 5.0" |
|
208 |
#elif _MSC_VER == 1200 |
|
209 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 6.0" |
|
210 |
#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
|
211 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 7.1 (VS2003)" |
1 | 212 |
#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
|
213 |
#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
|
214 |
#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
|
215 |
#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
|
216 |
#elif _MSC_VER == 1600 |
ebf30634b326
8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents:
15432
diff
changeset
|
217 |
#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
|
218 |
#elif _MSC_VER == 1700 |
ebf30634b326
8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents:
15432
diff
changeset
|
219 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 11.0 (VS2012)" |
1 | 220 |
#else |
221 |
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER) |
|
222 |
#endif |
|
223 |
#elif defined(__SUNPRO_CC) |
|
224 |
#if __SUNPRO_CC == 0x420 |
|
225 |
#define HOTSPOT_BUILD_COMPILER "Workshop 4.2" |
|
226 |
#elif __SUNPRO_CC == 0x500 |
|
227 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.0 compat=" XSTR(__SUNPRO_CC_COMPAT) |
|
228 |
#elif __SUNPRO_CC == 0x520 |
|
229 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.2 compat=" XSTR(__SUNPRO_CC_COMPAT) |
|
230 |
#elif __SUNPRO_CC == 0x580 |
|
231 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.8" |
|
232 |
#elif __SUNPRO_CC == 0x590 |
|
233 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.9" |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
4013
diff
changeset
|
234 |
#elif __SUNPRO_CC == 0x5100 |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
4013
diff
changeset
|
235 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u1" |
19328
544e1a8278a8
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents:
16358
diff
changeset
|
236 |
#elif __SUNPRO_CC == 0x5120 |
544e1a8278a8
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents:
16358
diff
changeset
|
237 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u3" |
1 | 238 |
#else |
239 |
#define HOTSPOT_BUILD_COMPILER "unknown Workshop:" XSTR(__SUNPRO_CC) |
|
240 |
#endif |
|
241 |
#elif defined(__GNUC__) |
|
242 |
#define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__ |
|
22827 | 243 |
#elif defined(__IBMCPP__) |
244 |
#define HOTSPOT_BUILD_COMPILER "xlC " XSTR(__IBMCPP__) |
|
245 |
||
1 | 246 |
#else |
247 |
#define HOTSPOT_BUILD_COMPILER "unknown compiler" |
|
248 |
#endif |
|
249 |
#endif |
|
250 |
||
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
251 |
#ifndef FLOAT_ARCH |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
252 |
#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
|
253 |
#define FLOAT_ARCH_STR "-sflt" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
254 |
#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
|
255 |
#define FLOAT_ARCH_STR "-e500v2" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
256 |
#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
|
257 |
#define FLOAT_ARCH_STR "-vfp" |
22806 | 258 |
#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
|
259 |
#define FLOAT_ARCH_STR "-hflt" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
260 |
#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
|
261 |
#define FLOAT_ARCH_STR "" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
262 |
#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
|
263 |
#else |
62c896e036da
8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents:
13977
diff
changeset
|
264 |
#define FLOAT_ARCH_STR XSTR(FLOAT_ARCH) |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
265 |
#endif |
1 | 266 |
|
14572
62c896e036da
8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents:
13977
diff
changeset
|
267 |
return VMNAME " (" VM_RELEASE ") for " OS "-" CPU FLOAT_ARCH_STR |
1 | 268 |
" JRE (" JRE_RELEASE_VERSION "), built on " __DATE__ " " __TIME__ |
269 |
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER; |
|
270 |
} |
|
271 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
272 |
const char *Abstract_VM_Version::vm_build_user() { |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
273 |
return HOTSPOT_BUILD_USER; |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
274 |
} |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
275 |
|
1 | 276 |
unsigned int Abstract_VM_Version::jvm_version() { |
277 |
return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) | |
|
278 |
((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) | |
|
279 |
(Abstract_VM_Version::vm_build_number() & 0xFF); |
|
280 |
} |
|
281 |
||
282 |
||
283 |
void VM_Version_init() { |
|
284 |
VM_Version::initialize(); |
|
285 |
||
286 |
#ifndef PRODUCT |
|
287 |
if (PrintMiscellaneous && Verbose) { |
|
288 |
os::print_cpu_info(tty); |
|
289 |
} |
|
290 |
#endif |
|
291 |
} |
|
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
292 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
293 |
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
|
294 |
unsigned int num, |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
295 |
unsigned int den, |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
296 |
unsigned int switch_pt) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
297 |
if (FLAG_IS_DEFAULT(ParallelGCThreads)) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
298 |
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
|
299 |
// 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
|
300 |
// 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
|
301 |
// 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
|
302 |
// 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
|
303 |
// and a chosen fraction of 5/8 |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
304 |
// 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
|
305 |
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
|
306 |
return (ncpus <= switch_pt) ? |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
307 |
ncpus : |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
308 |
(switch_pt + ((ncpus - switch_pt) * num) / den); |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
309 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
310 |
return ParallelGCThreads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
311 |
} |
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 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
314 |
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
|
315 |
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
|
316 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
317 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
318 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
319 |
// 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
|
320 |
// a global flag. |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
321 |
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
|
322 |
if (!_parallel_worker_threads_initialized) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
323 |
if (FLAG_IS_DEFAULT(ParallelGCThreads)) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
324 |
_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
|
325 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
326 |
_parallel_worker_threads = ParallelGCThreads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
327 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
328 |
_parallel_worker_threads_initialized = true; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
329 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
330 |
return _parallel_worker_threads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
331 |
} |