blob: 824a4f81edceda59601d537e41bb1b250b2b1ef3 [file] [log] [blame]
njnc6168192004-11-29 13:54:10 +00001
2/*--------------------------------------------------------------------*/
njn528b07e2005-06-10 04:46:19 +00003/*--- AMD64-specific definitions. cg-amd64.c ---*/
njnc6168192004-11-29 13:54:10 +00004/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Cachegrind, a Valgrind tool for cache
8 profiling programs.
9
njn53612422005-03-12 16:22:54 +000010 Copyright (C) 2002-2005 Nicholas Nethercote
njn2bc10122005-05-08 02:10:27 +000011 njn@valgrind.org
njnc6168192004-11-29 13:54:10 +000012
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#include "tool.h"
32#include "cg_arch.h"
njn97405b22005-06-02 03:39:33 +000033#include "pub_tool_libcbase.h"
njnf39e9a32005-06-12 02:43:17 +000034#include "pub_tool_libcassert.h"
njn36a20fa2005-06-03 03:08:39 +000035#include "pub_tool_libcprint.h"
njnc6168192004-11-29 13:54:10 +000036
37// All CPUID info taken from sandpile.org/a32/cpuid.htm */
38// Probably only works for Intel and AMD chips, and probably only for some of
39// them.
40
njnc6168192004-11-29 13:54:10 +000041static void micro_ops_warn(Int actual_size, Int used_size, Int line_size)
42{
43 VG_(message)(Vg_DebugMsg,
44 "warning: Pentium with %d K micro-op instruction trace cache",
45 actual_size);
46 VG_(message)(Vg_DebugMsg,
47 " Simulating a %d KB cache with %d B lines",
48 used_size, line_size);
49}
50
51/* Intel method is truly wretched. We have to do an insane indexing into an
52 * array of pre-defined configurations for various parts of the memory
53 * hierarchy.
54 */
55static
56Int Intel_cache_info(Int level, cache_t* I1c, cache_t* D1c, cache_t* L2c)
57{
58 UChar info[16];
59 Int i, trials;
60 Bool L2_found = False;
61
62 if (level < 2) {
63 VG_(message)(Vg_DebugMsg,
64 "warning: CPUID level < 2 for Intel processor (%d)",
65 level);
66 return -1;
67 }
68
69 VG_(cpuid)(2, (Int*)&info[0], (Int*)&info[4],
70 (Int*)&info[8], (Int*)&info[12]);
71 trials = info[0] - 1; /* AL register - bits 0..7 of %eax */
72 info[0] = 0x0; /* reset AL */
73
74 if (0 != trials) {
75 VG_(message)(Vg_DebugMsg,
76 "warning: non-zero CPUID trials for Intel processor (%d)",
77 trials);
78 return -1;
79 }
80
81 for (i = 0; i < 16; i++) {
82
83 switch (info[i]) {
84
85 case 0x0: /* ignore zeros */
86 break;
87
88 /* TLB info, ignore */
89 case 0x01: case 0x02: case 0x03: case 0x04:
90 case 0x50: case 0x51: case 0x52: case 0x5b: case 0x5c: case 0x5d:
91 case 0xb0: case 0xb3:
92 break;
93
94 case 0x06: *I1c = (cache_t) { 8, 4, 32 }; break;
95 case 0x08: *I1c = (cache_t) { 16, 4, 32 }; break;
96 case 0x30: *I1c = (cache_t) { 32, 8, 64 }; break;
97
98 case 0x0a: *D1c = (cache_t) { 8, 2, 32 }; break;
99 case 0x0c: *D1c = (cache_t) { 16, 4, 32 }; break;
100 case 0x2c: *D1c = (cache_t) { 32, 8, 64 }; break;
101
102 /* IA-64 info -- panic! */
103 case 0x10: case 0x15: case 0x1a:
104 case 0x88: case 0x89: case 0x8a: case 0x8d:
105 case 0x90: case 0x96: case 0x9b:
106 VG_(tool_panic)("IA-64 cache detected?!");
107
108 case 0x22: case 0x23: case 0x25: case 0x29:
109 VG_(message)(Vg_DebugMsg,
110 "warning: L3 cache detected but ignored\n");
111 break;
112
113 /* These are sectored, whatever that means */
114 case 0x39: *L2c = (cache_t) { 128, 4, 64 }; L2_found = True; break;
115 case 0x3c: *L2c = (cache_t) { 256, 4, 64 }; L2_found = True; break;
116
117 /* If a P6 core, this means "no L2 cache".
118 If a P4 core, this means "no L3 cache".
119 We don't know what core it is, so don't issue a warning. To detect
120 a missing L2 cache, we use 'L2_found'. */
121 case 0x40:
122 break;
123
124 case 0x41: *L2c = (cache_t) { 128, 4, 32 }; L2_found = True; break;
125 case 0x42: *L2c = (cache_t) { 256, 4, 32 }; L2_found = True; break;
126 case 0x43: *L2c = (cache_t) { 512, 4, 32 }; L2_found = True; break;
127 case 0x44: *L2c = (cache_t) { 1024, 4, 32 }; L2_found = True; break;
128 case 0x45: *L2c = (cache_t) { 2048, 4, 32 }; L2_found = True; break;
129
130 /* These are sectored, whatever that means */
131 case 0x60: *D1c = (cache_t) { 16, 8, 64 }; break; /* sectored */
132 case 0x66: *D1c = (cache_t) { 8, 4, 64 }; break; /* sectored */
133 case 0x67: *D1c = (cache_t) { 16, 4, 64 }; break; /* sectored */
134 case 0x68: *D1c = (cache_t) { 32, 4, 64 }; break; /* sectored */
135
136 /* HACK ALERT: Instruction trace cache -- capacity is micro-ops based.
137 * conversion to byte size is a total guess; treat the 12K and 16K
138 * cases the same since the cache byte size must be a power of two for
139 * everything to work!. Also guessing 32 bytes for the line size...
140 */
141 case 0x70: /* 12K micro-ops, 8-way */
142 *I1c = (cache_t) { 16, 8, 32 };
143 micro_ops_warn(12, 16, 32);
144 break;
145 case 0x71: /* 16K micro-ops, 8-way */
146 *I1c = (cache_t) { 16, 8, 32 };
147 micro_ops_warn(16, 16, 32);
148 break;
149 case 0x72: /* 32K micro-ops, 8-way */
150 *I1c = (cache_t) { 32, 8, 32 };
151 micro_ops_warn(32, 32, 32);
152 break;
153
154 /* These are sectored, whatever that means */
155 case 0x79: *L2c = (cache_t) { 128, 8, 64 }; L2_found = True; break;
156 case 0x7a: *L2c = (cache_t) { 256, 8, 64 }; L2_found = True; break;
157 case 0x7b: *L2c = (cache_t) { 512, 8, 64 }; L2_found = True; break;
158 case 0x7c: *L2c = (cache_t) { 1024, 8, 64 }; L2_found = True; break;
159 case 0x7e: *L2c = (cache_t) { 256, 8, 128 }; L2_found = True; break;
160
161 case 0x81: *L2c = (cache_t) { 128, 8, 32 }; L2_found = True; break;
162 case 0x82: *L2c = (cache_t) { 256, 8, 32 }; L2_found = True; break;
163 case 0x83: *L2c = (cache_t) { 512, 8, 32 }; L2_found = True; break;
164 case 0x84: *L2c = (cache_t) { 1024, 8, 32 }; L2_found = True; break;
165 case 0x85: *L2c = (cache_t) { 2048, 8, 32 }; L2_found = True; break;
166 case 0x86: *L2c = (cache_t) { 512, 4, 64 }; L2_found = True; break;
167 case 0x87: *L2c = (cache_t) { 1024, 8, 64 }; L2_found = True; break;
168
169 default:
170 VG_(message)(Vg_DebugMsg,
171 "warning: Unknown Intel cache config value "
172 "(0x%x), ignoring", info[i]);
173 break;
174 }
175 }
176
177 if (!L2_found)
178 VG_(message)(Vg_DebugMsg,
179 "warning: L2 cache not installed, ignore L2 results.");
180
181 return 0;
182}
183
184/* AMD method is straightforward, just extract appropriate bits from the
185 * result registers.
186 *
187 * Bits, for D1 and I1:
188 * 31..24 data L1 cache size in KBs
189 * 23..16 data L1 cache associativity (FFh=full)
190 * 15.. 8 data L1 cache lines per tag
191 * 7.. 0 data L1 cache line size in bytes
192 *
193 * Bits, for L2:
194 * 31..16 unified L2 cache size in KBs
195 * 15..12 unified L2 cache associativity (0=off, FFh=full)
196 * 11.. 8 unified L2 cache lines per tag
197 * 7.. 0 unified L2 cache line size in bytes
198 *
199 * #3 The AMD K7 processor's L2 cache must be configured prior to relying
200 * upon this information. (Whatever that means -- njn)
201 *
202 * Also, according to Cyrille Chepelov, Duron stepping A0 processors (model
203 * 0x630) have a bug and misreport their L2 size as 1KB (it's really 64KB),
204 * so we detect that.
205 *
206 * Returns 0 on success, non-zero on failure.
207 */
208static
209Int AMD_cache_info(cache_t* I1c, cache_t* D1c, cache_t* L2c)
210{
211 UInt ext_level;
212 UInt dummy, model;
213 UInt I1i, D1i, L2i;
214
215 VG_(cpuid)(0x80000000, &ext_level, &dummy, &dummy, &dummy);
216
217 if (0 == (ext_level & 0x80000000) || ext_level < 0x80000006) {
218 VG_(message)(Vg_UserMsg,
219 "warning: ext_level < 0x80000006 for AMD processor (0x%x)",
220 ext_level);
221 return -1;
222 }
223
224 VG_(cpuid)(0x80000005, &dummy, &dummy, &D1i, &I1i);
225 VG_(cpuid)(0x80000006, &dummy, &dummy, &L2i, &dummy);
226
227 VG_(cpuid)(0x1, &model, &dummy, &dummy, &dummy);
228
229 /* Check for Duron bug */
230 if (model == 0x630) {
231 VG_(message)(Vg_UserMsg,
232 "Buggy Duron stepping A0. Assuming L2 size=65536 bytes");
233 L2i = (64 << 16) | (L2i & 0xffff);
234 }
235
236 D1c->size = (D1i >> 24) & 0xff;
237 D1c->assoc = (D1i >> 16) & 0xff;
238 D1c->line_size = (D1i >> 0) & 0xff;
239
240 I1c->size = (I1i >> 24) & 0xff;
241 I1c->assoc = (I1i >> 16) & 0xff;
242 I1c->line_size = (I1i >> 0) & 0xff;
243
244 L2c->size = (L2i >> 16) & 0xffff; /* Nb: different bits used for L2 */
245 L2c->assoc = (L2i >> 12) & 0xf;
246 L2c->line_size = (L2i >> 0) & 0xff;
247
248 return 0;
249}
250
njnc6168192004-11-29 13:54:10 +0000251static
252Int get_caches_from_CPUID(cache_t* I1c, cache_t* D1c, cache_t* L2c)
253{
tom094031a2005-04-02 17:26:07 +0000254 Int level, ret;
njnc6168192004-11-29 13:54:10 +0000255 Char vendor_id[13];
tomf4ed0592005-04-02 17:30:19 +0000256
257 if (!VG_(has_cpuid)()) {
njnc6168192004-11-29 13:54:10 +0000258 VG_(message)(Vg_DebugMsg, "CPUID instruction not supported");
njnc6168192004-11-29 13:54:10 +0000259 return -1;
260 }
261
tomf4ed0592005-04-02 17:30:19 +0000262 VG_(cpuid)(0, &level, (int*)&vendor_id[0],
263 (int*)&vendor_id[8], (int*)&vendor_id[4]);
264 vendor_id[12] = '\0';
265
njnc6168192004-11-29 13:54:10 +0000266 if (0 == level) {
267 VG_(message)(Vg_DebugMsg, "CPUID level is 0, early Pentium?\n");
268 return -1;
269 }
270
271 /* Only handling Intel and AMD chips... no Cyrix, Transmeta, etc */
272 if (0 == VG_(strcmp)(vendor_id, "GenuineIntel")) {
273 ret = Intel_cache_info(level, I1c, D1c, L2c);
274
275 } else if (0 == VG_(strcmp)(vendor_id, "AuthenticAMD")) {
276 ret = AMD_cache_info(I1c, D1c, L2c);
277
njnc6168192004-11-29 13:54:10 +0000278 } else {
279 VG_(message)(Vg_DebugMsg, "CPU vendor ID not recognised (%s)",
280 vendor_id);
281 return -1;
282 }
283
284 /* Successful! Convert sizes from KB to bytes */
285 I1c->size *= 1024;
286 D1c->size *= 1024;
287 L2c->size *= 1024;
288
289 return ret;
290}
njnc6168192004-11-29 13:54:10 +0000291
292
293void VGA_(configure_caches)(cache_t* I1c, cache_t* D1c, cache_t* L2c,
294 Bool all_caches_clo_defined)
295{
njnc6168192004-11-29 13:54:10 +0000296 Int res;
297
298 // Set caches to default.
299 *I1c = (cache_t) { 65536, 2, 64 };
300 *D1c = (cache_t) { 65536, 2, 64 };
301 *L2c = (cache_t) { 262144, 8, 64 };
302
303 // Then replace with any info we can get from CPUID.
304 res = get_caches_from_CPUID(I1c, D1c, L2c);
305
306 // Warn if CPUID failed and config not completely specified from cmd line.
307 if (res != 0 && !all_caches_clo_defined) {
308 VG_(message)(Vg_DebugMsg,
309 "Warning: Couldn't auto-detect cache config, using one "
310 "or more defaults ");
311 }
njnc6168192004-11-29 13:54:10 +0000312}
313
314/*--------------------------------------------------------------------*/
315/*--- end ---*/
316/*--------------------------------------------------------------------*/