annotate src/cpu/x86/vm/vm_version_x86_64.cpp @ 612:afa80fa86d22

Merge
author dcubed
date Mon, 02 Mar 2009 14:43:36 -0700
parents 2649e5276dd7
children
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
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
63 __ push(rbp);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
64 __ mov(rbp, c_rarg0); // cpuid_info address
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
65 __ push(rbx);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
66 __ push(rsi);
0
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();
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
73 __ lea(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid0_offset())));
0
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();
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
88 __ push(rax);
0
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
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
91 __ pop(rax);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 __ jccb(Assembler::equal, std_cpuid1);
a61af66fc99e Initial load
duke
parents:
diff changeset
93
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
94 __ lea(rsi, Address(rbp, in_bytes(VM_Version::dcp_cpuid4_offset())));
0
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();
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
106 __ lea(rsi, Address(rbp, in_bytes(VM_Version::std_cpuid1_offset())));
0
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();
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
125 __ lea(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid8_offset())));
0
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();
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
137 __ lea(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid5_offset())));
0
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();
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
149 __ lea(rsi, Address(rbp, in_bytes(VM_Version::ext_cpuid1_offset())));
0
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);
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
159 __ pop(rsi);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
160 __ pop(rbx);
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
161 __ pop(rbp);
0
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 }
405
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
189 if (UseSSE < 4) {
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
190 _cpuFeatures &= ~CPU_SSE4_1;
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
191 _cpuFeatures &= ~CPU_SSE4_2;
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
192 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193 if (UseSSE < 3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _cpuFeatures &= ~CPU_SSE3;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 _cpuFeatures &= ~CPU_SSSE3;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 _cpuFeatures &= ~CPU_SSE4A;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (UseSSE < 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
199 _cpuFeatures &= ~CPU_SSE2;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 if (UseSSE < 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
201 _cpuFeatures &= ~CPU_SSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 if (logical_processors_per_package() == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // HT processor could be installed on a system which doesn't support HT.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _cpuFeatures &= ~CPU_HT;
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 char buf[256];
405
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
209 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%s",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210 cores_per_cpu(), threads_per_core(),
a61af66fc99e Initial load
duke
parents:
diff changeset
211 cpu_family(), _model, _stepping,
a61af66fc99e Initial load
duke
parents:
diff changeset
212 (supports_cmov() ? ", cmov" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
213 (supports_cmpxchg8() ? ", cx8" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
214 (supports_fxsr() ? ", fxsr" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
215 (supports_mmx() ? ", mmx" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
216 (supports_sse() ? ", sse" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
217 (supports_sse2() ? ", sse2" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
218 (supports_sse3() ? ", sse3" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
219 (supports_ssse3()? ", ssse3": ""),
405
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
220 (supports_sse4_1() ? ", sse4.1" : ""),
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
221 (supports_sse4_2() ? ", sse4.2" : ""),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 (supports_mmx_ext() ? ", mmxext" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
223 (supports_3dnow() ? ", 3dnow" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
224 (supports_3dnow2() ? ", 3dnowext" : ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
225 (supports_sse4a() ? ", sse4a": ""),
a61af66fc99e Initial load
duke
parents:
diff changeset
226 (supports_ht() ? ", ht": ""));
a61af66fc99e Initial load
duke
parents:
diff changeset
227 _features_str = strdup(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // UseSSE is set to the smaller of what hardware supports and what
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // the command line requires. I.e., you cannot set UseSSE to 2 on
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // older Pentiums which do not support it.
a61af66fc99e Initial load
duke
parents:
diff changeset
232 if( UseSSE > 4 ) UseSSE=4;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if( UseSSE < 0 ) UseSSE=0;
405
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
234 if( !supports_sse4_1() ) // Drop to 3 if no SSE4 support
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 UseSSE = MIN2((intx)3,UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 if( !supports_sse3() ) // Drop to 2 if no SSE3 support
a61af66fc99e Initial load
duke
parents:
diff changeset
237 UseSSE = MIN2((intx)2,UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 if( !supports_sse2() ) // Drop to 1 if no SSE2 support
a61af66fc99e Initial load
duke
parents:
diff changeset
239 UseSSE = MIN2((intx)1,UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if( !supports_sse () ) // Drop to 0 if no SSE support
a61af66fc99e Initial load
duke
parents:
diff changeset
241 UseSSE = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // On new cpus instructions which update whole XMM register should be used
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // to prevent partial register stall due to dependencies on high half.
a61af66fc99e Initial load
duke
parents:
diff changeset
245 //
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // UseXmmLoadAndClearUpper == true --> movsd(xmm, mem)
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // UseXmmLoadAndClearUpper == false --> movlpd(xmm, mem)
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // UseXmmRegToRegMoveAll == true --> movaps(xmm, xmm), movapd(xmm, xmm).
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // UseXmmRegToRegMoveAll == false --> movss(xmm, xmm), movsd(xmm, xmm).
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 if( is_amd() ) { // AMD cpus specific settings
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if( FLAG_IS_DEFAULT(UseAddressNop) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Use it on all AMD cpus starting from Opteron (don't need
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // a cpu check since only Opteron and new cpus support 64-bits mode).
a61af66fc99e Initial load
duke
parents:
diff changeset
255 UseAddressNop = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if( supports_sse4a() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 UseXmmLoadAndClearUpper = true; // use movsd only on '10h' Opteron
a61af66fc99e Initial load
duke
parents:
diff changeset
260 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 UseXmmLoadAndClearUpper = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if( supports_sse4a() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 UseXmmRegToRegMoveAll = true; // use movaps, movapd only on '10h'
a61af66fc99e Initial load
duke
parents:
diff changeset
267 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 UseXmmRegToRegMoveAll = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
71
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
271 if( FLAG_IS_DEFAULT(UseXmmI2F) ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
272 if( supports_sse4a() ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
273 UseXmmI2F = true;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
274 } else {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
275 UseXmmI2F = false;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
276 }
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
277 }
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
278 if( FLAG_IS_DEFAULT(UseXmmI2D) ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
279 if( supports_sse4a() ) {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
280 UseXmmI2D = true;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
281 } else {
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
282 UseXmmI2D = false;
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
283 }
3d62cb85208d 6662967: Optimize I2D conversion on new x86
kvn
parents: 0
diff changeset
284 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 if( is_intel() ) { // Intel cpus specific settings
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if( FLAG_IS_DEFAULT(UseStoreImmI16) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 UseStoreImmI16 = false; // don't use it on Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 if( FLAG_IS_DEFAULT(UseAddressNop) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // Use it on all Intel cpus starting from PentiumPro
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // (don't need a cpu check since only new cpus support 64-bits mode).
a61af66fc99e Initial load
duke
parents:
diff changeset
294 UseAddressNop = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if( FLAG_IS_DEFAULT(UseXmmLoadAndClearUpper) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 UseXmmLoadAndClearUpper = true; // use movsd on all Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if( FLAG_IS_DEFAULT(UseXmmRegToRegMoveAll) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 if( supports_sse3() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 UseXmmRegToRegMoveAll = true; // use movaps, movapd on new Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
302 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 UseXmmRegToRegMoveAll = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if( cpu_family() == 6 && supports_sse3() ) { // New Intel cpus
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
308 if( FLAG_IS_DEFAULT(MaxLoopPad) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // For new Intel cpus do the next optimization:
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // don't align the beginning of a loop if there are enough instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // left (NumberOfLoopInstrToAlign defined in c2_globals.hpp)
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // in current fetch line (OptoLoopAlignment) or the padding
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // is big (> MaxLoopPad).
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // Set MaxLoopPad to 11 for new Intel cpus to reduce number of
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // generated NOP instructions. 11 is the largest size of one
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // address NOP instruction '0F 1F' (see Assembler::nop(i)).
a61af66fc99e Initial load
duke
parents:
diff changeset
317 MaxLoopPad = 11;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 #endif // COMPILER2
405
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
320 if( FLAG_IS_DEFAULT(UseXMMForArrayCopy) ) {
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
321 UseXMMForArrayCopy = true; // use SSE2 movq on new Intel cpus
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
322 }
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
323 if( supports_sse4_2() && supports_ht() ) { // Newest Intel cpus
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
324 if( FLAG_IS_DEFAULT(UseUnalignedLoadStores) && UseXMMForArrayCopy ) {
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
325 UseUnalignedLoadStores = true; // use movdqu on newest Intel cpus
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
326 }
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
327 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 assert(0 <= ReadPrefetchInstr && ReadPrefetchInstr <= 3, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
332 assert(0 <= AllocatePrefetchInstr && AllocatePrefetchInstr <= 3, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // set valid Prefetch instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
335 if( ReadPrefetchInstr < 0 ) ReadPrefetchInstr = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 if( ReadPrefetchInstr > 3 ) ReadPrefetchInstr = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 if( ReadPrefetchInstr == 3 && !supports_3dnow() ) ReadPrefetchInstr = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 if( AllocatePrefetchInstr < 0 ) AllocatePrefetchInstr = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
340 if( AllocatePrefetchInstr > 3 ) AllocatePrefetchInstr = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 if( AllocatePrefetchInstr == 3 && !supports_3dnow() ) AllocatePrefetchInstr=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // Allocation prefetch settings
a61af66fc99e Initial load
duke
parents:
diff changeset
344 intx cache_line_size = L1_data_cache_line_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if( cache_line_size > AllocatePrefetchStepSize )
a61af66fc99e Initial load
duke
parents:
diff changeset
346 AllocatePrefetchStepSize = cache_line_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 if( FLAG_IS_DEFAULT(AllocatePrefetchLines) )
a61af66fc99e Initial load
duke
parents:
diff changeset
348 AllocatePrefetchLines = 3; // Optimistic value
a61af66fc99e Initial load
duke
parents:
diff changeset
349 assert(AllocatePrefetchLines > 0, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
350 if( AllocatePrefetchLines < 1 ) // set valid value in product VM
a61af66fc99e Initial load
duke
parents:
diff changeset
351 AllocatePrefetchLines = 1; // Conservative value
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 AllocatePrefetchDistance = allocate_prefetch_distance();
a61af66fc99e Initial load
duke
parents:
diff changeset
354 AllocatePrefetchStyle = allocate_prefetch_style();
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 if( AllocatePrefetchStyle == 2 && is_intel() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
357 cpu_family() == 6 && supports_sse3() ) { // watermark prefetching on Core
a61af66fc99e Initial load
duke
parents:
diff changeset
358 AllocatePrefetchDistance = 384;
a61af66fc99e Initial load
duke
parents:
diff changeset
359 }
a61af66fc99e Initial load
duke
parents:
diff changeset
360 assert(AllocatePrefetchDistance % AllocatePrefetchStepSize == 0, "invalid value");
a61af66fc99e Initial load
duke
parents:
diff changeset
361
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // Prefetch settings
a61af66fc99e Initial load
duke
parents:
diff changeset
363 PrefetchCopyIntervalInBytes = prefetch_copy_interval_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
364 PrefetchScanIntervalInBytes = prefetch_scan_interval_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
365 PrefetchFieldsAhead = prefetch_fields_ahead();
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
368 if (PrintMiscellaneous && Verbose) {
405
2649e5276dd7 6532536: Optimize arraycopy stubs for Intel cpus
kvn
parents: 304
diff changeset
369 tty->print_cr("Logical CPUs per core: %u",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
370 logical_processors_per_package());
a61af66fc99e Initial load
duke
parents:
diff changeset
371 tty->print_cr("UseSSE=%d",UseSSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 tty->print("Allocation: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
373 if (AllocatePrefetchStyle <= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 tty->print_cr("no prefetching");
a61af66fc99e Initial load
duke
parents:
diff changeset
375 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 if (AllocatePrefetchInstr == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 tty->print("PREFETCHNTA");
a61af66fc99e Initial load
duke
parents:
diff changeset
378 } else if (AllocatePrefetchInstr == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
379 tty->print("PREFETCHT0");
a61af66fc99e Initial load
duke
parents:
diff changeset
380 } else if (AllocatePrefetchInstr == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 tty->print("PREFETCHT2");
a61af66fc99e Initial load
duke
parents:
diff changeset
382 } else if (AllocatePrefetchInstr == 3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 tty->print("PREFETCHW");
a61af66fc99e Initial load
duke
parents:
diff changeset
384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
385 if (AllocatePrefetchLines > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 tty->print_cr(" %d, %d lines with step %d bytes", AllocatePrefetchDistance, AllocatePrefetchLines, AllocatePrefetchStepSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
388 tty->print_cr(" %d, one line", AllocatePrefetchDistance);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 if (PrefetchCopyIntervalInBytes > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 tty->print_cr("PrefetchCopyIntervalInBytes %d", PrefetchCopyIntervalInBytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394 if (PrefetchScanIntervalInBytes > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
395 tty->print_cr("PrefetchScanIntervalInBytes %d", PrefetchScanIntervalInBytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 }
a61af66fc99e Initial load
duke
parents:
diff changeset
397 if (PrefetchFieldsAhead > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
398 tty->print_cr("PrefetchFieldsAhead %d", PrefetchFieldsAhead);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 void VM_Version::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
405 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // Making this stub must be FIRST use of assembler
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 stub_blob = BufferBlob::create("getPsrInfo_stub", stub_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (stub_blob == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 vm_exit_during_initialization("Unable to allocate getPsrInfo_stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 CodeBuffer c(stub_blob->instructions_begin(),
a61af66fc99e Initial load
duke
parents:
diff changeset
413 stub_blob->instructions_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
414 VM_Version_StubGenerator g(&c);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 getPsrInfo_stub = CAST_TO_FN_PTR(getPsrInfo_stub_t,
a61af66fc99e Initial load
duke
parents:
diff changeset
416 g.generate_getPsrInfo());
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 get_processor_features();
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }