author | kvn |
Thu, 19 May 2016 11:01:38 -0700 | |
changeset 38304 | 6c8815222785 |
parent 38220 | 8d86b82e0ac7 |
child 41323 | ddd5600d4762 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
2 |
* Copyright (c) 1997, 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:
5431
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5431
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:
5431
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
14631
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
13969
diff
changeset
|
26 |
#include "asm/macroAssembler.inline.hpp" |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
27 |
#include "logging/log.hpp" |
7397 | 28 |
#include "memory/resourceArea.hpp" |
29 |
#include "runtime/java.hpp" |
|
25949 | 30 |
#include "runtime/os.hpp" |
7397 | 31 |
#include "runtime/stubCodeGenerator.hpp" |
32 |
#include "vm_version_sparc.hpp" |
|
1 | 33 |
|
30217
5eb8768d86c4
8076968: PICL based initialization of L2 cache line size on some SPARC systems is incorrect
iveresov
parents:
30209
diff
changeset
|
34 |
unsigned int VM_Version::_L2_data_cache_line_size = 0; |
1 | 35 |
|
36 |
void VM_Version::initialize() { |
|
35148 | 37 |
assert(_features != 0, "System pre-initialization is not complete."); |
35043
30543d2a0a20
8133023: ParallelGCThreads is not calculated correctly
jmasa
parents:
34205
diff
changeset
|
38 |
guarantee(VM_Version::has_v9(), "only SPARC v9 is supported"); |
30543d2a0a20
8133023: ParallelGCThreads is not calculated correctly
jmasa
parents:
34205
diff
changeset
|
39 |
|
1 | 40 |
PrefetchCopyIntervalInBytes = prefetch_copy_interval_in_bytes(); |
41 |
PrefetchScanIntervalInBytes = prefetch_scan_interval_in_bytes(); |
|
42 |
PrefetchFieldsAhead = prefetch_fields_ahead(); |
|
43 |
||
44 |
// Allocation prefetch settings |
|
10267 | 45 |
intx cache_line_size = prefetch_data_size(); |
1 | 46 |
if( cache_line_size > AllocatePrefetchStepSize ) |
47 |
AllocatePrefetchStepSize = cache_line_size; |
|
10267 | 48 |
|
1 | 49 |
AllocatePrefetchDistance = allocate_prefetch_distance(); |
50 |
AllocatePrefetchStyle = allocate_prefetch_style(); |
|
51 |
||
38304
6c8815222785
8157184: java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java failed with a fatal error
kvn
parents:
38220
diff
changeset
|
52 |
if (!has_blk_init() || cache_line_size <= 0) { |
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
53 |
if (AllocatePrefetchInstr == 1) { |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
54 |
warning("BIS instructions required for AllocatePrefetchInstr 1 unavailable"); |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
55 |
FLAG_SET_DEFAULT(AllocatePrefetchInstr, 0); |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
56 |
} |
10252 | 57 |
} |
58 |
||
1 | 59 |
UseSSE = 0; // Only on x86 and x64 |
60 |
||
10267 | 61 |
_supports_cx8 = has_v9(); |
13886
8d82c4dfa722
7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents:
13481
diff
changeset
|
62 |
_supports_atomic_getset4 = true; // swap instruction |
1 | 63 |
|
7704 | 64 |
if (is_niagara()) { |
1 | 65 |
// Indirect branch is the same cost as direct |
66 |
if (FLAG_IS_DEFAULT(UseInlineCaches)) { |
|
2342 | 67 |
FLAG_SET_DEFAULT(UseInlineCaches, false); |
1 | 68 |
} |
7704 | 69 |
// Align loops on a single instruction boundary. |
70 |
if (FLAG_IS_DEFAULT(OptoLoopAlignment)) { |
|
71 |
FLAG_SET_DEFAULT(OptoLoopAlignment, 4); |
|
72 |
} |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
183
diff
changeset
|
73 |
#ifdef _LP64 |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2253
diff
changeset
|
74 |
// 32-bit oops don't make sense for the 64-bit VM on sparc |
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2253
diff
changeset
|
75 |
// since the 32-bit VM has the same registers and smaller objects. |
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2253
diff
changeset
|
76 |
Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes); |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13888
diff
changeset
|
77 |
Universe::set_narrow_klass_shift(LogKlassAlignmentInBytes); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
183
diff
changeset
|
78 |
#endif // _LP64 |
1 | 79 |
#ifdef COMPILER2 |
80 |
// Indirect branch is the same cost as direct |
|
81 |
if (FLAG_IS_DEFAULT(UseJumpTables)) { |
|
2342 | 82 |
FLAG_SET_DEFAULT(UseJumpTables, true); |
1 | 83 |
} |
84 |
// Single-issue, so entry and loop tops are |
|
85 |
// aligned on a single instruction boundary |
|
86 |
if (FLAG_IS_DEFAULT(InteriorEntryAlignment)) { |
|
2342 | 87 |
FLAG_SET_DEFAULT(InteriorEntryAlignment, 4); |
1 | 88 |
} |
7704 | 89 |
if (is_niagara_plus()) { |
38304
6c8815222785
8157184: java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java failed with a fatal error
kvn
parents:
38220
diff
changeset
|
90 |
if (has_blk_init() && (cache_line_size > 0) && UseTLAB && |
10267 | 91 |
FLAG_IS_DEFAULT(AllocatePrefetchInstr)) { |
92 |
// Use BIS instruction for TLAB allocation prefetch. |
|
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
93 |
FLAG_SET_DEFAULT(AllocatePrefetchInstr, 1); |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
94 |
} |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
95 |
if (FLAG_IS_DEFAULT(AllocatePrefetchDistance)) { |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
96 |
if (AllocatePrefetchInstr == 0) { |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
97 |
// Use different prefetch distance without BIS |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
98 |
FLAG_SET_DEFAULT(AllocatePrefetchDistance, 256); |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
99 |
} else { |
10267 | 100 |
// Use smaller prefetch distance with BIS |
5251
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
5249
diff
changeset
|
101 |
FLAG_SET_DEFAULT(AllocatePrefetchDistance, 64); |
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
5249
diff
changeset
|
102 |
} |
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
5249
diff
changeset
|
103 |
} |
10267 | 104 |
if (is_T4()) { |
105 |
// Double number of prefetched cache lines on T4 |
|
106 |
// since L2 cache line size is smaller (32 bytes). |
|
107 |
if (FLAG_IS_DEFAULT(AllocatePrefetchLines)) { |
|
108 |
FLAG_SET_ERGO(intx, AllocatePrefetchLines, AllocatePrefetchLines*2); |
|
109 |
} |
|
110 |
if (FLAG_IS_DEFAULT(AllocateInstancePrefetchLines)) { |
|
111 |
FLAG_SET_ERGO(intx, AllocateInstancePrefetchLines, AllocateInstancePrefetchLines*2); |
|
112 |
} |
|
113 |
} |
|
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
114 |
} |
10267 | 115 |
|
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
116 |
if (AllocatePrefetchInstr == 1) { |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
117 |
// Use allocation prefetch style 3 because BIS instructions |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
118 |
// require aligned memory addresses. |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
119 |
FLAG_SET_DEFAULT(AllocatePrefetchStyle, 3); |
1 | 120 |
} |
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
38054
diff
changeset
|
121 |
#endif /* COMPILER2 */ |
1 | 122 |
} |
123 |
||
2255
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
124 |
// Use hardware population count instruction if available. |
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
125 |
if (has_hardware_popc()) { |
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
126 |
if (FLAG_IS_DEFAULT(UsePopCountInstruction)) { |
2342 | 127 |
FLAG_SET_DEFAULT(UsePopCountInstruction, true); |
2255
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
128 |
} |
10252 | 129 |
} else if (UsePopCountInstruction) { |
130 |
warning("POPC instruction is not available on this CPU"); |
|
131 |
FLAG_SET_DEFAULT(UsePopCountInstruction, false); |
|
132 |
} |
|
133 |
||
134 |
// T4 and newer Sparc cpus have new compare and branch instruction. |
|
135 |
if (has_cbcond()) { |
|
136 |
if (FLAG_IS_DEFAULT(UseCBCond)) { |
|
137 |
FLAG_SET_DEFAULT(UseCBCond, true); |
|
138 |
} |
|
139 |
} else if (UseCBCond) { |
|
140 |
warning("CBCOND instruction is not available on this CPU"); |
|
141 |
FLAG_SET_DEFAULT(UseCBCond, false); |
|
2255
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
142 |
} |
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
143 |
|
10501 | 144 |
assert(BlockZeroingLowLimit > 0, "invalid value"); |
26579
522d6486f410
8056124: Hotspot should use PICL interface to get cacheline size on SPARC
iveresov
parents:
25949
diff
changeset
|
145 |
if (has_block_zeroing() && cache_line_size > 0) { |
10501 | 146 |
if (FLAG_IS_DEFAULT(UseBlockZeroing)) { |
147 |
FLAG_SET_DEFAULT(UseBlockZeroing, true); |
|
148 |
} |
|
149 |
} else if (UseBlockZeroing) { |
|
150 |
warning("BIS zeroing instructions are not available on this CPU"); |
|
151 |
FLAG_SET_DEFAULT(UseBlockZeroing, false); |
|
152 |
} |
|
153 |
||
10512 | 154 |
assert(BlockCopyLowLimit > 0, "invalid value"); |
26579
522d6486f410
8056124: Hotspot should use PICL interface to get cacheline size on SPARC
iveresov
parents:
25949
diff
changeset
|
155 |
if (has_block_zeroing() && cache_line_size > 0) { // has_blk_init() && is_T4(): core's local L2 cache |
10512 | 156 |
if (FLAG_IS_DEFAULT(UseBlockCopy)) { |
157 |
FLAG_SET_DEFAULT(UseBlockCopy, true); |
|
158 |
} |
|
159 |
} else if (UseBlockCopy) { |
|
160 |
warning("BIS instructions are not available or expensive on this CPU"); |
|
161 |
FLAG_SET_DEFAULT(UseBlockCopy, false); |
|
162 |
} |
|
163 |
||
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5702
diff
changeset
|
164 |
#ifdef COMPILER2 |
10252 | 165 |
// T4 and newer Sparc cpus have fast RDPC. |
166 |
if (has_fast_rdpc() && FLAG_IS_DEFAULT(UseRDPCForConstantTableBase)) { |
|
10977
4726185d3e93
7104561: UseRDPCForConstantTableBase doesn't work after shorten branches changes
twisti
parents:
10512
diff
changeset
|
167 |
FLAG_SET_DEFAULT(UseRDPCForConstantTableBase, true); |
10252 | 168 |
} |
169 |
||
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5702
diff
changeset
|
170 |
// Currently not supported anywhere. |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5702
diff
changeset
|
171 |
FLAG_SET_DEFAULT(UseFPUForSpilling, false); |
10264 | 172 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10977
diff
changeset
|
173 |
MaxVectorSize = 8; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10977
diff
changeset
|
174 |
|
10264 | 175 |
assert((InteriorEntryAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size"); |
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5702
diff
changeset
|
176 |
#endif |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5702
diff
changeset
|
177 |
|
10264 | 178 |
assert((CodeEntryAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size"); |
179 |
assert((OptoLoopAlignment % relocInfo::addr_unit()) == 0, "alignment is not a multiple of NOP size"); |
|
180 |
||
1 | 181 |
char buf[512]; |
31515 | 182 |
jio_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s", |
10252 | 183 |
(has_v9() ? ", v9" : (has_v8() ? ", v8" : "")), |
2255
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
184 |
(has_hardware_popc() ? ", popc" : ""), |
10252 | 185 |
(has_vis1() ? ", vis1" : ""), |
186 |
(has_vis2() ? ", vis2" : ""), |
|
187 |
(has_vis3() ? ", vis3" : ""), |
|
188 |
(has_blk_init() ? ", blk_init" : ""), |
|
189 |
(has_cbcond() ? ", cbcond" : ""), |
|
22505 | 190 |
(has_aes() ? ", aes" : ""), |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
191 |
(has_sha1() ? ", sha1" : ""), |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
192 |
(has_sha256() ? ", sha256" : ""), |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
193 |
(has_sha512() ? ", sha512" : ""), |
31515 | 194 |
(has_crc32c() ? ", crc32c" : ""), |
10252 | 195 |
(is_ultra3() ? ", ultra3" : ""), |
196 |
(is_sun4v() ? ", sun4v" : ""), |
|
197 |
(is_niagara_plus() ? ", niagara_plus" : (is_niagara() ? ", niagara" : "")), |
|
198 |
(is_sparc64() ? ", sparc64" : ""), |
|
2253
30268d00878e
6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents:
670
diff
changeset
|
199 |
(!has_hardware_mul32() ? ", no-mul32" : ""), |
30268d00878e
6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents:
670
diff
changeset
|
200 |
(!has_hardware_div32() ? ", no-div32" : ""), |
1 | 201 |
(!has_hardware_fsmuld() ? ", no-fsmuld" : "")); |
202 |
||
203 |
// buf is started with ", " or is empty |
|
35148 | 204 |
_features_string = os::strdup(strlen(buf) > 2 ? buf + 2 : buf); |
1 | 205 |
|
10027 | 206 |
// UseVIS is set to the smallest of what hardware supports and what |
207 |
// the command line requires. I.e., you cannot set UseVIS to 3 on |
|
208 |
// older UltraSparc which do not support it. |
|
209 |
if (UseVIS > 3) UseVIS=3; |
|
210 |
if (UseVIS < 0) UseVIS=0; |
|
211 |
if (!has_vis3()) // Drop to 2 if no VIS3 support |
|
212 |
UseVIS = MIN2((intx)2,UseVIS); |
|
213 |
if (!has_vis2()) // Drop to 1 if no VIS2 support |
|
214 |
UseVIS = MIN2((intx)1,UseVIS); |
|
215 |
if (!has_vis1()) // Drop to 0 if no VIS1 support |
|
216 |
UseVIS = 0; |
|
217 |
||
24328
bddefb356fba
8035936: SIGBUS in StubRoutines::aesencryptBlock, solaris-sparc
kvn
parents:
22505
diff
changeset
|
218 |
// SPARC T4 and above should have support for AES instructions |
22505 | 219 |
if (has_aes()) { |
34176
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
220 |
if (FLAG_IS_DEFAULT(UseAES)) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
221 |
FLAG_SET_DEFAULT(UseAES, true); |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
222 |
} |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
223 |
if (!UseAES) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
224 |
if (UseAESIntrinsics && !FLAG_IS_DEFAULT(UseAESIntrinsics)) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
225 |
warning("AES intrinsics require UseAES flag to be enabled. Intrinsics will be disabled."); |
22505 | 226 |
} |
34176
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
227 |
FLAG_SET_DEFAULT(UseAESIntrinsics, false); |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
228 |
} else { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
229 |
// The AES intrinsic stubs require AES instruction support (of course) |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
230 |
// but also require VIS3 mode or higher for instructions it use. |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
231 |
if (UseVIS > 2) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
232 |
if (FLAG_IS_DEFAULT(UseAESIntrinsics)) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
233 |
FLAG_SET_DEFAULT(UseAESIntrinsics, true); |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
234 |
} |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
235 |
} else { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
236 |
if (UseAESIntrinsics && !FLAG_IS_DEFAULT(UseAESIntrinsics)) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
237 |
warning("SPARC AES intrinsics require VIS3 instructions. Intrinsics will be disabled."); |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
238 |
} |
22505 | 239 |
FLAG_SET_DEFAULT(UseAESIntrinsics, false); |
240 |
} |
|
241 |
} |
|
242 |
} else if (UseAES || UseAESIntrinsics) { |
|
34176
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
243 |
if (UseAES && !FLAG_IS_DEFAULT(UseAES)) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
244 |
warning("AES instructions are not available on this CPU"); |
22505 | 245 |
FLAG_SET_DEFAULT(UseAES, false); |
246 |
} |
|
34176
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
247 |
if (UseAESIntrinsics && !FLAG_IS_DEFAULT(UseAESIntrinsics)) { |
c1b52e665b47
8131778: java disables UseAES flag when using VIS=2 on sparc
kshefov
parents:
34174
diff
changeset
|
248 |
warning("AES intrinsics are not available on this CPU"); |
22505 | 249 |
FLAG_SET_DEFAULT(UseAESIntrinsics, false); |
250 |
} |
|
251 |
} |
|
252 |
||
35154 | 253 |
if (UseAESCTRIntrinsics) { |
254 |
warning("AES/CTR intrinsics are not available on this CPU"); |
|
255 |
FLAG_SET_DEFAULT(UseAESCTRIntrinsics, false); |
|
256 |
} |
|
257 |
||
31404
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
258 |
// GHASH/GCM intrinsics |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
259 |
if (has_vis3() && (UseVIS > 2)) { |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
260 |
if (FLAG_IS_DEFAULT(UseGHASHIntrinsics)) { |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
261 |
UseGHASHIntrinsics = true; |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
262 |
} |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
263 |
} else if (UseGHASHIntrinsics) { |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
264 |
if (!FLAG_IS_DEFAULT(UseGHASHIntrinsics)) |
31774 | 265 |
warning("GHASH intrinsics require VIS3 instruction support. Intrinsics will be disabled"); |
31404
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
266 |
FLAG_SET_DEFAULT(UseGHASHIntrinsics, false); |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
267 |
} |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30217
diff
changeset
|
268 |
|
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
269 |
// SHA1, SHA256, and SHA512 instructions were added to SPARC T-series at different times |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
270 |
if (has_sha1() || has_sha256() || has_sha512()) { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
271 |
if (UseVIS > 0) { // SHA intrinsics use VIS1 instructions |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
272 |
if (FLAG_IS_DEFAULT(UseSHA)) { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
273 |
FLAG_SET_DEFAULT(UseSHA, true); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
274 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
275 |
} else { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
276 |
if (UseSHA) { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
277 |
warning("SPARC SHA intrinsics require VIS1 instruction support. Intrinsics will be disabled."); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
278 |
FLAG_SET_DEFAULT(UseSHA, false); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
279 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
280 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
281 |
} else if (UseSHA) { |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
282 |
warning("SHA instructions are not available on this CPU"); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
283 |
FLAG_SET_DEFAULT(UseSHA, false); |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
284 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
285 |
|
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
286 |
if (UseSHA && has_sha1()) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
287 |
if (FLAG_IS_DEFAULT(UseSHA1Intrinsics)) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
288 |
FLAG_SET_DEFAULT(UseSHA1Intrinsics, true); |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
289 |
} |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
290 |
} else if (UseSHA1Intrinsics) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
291 |
warning("Intrinsics for SHA-1 crypto hash functions not available on this CPU."); |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
292 |
FLAG_SET_DEFAULT(UseSHA1Intrinsics, false); |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
293 |
} |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
294 |
|
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
295 |
if (UseSHA && has_sha256()) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
296 |
if (FLAG_IS_DEFAULT(UseSHA256Intrinsics)) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
297 |
FLAG_SET_DEFAULT(UseSHA256Intrinsics, true); |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
298 |
} |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
299 |
} else if (UseSHA256Intrinsics) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
300 |
warning("Intrinsics for SHA-224 and SHA-256 crypto hash functions not available on this CPU."); |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
301 |
FLAG_SET_DEFAULT(UseSHA256Intrinsics, false); |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
302 |
} |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
303 |
|
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
304 |
if (UseSHA && has_sha512()) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
305 |
if (FLAG_IS_DEFAULT(UseSHA512Intrinsics)) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
306 |
FLAG_SET_DEFAULT(UseSHA512Intrinsics, true); |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
307 |
} |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
308 |
} else if (UseSHA512Intrinsics) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
309 |
warning("Intrinsics for SHA-384 and SHA-512 crypto hash functions not available on this CPU."); |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
310 |
FLAG_SET_DEFAULT(UseSHA512Intrinsics, false); |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
311 |
} |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
312 |
|
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
313 |
if (!(UseSHA1Intrinsics || UseSHA256Intrinsics || UseSHA512Intrinsics)) { |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31515
diff
changeset
|
314 |
FLAG_SET_DEFAULT(UseSHA, false); |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
315 |
} |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24424
diff
changeset
|
316 |
|
31515 | 317 |
// SPARC T4 and above should have support for CRC32C instruction |
318 |
if (has_crc32c()) { |
|
319 |
if (UseVIS > 2) { // CRC32C intrinsics use VIS3 instructions |
|
320 |
if (FLAG_IS_DEFAULT(UseCRC32CIntrinsics)) { |
|
321 |
FLAG_SET_DEFAULT(UseCRC32CIntrinsics, true); |
|
322 |
} |
|
323 |
} else { |
|
324 |
if (UseCRC32CIntrinsics) { |
|
325 |
warning("SPARC CRC32C intrinsics require VIS3 instruction support. Intrinsics will be disabled."); |
|
326 |
FLAG_SET_DEFAULT(UseCRC32CIntrinsics, false); |
|
327 |
} |
|
328 |
} |
|
329 |
} else if (UseCRC32CIntrinsics) { |
|
330 |
warning("CRC32C instruction is not available on this CPU"); |
|
331 |
FLAG_SET_DEFAULT(UseCRC32CIntrinsics, false); |
|
332 |
} |
|
333 |
||
32581 | 334 |
if (UseVIS > 2) { |
335 |
if (FLAG_IS_DEFAULT(UseAdler32Intrinsics)) { |
|
336 |
FLAG_SET_DEFAULT(UseAdler32Intrinsics, true); |
|
337 |
} |
|
338 |
} else if (UseAdler32Intrinsics) { |
|
339 |
warning("SPARC Adler32 intrinsics require VIS3 instruction support. Intrinsics will be disabled."); |
|
340 |
FLAG_SET_DEFAULT(UseAdler32Intrinsics, false); |
|
341 |
} |
|
342 |
||
34205 | 343 |
if (UseVIS > 2) { |
344 |
if (FLAG_IS_DEFAULT(UseCRC32Intrinsics)) { |
|
345 |
FLAG_SET_DEFAULT(UseCRC32Intrinsics, true); |
|
346 |
} |
|
347 |
} else if (UseCRC32Intrinsics) { |
|
348 |
warning("SPARC CRC32 intrinsics require VIS3 insructions support. Intriniscs will be disabled"); |
|
349 |
FLAG_SET_DEFAULT(UseCRC32Intrinsics, false); |
|
350 |
} |
|
351 |
||
35110
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
34205
diff
changeset
|
352 |
if (UseVectorizedMismatchIntrinsic) { |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
34205
diff
changeset
|
353 |
warning("UseVectorizedMismatchIntrinsic specified, but not available on this CPU."); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
34205
diff
changeset
|
354 |
FLAG_SET_DEFAULT(UseVectorizedMismatchIntrinsic, false); |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
34205
diff
changeset
|
355 |
} |
f19bcdf40799
8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents:
34205
diff
changeset
|
356 |
|
15193
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
14631
diff
changeset
|
357 |
if (FLAG_IS_DEFAULT(ContendedPaddingWidth) && |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
14631
diff
changeset
|
358 |
(cache_line_size > ContendedPaddingWidth)) |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
14631
diff
changeset
|
359 |
ContendedPaddingWidth = cache_line_size; |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
14631
diff
changeset
|
360 |
|
30209
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
361 |
// This machine does not allow unaligned memory accesses |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
362 |
if (UseUnalignedAccesses) { |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
363 |
if (!FLAG_IS_DEFAULT(UseUnalignedAccesses)) |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
364 |
warning("Unaligned memory access is not available on this CPU"); |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
365 |
FLAG_SET_DEFAULT(UseUnalignedAccesses, false); |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
366 |
} |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
26579
diff
changeset
|
367 |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
368 |
if (log_is_enabled(Info, os, cpu)) { |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
369 |
ResourceMark rm; |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
370 |
outputStream* log = Log(os, cpu)::info_stream(); |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
371 |
log->print_cr("L1 data cache line size: %u", L1_data_cache_line_size()); |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
372 |
log->print_cr("L2 data cache line size: %u", L2_data_cache_line_size()); |
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
373 |
log->print("Allocation"); |
1 | 374 |
if (AllocatePrefetchStyle <= 0) { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
375 |
log->print(": no prefetching"); |
1 | 376 |
} else { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
377 |
log->print(" prefetching: "); |
10267 | 378 |
if (AllocatePrefetchInstr == 0) { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
379 |
log->print("PREFETCH"); |
10267 | 380 |
} else if (AllocatePrefetchInstr == 1) { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
381 |
log->print("BIS"); |
10267 | 382 |
} |
1 | 383 |
if (AllocatePrefetchLines > 1) { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
384 |
log->print_cr(" at distance %d, %d lines of %d bytes", (int) AllocatePrefetchDistance, (int) AllocatePrefetchLines, (int) AllocatePrefetchStepSize); |
1 | 385 |
} else { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
386 |
log->print_cr(" at distance %d, one line of %d bytes", (int) AllocatePrefetchDistance, (int) AllocatePrefetchStepSize); |
1 | 387 |
} |
388 |
} |
|
389 |
if (PrefetchCopyIntervalInBytes > 0) { |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
390 |
log->print_cr("PrefetchCopyIntervalInBytes %d", (int) PrefetchCopyIntervalInBytes); |
1 | 391 |
} |
392 |
if (PrefetchScanIntervalInBytes > 0) { |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
393 |
log->print_cr("PrefetchScanIntervalInBytes %d", (int) PrefetchScanIntervalInBytes); |
1 | 394 |
} |
395 |
if (PrefetchFieldsAhead > 0) { |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
396 |
log->print_cr("PrefetchFieldsAhead %d", (int) PrefetchFieldsAhead); |
1 | 397 |
} |
15193
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
14631
diff
changeset
|
398 |
if (ContendedPaddingWidth > 0) { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
399 |
log->print_cr("ContendedPaddingWidth %d", (int) ContendedPaddingWidth); |
15193
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
14631
diff
changeset
|
400 |
} |
1 | 401 |
} |
402 |
} |
|
403 |
||
404 |
void VM_Version::print_features() { |
|
35148 | 405 |
tty->print_cr("Version:%s", _features); |
1 | 406 |
} |
407 |
||
408 |
int VM_Version::determine_features() { |
|
409 |
if (UseV8InstrsOnly) { |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
410 |
log_info(os, cpu)("Version is Forced-V8"); |
1 | 411 |
return generic_v8_m; |
412 |
} |
|
413 |
||
414 |
int features = platform_features(unknown_m); // platform_features() is os_arch specific |
|
415 |
||
416 |
if (features == unknown_m) { |
|
417 |
features = generic_v9_m; |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
418 |
log_info(os)("Cannot recognize SPARC version. Default to V9"); |
1 | 419 |
} |
420 |
||
7704 | 421 |
assert(is_T_family(features) == is_niagara(features), "Niagara should be T series"); |
422 |
if (UseNiagaraInstrs) { // Force code generation for Niagara |
|
423 |
if (is_T_family(features)) { |
|
1 | 424 |
// Happy to accomodate... |
425 |
} else { |
|
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
426 |
log_info(os, cpu)("Version is Forced-Niagara"); |
7704 | 427 |
features |= T_family_m; |
1 | 428 |
} |
429 |
} else { |
|
7704 | 430 |
if (is_T_family(features) && !FLAG_IS_DEFAULT(UseNiagaraInstrs)) { |
37430
fd743dadef12
8151939: VM_Version_init() print buffer is too small
coleenp
parents:
36346
diff
changeset
|
431 |
log_info(os, cpu)("Version is Forced-Not-Niagara"); |
7704 | 432 |
features &= ~(T_family_m | T1_model_m); |
1 | 433 |
} else { |
434 |
// Happy to accomodate... |
|
435 |
} |
|
436 |
} |
|
437 |
||
438 |
return features; |
|
439 |
} |
|
440 |
||
35148 | 441 |
static uint64_t saved_features = 0; |
1 | 442 |
|
443 |
void VM_Version::allow_all() { |
|
444 |
saved_features = _features; |
|
445 |
_features = all_features_m; |
|
446 |
} |
|
447 |
||
448 |
void VM_Version::revert() { |
|
449 |
_features = saved_features; |
|
450 |
} |
|
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
451 |
|
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
452 |
unsigned int VM_Version::calc_parallel_worker_threads() { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
453 |
unsigned int result; |
13888
93dce24e57e5
7188176: The JVM should differentiate between T and M series and adjust GC ergonomics
twisti
parents:
13886
diff
changeset
|
454 |
if (is_M_series()) { |
93dce24e57e5
7188176: The JVM should differentiate between T and M series and adjust GC ergonomics
twisti
parents:
13886
diff
changeset
|
455 |
// for now, use same gc thread calculation for M-series as for niagara-plus |
93dce24e57e5
7188176: The JVM should differentiate between T and M series and adjust GC ergonomics
twisti
parents:
13886
diff
changeset
|
456 |
// in future, we may want to tweak parameters for nof_parallel_worker_thread |
93dce24e57e5
7188176: The JVM should differentiate between T and M series and adjust GC ergonomics
twisti
parents:
13886
diff
changeset
|
457 |
result = nof_parallel_worker_threads(5, 16, 8); |
93dce24e57e5
7188176: The JVM should differentiate between T and M series and adjust GC ergonomics
twisti
parents:
13886
diff
changeset
|
458 |
} else if (is_niagara_plus()) { |
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
459 |
result = nof_parallel_worker_threads(5, 16, 8); |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
460 |
} else { |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
461 |
result = nof_parallel_worker_threads(5, 8, 8); |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
462 |
} |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
463 |
return result; |
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
464 |
} |
36346 | 465 |
|
466 |
||
467 |
int VM_Version::parse_features(const char* implementation) { |
|
468 |
int features = unknown_m; |
|
469 |
// Convert to UPPER case before compare. |
|
470 |
char* impl = os::strdup_check_oom(implementation); |
|
471 |
||
472 |
for (int i = 0; impl[i] != 0; i++) |
|
473 |
impl[i] = (char)toupper((uint)impl[i]); |
|
474 |
||
475 |
if (strstr(impl, "SPARC64") != NULL) { |
|
476 |
features |= sparc64_family_m; |
|
477 |
} else if (strstr(impl, "SPARC-M") != NULL) { |
|
478 |
// M-series SPARC is based on T-series. |
|
479 |
features |= (M_family_m | T_family_m); |
|
480 |
} else if (strstr(impl, "SPARC-T") != NULL) { |
|
481 |
features |= T_family_m; |
|
482 |
if (strstr(impl, "SPARC-T1") != NULL) { |
|
483 |
features |= T1_model_m; |
|
484 |
} |
|
485 |
} else { |
|
486 |
if (strstr(impl, "SPARC") == NULL) { |
|
487 |
#ifndef PRODUCT |
|
488 |
// kstat on Solaris 8 virtual machines (branded zones) |
|
489 |
// returns "(unsupported)" implementation. Solaris 8 is not |
|
490 |
// supported anymore, but include this check to be on the |
|
491 |
// safe side. |
|
492 |
warning("Can't parse CPU implementation = '%s', assume generic SPARC", impl); |
|
493 |
#endif |
|
494 |
} |
|
495 |
} |
|
496 |
os::free((void*)impl); |
|
497 |
return features; |
|
498 |
} |