annotate src/cpu/x86/vm/vm_version_x86_64.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents 3d62cb85208d
children dc7f315e41f7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 71
diff changeset
2 * Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_vm_version_x86_64.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 int VM_Version::_cpu;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 int VM_Version::_model;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 int VM_Version::_stepping;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 int VM_Version::_cpuFeatures;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 const char* VM_Version::_features_str = "";
a61af66fc99e Initial load
duke
parents:
diff changeset
33 VM_Version::CpuidInfo VM_Version::_cpuid_info = { 0, };
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 static BufferBlob* stub_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 static const int stub_size = 300;
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 typedef void (*getPsrInfo_stub_t)(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static getPsrInfo_stub_t getPsrInfo_stub = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class VM_Version_StubGenerator: public StubCodeGenerator {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 VM_Version_StubGenerator(CodeBuffer *c) : StubCodeGenerator(c) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 address generate_getPsrInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 Label std_cpuid1, ext_cpuid1, ext_cpuid5, done;
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 StubCodeMark mark(this, "VM_Version", "getPsrInfo_stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
54 # define __ _masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 address start = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 //
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // void getPsrInfo(VM_Version::CpuidInfo* cpuid_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 //
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // rcx and rdx are first and second argument registers on windows
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 __ pushq(rbp);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 __ movq(rbp, c_rarg0); // cpuid_info address
a61af66fc99e Initial load
duke
parents:
diff changeset
65 __ pushq(rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 __ pushq(rsi);
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 //
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // we have a chip which supports the "cpuid" instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
70 //
a61af66fc99e Initial load
duke
parents:
diff changeset
71 __ xorl(rax, rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
73 __ leaq(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid0_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
74 __ movl(Address(rsi, 0), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 __ movl(Address(rsi, 4), rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 __ movl(Address(rsi, 8), rcx);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 __ movl(Address(rsi,12), rdx);
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 __ cmpl(rax, 3); // Is cpuid(0x4) supported?
a61af66fc99e Initial load
duke
parents:
diff changeset
80 __ jccb(Assembler::belowEqual, std_cpuid1);
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 //
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // cpuid(0x4) Deterministic cache params
a61af66fc99e Initial load
duke
parents:
diff changeset
84 //
a61af66fc99e Initial load
duke
parents:
diff changeset
85 __ movl(rax, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 __ xorl(rcx, rcx); // L1 cache
a61af66fc99e Initial load
duke
parents:
diff changeset
87 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 __ pushq(rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 __ andl(rax, 0x1f); // Determine if valid cache parameters used
a61af66fc99e Initial load
duke
parents:
diff changeset
90 __ orl(rax, rax); // eax[4:0] == 0 indicates invalid cache
a61af66fc99e Initial load
duke
parents:
diff changeset
91 __ popq(rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 __ jccb(Assembler::equal, std_cpuid1);
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 __ leaq(rsi, Address(rbp, in_bytes(VM_Version::dcp_cpuid4_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
95 __ movl(Address(rsi, 0), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 __ movl(Address(rsi, 4), rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 __ movl(Address(rsi, 8), rcx);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 __ movl(Address(rsi,12), rdx);
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 //
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Standard cpuid(0x1)
a61af66fc99e Initial load
duke
parents:
diff changeset
102 //
a61af66fc99e Initial load
duke
parents:
diff changeset
103 __ bind(std_cpuid1);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 __ movl(rax, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 __ leaq(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
107 __ movl(Address(rsi, 0), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 __ movl(Address(rsi, 4), rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 __ movl(Address(rsi, 8), rcx);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 __ movl(Address(rsi,12), rdx);
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 __ movl(rax, 0x80000000);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 __ cmpl(rax, 0x80000000); // Is cpuid(0x80000001) supported?
a61af66fc99e Initial load
duke
parents:
diff changeset
115 __ jcc(Assembler::belowEqual, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 __ cmpl(rax, 0x80000004); // Is cpuid(0x80000005) supported?
a61af66fc99e Initial load
duke
parents:
diff changeset
117 __ jccb(Assembler::belowEqual, ext_cpuid1);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 __ cmpl(rax, 0x80000007); // Is cpuid(0x80000008) supported?
a61af66fc99e Initial load
duke
parents:
diff changeset
119 __ jccb(Assembler::belowEqual, ext_cpuid5);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 //
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Extended cpuid(0x80000008)
a61af66fc99e Initial load
duke
parents:
diff changeset
122 //
a61af66fc99e Initial load
duke
parents:
diff changeset
123 __ movl(rax, 0x80000008);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 __ leaq(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid8_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
126 __ movl(Address(rsi, 0), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 __ movl(Address(rsi, 4), rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 __ movl(Address(rsi, 8), rcx);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 __ movl(Address(rsi,12), rdx);
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 //
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Extended cpuid(0x80000005)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 //
a61af66fc99e Initial load
duke
parents:
diff changeset
134 __ bind(ext_cpuid5);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 __ movl(rax, 0x80000005);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 __ leaq(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid5_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
138 __ movl(Address(rsi, 0), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 __ movl(Address(rsi, 4), rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 __ movl(Address(rsi, 8), rcx);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 __ movl(Address(rsi,12), rdx);
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 //
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Extended cpuid(0x80000001)
a61af66fc99e Initial load
duke
parents:
diff changeset
145 //
a61af66fc99e Initial load
duke
parents:
diff changeset
146 __ bind(ext_cpuid1);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 __ movl(rax, 0x80000001);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 __ cpuid();
a61af66fc99e Initial load
duke
parents:
diff changeset
149 __ leaq(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid1_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
150 __ movl(Address(rsi, 0), rax);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 __ movl(Address(rsi, 4), rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 __ movl(Address(rsi, 8), rcx);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 __ movl(Address(rsi,12), rdx);
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 //
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // return
a61af66fc99e Initial load
duke
parents:
diff changeset
157 //
a61af66fc99e Initial load
duke
parents:
diff changeset
158 __ bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 __ popq(rsi);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 __ popq(rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 __ popq(rbp);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 __ ret(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 # undef __
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return start;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 };
a61af66fc99e Initial load
duke
parents:
diff changeset
168 };
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void VM_Version::get_processor_features() {
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 _logical_processors_per_package = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Get raw processor info
a61af66fc99e Initial load
duke
parents:
diff changeset
175 getPsrInfo_stub(&_cpuid_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 assert_is_initialized();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 _cpu = extended_cpu_family();
a61af66fc99e Initial load
duke
parents:
diff changeset
178 _model = extended_cpu_model();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 _stepping = cpu_stepping();
a61af66fc99e Initial load
duke
parents:
diff changeset
180 _cpuFeatures = feature_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Logical processors are only available on P4s and above,
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // and only if hyperthreading is available.
a61af66fc99e Initial load
duke
parents:
diff changeset
183 _logical_processors_per_package = logical_processor_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
184 _supports_cx8 = supports_cmpxchg8();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // OS should support SSE for x64 and hardware should support at least SSE2.
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if (!VM_Version::supports_sse2()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 vm_exit_during_initialization("Unknown x64 processor: SSE2 not supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 if (UseSSE < 4)
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _cpuFeatures &= ~CPU_SSE4;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 if (UseSSE < 3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 _cpuFeatures &= ~CPU_SSE3;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _cpuFeatures &= ~CPU_SSSE3;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _cpuFeatures &= ~CPU_SSE4A;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if (UseSSE < 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
197 _cpuFeatures &= ~CPU_SSE2;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (UseSSE < 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
199 _cpuFeatures &= ~CPU_SSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 if (logical_processors_per_package() == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // HT processor could be installed on a system which doesn't support HT.
a61af66fc99e Initial load
duke
parents:
diff changeset
203 _cpuFeatures &= ~CPU_HT;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 char buf[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
207 jio_snprintf(buf, sizeof(buf), "(%u cores per cpu, %u threads per core) family %d model %d stepping %d%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
208 cores_per_cpu(), threads_per_core(),
a61af66fc99e Initial load
duke
parents:
diff changeset
209 cpu_family(), _model, _stepping,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 (supports_cmov() ? ", cmov" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
211 (supports_cmpxchg8() ? ", cx8" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
212 (supports_fxsr() ? ", fxsr" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
213 (supports_mmx() ? ", mmx" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
214 (supports_sse() ? ", sse" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
215 (supports_sse2() ? ", sse2" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
216 (supports_sse3() ? ", sse3" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
217 (supports_ssse3()? ", ssse3": ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
218 (supports_sse4() ? ", sse4" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
219 (supports_mmx_ext() ? ", mmxext" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
220 (supports_3dnow() ? ", 3dnow" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
221 (supports_3dnow2() ? ", 3dnowext" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
222 (supports_sse4a() ? ", sse4a": ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
223 (supports_ht() ? ", ht": ""));
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _features_str = strdup(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // UseSSE is set to the smaller of what hardware supports and what
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // the command line requires. I.e., you cannot set UseSSE to 2 on
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // older Pentiums which do not support it.
a61af66fc99e Initial load
duke
parents:
diff changeset
229 if( UseSSE > 4 ) UseSSE=4;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 if( UseSSE < 0 ) UseSSE=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if( !supports_sse4() ) // Drop to 3 if no SSE4 support
a61af66fc99e Initial load
duke
parents:
diff changeset
232 UseSSE = MIN2((intx)3,UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if( !supports_sse3() ) // Drop to 2 if no SSE3 support
a61af66fc99e Initial load
duke
parents:
diff changeset
234 UseSSE = MIN2((intx)2,UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if( !supports_sse2() ) // Drop to 1 if no SSE2 support
a61af66fc99e Initial load
duke
parents:
diff changeset
236 UseSSE = MIN2((intx)1,UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 if( !supports_sse () ) // Drop to 0 if no SSE support
a61af66fc99e Initial load
duke
parents:
diff changeset
238 UseSSE = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // On new cpus instructions which update whole XMM register should be used
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // to prevent partial register stall due to dependencies on high half.
a61af66fc99e Initial load
duke
parents:
diff changeset
242 //
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // UseXmmLoadAndClearUpper == true --> movsd(xmm, mem)
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // UseXmmLoadAndClearUpper == false --> movlpd(xmm, mem)
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // UseXmmRegToRegMoveAll == true --> movaps(xmm, xmm), movapd(xmm, xmm).
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // UseXmmRegToRegMoveAll == false --> movss(xmm, xmm), movsd(xmm, xmm).
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 if( is_amd() ) { // AMD cpus specific settings
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if( FLAG_IS_DEFAULT(UseAddressNop) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // Use it on all AMD cpus starting from Opteron (don't need
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // a cpu check since only Opteron and new cpus support 64-bits mode).
a61af66fc99e Initial load
duke
parents:
diff changeset
252 UseAddressNop = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if( supports_sse4a() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 UseXmmLoadAndClearUpper = true; // use movsd only on '10h' Opteron
a61af66fc99e Initial load
duke
parents:
diff changeset
257 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 UseXmmLoadAndClearUpper = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 if( supports_sse4a() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 UseXmmRegToRegMoveAll = true; // use movaps, movapd only on '10h'
a61af66fc99e Initial load
duke
parents:
diff changeset
264 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 UseXmmRegToRegMoveAll = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
71
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
268 if( FLAG_IS_DEFAULT(UseXmmI2F) ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
269 if( supports_sse4a() ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
270 UseXmmI2F = true;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
271 } else {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
272 UseXmmI2F = false;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
273 }
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
274 }
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
275 if( FLAG_IS_DEFAULT(UseXmmI2D) ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
276 if( supports_sse4a() ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
277 UseXmmI2D = true;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
278 } else {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
279 UseXmmI2D = false;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
280 }
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
281 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if( is_intel() ) { // Intel cpus specific settings
a61af66fc99e Initial load
duke
parents:
diff changeset
285 if( FLAG_IS_DEFAULT(UseStoreImmI16) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 UseStoreImmI16 = false; // don't use it on Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if( FLAG_IS_DEFAULT(UseAddressNop) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // Use it on all Intel cpus starting from PentiumPro
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // (don't need a cpu check since only new cpus support 64-bits mode).
a61af66fc99e Initial load
duke
parents:
diff changeset
291 UseAddressNop = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 UseXmmLoadAndClearUpper = true; // use movsd on all Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if( supports_sse3() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 UseXmmRegToRegMoveAll = true; // use movaps, movapd on new Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
299 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 UseXmmRegToRegMoveAll = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303 if( cpu_family() == 6 && supports_sse3() ) { // New Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
304 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
305 if( FLAG_IS_DEFAULT(MaxLoopPad) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // For new Intel cpus do the next optimization:
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // don't align the beginning of a loop if there are enough instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // left (NumberOfLoopInstrToAlign defined in c2_globals.hpp)
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // in current fetch line (OptoLoopAlignment) or the padding
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // is big (> MaxLoopPad).
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // Set MaxLoopPad to 11 for new Intel cpus to reduce number of
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // generated NOP instructions. 11 is the largest size of one
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // address NOP instruction '0F 1F' (see Assembler::nop(i)).
a61af66fc99e Initial load
duke
parents:
diff changeset
314 MaxLoopPad = 11;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 assert(0 <= ReadPrefetchInstr && ReadPrefetchInstr <= 3, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
321 assert(0 <= AllocatePrefetchInstr && AllocatePrefetchInstr <= 3, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // set valid Prefetch instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
324 if( ReadPrefetchInstr < 0 ) ReadPrefetchInstr = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 if( ReadPrefetchInstr > 3 ) ReadPrefetchInstr = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 if( ReadPrefetchInstr == 3 && !supports_3dnow() ) ReadPrefetchInstr = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 if( AllocatePrefetchInstr < 0 ) AllocatePrefetchInstr = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 if( AllocatePrefetchInstr > 3 ) AllocatePrefetchInstr = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 if( AllocatePrefetchInstr == 3 && !supports_3dnow() ) AllocatePrefetchInstr=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // Allocation prefetch settings
a61af66fc99e Initial load
duke
parents:
diff changeset
333 intx cache_line_size = L1_data_cache_line_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
334 if( cache_line_size > AllocatePrefetchStepSize )
a61af66fc99e Initial load
duke
parents:
diff changeset
335 AllocatePrefetchStepSize = cache_line_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 if( FLAG_IS_DEFAULT(AllocatePrefetchLines) )
a61af66fc99e Initial load
duke
parents:
diff changeset
337 AllocatePrefetchLines = 3; // Optimistic value
a61af66fc99e Initial load
duke
parents:
diff changeset
338 assert(AllocatePrefetchLines > 0, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
339 if( AllocatePrefetchLines < 1 ) // set valid value in product VM
a61af66fc99e Initial load
duke
parents:
diff changeset
340 AllocatePrefetchLines = 1; // Conservative value
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 AllocatePrefetchDistance = allocate_prefetch_distance();
a61af66fc99e Initial load
duke
parents:
diff changeset
343 AllocatePrefetchStyle = allocate_prefetch_style();
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if( AllocatePrefetchStyle == 2 && is_intel() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
346 cpu_family() == 6 && supports_sse3() ) { // watermark prefetching on Core
a61af66fc99e Initial load
duke
parents:
diff changeset
347 AllocatePrefetchDistance = 384;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349 assert(AllocatePrefetchDistance % AllocatePrefetchStepSize == 0, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // Prefetch settings
a61af66fc99e Initial load
duke
parents:
diff changeset
352 PrefetchCopyIntervalInBytes = prefetch_copy_interval_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
353 PrefetchScanIntervalInBytes = prefetch_scan_interval_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
354 PrefetchFieldsAhead = prefetch_fields_ahead();
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
357 if (PrintMiscellaneous && Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 tty->print_cr("Logical CPUs per package: %u",
a61af66fc99e Initial load
duke
parents:
diff changeset
359 logical_processors_per_package());
a61af66fc99e Initial load
duke
parents:
diff changeset
360 tty->print_cr("UseSSE=%d",UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
361 tty->print("Allocation: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
362 if (AllocatePrefetchStyle <= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 tty->print_cr("no prefetching");
a61af66fc99e Initial load
duke
parents:
diff changeset
364 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 if (AllocatePrefetchInstr == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 tty->print("PREFETCHNTA");
a61af66fc99e Initial load
duke
parents:
diff changeset
367 } else if (AllocatePrefetchInstr == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
368 tty->print("PREFETCHT0");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 } else if (AllocatePrefetchInstr == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 tty->print("PREFETCHT2");
a61af66fc99e Initial load
duke
parents:
diff changeset
371 } else if (AllocatePrefetchInstr == 3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 tty->print("PREFETCHW");
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if (AllocatePrefetchLines > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 tty->print_cr(" %d, %d lines with step %d bytes", AllocatePrefetchDistance, AllocatePrefetchLines, AllocatePrefetchStepSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 tty->print_cr(" %d, one line", AllocatePrefetchDistance);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380 if (PrefetchCopyIntervalInBytes > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 tty->print_cr("PrefetchCopyIntervalInBytes %d", PrefetchCopyIntervalInBytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383 if (PrefetchScanIntervalInBytes > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 tty->print_cr("PrefetchScanIntervalInBytes %d", PrefetchScanIntervalInBytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386 if (PrefetchFieldsAhead > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 tty->print_cr("PrefetchFieldsAhead %d", PrefetchFieldsAhead);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 void VM_Version::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
394 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // Making this stub must be FIRST use of assembler
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 stub_blob = BufferBlob::create("getPsrInfo_stub", stub_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if (stub_blob == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 vm_exit_during_initialization("Unable to allocate getPsrInfo_stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401 CodeBuffer c(stub_blob->instructions_begin(),
a61af66fc99e Initial load
duke
parents:
diff changeset
402 stub_blob->instructions_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
403 VM_Version_StubGenerator g(&c);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 getPsrInfo_stub = CAST_TO_FN_PTR(getPsrInfo_stub_t,
a61af66fc99e Initial load
duke
parents:
diff changeset
405 g.generate_getPsrInfo());
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 get_processor_features();
a61af66fc99e Initial load
duke
parents:
diff changeset
408 }