blob: 36832fc4e08ed78108cade727447ebc255edc575 [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
njnc7561b92005-06-19 01:24:32 +000031#include "pub_tool_basics.h"
sewardjc93cf062005-06-30 23:20:30 +000032#include "pub_tool_cpuid.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
njnc7561b92005-06-19 01:24:32 +000037#include "cg_arch.h"
38
njnc6168192004-11-29 13:54:10 +000039// All CPUID info taken from sandpile.org/a32/cpuid.htm */
40// Probably only works for Intel and AMD chips, and probably only for some of
41// them.
42
njnc6168192004-11-29 13:54:10 +000043static void micro_ops_warn(Int actual_size, Int used_size, Int line_size)
44{
45 VG_(message)(Vg_DebugMsg,
46 "warning: Pentium with %d K micro-op instruction trace cache",
47 actual_size);
48 VG_(message)(Vg_DebugMsg,
49 " Simulating a %d KB cache with %d B lines",
50 used_size, line_size);
51}
52
53/* Intel method is truly wretched. We have to do an insane indexing into an
54 * array of pre-defined configurations for various parts of the memory
55 * hierarchy.
56 */
57static
58Int Intel_cache_info(Int level, cache_t* I1c, cache_t* D1c, cache_t* L2c)
59{
60 UChar info[16];
61 Int i, trials;
62 Bool L2_found = False;
63
64 if (level < 2) {
65 VG_(message)(Vg_DebugMsg,
66 "warning: CPUID level < 2 for Intel processor (%d)",
67 level);
68 return -1;
69 }
70
71 VG_(cpuid)(2, (Int*)&info[0], (Int*)&info[4],
72 (Int*)&info[8], (Int*)&info[12]);
73 trials = info[0] - 1; /* AL register - bits 0..7 of %eax */
74 info[0] = 0x0; /* reset AL */
75
76 if (0 != trials) {
77 VG_(message)(Vg_DebugMsg,
78 "warning: non-zero CPUID trials for Intel processor (%d)",
79 trials);
80 return -1;
81 }
82
83 for (i = 0; i < 16; i++) {
84
85 switch (info[i]) {
86
87 case 0x0: /* ignore zeros */
88 break;
89
90 /* TLB info, ignore */
91 case 0x01: case 0x02: case 0x03: case 0x04:
92 case 0x50: case 0x51: case 0x52: case 0x5b: case 0x5c: case 0x5d:
93 case 0xb0: case 0xb3:
94 break;
95
96 case 0x06: *I1c = (cache_t) { 8, 4, 32 }; break;
97 case 0x08: *I1c = (cache_t) { 16, 4, 32 }; break;
98 case 0x30: *I1c = (cache_t) { 32, 8, 64 }; break;
99
100 case 0x0a: *D1c = (cache_t) { 8, 2, 32 }; break;
101 case 0x0c: *D1c = (cache_t) { 16, 4, 32 }; break;
102 case 0x2c: *D1c = (cache_t) { 32, 8, 64 }; break;
103
104 /* IA-64 info -- panic! */
105 case 0x10: case 0x15: case 0x1a:
106 case 0x88: case 0x89: case 0x8a: case 0x8d:
107 case 0x90: case 0x96: case 0x9b:
108 VG_(tool_panic)("IA-64 cache detected?!");
109
110 case 0x22: case 0x23: case 0x25: case 0x29:
111 VG_(message)(Vg_DebugMsg,
112 "warning: L3 cache detected but ignored\n");
113 break;
114
115 /* These are sectored, whatever that means */
116 case 0x39: *L2c = (cache_t) { 128, 4, 64 }; L2_found = True; break;
117 case 0x3c: *L2c = (cache_t) { 256, 4, 64 }; L2_found = True; break;
118
119 /* If a P6 core, this means "no L2 cache".
120 If a P4 core, this means "no L3 cache".
121 We don't know what core it is, so don't issue a warning. To detect
122 a missing L2 cache, we use 'L2_found'. */
123 case 0x40:
124 break;
125
126 case 0x41: *L2c = (cache_t) { 128, 4, 32 }; L2_found = True; break;
127 case 0x42: *L2c = (cache_t) { 256, 4, 32 }; L2_found = True; break;
128 case 0x43: *L2c = (cache_t) { 512, 4, 32 }; L2_found = True; break;
129 case 0x44: *L2c = (cache_t) { 1024, 4, 32 }; L2_found = True; break;
130 case 0x45: *L2c = (cache_t) { 2048, 4, 32 }; L2_found = True; break;
131
132 /* These are sectored, whatever that means */
133 case 0x60: *D1c = (cache_t) { 16, 8, 64 }; break; /* sectored */
134 case 0x66: *D1c = (cache_t) { 8, 4, 64 }; break; /* sectored */
135 case 0x67: *D1c = (cache_t) { 16, 4, 64 }; break; /* sectored */
136 case 0x68: *D1c = (cache_t) { 32, 4, 64 }; break; /* sectored */
137
138 /* HACK ALERT: Instruction trace cache -- capacity is micro-ops based.
139 * conversion to byte size is a total guess; treat the 12K and 16K
140 * cases the same since the cache byte size must be a power of two for
141 * everything to work!. Also guessing 32 bytes for the line size...
142 */
143 case 0x70: /* 12K micro-ops, 8-way */
144 *I1c = (cache_t) { 16, 8, 32 };
145 micro_ops_warn(12, 16, 32);
146 break;
147 case 0x71: /* 16K micro-ops, 8-way */
148 *I1c = (cache_t) { 16, 8, 32 };
149 micro_ops_warn(16, 16, 32);
150 break;
151 case 0x72: /* 32K micro-ops, 8-way */
152 *I1c = (cache_t) { 32, 8, 32 };
153 micro_ops_warn(32, 32, 32);
154 break;
155
156 /* These are sectored, whatever that means */
157 case 0x79: *L2c = (cache_t) { 128, 8, 64 }; L2_found = True; break;
158 case 0x7a: *L2c = (cache_t) { 256, 8, 64 }; L2_found = True; break;
159 case 0x7b: *L2c = (cache_t) { 512, 8, 64 }; L2_found = True; break;
160 case 0x7c: *L2c = (cache_t) { 1024, 8, 64 }; L2_found = True; break;
njn8bc85822005-07-20 04:32:44 +0000161 case 0x7d: *L2c = (cache_t) { 2048, 8, 64 }; L2_found = True; break;
njnc6168192004-11-29 13:54:10 +0000162 case 0x7e: *L2c = (cache_t) { 256, 8, 128 }; L2_found = True; break;
163
164 case 0x81: *L2c = (cache_t) { 128, 8, 32 }; L2_found = True; break;
165 case 0x82: *L2c = (cache_t) { 256, 8, 32 }; L2_found = True; break;
166 case 0x83: *L2c = (cache_t) { 512, 8, 32 }; L2_found = True; break;
167 case 0x84: *L2c = (cache_t) { 1024, 8, 32 }; L2_found = True; break;
168 case 0x85: *L2c = (cache_t) { 2048, 8, 32 }; L2_found = True; break;
169 case 0x86: *L2c = (cache_t) { 512, 4, 64 }; L2_found = True; break;
170 case 0x87: *L2c = (cache_t) { 1024, 8, 64 }; L2_found = True; break;
171
172 default:
173 VG_(message)(Vg_DebugMsg,
174 "warning: Unknown Intel cache config value "
175 "(0x%x), ignoring", info[i]);
176 break;
177 }
178 }
179
180 if (!L2_found)
181 VG_(message)(Vg_DebugMsg,
182 "warning: L2 cache not installed, ignore L2 results.");
183
184 return 0;
185}
186
187/* AMD method is straightforward, just extract appropriate bits from the
188 * result registers.
189 *
190 * Bits, for D1 and I1:
191 * 31..24 data L1 cache size in KBs
192 * 23..16 data L1 cache associativity (FFh=full)
193 * 15.. 8 data L1 cache lines per tag
194 * 7.. 0 data L1 cache line size in bytes
195 *
196 * Bits, for L2:
197 * 31..16 unified L2 cache size in KBs
198 * 15..12 unified L2 cache associativity (0=off, FFh=full)
199 * 11.. 8 unified L2 cache lines per tag
200 * 7.. 0 unified L2 cache line size in bytes
201 *
202 * #3 The AMD K7 processor's L2 cache must be configured prior to relying
203 * upon this information. (Whatever that means -- njn)
204 *
205 * Also, according to Cyrille Chepelov, Duron stepping A0 processors (model
206 * 0x630) have a bug and misreport their L2 size as 1KB (it's really 64KB),
207 * so we detect that.
208 *
209 * Returns 0 on success, non-zero on failure.
210 */
211static
212Int AMD_cache_info(cache_t* I1c, cache_t* D1c, cache_t* L2c)
213{
214 UInt ext_level;
215 UInt dummy, model;
216 UInt I1i, D1i, L2i;
217
218 VG_(cpuid)(0x80000000, &ext_level, &dummy, &dummy, &dummy);
219
220 if (0 == (ext_level & 0x80000000) || ext_level < 0x80000006) {
221 VG_(message)(Vg_UserMsg,
222 "warning: ext_level < 0x80000006 for AMD processor (0x%x)",
223 ext_level);
224 return -1;
225 }
226
227 VG_(cpuid)(0x80000005, &dummy, &dummy, &D1i, &I1i);
228 VG_(cpuid)(0x80000006, &dummy, &dummy, &L2i, &dummy);
229
230 VG_(cpuid)(0x1, &model, &dummy, &dummy, &dummy);
231
232 /* Check for Duron bug */
233 if (model == 0x630) {
234 VG_(message)(Vg_UserMsg,
235 "Buggy Duron stepping A0. Assuming L2 size=65536 bytes");
236 L2i = (64 << 16) | (L2i & 0xffff);
237 }
238
239 D1c->size = (D1i >> 24) & 0xff;
240 D1c->assoc = (D1i >> 16) & 0xff;
241 D1c->line_size = (D1i >> 0) & 0xff;
242
243 I1c->size = (I1i >> 24) & 0xff;
244 I1c->assoc = (I1i >> 16) & 0xff;
245 I1c->line_size = (I1i >> 0) & 0xff;
246
247 L2c->size = (L2i >> 16) & 0xffff; /* Nb: different bits used for L2 */
248 L2c->assoc = (L2i >> 12) & 0xf;
249 L2c->line_size = (L2i >> 0) & 0xff;
250
251 return 0;
252}
253
njnc6168192004-11-29 13:54:10 +0000254static
255Int get_caches_from_CPUID(cache_t* I1c, cache_t* D1c, cache_t* L2c)
256{
tom094031a2005-04-02 17:26:07 +0000257 Int level, ret;
njnc6168192004-11-29 13:54:10 +0000258 Char vendor_id[13];
tomf4ed0592005-04-02 17:30:19 +0000259
260 if (!VG_(has_cpuid)()) {
njnc6168192004-11-29 13:54:10 +0000261 VG_(message)(Vg_DebugMsg, "CPUID instruction not supported");
njnc6168192004-11-29 13:54:10 +0000262 return -1;
263 }
264
tomf4ed0592005-04-02 17:30:19 +0000265 VG_(cpuid)(0, &level, (int*)&vendor_id[0],
266 (int*)&vendor_id[8], (int*)&vendor_id[4]);
267 vendor_id[12] = '\0';
268
njnc6168192004-11-29 13:54:10 +0000269 if (0 == level) {
270 VG_(message)(Vg_DebugMsg, "CPUID level is 0, early Pentium?\n");
271 return -1;
272 }
273
274 /* Only handling Intel and AMD chips... no Cyrix, Transmeta, etc */
275 if (0 == VG_(strcmp)(vendor_id, "GenuineIntel")) {
276 ret = Intel_cache_info(level, I1c, D1c, L2c);
277
278 } else if (0 == VG_(strcmp)(vendor_id, "AuthenticAMD")) {
279 ret = AMD_cache_info(I1c, D1c, L2c);
280
njnc6168192004-11-29 13:54:10 +0000281 } else {
282 VG_(message)(Vg_DebugMsg, "CPU vendor ID not recognised (%s)",
283 vendor_id);
284 return -1;
285 }
286
287 /* Successful! Convert sizes from KB to bytes */
288 I1c->size *= 1024;
289 D1c->size *= 1024;
290 L2c->size *= 1024;
291
292 return ret;
293}
njnc6168192004-11-29 13:54:10 +0000294
295
njnaf839f52005-06-23 03:27:57 +0000296void VG_(configure_caches)(cache_t* I1c, cache_t* D1c, cache_t* L2c,
297 Bool all_caches_clo_defined)
njnc6168192004-11-29 13:54:10 +0000298{
njnc6168192004-11-29 13:54:10 +0000299 Int res;
300
301 // Set caches to default.
302 *I1c = (cache_t) { 65536, 2, 64 };
303 *D1c = (cache_t) { 65536, 2, 64 };
304 *L2c = (cache_t) { 262144, 8, 64 };
305
306 // Then replace with any info we can get from CPUID.
307 res = get_caches_from_CPUID(I1c, D1c, L2c);
308
309 // Warn if CPUID failed and config not completely specified from cmd line.
310 if (res != 0 && !all_caches_clo_defined) {
311 VG_(message)(Vg_DebugMsg,
312 "Warning: Couldn't auto-detect cache config, using one "
313 "or more defaults ");
314 }
njnc6168192004-11-29 13:54:10 +0000315}
316
317/*--------------------------------------------------------------------*/
318/*--- end ---*/
319/*--------------------------------------------------------------------*/