annotate src/cpu/x86/vm/vm_version_x86_32.hpp @ 71:3d62cb85208d

6662967: Optimize I2D conversion on new x86 Summary: Use CVTDQ2PS and CVTDQ2PD for integer values conversions to float and double values on new AMD cpu. Reviewed-by: sgoldman, never
author kvn
date Wed, 19 Mar 2008 15:33:25 -0700
parents a61af66fc99e
children 2649e5276dd7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
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 class VM_Version: public Abstract_VM_Version {
a61af66fc99e Initial load
duke
parents:
diff changeset
26 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // cpuid result register layouts. These are all unions of a uint32_t
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // (in case anyone wants access to the register as a whole) and a bitfield.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 union StdCpuid1Eax {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 uint32_t stepping : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
34 model : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 family : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 proc_type : 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 : 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ext_model : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ext_family : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
40 : 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 };
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 union StdCpuid1Ebx { // example, unused
a61af66fc99e Initial load
duke
parents:
diff changeset
45 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 uint32_t brand_id : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
48 clflush_size : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
49 threads_per_cpu : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
50 apic_id : 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 };
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 union StdCpuid1Ecx {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 uint32_t sse3 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
58 : 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
59 monitor : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
60 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 vmx : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 est : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
64 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ssse3 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 cid : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
67 : 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
68 cmpxchg16: 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 dca : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
71 : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
72 popcnt : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 : 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 };
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 union StdCpuid1Edx {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 uint32_t : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
81 tsc : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
82 : 3,
a61af66fc99e Initial load
duke
parents:
diff changeset
83 cmpxchg8 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
84 : 6,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 cmov : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 : 7,
a61af66fc99e Initial load
duke
parents:
diff changeset
87 mmx : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
88 fxsr : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
89 sse : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 sse2 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
91 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ht : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 : 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 };
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 union DcpCpuid4Eax {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 uint32_t cache_type : 5,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 : 21,
a61af66fc99e Initial load
duke
parents:
diff changeset
102 cores_per_cpu : 6;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 };
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 union DcpCpuid4Ebx {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 uint32_t L1_line_size : 12,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 partitions : 10,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 associativity : 10;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 };
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 union ExtCpuid1Ecx {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 uint32_t LahfSahf : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
119 CmpLegacy : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
120 : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 abm : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
122 sse4a : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 misalignsse : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
124 prefetchw : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
125 : 22;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 };
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 union ExtCpuid1Edx {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 uint32_t : 22,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 mmx_amd : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 mmx : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
135 fxsr : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
136 : 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
137 long_mode : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
138 tdnow2 : 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 tdnow : 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 };
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 union ExtCpuid5Ex {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 uint32_t L1_line_size : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
147 L1_tag_lines : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
148 L1_assoc : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
149 L1_size : 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 };
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 union ExtCpuid8Ecx {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 uint32_t value;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 uint32_t cores_per_cpu : 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
157 : 24;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 } bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 };
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static int _cpu;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 static int _model;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 static int _stepping;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 static int _cpuFeatures; // features returned by the "cpuid" instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // 0 if this instruction is not available
a61af66fc99e Initial load
duke
parents:
diff changeset
167 static const char* _features_str;
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 CPU_CX8 = (1 << 0), // next bits are from cpuid 1 (EDX)
a61af66fc99e Initial load
duke
parents:
diff changeset
171 CPU_CMOV = (1 << 1),
a61af66fc99e Initial load
duke
parents:
diff changeset
172 CPU_FXSR = (1 << 2),
a61af66fc99e Initial load
duke
parents:
diff changeset
173 CPU_HT = (1 << 3),
a61af66fc99e Initial load
duke
parents:
diff changeset
174 CPU_MMX = (1 << 4),
a61af66fc99e Initial load
duke
parents:
diff changeset
175 CPU_3DNOW= (1 << 5), // 3DNow comes from cpuid 0x80000001 (EDX)
a61af66fc99e Initial load
duke
parents:
diff changeset
176 CPU_SSE = (1 << 6),
a61af66fc99e Initial load
duke
parents:
diff changeset
177 CPU_SSE2 = (1 << 7),
a61af66fc99e Initial load
duke
parents:
diff changeset
178 CPU_SSE3 = (1 << 8), // sse3 comes from cpuid 1 (ECX)
a61af66fc99e Initial load
duke
parents:
diff changeset
179 CPU_SSSE3= (1 << 9),
a61af66fc99e Initial load
duke
parents:
diff changeset
180 CPU_SSE4 = (1 <<10),
a61af66fc99e Initial load
duke
parents:
diff changeset
181 CPU_SSE4A= (1 <<11)
a61af66fc99e Initial load
duke
parents:
diff changeset
182 } cpuFeatureFlags;
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // cpuid information block. All info derived from executing cpuid with
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // various function numbers is stored here. Intel and AMD info is
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // merged in this block: accessor methods disentangle it.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 //
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // The info block is laid out in subblocks of 4 dwords corresponding to
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // rax, rbx, rcx and rdx, whether or not they contain anything useful.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 struct CpuidInfo {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // cpuid function 0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 uint32_t std_max_function;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 uint32_t std_vendor_name_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 uint32_t std_vendor_name_1;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 uint32_t std_vendor_name_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // cpuid function 1
a61af66fc99e Initial load
duke
parents:
diff changeset
198 StdCpuid1Eax std_cpuid1_rax;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 StdCpuid1Ebx std_cpuid1_rbx;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 StdCpuid1Ecx std_cpuid1_rcx;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 StdCpuid1Edx std_cpuid1_rdx;
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // cpuid function 4 (deterministic cache parameters)
a61af66fc99e Initial load
duke
parents:
diff changeset
204 DcpCpuid4Eax dcp_cpuid4_rax;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 DcpCpuid4Ebx dcp_cpuid4_rbx;
a61af66fc99e Initial load
duke
parents:
diff changeset
206 uint32_t dcp_cpuid4_rcx; // unused currently
a61af66fc99e Initial load
duke
parents:
diff changeset
207 uint32_t dcp_cpuid4_rdx; // unused currently
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // cpuid function 0x80000000 // example, unused
a61af66fc99e Initial load
duke
parents:
diff changeset
210 uint32_t ext_max_function;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 uint32_t ext_vendor_name_0;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 uint32_t ext_vendor_name_1;
a61af66fc99e Initial load
duke
parents:
diff changeset
213 uint32_t ext_vendor_name_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // cpuid function 0x80000001
a61af66fc99e Initial load
duke
parents:
diff changeset
216 uint32_t ext_cpuid1_rax; // reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
217 uint32_t ext_cpuid1_rbx; // reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
218 ExtCpuid1Ecx ext_cpuid1_rcx;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 ExtCpuid1Edx ext_cpuid1_rdx;
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // cpuid functions 0x80000002 thru 0x80000004: example, unused
a61af66fc99e Initial load
duke
parents:
diff changeset
222 uint32_t proc_name_0, proc_name_1, proc_name_2, proc_name_3;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 uint32_t proc_name_4, proc_name_5, proc_name_6, proc_name_7;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 uint32_t proc_name_8, proc_name_9, proc_name_10,proc_name_11;
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // cpuid function 0x80000005 //AMD L1, Intel reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
227 uint32_t ext_cpuid5_rax; // unused currently
a61af66fc99e Initial load
duke
parents:
diff changeset
228 uint32_t ext_cpuid5_rbx; // reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
229 ExtCpuid5Ex ext_cpuid5_rcx; // L1 data cache info (AMD)
a61af66fc99e Initial load
duke
parents:
diff changeset
230 ExtCpuid5Ex ext_cpuid5_rdx; // L1 instruction cache info (AMD)
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // cpuid function 0x80000008
a61af66fc99e Initial load
duke
parents:
diff changeset
233 uint32_t ext_cpuid8_rax; // unused currently
a61af66fc99e Initial load
duke
parents:
diff changeset
234 uint32_t ext_cpuid8_rbx; // reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
235 ExtCpuid8Ecx ext_cpuid8_rcx;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 uint32_t ext_cpuid8_rdx; // reserved
a61af66fc99e Initial load
duke
parents:
diff changeset
237 };
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // The actual cpuid info block
a61af66fc99e Initial load
duke
parents:
diff changeset
240 static CpuidInfo _cpuid_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Extractors and predicates
a61af66fc99e Initial load
duke
parents:
diff changeset
243 static bool is_extended_cpu_family() {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 const uint32_t Extended_Cpu_Family = 0xf;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 return _cpuid_info.std_cpuid1_rax.bits.family == Extended_Cpu_Family;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 static uint32_t extended_cpu_family() {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 uint32_t result = _cpuid_info.std_cpuid1_rax.bits.family;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if (is_extended_cpu_family()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 result += _cpuid_info.std_cpuid1_rax.bits.ext_family;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 static uint32_t extended_cpu_model() {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 uint32_t result = _cpuid_info.std_cpuid1_rax.bits.model;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 if (is_extended_cpu_family()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 result |= _cpuid_info.std_cpuid1_rax.bits.ext_model << 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 static uint32_t cpu_stepping() {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 uint32_t result = _cpuid_info.std_cpuid1_rax.bits.stepping;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 static uint logical_processor_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 uint result = threads_per_core();
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 static uint32_t feature_flags() {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 uint32_t result = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 if (_cpuid_info.std_cpuid1_rdx.bits.cmpxchg8 != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
272 result |= CPU_CX8;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if (_cpuid_info.std_cpuid1_rdx.bits.cmov != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
274 result |= CPU_CMOV;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if (_cpuid_info.std_cpuid1_rdx.bits.fxsr != 0 || is_amd() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
276 _cpuid_info.ext_cpuid1_rdx.bits.fxsr != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
277 result |= CPU_FXSR;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // HT flag is set for multi-core processors also.
a61af66fc99e Initial load
duke
parents:
diff changeset
279 if (threads_per_core() > 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
280 result |= CPU_HT;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 if (_cpuid_info.std_cpuid1_rdx.bits.mmx != 0 || is_amd() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
282 _cpuid_info.ext_cpuid1_rdx.bits.mmx != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
283 result |= CPU_MMX;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if (is_amd() && _cpuid_info.ext_cpuid1_rdx.bits.tdnow != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
285 result |= CPU_3DNOW;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 if (_cpuid_info.std_cpuid1_rdx.bits.sse != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
287 result |= CPU_SSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (_cpuid_info.std_cpuid1_rdx.bits.sse2 != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
289 result |= CPU_SSE2;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 if (_cpuid_info.std_cpuid1_rcx.bits.sse3 != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
291 result |= CPU_SSE3;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if (_cpuid_info.std_cpuid1_rcx.bits.ssse3 != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
293 result |= CPU_SSSE3;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 if (is_amd() && _cpuid_info.ext_cpuid1_rcx.bits.sse4a != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
295 result |= CPU_SSE4A;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 static void get_processor_features();
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Offsets for cpuid asm stub
a61af66fc99e Initial load
duke
parents:
diff changeset
303 static ByteSize std_cpuid0_offset() { return byte_offset_of(CpuidInfo, std_max_function); }
a61af66fc99e Initial load
duke
parents:
diff changeset
304 static ByteSize std_cpuid1_offset() { return byte_offset_of(CpuidInfo, std_cpuid1_rax); }
a61af66fc99e Initial load
duke
parents:
diff changeset
305 static ByteSize dcp_cpuid4_offset() { return byte_offset_of(CpuidInfo, dcp_cpuid4_rax); }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 static ByteSize ext_cpuid1_offset() { return byte_offset_of(CpuidInfo, ext_cpuid1_rax); }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 static ByteSize ext_cpuid5_offset() { return byte_offset_of(CpuidInfo, ext_cpuid5_rax); }
a61af66fc99e Initial load
duke
parents:
diff changeset
308 static ByteSize ext_cpuid8_offset() { return byte_offset_of(CpuidInfo, ext_cpuid8_rax); }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
311 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Asserts
a61af66fc99e Initial load
duke
parents:
diff changeset
314 static void assert_is_initialized() {
a61af66fc99e Initial load
duke
parents:
diff changeset
315 assert(_cpuid_info.std_cpuid1_rax.bits.family != 0, "VM_Version not initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 //
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // Processor family:
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // 3 - 386
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // 4 - 486
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // 5 - Pentium
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // 6 - PentiumPro, Pentium II, Celeron, Xeon, Pentium III, Athlon,
a61af66fc99e Initial load
duke
parents:
diff changeset
324 // Pentium M, Core Solo, Core Duo, Core2 Duo
a61af66fc99e Initial load
duke
parents:
diff changeset
325 // family 6 model: 9, 13, 14, 15
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // 0x0f - Pentium 4, Opteron
a61af66fc99e Initial load
duke
parents:
diff changeset
327 //
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // Note: The cpu family should be used to select between
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // instruction sequences which are valid on all Intel
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // processors. Use the feature test functions below to
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // determine whether a particular instruction is supported.
a61af66fc99e Initial load
duke
parents:
diff changeset
332 //
a61af66fc99e Initial load
duke
parents:
diff changeset
333 static int cpu_family() { return _cpu;}
a61af66fc99e Initial load
duke
parents:
diff changeset
334 static bool is_P6() { return cpu_family() >= 6; }
a61af66fc99e Initial load
duke
parents:
diff changeset
335
a61af66fc99e Initial load
duke
parents:
diff changeset
336 static bool is_amd() { assert_is_initialized(); return _cpuid_info.std_vendor_name_0 == 0x68747541; } // 'htuA'
a61af66fc99e Initial load
duke
parents:
diff changeset
337 static bool is_intel() { assert_is_initialized(); return _cpuid_info.std_vendor_name_0 == 0x756e6547; } // 'uneG'
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 static uint cores_per_cpu() {
a61af66fc99e Initial load
duke
parents:
diff changeset
340 uint result = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 if (is_intel()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
342 result = (_cpuid_info.dcp_cpuid4_rax.bits.cores_per_cpu + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 } else if (is_amd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 result = (_cpuid_info.ext_cpuid8_rcx.bits.cores_per_cpu + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
346 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 static uint threads_per_core() {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 uint result = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 if (_cpuid_info.std_cpuid1_rdx.bits.ht != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 result = _cpuid_info.std_cpuid1_rbx.bits.threads_per_cpu /
a61af66fc99e Initial load
duke
parents:
diff changeset
353 cores_per_cpu();
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 static intx L1_data_cache_line_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 intx result = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 if (is_intel()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 result = (_cpuid_info.dcp_cpuid4_rbx.bits.L1_line_size + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 } else if (is_amd()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 result = _cpuid_info.ext_cpuid5_rcx.bits.L1_line_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 }
a61af66fc99e Initial load
duke
parents:
diff changeset
365 if (result < 32) // not defined ?
a61af66fc99e Initial load
duke
parents:
diff changeset
366 result = 32; // 32 bytes by default on x86
a61af66fc99e Initial load
duke
parents:
diff changeset
367 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 //
a61af66fc99e Initial load
duke
parents:
diff changeset
371 // Feature identification
a61af66fc99e Initial load
duke
parents:
diff changeset
372 //
a61af66fc99e Initial load
duke
parents:
diff changeset
373 static bool supports_cpuid() { return _cpuFeatures != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
374 static bool supports_cmpxchg8() { return (_cpuFeatures & CPU_CX8) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 static bool supports_cmov() { return (_cpuFeatures & CPU_CMOV) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
376 static bool supports_fxsr() { return (_cpuFeatures & CPU_FXSR) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 static bool supports_ht() { return (_cpuFeatures & CPU_HT) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
378 static bool supports_mmx() { return (_cpuFeatures & CPU_MMX) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
379 static bool supports_sse() { return (_cpuFeatures & CPU_SSE) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
380 static bool supports_sse2() { return (_cpuFeatures & CPU_SSE2) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 static bool supports_sse3() { return (_cpuFeatures & CPU_SSE3) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
382 static bool supports_ssse3() { return (_cpuFeatures & CPU_SSSE3)!= 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
383 static bool supports_sse4() { return (_cpuFeatures & CPU_SSE4) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 //
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // AMD features
a61af66fc99e Initial load
duke
parents:
diff changeset
386 //
a61af66fc99e Initial load
duke
parents:
diff changeset
387 static bool supports_3dnow() { return (_cpuFeatures & CPU_3DNOW) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 static bool supports_mmx_ext() { return is_amd() && _cpuid_info.ext_cpuid1_rdx.bits.mmx_amd != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
389 static bool supports_3dnow2() { return is_amd() && _cpuid_info.ext_cpuid1_rdx.bits.tdnow2 != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 static bool supports_sse4a() { return (_cpuFeatures & CPU_SSE4A) != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 static bool supports_compare_and_exchange() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 static const char* cpu_features() { return _features_str; }
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 static intx allocate_prefetch_distance() {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // This method should be called before allocate_prefetch_style().
a61af66fc99e Initial load
duke
parents:
diff changeset
398 //
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // Hardware prefetching (distance/size in bytes):
a61af66fc99e Initial load
duke
parents:
diff changeset
400 // Pentium 3 - 64 / 32
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // Pentium 4 - 256 / 128
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Athlon - 64 / 32 ????
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // Opteron - 128 / 64 only when 2 sequential cache lines accessed
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // Core - 128 / 64
a61af66fc99e Initial load
duke
parents:
diff changeset
405 //
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // Software prefetching (distance in bytes / instruction with best score):
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // Pentium 3 - 128 / prefetchnta
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // Pentium 4 - 512 / prefetchnta
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // Athlon - 128 / prefetchnta
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // Opteron - 256 / prefetchnta
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // Core - 256 / prefetchnta
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // It will be used only when AllocatePrefetchStyle > 0
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 intx count = AllocatePrefetchDistance;
a61af66fc99e Initial load
duke
parents:
diff changeset
415 if (count < 0) { // default ?
a61af66fc99e Initial load
duke
parents:
diff changeset
416 if (is_amd()) { // AMD
a61af66fc99e Initial load
duke
parents:
diff changeset
417 if (supports_sse2())
a61af66fc99e Initial load
duke
parents:
diff changeset
418 count = 256; // Opteron
a61af66fc99e Initial load
duke
parents:
diff changeset
419 else
a61af66fc99e Initial load
duke
parents:
diff changeset
420 count = 128; // Athlon
a61af66fc99e Initial load
duke
parents:
diff changeset
421 } else { // Intel
a61af66fc99e Initial load
duke
parents:
diff changeset
422 if (supports_sse2())
a61af66fc99e Initial load
duke
parents:
diff changeset
423 if (cpu_family() == 6) {
a61af66fc99e Initial load
duke
parents:
diff changeset
424 count = 256; // Pentium M, Core, Core2
a61af66fc99e Initial load
duke
parents:
diff changeset
425 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
426 count = 512; // Pentium 4
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428 else
a61af66fc99e Initial load
duke
parents:
diff changeset
429 count = 128; // Pentium 3 (and all other old CPUs)
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432 return count;
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434 static intx allocate_prefetch_style() {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 assert(AllocatePrefetchStyle >= 0, "AllocatePrefetchStyle should be positive");
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Return 0 if AllocatePrefetchDistance was not defined or
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // prefetch instruction is not supported.
a61af66fc99e Initial load
duke
parents:
diff changeset
438 return (AllocatePrefetchDistance > 0 &&
a61af66fc99e Initial load
duke
parents:
diff changeset
439 (supports_3dnow() || supports_sse())) ? AllocatePrefetchStyle : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 };