author | iris |
Mon, 13 Jul 2015 13:23:31 -0700 | |
changeset 33962 | a96fba52fc81 |
parent 31356 | 55ee785c49c5 |
parent 33959 | 36f534ca18c0 |
child 33964 | 6d5466bf96ae |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
2 |
* Copyright (c) 1998, 2015, 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" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25337
diff
changeset
|
29 |
#include "runtime/vm_version.hpp" |
1 | 30 |
|
31 |
const char* Abstract_VM_Version::_s_vm_release = Abstract_VM_Version::vm_release(); |
|
32 |
const char* Abstract_VM_Version::_s_internal_vm_info_string = Abstract_VM_Version::internal_vm_info_string(); |
|
33 |
bool Abstract_VM_Version::_supports_cx8 = false; |
|
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
34 |
bool Abstract_VM_Version::_supports_atomic_getset4 = false; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
35 |
bool Abstract_VM_Version::_supports_atomic_getset8 = false; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
36 |
bool Abstract_VM_Version::_supports_atomic_getadd4 = false; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
37 |
bool Abstract_VM_Version::_supports_atomic_getadd8 = false; |
1 | 38 |
unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U; |
25633
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25337
diff
changeset
|
39 |
unsigned int Abstract_VM_Version::_L1_data_cache_line_size = 0; |
10267 | 40 |
int Abstract_VM_Version::_reserve_for_allocation_prefetch = 0; |
1 | 41 |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
42 |
#ifndef HOTSPOT_VERSION_STRING |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
43 |
#error HOTSPOT_VERSION_STRING must be defined |
1 | 44 |
#endif |
24238 | 45 |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
46 |
#ifndef VERSION_MAJOR |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
47 |
#error VERSION_MAJOR must be defined |
24238 | 48 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
49 |
#ifndef VERSION_MINOR |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
50 |
#error VERSION_MINOR must be defined |
24238 | 51 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
52 |
#ifndef VERSION_SECURITY |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
53 |
#error VERSION_SECURITY must be defined |
24238 | 54 |
#endif |
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
55 |
#ifndef VERSION_PATCH |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
56 |
#error VERSION_PATCH must be defined |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
57 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
58 |
#ifndef VERSION_BUILD |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
59 |
#error VERSION_BUILD must be defined |
24238 | 60 |
#endif |
61 |
||
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
62 |
#ifndef VERSION_STRING |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
63 |
#error VERSION_STRING must be defined |
1 | 64 |
#endif |
65 |
||
25337
31eeda0060a9
8043541: 'fastdebug' is printed twice in java -version
amurillo
parents:
25057
diff
changeset
|
66 |
// NOTE: Builds within Visual Studio do not define the build target in |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
67 |
// HOTSPOT_VERSION_STRING, so it must be done here |
25337
31eeda0060a9
8043541: 'fastdebug' is printed twice in java -version
amurillo
parents:
25057
diff
changeset
|
68 |
#if defined(VISUAL_STUDIO_BUILD) && !defined(PRODUCT) |
31eeda0060a9
8043541: 'fastdebug' is printed twice in java -version
amurillo
parents:
25057
diff
changeset
|
69 |
#ifndef HOTSPOT_BUILD_TARGET |
31eeda0060a9
8043541: 'fastdebug' is printed twice in java -version
amurillo
parents:
25057
diff
changeset
|
70 |
#error HOTSPOT_BUILD_TARGET must be defined |
31eeda0060a9
8043541: 'fastdebug' is printed twice in java -version
amurillo
parents:
25057
diff
changeset
|
71 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
72 |
#define VM_RELEASE HOTSPOT_VERSION_STRING "-" HOTSPOT_BUILD_TARGET |
25337
31eeda0060a9
8043541: 'fastdebug' is printed twice in java -version
amurillo
parents:
25057
diff
changeset
|
73 |
#else |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
74 |
#define VM_RELEASE HOTSPOT_VERSION_STRING |
1 | 75 |
#endif |
76 |
||
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
77 |
// HOTSPOT_VERSION_STRING equals the JDK VERSION_STRING (unless overridden |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
78 |
// in a standalone build). |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
79 |
int Abstract_VM_Version::_vm_major_version = VERSION_MAJOR; |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
80 |
int Abstract_VM_Version::_vm_minor_version = VERSION_MINOR; |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
81 |
int Abstract_VM_Version::_vm_security_version = VERSION_SECURITY; |
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
82 |
int Abstract_VM_Version::_vm_patch_version = VERSION_PATCH; |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
83 |
int Abstract_VM_Version::_vm_build_number = VERSION_BUILD; |
30585 | 84 |
unsigned int Abstract_VM_Version::_parallel_worker_threads = 0; |
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
85 |
bool Abstract_VM_Version::_parallel_worker_threads_initialized = false; |
1 | 86 |
|
87 |
#if defined(_LP64) |
|
88 |
#define VMLP "64-Bit " |
|
89 |
#else |
|
90 |
#define VMLP "" |
|
91 |
#endif |
|
92 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
93 |
#ifndef VMTYPE |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
94 |
#ifdef TIERED |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
95 |
#define VMTYPE "Server" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
96 |
#else // TIERED |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
97 |
#ifdef ZERO |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
98 |
#ifdef SHARK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
99 |
#define VMTYPE "Shark" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
100 |
#else // SHARK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
101 |
#define VMTYPE "Zero" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
102 |
#endif // SHARK |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
103 |
#else // ZERO |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
104 |
#define VMTYPE COMPILER1_PRESENT("Client") \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
105 |
COMPILER2_PRESENT("Server") |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
106 |
#endif // ZERO |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
107 |
#endif // TIERED |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13886
diff
changeset
|
108 |
#endif |
1 | 109 |
|
110 |
#ifndef HOTSPOT_VM_DISTRO |
|
111 |
#error HOTSPOT_VM_DISTRO must be defined |
|
112 |
#endif |
|
10738
cc19612c6b9f
7096278: Update the VM name to indicate it is an embedded build
dholmes
parents:
10565
diff
changeset
|
113 |
#define VMNAME HOTSPOT_VM_DISTRO " " VMLP EMBEDDED_ONLY("Embedded ") VMTYPE " VM" |
1 | 114 |
|
115 |
const char* Abstract_VM_Version::vm_name() { |
|
116 |
return VMNAME; |
|
117 |
} |
|
118 |
||
119 |
||
120 |
const char* Abstract_VM_Version::vm_vendor() { |
|
121 |
#ifdef VENDOR |
|
122 |
return XSTR(VENDOR); |
|
123 |
#else |
|
25057 | 124 |
return "Oracle Corporation"; |
1 | 125 |
#endif |
126 |
} |
|
127 |
||
128 |
||
129 |
const char* Abstract_VM_Version::vm_info_string() { |
|
130 |
switch (Arguments::mode()) { |
|
131 |
case Arguments::_int: |
|
132 |
return UseSharedSpaces ? "interpreted mode, sharing" : "interpreted mode"; |
|
133 |
case Arguments::_mixed: |
|
134 |
return UseSharedSpaces ? "mixed mode, sharing" : "mixed mode"; |
|
135 |
case Arguments::_comp: |
|
136 |
return UseSharedSpaces ? "compiled mode, sharing" : "compiled mode"; |
|
137 |
}; |
|
138 |
ShouldNotReachHere(); |
|
139 |
return ""; |
|
140 |
} |
|
141 |
||
142 |
// NOTE: do *not* use stringStream. this function is called by |
|
143 |
// fatal error handler. if the crash is in native thread, |
|
144 |
// stringStream cannot get resource allocated and will SEGV. |
|
145 |
const char* Abstract_VM_Version::vm_release() { |
|
146 |
return VM_RELEASE; |
|
147 |
} |
|
148 |
||
11720
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
149 |
// 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
|
150 |
// 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
|
151 |
// 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
|
152 |
const char* Abstract_VM_Version::jre_release_version() { |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
153 |
return VERSION_STRING; |
11720
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
154 |
} |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
155 |
|
1 | 156 |
#define OS LINUX_ONLY("linux") \ |
157 |
WINDOWS_ONLY("windows") \ |
|
10565 | 158 |
SOLARIS_ONLY("solaris") \ |
22827 | 159 |
AIX_ONLY("aix") \ |
10565 | 160 |
BSD_ONLY("bsd") |
1 | 161 |
|
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
162 |
#ifndef CPU |
4013 | 163 |
#ifdef ZERO |
164 |
#define CPU ZERO_LIBARCH |
|
165 |
#else |
|
1 | 166 |
#define CPU IA32_ONLY("x86") \ |
167 |
IA64_ONLY("ia64") \ |
|
168 |
AMD64_ONLY("amd64") \ |
|
22807 | 169 |
PPC64_ONLY("ppc64") \ |
29180 | 170 |
AARCH64_ONLY("aarch64") \ |
1 | 171 |
SPARC_ONLY("sparc") |
4013 | 172 |
#endif // ZERO |
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
173 |
#endif |
1 | 174 |
|
175 |
const char *Abstract_VM_Version::vm_platform_string() { |
|
176 |
return OS "-" CPU; |
|
177 |
} |
|
178 |
||
179 |
const char* Abstract_VM_Version::internal_vm_info_string() { |
|
180 |
#ifndef HOTSPOT_BUILD_USER |
|
181 |
#define HOTSPOT_BUILD_USER unknown |
|
182 |
#endif |
|
183 |
||
184 |
#ifndef HOTSPOT_BUILD_COMPILER |
|
185 |
#ifdef _MSC_VER |
|
25052
66e77563d9e7
8043492: ad_x86_64_misc.obj : error LNK2011: precompiled object not linked in; image may not run
ctornqvi
parents:
24424
diff
changeset
|
186 |
#if _MSC_VER == 1600 |
16358
ebf30634b326
8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents:
15432
diff
changeset
|
187 |
#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
|
188 |
#elif _MSC_VER == 1700 |
ebf30634b326
8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents:
15432
diff
changeset
|
189 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 11.0 (VS2012)" |
25052
66e77563d9e7
8043492: ad_x86_64_misc.obj : error LNK2011: precompiled object not linked in; image may not run
ctornqvi
parents:
24424
diff
changeset
|
190 |
#elif _MSC_VER == 1800 |
66e77563d9e7
8043492: ad_x86_64_misc.obj : error LNK2011: precompiled object not linked in; image may not run
ctornqvi
parents:
24424
diff
changeset
|
191 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 12.0 (VS2013)" |
1 | 192 |
#else |
193 |
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER) |
|
194 |
#endif |
|
195 |
#elif defined(__SUNPRO_CC) |
|
196 |
#if __SUNPRO_CC == 0x420 |
|
197 |
#define HOTSPOT_BUILD_COMPILER "Workshop 4.2" |
|
198 |
#elif __SUNPRO_CC == 0x500 |
|
199 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.0 compat=" XSTR(__SUNPRO_CC_COMPAT) |
|
200 |
#elif __SUNPRO_CC == 0x520 |
|
201 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.2 compat=" XSTR(__SUNPRO_CC_COMPAT) |
|
202 |
#elif __SUNPRO_CC == 0x580 |
|
203 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.8" |
|
204 |
#elif __SUNPRO_CC == 0x590 |
|
205 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.9" |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
4013
diff
changeset
|
206 |
#elif __SUNPRO_CC == 0x5100 |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
4013
diff
changeset
|
207 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u1" |
19328
544e1a8278a8
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents:
16358
diff
changeset
|
208 |
#elif __SUNPRO_CC == 0x5120 |
544e1a8278a8
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents:
16358
diff
changeset
|
209 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u3" |
1 | 210 |
#else |
211 |
#define HOTSPOT_BUILD_COMPILER "unknown Workshop:" XSTR(__SUNPRO_CC) |
|
212 |
#endif |
|
213 |
#elif defined(__GNUC__) |
|
214 |
#define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__ |
|
22827 | 215 |
#elif defined(__IBMCPP__) |
216 |
#define HOTSPOT_BUILD_COMPILER "xlC " XSTR(__IBMCPP__) |
|
217 |
||
1 | 218 |
#else |
219 |
#define HOTSPOT_BUILD_COMPILER "unknown compiler" |
|
220 |
#endif |
|
221 |
#endif |
|
222 |
||
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
223 |
#ifndef FLOAT_ARCH |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
224 |
#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
|
225 |
#define FLOAT_ARCH_STR "-sflt" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
226 |
#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
|
227 |
#define FLOAT_ARCH_STR "" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
228 |
#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
|
229 |
#else |
62c896e036da
8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents:
13977
diff
changeset
|
230 |
#define FLOAT_ARCH_STR XSTR(FLOAT_ARCH) |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
231 |
#endif |
1 | 232 |
|
14572
62c896e036da
8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents:
13977
diff
changeset
|
233 |
return VMNAME " (" VM_RELEASE ") for " OS "-" CPU FLOAT_ARCH_STR |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
234 |
" JRE (" VERSION_STRING "), built on " __DATE__ " " __TIME__ |
1 | 235 |
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER; |
236 |
} |
|
237 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
238 |
const char *Abstract_VM_Version::vm_build_user() { |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
239 |
return HOTSPOT_BUILD_USER; |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
240 |
} |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
241 |
|
1 | 242 |
unsigned int Abstract_VM_Version::jvm_version() { |
243 |
return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) | |
|
244 |
((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) | |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
245 |
((Abstract_VM_Version::vm_security_version() & 0xFF) << 8) | |
1 | 246 |
(Abstract_VM_Version::vm_build_number() & 0xFF); |
247 |
} |
|
248 |
||
249 |
||
250 |
void VM_Version_init() { |
|
251 |
VM_Version::initialize(); |
|
252 |
||
253 |
#ifndef PRODUCT |
|
254 |
if (PrintMiscellaneous && Verbose) { |
|
31356
55ee785c49c5
8085865: hs_err improvement: Printing /proc/cpuinfo makes too long hs_err files
coleenp
parents:
30585
diff
changeset
|
255 |
char buf[512]; |
55ee785c49c5
8085865: hs_err improvement: Printing /proc/cpuinfo makes too long hs_err files
coleenp
parents:
30585
diff
changeset
|
256 |
os::print_cpu_info(tty, buf, sizeof(buf)); |
1 | 257 |
} |
258 |
#endif |
|
259 |
} |
|
183
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 |
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
|
262 |
unsigned int num, |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
263 |
unsigned int den, |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
264 |
unsigned int switch_pt) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
265 |
if (FLAG_IS_DEFAULT(ParallelGCThreads)) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
266 |
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
|
267 |
// 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
|
268 |
// 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
|
269 |
// 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
|
270 |
// 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
|
271 |
// and a chosen fraction of 5/8 |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
272 |
// 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
|
273 |
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
|
274 |
return (ncpus <= switch_pt) ? |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
275 |
ncpus : |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
276 |
(switch_pt + ((ncpus - switch_pt) * num) / den); |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
277 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
278 |
return ParallelGCThreads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
279 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
280 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
281 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
282 |
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
|
283 |
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
|
284 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
285 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
286 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
287 |
// 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
|
288 |
// a global flag. |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
289 |
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
|
290 |
if (!_parallel_worker_threads_initialized) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
291 |
if (FLAG_IS_DEFAULT(ParallelGCThreads)) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
292 |
_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
|
293 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
294 |
_parallel_worker_threads = ParallelGCThreads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
295 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
296 |
_parallel_worker_threads_initialized = true; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
297 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
298 |
return _parallel_worker_threads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
299 |
} |