author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46701 | hotspot/src/share/vm/runtime/vm_version.cpp@f559541c0daa |
child 47687 | fb290fd1f9d4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35485
9ee1d7aba342
8146855: Update hotspot sources to recognize Solaris Studio 12u4 compiler
dholmes
parents:
35183
diff
changeset
|
2 |
* Copyright (c) 1998, 2016, 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" |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
35534
diff
changeset
|
26 |
#include "logging/log.hpp" |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
43455
diff
changeset
|
27 |
#include "logging/logStream.hpp" |
7397 | 28 |
#include "memory/universe.hpp" |
29 |
#include "oops/oop.inline.hpp" |
|
30 |
#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
|
31 |
#include "runtime/vm_version.hpp" |
1 | 32 |
|
33 |
const char* Abstract_VM_Version::_s_vm_release = Abstract_VM_Version::vm_release(); |
|
34 |
const char* Abstract_VM_Version::_s_internal_vm_info_string = Abstract_VM_Version::internal_vm_info_string(); |
|
35148 | 35 |
|
36 |
uint64_t Abstract_VM_Version::_features = 0; |
|
37 |
const char* Abstract_VM_Version::_features_string = ""; |
|
38 |
||
1 | 39 |
bool Abstract_VM_Version::_supports_cx8 = false; |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
40 |
bool Abstract_VM_Version::_supports_atomic_getset4 = false; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
41 |
bool Abstract_VM_Version::_supports_atomic_getset8 = false; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
42 |
bool Abstract_VM_Version::_supports_atomic_getadd4 = false; |
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
11720
diff
changeset
|
43 |
bool Abstract_VM_Version::_supports_atomic_getadd8 = false; |
1 | 44 |
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
|
45 |
unsigned int Abstract_VM_Version::_L1_data_cache_line_size = 0; |
1 | 46 |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
47 |
#ifndef HOTSPOT_VERSION_STRING |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
48 |
#error HOTSPOT_VERSION_STRING must be defined |
1 | 49 |
#endif |
24238 | 50 |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
51 |
#ifndef VERSION_MAJOR |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
52 |
#error VERSION_MAJOR must be defined |
24238 | 53 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
54 |
#ifndef VERSION_MINOR |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
55 |
#error VERSION_MINOR must be defined |
24238 | 56 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
57 |
#ifndef VERSION_SECURITY |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
58 |
#error VERSION_SECURITY must be defined |
24238 | 59 |
#endif |
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
60 |
#ifndef VERSION_PATCH |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
61 |
#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
|
62 |
#endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
63 |
#ifndef VERSION_BUILD |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
64 |
#error VERSION_BUILD must be defined |
24238 | 65 |
#endif |
66 |
||
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
67 |
#ifndef VERSION_STRING |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
68 |
#error VERSION_STRING must be defined |
1 | 69 |
#endif |
70 |
||
33977
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
71 |
#ifndef DEBUG_LEVEL |
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
72 |
#error DEBUG_LEVEL must be defined |
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
73 |
#endif |
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
74 |
|
35183
30271b37bd14
8145400: ProjectCreator broken after JEP 223 changes
ctornqvi
parents:
35075
diff
changeset
|
75 |
#define VM_RELEASE HOTSPOT_VERSION_STRING |
1 | 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 |
|
40015
524230a0f4ca
8140723: Remove source code conditionalized on JAVASE_EMBEDDED
dholmes
parents:
40012
diff
changeset
|
113 |
#define VMNAME HOTSPOT_VM_DISTRO " " VMLP 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: |
|
42650 | 134 |
if (UseSharedSpaces) { |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
135 |
if (UseAOT) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
136 |
return "mixed mode, aot, sharing"; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
137 |
#ifdef TIERED |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
138 |
} else if(is_client_compilation_mode_vm()) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
139 |
return "mixed mode, emulated-client, sharing"; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
140 |
#endif |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
141 |
} else { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
142 |
return "mixed mode, sharing"; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
143 |
} |
42650 | 144 |
} else { |
145 |
if (UseAOT) { |
|
146 |
return "mixed mode, aot"; |
|
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
147 |
#ifdef TIERED |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
148 |
} else if(is_client_compilation_mode_vm()) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
149 |
return "mixed mode, emulated-client"; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
150 |
#endif |
42650 | 151 |
} else { |
152 |
return "mixed mode"; |
|
153 |
} |
|
154 |
} |
|
1 | 155 |
case Arguments::_comp: |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
156 |
#ifdef TIERED |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
157 |
if (is_client_compilation_mode_vm()) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
158 |
return UseSharedSpaces ? "compiled mode, emulated-client, sharing" : "compiled mode, emulated-client"; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
159 |
} |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
42664
diff
changeset
|
160 |
#endif |
1 | 161 |
return UseSharedSpaces ? "compiled mode, sharing" : "compiled mode"; |
162 |
}; |
|
163 |
ShouldNotReachHere(); |
|
164 |
return ""; |
|
165 |
} |
|
166 |
||
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 |
} |
|
173 |
||
11720
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
174 |
// 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
|
175 |
// 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
|
176 |
// 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
|
177 |
const char* Abstract_VM_Version::jre_release_version() { |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
178 |
return VERSION_STRING; |
11720
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
179 |
} |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
10738
diff
changeset
|
180 |
|
1 | 181 |
#define OS LINUX_ONLY("linux") \ |
182 |
WINDOWS_ONLY("windows") \ |
|
10565 | 183 |
SOLARIS_ONLY("solaris") \ |
22827 | 184 |
AIX_ONLY("aix") \ |
10565 | 185 |
BSD_ONLY("bsd") |
1 | 186 |
|
29474
81a5c5330d08
8072383: resolve conflicts between open and closed ports
dlong
parents:
29180
diff
changeset
|
187 |
#ifndef CPU |
4013 | 188 |
#ifdef ZERO |
189 |
#define CPU ZERO_LIBARCH |
|
35075
ca79cbf3f106
8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
asmundak
parents:
33977
diff
changeset
|
190 |
#elif defined(PPC64) |
ca79cbf3f106
8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
asmundak
parents:
33977
diff
changeset
|
191 |
#if defined(VM_LITTLE_ENDIAN) |
ca79cbf3f106
8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
asmundak
parents:
33977
diff
changeset
|
192 |
#define CPU "ppc64le" |
ca79cbf3f106
8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
asmundak
parents:
33977
diff
changeset
|
193 |
#else |
ca79cbf3f106
8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
asmundak
parents:
33977
diff
changeset
|
194 |
#define CPU "ppc64" |
42062 | 195 |
#endif // PPC64 |
4013 | 196 |
#else |
42062 | 197 |
#define CPU AARCH64_ONLY("aarch64") \ |
1 | 198 |
AMD64_ONLY("amd64") \ |
42062 | 199 |
IA32_ONLY("x86") \ |
200 |
IA64_ONLY("ia64") \ |
|
201 |
S390_ONLY("s390") \ |
|
1 | 202 |
SPARC_ONLY("sparc") |
42062 | 203 |
#endif // !ZERO |
204 |
#endif // !CPU |
|
1 | 205 |
|
206 |
const char *Abstract_VM_Version::vm_platform_string() { |
|
207 |
return OS "-" CPU; |
|
208 |
} |
|
209 |
||
210 |
const char* Abstract_VM_Version::internal_vm_info_string() { |
|
211 |
#ifndef HOTSPOT_BUILD_USER |
|
212 |
#define HOTSPOT_BUILD_USER unknown |
|
213 |
#endif |
|
214 |
||
215 |
#ifndef HOTSPOT_BUILD_COMPILER |
|
216 |
#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
|
217 |
#if _MSC_VER == 1600 |
16358
ebf30634b326
8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents:
15432
diff
changeset
|
218 |
#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
|
219 |
#elif _MSC_VER == 1700 |
ebf30634b326
8010116: Abstract_VM_Version::internal_vm_info_string() should recognize VS2010 and VS2012
kmo
parents:
15432
diff
changeset
|
220 |
#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
|
221 |
#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
|
222 |
#define HOTSPOT_BUILD_COMPILER "MS VC++ 12.0 (VS2013)" |
1 | 223 |
#else |
224 |
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER) |
|
225 |
#endif |
|
226 |
#elif defined(__SUNPRO_CC) |
|
227 |
#if __SUNPRO_CC == 0x420 |
|
228 |
#define HOTSPOT_BUILD_COMPILER "Workshop 4.2" |
|
229 |
#elif __SUNPRO_CC == 0x500 |
|
230 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.0 compat=" XSTR(__SUNPRO_CC_COMPAT) |
|
231 |
#elif __SUNPRO_CC == 0x520 |
|
232 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.2 compat=" XSTR(__SUNPRO_CC_COMPAT) |
|
233 |
#elif __SUNPRO_CC == 0x580 |
|
234 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.8" |
|
235 |
#elif __SUNPRO_CC == 0x590 |
|
236 |
#define HOTSPOT_BUILD_COMPILER "Workshop 5.9" |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
4013
diff
changeset
|
237 |
#elif __SUNPRO_CC == 0x5100 |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
4013
diff
changeset
|
238 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u1" |
19328
544e1a8278a8
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents:
16358
diff
changeset
|
239 |
#elif __SUNPRO_CC == 0x5120 |
544e1a8278a8
8023287: HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
dcubed
parents:
16358
diff
changeset
|
240 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u3" |
35485
9ee1d7aba342
8146855: Update hotspot sources to recognize Solaris Studio 12u4 compiler
dholmes
parents:
35183
diff
changeset
|
241 |
#elif __SUNPRO_CC == 0x5130 |
9ee1d7aba342
8146855: Update hotspot sources to recognize Solaris Studio 12u4 compiler
dholmes
parents:
35183
diff
changeset
|
242 |
#define HOTSPOT_BUILD_COMPILER "Sun Studio 12u4" |
1 | 243 |
#else |
244 |
#define HOTSPOT_BUILD_COMPILER "unknown Workshop:" XSTR(__SUNPRO_CC) |
|
245 |
#endif |
|
246 |
#elif defined(__GNUC__) |
|
247 |
#define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__ |
|
22827 | 248 |
#elif defined(__IBMCPP__) |
249 |
#define HOTSPOT_BUILD_COMPILER "xlC " XSTR(__IBMCPP__) |
|
250 |
||
1 | 251 |
#else |
252 |
#define HOTSPOT_BUILD_COMPILER "unknown compiler" |
|
253 |
#endif |
|
254 |
#endif |
|
255 |
||
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
256 |
#ifndef FLOAT_ARCH |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
257 |
#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
|
258 |
#define FLOAT_ARCH_STR "-sflt" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
259 |
#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
|
260 |
#define FLOAT_ARCH_STR "" |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
261 |
#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
|
262 |
#else |
62c896e036da
8003591: Abstract_VM_Version::internal_vm_info_string needs to stringify FLOAT_ARCH for ease of use
dholmes
parents:
13977
diff
changeset
|
263 |
#define FLOAT_ARCH_STR XSTR(FLOAT_ARCH) |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
264 |
#endif |
1 | 265 |
|
35453
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
266 |
#define INTERNAL_VERSION_SUFFIX VM_RELEASE ")" \ |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
267 |
" for " OS "-" CPU FLOAT_ARCH_STR \ |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
268 |
" JRE (" VERSION_STRING "), built on " __DATE__ " " __TIME__ \ |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
269 |
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
270 |
|
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
271 |
return strcmp(DEBUG_LEVEL, "release") == 0 |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
272 |
? VMNAME " (" INTERNAL_VERSION_SUFFIX |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
273 |
: VMNAME " (" DEBUG_LEVEL " " INTERNAL_VERSION_SUFFIX; |
1 | 274 |
} |
275 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
276 |
const char *Abstract_VM_Version::vm_build_user() { |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
277 |
return HOTSPOT_BUILD_USER; |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
278 |
} |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
279 |
|
33977
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
280 |
const char *Abstract_VM_Version::jdk_debug_level() { |
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
281 |
return DEBUG_LEVEL; |
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
282 |
} |
a27f0d8a7861
8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents:
33976
diff
changeset
|
283 |
|
35453
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
284 |
const char *Abstract_VM_Version::printable_jdk_debug_level() { |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
285 |
// Debug level is not printed for "release" builds |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
286 |
return strcmp(DEBUG_LEVEL, "release") == 0 ? "" : DEBUG_LEVEL " "; |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
287 |
} |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35232
diff
changeset
|
288 |
|
1 | 289 |
unsigned int Abstract_VM_Version::jvm_version() { |
290 |
return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) | |
|
291 |
((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) | |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30585
diff
changeset
|
292 |
((Abstract_VM_Version::vm_security_version() & 0xFF) << 8) | |
1 | 293 |
(Abstract_VM_Version::vm_build_number() & 0xFF); |
294 |
} |
|
295 |
||
296 |
||
297 |
void VM_Version_init() { |
|
298 |
VM_Version::initialize(); |
|
299 |
||
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
35534
diff
changeset
|
300 |
if (log_is_enabled(Info, os, cpu)) { |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
35534
diff
changeset
|
301 |
char buf[1024]; |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
35534
diff
changeset
|
302 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
43455
diff
changeset
|
303 |
LogStream ls(Log(os, cpu)::info()); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
43455
diff
changeset
|
304 |
os::print_cpu_info(&ls, buf, sizeof(buf)); |
1 | 305 |
} |
306 |
} |
|
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
307 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
308 |
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
|
309 |
unsigned int num, |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
310 |
unsigned int den, |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
311 |
unsigned int switch_pt) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
312 |
if (FLAG_IS_DEFAULT(ParallelGCThreads)) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
313 |
assert(ParallelGCThreads == 0, "Default ParallelGCThreads is not 0"); |
38175
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
314 |
unsigned int threads; |
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
315 |
// 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
|
316 |
// 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
|
317 |
// 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
|
318 |
// 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
|
319 |
// and a chosen fraction of 5/8 |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
320 |
// use 8 + (72 - 8) * (5/8) == 48 worker threads. |
40012
f69cfe79fe98
8161993: G1 crashes if active_processor_count changes during startup
tschatzl
parents:
38241
diff
changeset
|
321 |
unsigned int ncpus = (unsigned int) os::initial_active_processor_count(); |
38175
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
322 |
threads = (ncpus <= switch_pt) ? |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
323 |
ncpus : |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
324 |
(switch_pt + ((ncpus - switch_pt) * num) / den); |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
325 |
#ifndef _LP64 |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
326 |
// On 32-bit binaries the virtual address space available to the JVM |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
327 |
// is usually limited to 2-3 GB (depends on the platform). |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
328 |
// Do not use up address space with too many threads (stacks and per-thread |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
329 |
// data). Note that x86 apps running on Win64 have 2 stacks per thread. |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
330 |
// GC may more generally scale down threads by max heap size (etc), but the |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
331 |
// consequences of over-provisioning threads are higher on 32-bit JVMS, |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
332 |
// so add hard limit here: |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
333 |
threads = MIN2(threads, (2*switch_pt)); |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
334 |
#endif |
4e2bff1a5467
8134889: Kitchensink stress test crashes with out of memory error
drwhite
parents:
37430
diff
changeset
|
335 |
return threads; |
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
336 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
337 |
return ParallelGCThreads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
338 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
339 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
340 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
341 |
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
|
342 |
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
|
343 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
344 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
345 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
346 |
// 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
|
347 |
// a global flag. |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
348 |
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
|
349 |
if (!_parallel_worker_threads_initialized) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
350 |
if (FLAG_IS_DEFAULT(ParallelGCThreads)) { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
351 |
_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
|
352 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
353 |
_parallel_worker_threads = ParallelGCThreads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
354 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
355 |
_parallel_worker_threads_initialized = true; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
356 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
357 |
return _parallel_worker_threads; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
358 |
} |