blob: 1a028be8e53342ef172877151871b8dc045d3226 [file] [log] [blame]
sewardj07133bf2002-06-13 10:25:56 +00001
njn4f9c9342002-04-29 16:03:24 +00002/*--------------------------------------------------------------------*/
nethercote9313ac42004-07-06 21:54:20 +00003/*--- Cachegrind: every but the simulation itself. ---*/
njn25cac76cb2002-09-23 11:21:57 +00004/*--- cg_main.c ---*/
njn4f9c9342002-04-29 16:03:24 +00005/*--------------------------------------------------------------------*/
6
7/*
nethercote137bc552003-11-14 17:47:54 +00008 This file is part of Cachegrind, a Valgrind tool for cache
njnc9539842002-10-02 13:26:35 +00009 profiling programs.
njn4f9c9342002-04-29 16:03:24 +000010
nethercotebb1c9912004-01-04 16:43:23 +000011 Copyright (C) 2002-2004 Nicholas Nethercote
sewardj3c23d432002-06-01 23:43:49 +000012 njn25@cam.ac.uk
njn4f9c9342002-04-29 16:03:24 +000013
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
njn25e49d8e72002-09-23 09:36:25 +000029 The GNU General Public License is contained in the file COPYING.
njn4f9c9342002-04-29 16:03:24 +000030*/
31
nethercote46063202004-09-02 08:51:43 +000032#include "tool.h"
njn25e49d8e72002-09-23 09:36:25 +000033//#include "vg_profile.c"
34
nethercoteb35a8b92004-09-11 16:45:27 +000035#include "cg_arch.h"
nethercote27fc1da2004-01-04 16:56:57 +000036#include "cg_sim.c"
njn4f9c9342002-04-29 16:03:24 +000037
njn25e49d8e72002-09-23 09:36:25 +000038/*------------------------------------------------------------*/
39/*--- Constants ---*/
40/*------------------------------------------------------------*/
njn4f9c9342002-04-29 16:03:24 +000041
nethercote9313ac42004-07-06 21:54:20 +000042#define MIN_LINE_SIZE 16
43#define FILE_LEN 256
44#define FN_LEN 256
njn7cf0bd32002-06-08 13:36:03 +000045
46/*------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +000047/*--- Profiling events ---*/
njn7cf0bd32002-06-08 13:36:03 +000048/*------------------------------------------------------------*/
49
njn25e49d8e72002-09-23 09:36:25 +000050typedef
51 enum {
nethercote9313ac42004-07-06 21:54:20 +000052 VgpGetLineCC = VgpFini+1,
njn25e49d8e72002-09-23 09:36:25 +000053 VgpCacheSimulate,
54 VgpCacheResults
55 }
nethercote7cc9c232004-01-21 15:08:04 +000056 VgpToolCC;
sewardj07133bf2002-06-13 10:25:56 +000057
njn4f9c9342002-04-29 16:03:24 +000058/*------------------------------------------------------------*/
nethercote9313ac42004-07-06 21:54:20 +000059/*--- Types and Data Structures ---*/
njn4f9c9342002-04-29 16:03:24 +000060/*------------------------------------------------------------*/
61
62typedef struct _CC CC;
63struct _CC {
64 ULong a;
65 ULong m1;
66 ULong m2;
67};
68
nethercote9313ac42004-07-06 21:54:20 +000069//------------------------------------------------------------
70// Primary data structure #1: CC table
71// - Holds the per-source-line hit/miss stats, grouped by file/function/line.
72// - hash(file, hash(fn, hash(line+CC)))
73// - Each hash table is separately chained.
74// - The array sizes below work fairly well for Konqueror.
75// - Lookups done by instr_addr, which is converted immediately to a source
76// location.
77// - Traversed for dumping stats at end in file/func/line hierarchy.
njn4f9c9342002-04-29 16:03:24 +000078
79#define N_FILE_ENTRIES 251
80#define N_FN_ENTRIES 53
nethercote9313ac42004-07-06 21:54:20 +000081#define N_LINE_ENTRIES 37
njn4f9c9342002-04-29 16:03:24 +000082
nethercote9313ac42004-07-06 21:54:20 +000083typedef struct _lineCC lineCC;
84struct _lineCC {
85 Int line;
86 CC Ir;
87 CC Dr;
88 CC Dw;
89 lineCC* next;
njn4f9c9342002-04-29 16:03:24 +000090};
91
nethercote9313ac42004-07-06 21:54:20 +000092typedef struct _fnCC fnCC;
93struct _fnCC {
94 Char* fn;
95 fnCC* next;
96 lineCC* lines[N_LINE_ENTRIES];
njn4f9c9342002-04-29 16:03:24 +000097};
98
nethercote9313ac42004-07-06 21:54:20 +000099typedef struct _fileCC fileCC;
100struct _fileCC {
101 Char* file;
102 fileCC* next;
103 fnCC* fns[N_FN_ENTRIES];
njn4f9c9342002-04-29 16:03:24 +0000104};
105
nethercote9313ac42004-07-06 21:54:20 +0000106// Top level of CC table. Auto-zeroed.
107static fileCC *CC_table[N_FILE_ENTRIES];
njn4f9c9342002-04-29 16:03:24 +0000108
nethercote9313ac42004-07-06 21:54:20 +0000109//------------------------------------------------------------
110// Primary data structre #2: Instr-info table
111// - Holds the cached info about each instr that is used for simulation.
112// - table(BB_start_addr, list(instr_info))
113// - For each BB, each instr_info in the list holds info about the
nethercote7149b422004-07-20 13:29:02 +0000114// instruction (instr_size, instr_addr, etc), plus a pointer to its line
nethercote9313ac42004-07-06 21:54:20 +0000115// CC. This node is what's passed to the simulation function.
116// - When BBs are discarded the relevant list(instr_details) is freed.
117
118typedef struct _instr_info instr_info;
119struct _instr_info {
nethercoteca1f2dc2004-07-21 08:49:02 +0000120 Addr instr_addr;
121 UChar instr_size;
122 UChar data_size;
123 lineCC* parent; // parent line-CC
nethercote9313ac42004-07-06 21:54:20 +0000124};
125
126typedef struct _BB_info BB_info;
127struct _BB_info {
128 BB_info* next; // next field
129 Addr BB_addr; // key
130 Int n_instrs;
131 instr_info instrs[0];
132};
133
134VgHashTable instr_info_table; // hash(Addr, BB_info)
135
136//------------------------------------------------------------
137// Stats
sewardj4f29ddf2002-05-03 22:29:04 +0000138static Int distinct_files = 0;
139static Int distinct_fns = 0;
nethercote9313ac42004-07-06 21:54:20 +0000140static Int distinct_lines = 0;
sewardj4f29ddf2002-05-03 22:29:04 +0000141static Int distinct_instrs = 0;
nethercote9313ac42004-07-06 21:54:20 +0000142
sewardj4f29ddf2002-05-03 22:29:04 +0000143static Int full_debug_BBs = 0;
144static Int file_line_debug_BBs = 0;
nethercote9313ac42004-07-06 21:54:20 +0000145static Int fn_debug_BBs = 0;
sewardj4f29ddf2002-05-03 22:29:04 +0000146static Int no_debug_BBs = 0;
njn4f9c9342002-04-29 16:03:24 +0000147
sewardj4f29ddf2002-05-03 22:29:04 +0000148static Int BB_retranslations = 0;
njn4f9c9342002-04-29 16:03:24 +0000149
nethercote9313ac42004-07-06 21:54:20 +0000150/*------------------------------------------------------------*/
151/*--- CC table operations ---*/
152/*------------------------------------------------------------*/
njn4294fd42002-06-05 14:41:10 +0000153
nethercote9313ac42004-07-06 21:54:20 +0000154static void get_debug_info(Addr instr_addr, Char file[FILE_LEN],
155 Char fn[FN_LEN], Int* line)
njn4f9c9342002-04-29 16:03:24 +0000156{
nethercote9313ac42004-07-06 21:54:20 +0000157 Bool found_file_line = VG_(get_filename_linenum)(instr_addr, file,
158 FILE_LEN, line);
159 Bool found_fn = VG_(get_fnname)(instr_addr, fn, FN_LEN);
njn4f9c9342002-04-29 16:03:24 +0000160
nethercote9313ac42004-07-06 21:54:20 +0000161 if (!found_file_line) {
162 VG_(strcpy)(file, "???");
163 *line = 0;
164 }
165 if (!found_fn) {
166 VG_(strcpy)(fn, "???");
167 }
168 if (found_file_line) {
169 if (found_fn) full_debug_BBs++;
170 else file_line_debug_BBs++;
171 } else {
172 if (found_fn) fn_debug_BBs++;
173 else no_debug_BBs++;
njn4f9c9342002-04-29 16:03:24 +0000174 }
175}
176
njn4f9c9342002-04-29 16:03:24 +0000177static UInt hash(Char *s, UInt table_size)
178{
nethercote9313ac42004-07-06 21:54:20 +0000179 const int hash_constant = 256;
180 int hash_value = 0;
181 for ( ; *s; s++)
182 hash_value = (hash_constant * hash_value + *s) % table_size;
183 return hash_value;
njn4f9c9342002-04-29 16:03:24 +0000184}
185
nethercote9313ac42004-07-06 21:54:20 +0000186static __inline__
187fileCC* new_fileCC(Char filename[], fileCC* next)
nethercote09d853e2004-01-21 16:12:55 +0000188{
nethercote9313ac42004-07-06 21:54:20 +0000189 // Using calloc() zeroes the fns[] array
190 fileCC* cc = VG_(calloc)(1, sizeof(fileCC));
191 cc->file = VG_(strdup)(filename);
192 cc->next = next;
193 return cc;
nethercote09d853e2004-01-21 16:12:55 +0000194}
195
nethercote9313ac42004-07-06 21:54:20 +0000196static __inline__
197fnCC* new_fnCC(Char fn[], fnCC* next)
njn4f9c9342002-04-29 16:03:24 +0000198{
nethercote9313ac42004-07-06 21:54:20 +0000199 // Using calloc() zeroes the lines[] array
200 fnCC* cc = VG_(calloc)(1, sizeof(fnCC));
201 cc->fn = VG_(strdup)(fn);
202 cc->next = next;
203 return cc;
204}
njn4f9c9342002-04-29 16:03:24 +0000205
nethercote9313ac42004-07-06 21:54:20 +0000206static __inline__
207lineCC* new_lineCC(Int line, lineCC* next)
208{
209 // Using calloc() zeroes the Ir/Dr/Dw CCs and the instrs[] array
210 lineCC* cc = VG_(calloc)(1, sizeof(lineCC));
211 cc->line = line;
212 cc->next = next;
213 return cc;
214}
njn4f9c9342002-04-29 16:03:24 +0000215
nethercote9313ac42004-07-06 21:54:20 +0000216static __inline__
217instr_info* new_instr_info(Addr instr_addr, lineCC* parent, instr_info* next)
218{
219 // Using calloc() zeroes instr_size and data_size
220 instr_info* ii = VG_(calloc)(1, sizeof(instr_info));
221 ii->instr_addr = instr_addr;
222 ii->parent = parent;
223 return ii;
224}
225
226// Do a three step traversal: by file, then fn, then line.
227// In all cases prepends new nodes to their chain. Returns a pointer to the
228// line node, creates a new one if necessary.
229static lineCC* get_lineCC(Addr orig_addr)
230{
231 fileCC *curr_fileCC;
232 fnCC *curr_fnCC;
233 lineCC *curr_lineCC;
234 Char file[FILE_LEN], fn[FN_LEN];
235 Int line;
236 UInt file_hash, fn_hash, line_hash;
237
238 get_debug_info(orig_addr, file, fn, &line);
239
240 VGP_PUSHCC(VgpGetLineCC);
241
242 // level 1
243 file_hash = hash(file, N_FILE_ENTRIES);
244 curr_fileCC = CC_table[file_hash];
245 while (NULL != curr_fileCC && !VG_STREQ(file, curr_fileCC->file)) {
246 curr_fileCC = curr_fileCC->next;
njn4f9c9342002-04-29 16:03:24 +0000247 }
nethercote9313ac42004-07-06 21:54:20 +0000248 if (NULL == curr_fileCC) {
249 CC_table[file_hash] = curr_fileCC =
250 new_fileCC(file, CC_table[file_hash]);
njn4f9c9342002-04-29 16:03:24 +0000251 distinct_files++;
252 }
253
nethercote9313ac42004-07-06 21:54:20 +0000254 // level 2
255 fn_hash = hash(fn, N_FN_ENTRIES);
256 curr_fnCC = curr_fileCC->fns[fn_hash];
257 while (NULL != curr_fnCC && !VG_STREQ(fn, curr_fnCC->fn)) {
258 curr_fnCC = curr_fnCC->next;
njn4f9c9342002-04-29 16:03:24 +0000259 }
nethercote9313ac42004-07-06 21:54:20 +0000260 if (NULL == curr_fnCC) {
261 curr_fileCC->fns[fn_hash] = curr_fnCC =
262 new_fnCC(fn, curr_fileCC->fns[fn_hash]);
njn4f9c9342002-04-29 16:03:24 +0000263 distinct_fns++;
264 }
265
nethercote9313ac42004-07-06 21:54:20 +0000266 // level 3
267 line_hash = line % N_LINE_ENTRIES;
268 curr_lineCC = curr_fnCC->lines[line_hash];
269 while (NULL != curr_lineCC && line != curr_lineCC->line) {
270 curr_lineCC = curr_lineCC->next;
njn4f9c9342002-04-29 16:03:24 +0000271 }
nethercote9313ac42004-07-06 21:54:20 +0000272 if (NULL == curr_lineCC) {
273 curr_fnCC->lines[line_hash] = curr_lineCC =
274 new_lineCC(line, curr_fnCC->lines[line_hash]);
275 distinct_lines++;
njn4f9c9342002-04-29 16:03:24 +0000276 }
nethercote9313ac42004-07-06 21:54:20 +0000277
278 VGP_POPCC(VgpGetLineCC);
279 return curr_lineCC;
njn4f9c9342002-04-29 16:03:24 +0000280}
281
282/*------------------------------------------------------------*/
nethercote9313ac42004-07-06 21:54:20 +0000283/*--- Cache simulation functions ---*/
njn4f9c9342002-04-29 16:03:24 +0000284/*------------------------------------------------------------*/
285
nethercoteeec46302004-08-23 15:06:23 +0000286static REGPARM(1)
nethercote9313ac42004-07-06 21:54:20 +0000287void log_1I_0D_cache_access(instr_info* n)
njn25e49d8e72002-09-23 09:36:25 +0000288{
289 //VG_(printf)("1I_0D: CCaddr=0x%x, iaddr=0x%x, isize=%u\n",
nethercote9313ac42004-07-06 21:54:20 +0000290 // n, n->instr_addr, n->instr_size)
njn25e49d8e72002-09-23 09:36:25 +0000291 VGP_PUSHCC(VgpCacheSimulate);
nethercote9313ac42004-07-06 21:54:20 +0000292 cachesim_I1_doref(n->instr_addr, n->instr_size,
293 &n->parent->Ir.m1, &n->parent->Ir.m2);
294 n->parent->Ir.a++;
njn25e49d8e72002-09-23 09:36:25 +0000295 VGP_POPCC(VgpCacheSimulate);
296}
297
nethercoteeec46302004-08-23 15:06:23 +0000298static REGPARM(2)
nethercote9313ac42004-07-06 21:54:20 +0000299void log_1I_1Dr_cache_access(instr_info* n, Addr data_addr)
njn25e49d8e72002-09-23 09:36:25 +0000300{
nethercote9313ac42004-07-06 21:54:20 +0000301 //VG_(printf)("1I_1Dr: CCaddr=%p, iaddr=%p, isize=%u, daddr=%p, dsize=%u\n",
302 // n, n->instr_addr, n->instr_size, data_addr, n->data_size)
njn25e49d8e72002-09-23 09:36:25 +0000303 VGP_PUSHCC(VgpCacheSimulate);
nethercote9313ac42004-07-06 21:54:20 +0000304 cachesim_I1_doref(n->instr_addr, n->instr_size,
305 &n->parent->Ir.m1, &n->parent->Ir.m2);
306 n->parent->Ir.a++;
njn25e49d8e72002-09-23 09:36:25 +0000307
nethercote9313ac42004-07-06 21:54:20 +0000308 cachesim_D1_doref(data_addr, n->data_size,
309 &n->parent->Dr.m1, &n->parent->Dr.m2);
310 n->parent->Dr.a++;
njn25e49d8e72002-09-23 09:36:25 +0000311 VGP_POPCC(VgpCacheSimulate);
312}
313
nethercoteeec46302004-08-23 15:06:23 +0000314static REGPARM(2)
nethercote9313ac42004-07-06 21:54:20 +0000315void log_1I_1Dw_cache_access(instr_info* n, Addr data_addr)
njn25e49d8e72002-09-23 09:36:25 +0000316{
nethercote9313ac42004-07-06 21:54:20 +0000317 //VG_(printf)("1I_1Dw: CCaddr=%p, iaddr=%p, isize=%u, daddr=%p, dsize=%u\n",
318 // n, n->instr_addr, n->instr_size, data_addr, n->data_size)
njn25e49d8e72002-09-23 09:36:25 +0000319 VGP_PUSHCC(VgpCacheSimulate);
nethercote9313ac42004-07-06 21:54:20 +0000320 cachesim_I1_doref(n->instr_addr, n->instr_size,
321 &n->parent->Ir.m1, &n->parent->Ir.m2);
322 n->parent->Ir.a++;
323
324 cachesim_D1_doref(data_addr, n->data_size,
325 &n->parent->Dw.m1, &n->parent->Dw.m2);
326 n->parent->Dw.a++;
njn25e49d8e72002-09-23 09:36:25 +0000327 VGP_POPCC(VgpCacheSimulate);
328}
329
nethercoteeec46302004-08-23 15:06:23 +0000330static REGPARM(3)
nethercote9313ac42004-07-06 21:54:20 +0000331void log_1I_2D_cache_access(instr_info* n, Addr data_addr1, Addr data_addr2)
njn25e49d8e72002-09-23 09:36:25 +0000332{
333 //VG_(printf)("1I_2D: CCaddr=%p, iaddr=%p, isize=%u, daddr1=%p, daddr2=%p, dsize=%u\n",
nethercote9313ac42004-07-06 21:54:20 +0000334 // n, n->instr_addr, n->instr_size, data_addr1, data_addr2, n->data_size)
njn25e49d8e72002-09-23 09:36:25 +0000335 VGP_PUSHCC(VgpCacheSimulate);
nethercote9313ac42004-07-06 21:54:20 +0000336 cachesim_I1_doref(n->instr_addr, n->instr_size,
337 &n->parent->Ir.m1, &n->parent->Ir.m2);
338 n->parent->Ir.a++;
njn25e49d8e72002-09-23 09:36:25 +0000339
nethercote9313ac42004-07-06 21:54:20 +0000340 cachesim_D1_doref(data_addr1, n->data_size,
341 &n->parent->Dr.m1, &n->parent->Dr.m2);
342 n->parent->Dr.a++;
343 cachesim_D1_doref(data_addr2, n->data_size,
344 &n->parent->Dw.m1, &n->parent->Dw.m2);
345 n->parent->Dw.a++;
njn25e49d8e72002-09-23 09:36:25 +0000346 VGP_POPCC(VgpCacheSimulate);
347}
348
nethercote9313ac42004-07-06 21:54:20 +0000349/*------------------------------------------------------------*/
350/*--- Instrumentation ---*/
351/*------------------------------------------------------------*/
352
nethercote564b2b02004-08-07 15:54:53 +0000353static
nethercote9313ac42004-07-06 21:54:20 +0000354BB_info* get_BB_info(UCodeBlock* cb_in, Addr orig_addr, Bool* bb_seen_before)
355{
356 Int i, n_instrs;
357 UInstr* u_in;
358 BB_info* bb_info;
359 VgHashNode** dummy;
360
361 // Count number of x86 instrs in BB
362 n_instrs = 1; // start at 1 because last x86 instr has no INCEIP
363 for (i = 0; i < VG_(get_num_instrs)(cb_in); i++) {
364 u_in = VG_(get_instr)(cb_in, i);
365 if (INCEIP == u_in->opcode) n_instrs++;
366 }
367
368 // Get the BB_info
369 bb_info = (BB_info*)VG_(HT_get_node)(instr_info_table, orig_addr, &dummy);
370 *bb_seen_before = ( NULL == bb_info ? False : True );
371 if (*bb_seen_before) {
372 // BB must have been translated before, but flushed from the TT
njnca82cc02004-11-22 17:18:48 +0000373 tl_assert(bb_info->n_instrs == n_instrs );
nethercote9313ac42004-07-06 21:54:20 +0000374 BB_retranslations++;
375 } else {
376 // BB never translated before (at this address, at least; could have
377 // been unloaded and then reloaded elsewhere in memory)
378 bb_info =
379 VG_(calloc)(1, sizeof(BB_info) + n_instrs*sizeof(instr_info));
380 bb_info->BB_addr = orig_addr;
381 bb_info->n_instrs = n_instrs;
382 VG_(HT_add_node)( instr_info_table, (VgHashNode*)bb_info );
383 distinct_instrs++;
384 }
385 return bb_info;
386}
387
nethercote564b2b02004-08-07 15:54:53 +0000388static
nethercote9313ac42004-07-06 21:54:20 +0000389void do_details( instr_info* n, Bool bb_seen_before,
390 Addr instr_addr, Int instr_size, Int data_size )
391{
392 lineCC* parent = get_lineCC(instr_addr);
393 if (bb_seen_before) {
njnca82cc02004-11-22 17:18:48 +0000394 tl_assert( n->instr_addr == instr_addr );
395 tl_assert( n->instr_size == instr_size );
396 tl_assert( n->data_size == data_size );
nethercote9313ac42004-07-06 21:54:20 +0000397 // Don't assert that (n->parent == parent)... it's conceivable that
398 // the debug info might change; the other asserts should be enough to
399 // detect anything strange.
400 } else {
401 n->instr_addr = instr_addr;
402 n->instr_size = instr_size;
403 n->data_size = data_size;
404 n->parent = parent;
405 }
406}
407
nethercote564b2b02004-08-07 15:54:53 +0000408static Bool is_valid_data_size(Int data_size)
nethercote9313ac42004-07-06 21:54:20 +0000409{
410 return (4 == data_size || 2 == data_size || 1 == data_size ||
411 8 == data_size || 10 == data_size || MIN_LINE_SIZE == data_size);
412}
413
414// Instrumentation for the end of each x86 instruction.
nethercote564b2b02004-08-07 15:54:53 +0000415static
nethercote9313ac42004-07-06 21:54:20 +0000416void end_of_x86_instr(UCodeBlock* cb, instr_info* i_node, Bool bb_seen_before,
417 UInt instr_addr, UInt instr_size, UInt data_size,
418 Int t_read, Int t_read_addr,
419 Int t_write, Int t_write_addr)
420{
421 Addr helper;
422 Int argc;
423 Int t_CC_addr,
424 t_data_addr1 = INVALID_TEMPREG,
425 t_data_addr2 = INVALID_TEMPREG;
426
njnca82cc02004-11-22 17:18:48 +0000427 tl_assert(instr_size >= MIN_INSTR_SIZE &&
nethercotefbfc1082004-09-04 15:28:37 +0000428 instr_size <= MAX_INSTR_SIZE);
nethercote9313ac42004-07-06 21:54:20 +0000429
430#define IS_(X) (INVALID_TEMPREG != t_##X##_addr)
431#define INV(qqt) (INVALID_TEMPREG == (qqt))
432
433 // Work out what kind of x86 instruction it is
434 if (!IS_(read) && !IS_(write)) {
njnca82cc02004-11-22 17:18:48 +0000435 tl_assert( 0 == data_size );
436 tl_assert(INV(t_read) && INV(t_write));
nethercote9313ac42004-07-06 21:54:20 +0000437 helper = (Addr) & log_1I_0D_cache_access;
438 argc = 1;
439
440 } else if (IS_(read) && !IS_(write)) {
njnca82cc02004-11-22 17:18:48 +0000441 tl_assert( is_valid_data_size(data_size) );
442 tl_assert(!INV(t_read) && INV(t_write));
nethercote9313ac42004-07-06 21:54:20 +0000443 helper = (Addr) & log_1I_1Dr_cache_access;
444 argc = 2;
445 t_data_addr1 = t_read_addr;
446
447 } else if (!IS_(read) && IS_(write)) {
njnca82cc02004-11-22 17:18:48 +0000448 tl_assert( is_valid_data_size(data_size) );
449 tl_assert(INV(t_read) && !INV(t_write));
nethercote9313ac42004-07-06 21:54:20 +0000450 helper = (Addr) & log_1I_1Dw_cache_access;
451 argc = 2;
452 t_data_addr1 = t_write_addr;
453
454 } else {
njnca82cc02004-11-22 17:18:48 +0000455 tl_assert(IS_(read) && IS_(write));
456 tl_assert( is_valid_data_size(data_size) );
457 tl_assert(!INV(t_read) && !INV(t_write));
nethercote9313ac42004-07-06 21:54:20 +0000458 if (t_read == t_write) {
459 helper = (Addr) & log_1I_1Dr_cache_access;
460 argc = 2;
461 t_data_addr1 = t_read_addr;
462 } else {
463 helper = (Addr) & log_1I_2D_cache_access;
464 argc = 3;
465 t_data_addr1 = t_read_addr;
466 t_data_addr2 = t_write_addr;
467 }
468 }
469#undef IS_
nethercotef5b74662004-07-06 22:46:41 +0000470#undef INV
471
nethercote9313ac42004-07-06 21:54:20 +0000472 // Setup 1st arg: CC addr
473 do_details( i_node, bb_seen_before, instr_addr, instr_size, data_size );
474 t_CC_addr = newTemp(cb);
475 uInstr2(cb, MOV, 4, Literal, 0, TempReg, t_CC_addr);
476 uLiteral(cb, (Addr)i_node);
477
478 // Call the helper
479 if (1 == argc)
480 uInstr1(cb, CCALL, 0, TempReg, t_CC_addr);
481 else if (2 == argc)
482 uInstr2(cb, CCALL, 0, TempReg, t_CC_addr,
483 TempReg, t_data_addr1);
484 else if (3 == argc)
485 uInstr3(cb, CCALL, 0, TempReg, t_CC_addr,
486 TempReg, t_data_addr1,
487 TempReg, t_data_addr2);
488 else
njn67993252004-11-22 18:02:32 +0000489 VG_(tool_panic)("argc... not 1 or 2 or 3?");
nethercote9313ac42004-07-06 21:54:20 +0000490
491 uCCall(cb, helper, argc, argc, False);
492}
493
njn26f02512004-11-22 18:33:15 +0000494UCodeBlock* TL_(instrument)(UCodeBlock* cb_in, Addr orig_addr)
njn25e49d8e72002-09-23 09:36:25 +0000495{
njn4f9c9342002-04-29 16:03:24 +0000496 UCodeBlock* cb;
njn4f9c9342002-04-29 16:03:24 +0000497 UInstr* u_in;
nethercote9313ac42004-07-06 21:54:20 +0000498 Int i, bb_info_i;
499 BB_info* bb_info;
500 Bool bb_seen_before = False;
501 Int t_read_addr, t_write_addr, t_read, t_write;
njn25e49d8e72002-09-23 09:36:25 +0000502 Addr x86_instr_addr = orig_addr;
nethercote9313ac42004-07-06 21:54:20 +0000503 UInt x86_instr_size, data_size = 0;
504 Bool instrumented_Jcc = False;
njn4f9c9342002-04-29 16:03:24 +0000505
nethercote9313ac42004-07-06 21:54:20 +0000506 bb_info = get_BB_info(cb_in, orig_addr, &bb_seen_before);
507 bb_info_i = 0;
njn4f9c9342002-04-29 16:03:24 +0000508
njn810086f2002-11-14 12:42:47 +0000509 cb = VG_(setup_UCodeBlock)(cb_in);
njn4f9c9342002-04-29 16:03:24 +0000510
nethercote9313ac42004-07-06 21:54:20 +0000511 t_read_addr = t_write_addr = t_read = t_write = INVALID_TEMPREG;
njn4f9c9342002-04-29 16:03:24 +0000512
njn810086f2002-11-14 12:42:47 +0000513 for (i = 0; i < VG_(get_num_instrs)(cb_in); i++) {
514 u_in = VG_(get_instr)(cb_in, i);
njn4f9c9342002-04-29 16:03:24 +0000515
nethercote9313ac42004-07-06 21:54:20 +0000516 // We want to instrument each x86 instruction with a call to the
517 // appropriate simulation function, which depends on whether the
518 // instruction does memory data reads/writes. x86 instructions can
519 // end in three ways, and this is how they are instrumented:
520 //
521 // 1. UCode, INCEIP --> UCode, Instrumentation, INCEIP
522 // 2. UCode, JMP --> UCode, Instrumentation, JMP
523 // 3. UCode, Jcc, JMP --> UCode, Instrumentation, Jcc, JMP
524 //
525 // The last UInstr in a BB is always a JMP. Jccs, when they appear,
526 // are always second last. This is checked with assertions.
527 // Instrumentation must go before any jumps. (JIFZ is the exception;
528 // if a JIFZ succeeds, no simulation is done for the instruction.)
529 //
530 // x86 instruction sizes are obtained from INCEIPs (for case 1) or
531 // from .extra4b field of the final JMP (for case 2 & 3).
532
njnca82cc02004-11-22 17:18:48 +0000533 if (instrumented_Jcc) tl_assert(u_in->opcode == JMP);
njn4f9c9342002-04-29 16:03:24 +0000534
535 switch (u_in->opcode) {
njn4f9c9342002-04-29 16:03:24 +0000536
nethercote9313ac42004-07-06 21:54:20 +0000537 // For memory-ref instrs, copy the data_addr into a temporary to be
538 // passed to the cachesim_* helper at the end of the instruction.
njn4f9c9342002-04-29 16:03:24 +0000539 case LOAD:
nethercote9313ac42004-07-06 21:54:20 +0000540 case SSE3ag_MemRd_RegWr:
njn25e49d8e72002-09-23 09:36:25 +0000541 t_read = u_in->val1;
njn4f9c9342002-04-29 16:03:24 +0000542 t_read_addr = newTemp(cb);
543 uInstr2(cb, MOV, 4, TempReg, u_in->val1, TempReg, t_read_addr);
544 data_size = u_in->size;
njn4ba5a792002-09-30 10:23:54 +0000545 VG_(copy_UInstr)(cb, u_in);
njn4f9c9342002-04-29 16:03:24 +0000546 break;
547
548 case FPU_R:
nethercote9313ac42004-07-06 21:54:20 +0000549 case MMX2_MemRd:
njn25e49d8e72002-09-23 09:36:25 +0000550 t_read = u_in->val2;
njn4f9c9342002-04-29 16:03:24 +0000551 t_read_addr = newTemp(cb);
552 uInstr2(cb, MOV, 4, TempReg, u_in->val2, TempReg, t_read_addr);
nethercote9313ac42004-07-06 21:54:20 +0000553 data_size = u_in->size;
njn4ba5a792002-09-30 10:23:54 +0000554 VG_(copy_UInstr)(cb, u_in);
njn4f9c9342002-04-29 16:03:24 +0000555 break;
thughes96b466a2004-03-15 16:43:58 +0000556 break;
557
558 case MMX2a1_MemRd:
njn21f805d2003-08-25 16:15:40 +0000559 case SSE2a_MemRd:
560 case SSE2a1_MemRd:
njn21f805d2003-08-25 16:15:40 +0000561 case SSE3a_MemRd:
jseward1b58fbc2003-11-04 22:54:28 +0000562 case SSE3a1_MemRd:
jseward1b58fbc2003-11-04 22:54:28 +0000563 t_read = u_in->val3;
564 t_read_addr = newTemp(cb);
565 uInstr2(cb, MOV, 4, TempReg, u_in->val3, TempReg, t_read_addr);
566 data_size = u_in->size;
567 VG_(copy_UInstr)(cb, u_in);
568 break;
569
nethercote9313ac42004-07-06 21:54:20 +0000570 // Note that we must set t_write_addr even for mod instructions;
571 // That's how the code above determines whether it does a write.
572 // Without it, it would think a mod instruction is a read.
573 // As for the MOV, if it's a mod instruction it's redundant, but it's
574 // not expensive and mod instructions are rare anyway. */
njn4f9c9342002-04-29 16:03:24 +0000575 case STORE:
576 case FPU_W:
nethercote9313ac42004-07-06 21:54:20 +0000577 case MMX2_MemWr:
njn25e49d8e72002-09-23 09:36:25 +0000578 t_write = u_in->val2;
njn4f9c9342002-04-29 16:03:24 +0000579 t_write_addr = newTemp(cb);
580 uInstr2(cb, MOV, 4, TempReg, u_in->val2, TempReg, t_write_addr);
nethercote9313ac42004-07-06 21:54:20 +0000581 data_size = u_in->size;
njn4ba5a792002-09-30 10:23:54 +0000582 VG_(copy_UInstr)(cb, u_in);
njn4f9c9342002-04-29 16:03:24 +0000583 break;
584
njn21f805d2003-08-25 16:15:40 +0000585 case SSE2a_MemWr:
njn21f805d2003-08-25 16:15:40 +0000586 case SSE3a_MemWr:
njn21f805d2003-08-25 16:15:40 +0000587 t_write = u_in->val3;
588 t_write_addr = newTemp(cb);
589 uInstr2(cb, MOV, 4, TempReg, u_in->val3, TempReg, t_write_addr);
nethercote9313ac42004-07-06 21:54:20 +0000590 data_size = u_in->size;
njn21f805d2003-08-25 16:15:40 +0000591 VG_(copy_UInstr)(cb, u_in);
592 break;
njn25e49d8e72002-09-23 09:36:25 +0000593
nethercote9313ac42004-07-06 21:54:20 +0000594 // INCEIP: insert instrumentation
njn25e49d8e72002-09-23 09:36:25 +0000595 case INCEIP:
596 x86_instr_size = u_in->val1;
597 goto instrument_x86_instr;
598
nethercote9313ac42004-07-06 21:54:20 +0000599 // JMP: insert instrumentation if the first JMP
njn25e49d8e72002-09-23 09:36:25 +0000600 case JMP:
nethercote9313ac42004-07-06 21:54:20 +0000601 if (instrumented_Jcc) {
njnca82cc02004-11-22 17:18:48 +0000602 tl_assert(CondAlways == u_in->cond);
603 tl_assert(i+1 == VG_(get_num_instrs)(cb_in));
njn4ba5a792002-09-30 10:23:54 +0000604 VG_(copy_UInstr)(cb, u_in);
nethercote9313ac42004-07-06 21:54:20 +0000605 instrumented_Jcc = False; // rest
njn25e49d8e72002-09-23 09:36:25 +0000606 break;
njn25e49d8e72002-09-23 09:36:25 +0000607 } else {
nethercote9313ac42004-07-06 21:54:20 +0000608 // The first JMP... instrument.
609 if (CondAlways != u_in->cond) {
njnca82cc02004-11-22 17:18:48 +0000610 tl_assert(i+2 == VG_(get_num_instrs)(cb_in));
nethercote9313ac42004-07-06 21:54:20 +0000611 instrumented_Jcc = True;
njn25e49d8e72002-09-23 09:36:25 +0000612 } else {
njnca82cc02004-11-22 17:18:48 +0000613 tl_assert(i+1 == VG_(get_num_instrs)(cb_in));
njn25e49d8e72002-09-23 09:36:25 +0000614 }
nethercote9313ac42004-07-06 21:54:20 +0000615 // Get x86 instr size from final JMP.
616 x86_instr_size = VG_(get_last_instr)(cb_in)->extra4b;
617 goto instrument_x86_instr;
njn25e49d8e72002-09-23 09:36:25 +0000618 }
619
nethercote9313ac42004-07-06 21:54:20 +0000620 // Code executed at the end of each x86 instruction.
621 instrument_x86_instr:
622 // Large (eg. 28B, 108B, 512B) data-sized instructions will be
623 // done inaccurately but they're very rare and this avoids
624 // errors from hitting more than two cache lines in the
625 // simulation.
626 if (data_size > MIN_LINE_SIZE) data_size = MIN_LINE_SIZE;
njn25e49d8e72002-09-23 09:36:25 +0000627
nethercote9313ac42004-07-06 21:54:20 +0000628 end_of_x86_instr(cb, &bb_info->instrs[ bb_info_i ], bb_seen_before,
629 x86_instr_addr, x86_instr_size, data_size,
630 t_read, t_read_addr, t_write, t_write_addr);
njn25e49d8e72002-09-23 09:36:25 +0000631
nethercote9313ac42004-07-06 21:54:20 +0000632 // Copy original UInstr (INCEIP or JMP)
njn4ba5a792002-09-30 10:23:54 +0000633 VG_(copy_UInstr)(cb, u_in);
njn25e49d8e72002-09-23 09:36:25 +0000634
nethercote9313ac42004-07-06 21:54:20 +0000635 // Update loop state for next x86 instr
636 bb_info_i++;
njn25e49d8e72002-09-23 09:36:25 +0000637 x86_instr_addr += x86_instr_size;
nethercote9313ac42004-07-06 21:54:20 +0000638 t_read_addr = t_write_addr = t_read = t_write = INVALID_TEMPREG;
639 data_size = 0;
njn4f9c9342002-04-29 16:03:24 +0000640 break;
641
642 default:
njn4ba5a792002-09-30 10:23:54 +0000643 VG_(copy_UInstr)(cb, u_in);
njn4f9c9342002-04-29 16:03:24 +0000644 break;
645 }
646 }
647
nethercote9313ac42004-07-06 21:54:20 +0000648 // BB address should be the same as the first instruction's address.
njnca82cc02004-11-22 17:18:48 +0000649 tl_assert(bb_info->BB_addr == bb_info->instrs[0].instr_addr );
650 tl_assert(bb_info_i == bb_info->n_instrs);
njn4f9c9342002-04-29 16:03:24 +0000651
njn4ba5a792002-09-30 10:23:54 +0000652 VG_(free_UCodeBlock)(cb_in);
njn4f9c9342002-04-29 16:03:24 +0000653 return cb;
njn25e49d8e72002-09-23 09:36:25 +0000654
655#undef INVALID_DATA_SIZE
njn4f9c9342002-04-29 16:03:24 +0000656}
657
658/*------------------------------------------------------------*/
nethercoteb35a8b92004-09-11 16:45:27 +0000659/*--- Cache configuration ---*/
njn4f9c9342002-04-29 16:03:24 +0000660/*------------------------------------------------------------*/
661
njn25e49d8e72002-09-23 09:36:25 +0000662#define UNDEFINED_CACHE ((cache_t) { -1, -1, -1 })
663
664static cache_t clo_I1_cache = UNDEFINED_CACHE;
665static cache_t clo_D1_cache = UNDEFINED_CACHE;
666static cache_t clo_L2_cache = UNDEFINED_CACHE;
667
njn7cf0bd32002-06-08 13:36:03 +0000668/* Checks cache config is ok; makes it so if not. */
sewardj07133bf2002-06-13 10:25:56 +0000669static
670void check_cache(cache_t* cache, cache_t* dflt, Char *name)
njn7cf0bd32002-06-08 13:36:03 +0000671{
672 /* First check they're all powers of two */
sewardj07133bf2002-06-13 10:25:56 +0000673 if (-1 == VG_(log2)(cache->size)) {
njn7cf0bd32002-06-08 13:36:03 +0000674 VG_(message)(Vg_UserMsg,
sewardj07133bf2002-06-13 10:25:56 +0000675 "warning: %s size of %dB not a power of two; "
676 "defaulting to %dB", name, cache->size, dflt->size);
njn7cf0bd32002-06-08 13:36:03 +0000677 cache->size = dflt->size;
678 }
679
sewardj07133bf2002-06-13 10:25:56 +0000680 if (-1 == VG_(log2)(cache->assoc)) {
njn7cf0bd32002-06-08 13:36:03 +0000681 VG_(message)(Vg_UserMsg,
sewardj07133bf2002-06-13 10:25:56 +0000682 "warning: %s associativity of %d not a power of two; "
683 "defaulting to %d-way", name, cache->assoc, dflt->assoc);
njn7cf0bd32002-06-08 13:36:03 +0000684 cache->assoc = dflt->assoc;
685 }
686
sewardj07133bf2002-06-13 10:25:56 +0000687 if (-1 == VG_(log2)(cache->line_size)) {
njn7cf0bd32002-06-08 13:36:03 +0000688 VG_(message)(Vg_UserMsg,
sewardj07133bf2002-06-13 10:25:56 +0000689 "warning: %s line size of %dB not a power of two; "
690 "defaulting to %dB",
691 name, cache->line_size, dflt->line_size);
njn7cf0bd32002-06-08 13:36:03 +0000692 cache->line_size = dflt->line_size;
693 }
694
695 /* Then check line size >= 16 -- any smaller and a single instruction could
696 * straddle three cache lines, which breaks a simulation assertion and is
697 * stupid anyway. */
698 if (cache->line_size < MIN_LINE_SIZE) {
699 VG_(message)(Vg_UserMsg,
sewardj07133bf2002-06-13 10:25:56 +0000700 "warning: %s line size of %dB too small; "
701 "increasing to %dB", name, cache->line_size, MIN_LINE_SIZE);
njn7cf0bd32002-06-08 13:36:03 +0000702 cache->line_size = MIN_LINE_SIZE;
703 }
704
705 /* Then check cache size > line size (causes seg faults if not). */
706 if (cache->size <= cache->line_size) {
707 VG_(message)(Vg_UserMsg,
sewardj07133bf2002-06-13 10:25:56 +0000708 "warning: %s cache size of %dB <= line size of %dB; "
709 "increasing to %dB", name, cache->size, cache->line_size,
710 cache->line_size * 2);
njn7cf0bd32002-06-08 13:36:03 +0000711 cache->size = cache->line_size * 2;
712 }
713
714 /* Then check assoc <= (size / line size) (seg faults otherwise). */
715 if (cache->assoc > (cache->size / cache->line_size)) {
716 VG_(message)(Vg_UserMsg,
sewardj07133bf2002-06-13 10:25:56 +0000717 "warning: %s associativity > (size / line size); "
718 "increasing size to %dB",
719 name, cache->assoc * cache->line_size);
njn7cf0bd32002-06-08 13:36:03 +0000720 cache->size = cache->assoc * cache->line_size;
721 }
722}
723
sewardj07133bf2002-06-13 10:25:56 +0000724static
nethercoteb35a8b92004-09-11 16:45:27 +0000725void configure_caches(cache_t* I1c, cache_t* D1c, cache_t* L2c)
njn7cf0bd32002-06-08 13:36:03 +0000726{
nethercote9313ac42004-07-06 21:54:20 +0000727#define DEFINED(L) (-1 != L.size || -1 != L.assoc || -1 != L.line_size)
728
nethercoteb35a8b92004-09-11 16:45:27 +0000729 Int n_clos = 0;
730 cache_t I1_dflt, D1_dflt, L2_dflt;
nethercote9313ac42004-07-06 21:54:20 +0000731
nethercoteb35a8b92004-09-11 16:45:27 +0000732 // Count how many were defined on the command line.
733 if (DEFINED(clo_I1_cache)) { n_clos++; }
734 if (DEFINED(clo_D1_cache)) { n_clos++; }
735 if (DEFINED(clo_L2_cache)) { n_clos++; }
njn7cf0bd32002-06-08 13:36:03 +0000736
nethercoteb35a8b92004-09-11 16:45:27 +0000737 // Set the default cache config (using auto-detection, if supported by
738 // current arch)
739 VGA_(configure_caches)( I1c, D1c, L2c, &I1_dflt, &D1_dflt, &L2_dflt,
740 (3 == n_clos) );
sewardjb1a77a42002-07-13 13:31:20 +0000741
nethercote9313ac42004-07-06 21:54:20 +0000742 // Then replace with any defined on the command line.
nethercoteb35a8b92004-09-11 16:45:27 +0000743 if (DEFINED(clo_I1_cache)) { *I1c = clo_I1_cache; }
744 if (DEFINED(clo_D1_cache)) { *D1c = clo_D1_cache; }
745 if (DEFINED(clo_L2_cache)) { *L2c = clo_L2_cache; }
njn7cf0bd32002-06-08 13:36:03 +0000746
nethercote9313ac42004-07-06 21:54:20 +0000747 // Then check values and fix if not acceptable.
njn7cf0bd32002-06-08 13:36:03 +0000748 check_cache(I1c, &I1_dflt, "I1");
749 check_cache(D1c, &D1_dflt, "D1");
750 check_cache(L2c, &L2_dflt, "L2");
751
752 if (VG_(clo_verbosity) > 1) {
753 VG_(message)(Vg_UserMsg, "Cache configuration used:");
754 VG_(message)(Vg_UserMsg, " I1: %dB, %d-way, %dB lines",
755 I1c->size, I1c->assoc, I1c->line_size);
756 VG_(message)(Vg_UserMsg, " D1: %dB, %d-way, %dB lines",
757 D1c->size, D1c->assoc, D1c->line_size);
758 VG_(message)(Vg_UserMsg, " L2: %dB, %d-way, %dB lines",
759 L2c->size, L2c->assoc, L2c->line_size);
760 }
nethercote9313ac42004-07-06 21:54:20 +0000761#undef CMD_LINE_DEFINED
njn7cf0bd32002-06-08 13:36:03 +0000762}
763
njn4f9c9342002-04-29 16:03:24 +0000764/*------------------------------------------------------------*/
njn26f02512004-11-22 18:33:15 +0000765/*--- TL_(fini)() and related function ---*/
njn4f9c9342002-04-29 16:03:24 +0000766/*------------------------------------------------------------*/
767
nethercote9313ac42004-07-06 21:54:20 +0000768// Total reads/writes/misses. Calculated during CC traversal at the end.
769// All auto-zeroed.
770static CC Ir_total;
771static CC Dr_total;
772static CC Dw_total;
773
774static Char* cachegrind_out_file;
775
776static void file_err ( void )
njn4f9c9342002-04-29 16:03:24 +0000777{
nethercote9313ac42004-07-06 21:54:20 +0000778 VG_(message)(Vg_UserMsg,
779 "error: can't open cache simulation output file `%s'",
780 cachegrind_out_file );
781 VG_(message)(Vg_UserMsg,
782 " ... so simulation results will be missing.");
njn4f9c9342002-04-29 16:03:24 +0000783}
784
nethercote9313ac42004-07-06 21:54:20 +0000785static void fprint_lineCC(Int fd, lineCC* n)
njn4f9c9342002-04-29 16:03:24 +0000786{
nethercote9313ac42004-07-06 21:54:20 +0000787 Char buf[512];
788 VG_(sprintf)(buf, "%u %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
789 n->line,
790 n->Ir.a, n->Ir.m1, n->Ir.m2,
791 n->Dr.a, n->Dr.m1, n->Dr.m2,
792 n->Dw.a, n->Dw.m1, n->Dw.m2);
793 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
794
795 Ir_total.a += n->Ir.a; Ir_total.m1 += n->Ir.m1; Ir_total.m2 += n->Ir.m2;
796 Dr_total.a += n->Dr.a; Dr_total.m1 += n->Dr.m1; Dr_total.m2 += n->Dr.m2;
797 Dw_total.a += n->Dw.a; Dw_total.m1 += n->Dw.m1; Dw_total.m2 += n->Dw.m2;
798}
799
800static void fprint_CC_table_and_calc_totals(void)
801{
802 Int fd;
803 Char buf[512];
804 fileCC *curr_fileCC;
805 fnCC *curr_fnCC;
806 lineCC *curr_lineCC;
807 Int i, j, k;
njn4f9c9342002-04-29 16:03:24 +0000808
njn25e49d8e72002-09-23 09:36:25 +0000809 VGP_PUSHCC(VgpCacheResults);
njn13f02932003-04-30 20:23:58 +0000810
njndb918dd2003-07-22 20:45:11 +0000811 fd = VG_(open)(cachegrind_out_file, VKI_O_CREAT|VKI_O_TRUNC|VKI_O_WRONLY,
njn13f02932003-04-30 20:23:58 +0000812 VKI_S_IRUSR|VKI_S_IWUSR);
nethercote50da0f32003-10-30 10:33:30 +0000813 if (fd < 0) {
nethercote9313ac42004-07-06 21:54:20 +0000814 // If the file can't be opened for whatever reason (conflict
815 // between multiple cachegrinded processes?), give up now.
sewardj0744b6c2002-12-11 00:45:42 +0000816 file_err();
817 return;
818 }
njn4f9c9342002-04-29 16:03:24 +0000819
nethercote9313ac42004-07-06 21:54:20 +0000820 // "desc:" lines (giving I1/D1/L2 cache configuration). The spaces after
821 // the 2nd colon makes cg_annotate's output look nicer.
822 VG_(sprintf)(buf, "desc: I1 cache: %s\n"
823 "desc: D1 cache: %s\n"
824 "desc: L2 cache: %s\n",
825 I1.desc_line, D1.desc_line, L2.desc_line);
njn7cf0bd32002-06-08 13:36:03 +0000826 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
njn4f9c9342002-04-29 16:03:24 +0000827
nethercote9313ac42004-07-06 21:54:20 +0000828 // "cmd:" line
njn4f9c9342002-04-29 16:03:24 +0000829 VG_(strcpy)(buf, "cmd:");
830 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
njn25e49d8e72002-09-23 09:36:25 +0000831 for (i = 0; i < VG_(client_argc); i++) {
thughes6f7eb9c2004-10-06 13:50:12 +0000832 VG_(write)(fd, " ", 1);
thughes30c43d82004-10-06 13:49:36 +0000833 VG_(write)(fd, VG_(client_argv)[i], VG_(strlen)(VG_(client_argv)[i]));
njn4f9c9342002-04-29 16:03:24 +0000834 }
nethercote9313ac42004-07-06 21:54:20 +0000835 // "events:" line
njn4f9c9342002-04-29 16:03:24 +0000836 VG_(sprintf)(buf, "\nevents: Ir I1mr I2mr Dr D1mr D2mr Dw D1mw D2mw\n");
837 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
838
nethercote9313ac42004-07-06 21:54:20 +0000839 // Six loops here: three for the hash table arrays, and three for the
840 // chains hanging off the hash table arrays.
njn4f9c9342002-04-29 16:03:24 +0000841 for (i = 0; i < N_FILE_ENTRIES; i++) {
nethercote9313ac42004-07-06 21:54:20 +0000842 curr_fileCC = CC_table[i];
843 while (curr_fileCC != NULL) {
844 VG_(sprintf)(buf, "fl=%s\n", curr_fileCC->file);
njn4f9c9342002-04-29 16:03:24 +0000845 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
846
847 for (j = 0; j < N_FN_ENTRIES; j++) {
nethercote9313ac42004-07-06 21:54:20 +0000848 curr_fnCC = curr_fileCC->fns[j];
849 while (curr_fnCC != NULL) {
850 VG_(sprintf)(buf, "fn=%s\n", curr_fnCC->fn);
njn4f9c9342002-04-29 16:03:24 +0000851 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
852
nethercote9313ac42004-07-06 21:54:20 +0000853 for (k = 0; k < N_LINE_ENTRIES; k++) {
854 curr_lineCC = curr_fnCC->lines[k];
855 while (curr_lineCC != NULL) {
856 fprint_lineCC(fd, curr_lineCC);
857 curr_lineCC = curr_lineCC->next;
njn4f9c9342002-04-29 16:03:24 +0000858 }
859 }
nethercote9313ac42004-07-06 21:54:20 +0000860 curr_fnCC = curr_fnCC->next;
njn4f9c9342002-04-29 16:03:24 +0000861 }
862 }
nethercote9313ac42004-07-06 21:54:20 +0000863 curr_fileCC = curr_fileCC->next;
njn4f9c9342002-04-29 16:03:24 +0000864 }
865 }
866
nethercote9313ac42004-07-06 21:54:20 +0000867 // Summary stats must come after rest of table, since we calculate them
868 // during traversal. */
njn4f9c9342002-04-29 16:03:24 +0000869 VG_(sprintf)(buf, "summary: "
nethercote9313ac42004-07-06 21:54:20 +0000870 "%llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
njn4f9c9342002-04-29 16:03:24 +0000871 Ir_total.a, Ir_total.m1, Ir_total.m2,
872 Dr_total.a, Dr_total.m1, Dr_total.m2,
873 Dw_total.a, Dw_total.m1, Dw_total.m2);
874 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
875 VG_(close)(fd);
876}
877
njn607adfc2003-09-30 14:15:44 +0000878static UInt ULong_width(ULong n)
njn4f9c9342002-04-29 16:03:24 +0000879{
njn607adfc2003-09-30 14:15:44 +0000880 UInt w = 0;
881 while (n > 0) {
882 n = n / 10;
883 w++;
njn4f9c9342002-04-29 16:03:24 +0000884 }
njn607adfc2003-09-30 14:15:44 +0000885 return w + (w-1)/3; // add space for commas
njn4f9c9342002-04-29 16:03:24 +0000886}
887
sewardj4f29ddf2002-05-03 22:29:04 +0000888static
daywalker8ad1a402003-09-18 01:15:32 +0000889void percentify(Int n, Int ex, Int field_width, char buf[])
njn4f9c9342002-04-29 16:03:24 +0000890{
891 int i, len, space;
892
daywalker8ad1a402003-09-18 01:15:32 +0000893 VG_(sprintf)(buf, "%d.%d%%", n / ex, n % ex);
njn4f9c9342002-04-29 16:03:24 +0000894 len = VG_(strlen)(buf);
895 space = field_width - len;
njn25e49d8e72002-09-23 09:36:25 +0000896 if (space < 0) space = 0; /* Allow for v. small field_width */
njn4f9c9342002-04-29 16:03:24 +0000897 i = len;
898
899 /* Right justify in field */
900 for ( ; i >= 0; i--) buf[i + space] = buf[i];
901 for (i = 0; i < space; i++) buf[i] = ' ';
902}
903
njn26f02512004-11-22 18:33:15 +0000904void TL_(fini)(Int exitcode)
njn4f9c9342002-04-29 16:03:24 +0000905{
nethercote9313ac42004-07-06 21:54:20 +0000906 static char buf1[128], buf2[128], buf3[128], fmt [128];
njn607adfc2003-09-30 14:15:44 +0000907
njn4f9c9342002-04-29 16:03:24 +0000908 CC D_total;
njn1d021fa2002-05-02 13:56:34 +0000909 ULong L2_total_m, L2_total_mr, L2_total_mw,
910 L2_total, L2_total_r, L2_total_w;
njn4f9c9342002-04-29 16:03:24 +0000911 Int l1, l2, l3;
912 Int p;
913
nethercote9313ac42004-07-06 21:54:20 +0000914 fprint_CC_table_and_calc_totals();
njn4f9c9342002-04-29 16:03:24 +0000915
njn7cf0bd32002-06-08 13:36:03 +0000916 if (VG_(clo_verbosity) == 0)
917 return;
918
njn4f9c9342002-04-29 16:03:24 +0000919 /* I cache results. Use the I_refs value to determine the first column
920 * width. */
njn607adfc2003-09-30 14:15:44 +0000921 l1 = ULong_width(Ir_total.a);
922 l2 = ULong_width(Dr_total.a);
923 l3 = ULong_width(Dw_total.a);
njn4f9c9342002-04-29 16:03:24 +0000924
njn607adfc2003-09-30 14:15:44 +0000925 /* Make format string, getting width right for numbers */
926 VG_(sprintf)(fmt, "%%s %%,%dld", l1);
927
928 VG_(message)(Vg_UserMsg, fmt, "I refs: ", Ir_total.a);
929 VG_(message)(Vg_UserMsg, fmt, "I1 misses: ", Ir_total.m1);
930 VG_(message)(Vg_UserMsg, fmt, "L2i misses: ", Ir_total.m2);
njn4f9c9342002-04-29 16:03:24 +0000931
932 p = 100;
933
njn25e49d8e72002-09-23 09:36:25 +0000934 if (0 == Ir_total.a) Ir_total.a = 1;
njn4f9c9342002-04-29 16:03:24 +0000935 percentify(Ir_total.m1 * 100 * p / Ir_total.a, p, l1+1, buf1);
936 VG_(message)(Vg_UserMsg, "I1 miss rate: %s", buf1);
937
938 percentify(Ir_total.m2 * 100 * p / Ir_total.a, p, l1+1, buf1);
939 VG_(message)(Vg_UserMsg, "L2i miss rate: %s", buf1);
940 VG_(message)(Vg_UserMsg, "");
941
942 /* D cache results. Use the D_refs.rd and D_refs.wr values to determine the
943 * width of columns 2 & 3. */
944 D_total.a = Dr_total.a + Dw_total.a;
945 D_total.m1 = Dr_total.m1 + Dw_total.m1;
946 D_total.m2 = Dr_total.m2 + Dw_total.m2;
947
njn607adfc2003-09-30 14:15:44 +0000948 /* Make format string, getting width right for numbers */
949 VG_(sprintf)(fmt, "%%s %%,%dld (%%,%dld rd + %%,%dld wr)", l1, l2, l3);
njn4f9c9342002-04-29 16:03:24 +0000950
njn607adfc2003-09-30 14:15:44 +0000951 VG_(message)(Vg_UserMsg, fmt, "D refs: ",
952 D_total.a, Dr_total.a, Dw_total.a);
953 VG_(message)(Vg_UserMsg, fmt, "D1 misses: ",
954 D_total.m1, Dr_total.m1, Dw_total.m1);
955 VG_(message)(Vg_UserMsg, fmt, "L2d misses: ",
956 D_total.m2, Dr_total.m2, Dw_total.m2);
njn4f9c9342002-04-29 16:03:24 +0000957
958 p = 10;
959
njn25e49d8e72002-09-23 09:36:25 +0000960 if (0 == D_total.a) D_total.a = 1;
961 if (0 == Dr_total.a) Dr_total.a = 1;
962 if (0 == Dw_total.a) Dw_total.a = 1;
njn4f9c9342002-04-29 16:03:24 +0000963 percentify( D_total.m1 * 100 * p / D_total.a, p, l1+1, buf1);
964 percentify(Dr_total.m1 * 100 * p / Dr_total.a, p, l2+1, buf2);
965 percentify(Dw_total.m1 * 100 * p / Dw_total.a, p, l3+1, buf3);
966 VG_(message)(Vg_UserMsg, "D1 miss rate: %s (%s + %s )", buf1, buf2,buf3);
967
968 percentify( D_total.m2 * 100 * p / D_total.a, p, l1+1, buf1);
969 percentify(Dr_total.m2 * 100 * p / Dr_total.a, p, l2+1, buf2);
970 percentify(Dw_total.m2 * 100 * p / Dw_total.a, p, l3+1, buf3);
971 VG_(message)(Vg_UserMsg, "L2d miss rate: %s (%s + %s )", buf1, buf2,buf3);
972 VG_(message)(Vg_UserMsg, "");
973
974 /* L2 overall results */
njn1d021fa2002-05-02 13:56:34 +0000975
976 L2_total = Dr_total.m1 + Dw_total.m1 + Ir_total.m1;
977 L2_total_r = Dr_total.m1 + Ir_total.m1;
978 L2_total_w = Dw_total.m1;
njn607adfc2003-09-30 14:15:44 +0000979 VG_(message)(Vg_UserMsg, fmt, "L2 refs: ",
980 L2_total, L2_total_r, L2_total_w);
njn1d021fa2002-05-02 13:56:34 +0000981
njn4f9c9342002-04-29 16:03:24 +0000982 L2_total_m = Dr_total.m2 + Dw_total.m2 + Ir_total.m2;
983 L2_total_mr = Dr_total.m2 + Ir_total.m2;
984 L2_total_mw = Dw_total.m2;
njn607adfc2003-09-30 14:15:44 +0000985 VG_(message)(Vg_UserMsg, fmt, "L2 misses: ",
986 L2_total_m, L2_total_mr, L2_total_mw);
njn4f9c9342002-04-29 16:03:24 +0000987
988 percentify(L2_total_m * 100 * p / (Ir_total.a + D_total.a), p, l1+1, buf1);
989 percentify(L2_total_mr * 100 * p / (Ir_total.a + Dr_total.a), p, l2+1, buf2);
990 percentify(L2_total_mw * 100 * p / Dw_total.a, p, l3+1, buf3);
991 VG_(message)(Vg_UserMsg, "L2 miss rate: %s (%s + %s )", buf1, buf2,buf3);
992
993
nethercote9313ac42004-07-06 21:54:20 +0000994 // Various stats
njn4f9c9342002-04-29 16:03:24 +0000995 if (VG_(clo_verbosity) > 1) {
nethercote9313ac42004-07-06 21:54:20 +0000996 int BB_lookups = full_debug_BBs + fn_debug_BBs +
njn4f9c9342002-04-29 16:03:24 +0000997 file_line_debug_BBs + no_debug_BBs;
998
999 VG_(message)(Vg_DebugMsg, "");
1000 VG_(message)(Vg_DebugMsg, "Distinct files: %d", distinct_files);
1001 VG_(message)(Vg_DebugMsg, "Distinct fns: %d", distinct_fns);
nethercote9313ac42004-07-06 21:54:20 +00001002 VG_(message)(Vg_DebugMsg, "Distinct lines: %d", distinct_lines);
1003 VG_(message)(Vg_DebugMsg, "Distinct instrs: %d", distinct_instrs);
njn4f9c9342002-04-29 16:03:24 +00001004 VG_(message)(Vg_DebugMsg, "BB lookups: %d", BB_lookups);
1005 VG_(message)(Vg_DebugMsg, "With full debug info:%3d%% (%d)",
1006 full_debug_BBs * 100 / BB_lookups,
1007 full_debug_BBs);
1008 VG_(message)(Vg_DebugMsg, "With file/line debug info:%3d%% (%d)",
1009 file_line_debug_BBs * 100 / BB_lookups,
1010 file_line_debug_BBs);
1011 VG_(message)(Vg_DebugMsg, "With fn name debug info:%3d%% (%d)",
nethercote9313ac42004-07-06 21:54:20 +00001012 fn_debug_BBs * 100 / BB_lookups,
1013 fn_debug_BBs);
njn4f9c9342002-04-29 16:03:24 +00001014 VG_(message)(Vg_DebugMsg, "With no debug info:%3d%% (%d)",
1015 no_debug_BBs * 100 / BB_lookups,
1016 no_debug_BBs);
1017 VG_(message)(Vg_DebugMsg, "BBs Retranslated: %d", BB_retranslations);
njn4f9c9342002-04-29 16:03:24 +00001018 }
njn25e49d8e72002-09-23 09:36:25 +00001019 VGP_POPCC(VgpCacheResults);
njn4f9c9342002-04-29 16:03:24 +00001020}
1021
nethercote9313ac42004-07-06 21:54:20 +00001022/*--------------------------------------------------------------------*/
1023/*--- Discarding BB info ---*/
1024/*--------------------------------------------------------------------*/
sewardj18d75132002-05-16 11:06:21 +00001025
nethercote9313ac42004-07-06 21:54:20 +00001026// Called when a translation is invalidated due to code unloading.
njn26f02512004-11-22 18:33:15 +00001027void TL_(discard_basic_block_info) ( Addr a, SizeT size )
sewardj18d75132002-05-16 11:06:21 +00001028{
nethercote9313ac42004-07-06 21:54:20 +00001029 VgHashNode** prev_next_ptr;
1030 VgHashNode* bb_info;
njn4294fd42002-06-05 14:41:10 +00001031
nethercote928a5f72004-11-03 18:10:37 +00001032 if (0) VG_(printf)( "discard_basic_block_info: %p, %llu\n", a, (ULong)size);
njn4294fd42002-06-05 14:41:10 +00001033
nethercote9313ac42004-07-06 21:54:20 +00001034 // Get BB info, remove from table, free BB info. Simple!
1035 bb_info = VG_(HT_get_node)(instr_info_table, a, &prev_next_ptr);
njnca82cc02004-11-22 17:18:48 +00001036 tl_assert(NULL != bb_info);
nethercote9313ac42004-07-06 21:54:20 +00001037 *prev_next_ptr = bb_info->next;
1038 VG_(free)(bb_info);
sewardj18d75132002-05-16 11:06:21 +00001039}
1040
1041/*--------------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +00001042/*--- Command line processing ---*/
1043/*--------------------------------------------------------------------*/
1044
nethercote9313ac42004-07-06 21:54:20 +00001045static void parse_cache_opt ( cache_t* cache, char* opt )
njn25e49d8e72002-09-23 09:36:25 +00001046{
nethercote9313ac42004-07-06 21:54:20 +00001047 int i = 0, i2, i3;
njn25e49d8e72002-09-23 09:36:25 +00001048
nethercote9313ac42004-07-06 21:54:20 +00001049 // Option argument looks like "65536,2,64".
1050 // Find commas, replace with NULs to make three independent
1051 // strings, then extract numbers, put NULs back. Yuck.
njn25e49d8e72002-09-23 09:36:25 +00001052 while (VG_(isdigit)(opt[i])) i++;
1053 if (',' == opt[i]) {
1054 opt[i++] = '\0';
1055 i2 = i;
1056 } else goto bad;
1057 while (VG_(isdigit)(opt[i])) i++;
1058 if (',' == opt[i]) {
1059 opt[i++] = '\0';
1060 i3 = i;
1061 } else goto bad;
1062 while (VG_(isdigit)(opt[i])) i++;
1063 if ('\0' != opt[i]) goto bad;
1064
nethercote9313ac42004-07-06 21:54:20 +00001065 cache->size = (Int)VG_(atoll)(opt);
njn25e49d8e72002-09-23 09:36:25 +00001066 cache->assoc = (Int)VG_(atoll)(opt + i2);
1067 cache->line_size = (Int)VG_(atoll)(opt + i3);
1068
nethercote9313ac42004-07-06 21:54:20 +00001069 opt[i2-1] = ',';
1070 opt[i3-1] = ',';
njn25e49d8e72002-09-23 09:36:25 +00001071 return;
1072
1073 bad:
nethercote9313ac42004-07-06 21:54:20 +00001074 VG_(bad_option)(opt);
njn25e49d8e72002-09-23 09:36:25 +00001075}
1076
njn26f02512004-11-22 18:33:15 +00001077Bool TL_(process_cmd_line_option)(Char* arg)
njn25e49d8e72002-09-23 09:36:25 +00001078{
nethercote9313ac42004-07-06 21:54:20 +00001079 // 5 is length of "--I1="
njn39c86652003-05-21 10:13:39 +00001080 if (VG_CLO_STREQN(5, arg, "--I1="))
nethercote9313ac42004-07-06 21:54:20 +00001081 parse_cache_opt(&clo_I1_cache, &arg[5]);
njn39c86652003-05-21 10:13:39 +00001082 else if (VG_CLO_STREQN(5, arg, "--D1="))
nethercote9313ac42004-07-06 21:54:20 +00001083 parse_cache_opt(&clo_D1_cache, &arg[5]);
njn39c86652003-05-21 10:13:39 +00001084 else if (VG_CLO_STREQN(5, arg, "--L2="))
nethercote9313ac42004-07-06 21:54:20 +00001085 parse_cache_opt(&clo_L2_cache, &arg[5]);
njn25e49d8e72002-09-23 09:36:25 +00001086 else
1087 return False;
1088
1089 return True;
1090}
1091
njn26f02512004-11-22 18:33:15 +00001092void TL_(print_usage)(void)
njn25e49d8e72002-09-23 09:36:25 +00001093{
njn3e884182003-04-15 13:03:23 +00001094 VG_(printf)(
njn25e49d8e72002-09-23 09:36:25 +00001095" --I1=<size>,<assoc>,<line_size> set I1 cache manually\n"
1096" --D1=<size>,<assoc>,<line_size> set D1 cache manually\n"
njn3e884182003-04-15 13:03:23 +00001097" --L2=<size>,<assoc>,<line_size> set L2 cache manually\n"
1098 );
1099}
1100
njn26f02512004-11-22 18:33:15 +00001101void TL_(print_debug_usage)(void)
njn3e884182003-04-15 13:03:23 +00001102{
1103 VG_(printf)(
1104" (none)\n"
1105 );
njn25e49d8e72002-09-23 09:36:25 +00001106}
1107
1108/*--------------------------------------------------------------------*/
1109/*--- Setup ---*/
1110/*--------------------------------------------------------------------*/
1111
njn26f02512004-11-22 18:33:15 +00001112void TL_(pre_clo_init)(void)
njn25e49d8e72002-09-23 09:36:25 +00001113{
njn13f02932003-04-30 20:23:58 +00001114 Char* base_dir = NULL;
njn607adfc2003-09-30 14:15:44 +00001115
njn810086f2002-11-14 12:42:47 +00001116 VG_(details_name) ("Cachegrind");
1117 VG_(details_version) (NULL);
1118 VG_(details_description) ("an I1/D1/L2 cache profiler");
1119 VG_(details_copyright_author)(
nethercote08fa9a72004-07-16 17:44:00 +00001120 "Copyright (C) 2002-2004, and GNU GPL'd, by Nicholas Nethercote et al.");
nethercote421281e2003-11-20 16:20:55 +00001121 VG_(details_bug_reports_to) (VG_BUGS_TO);
sewardj78210aa2002-12-01 02:55:46 +00001122 VG_(details_avg_translation_sizeB) ( 155 );
njn25e49d8e72002-09-23 09:36:25 +00001123
njn810086f2002-11-14 12:42:47 +00001124 VG_(needs_basic_block_discards)();
1125 VG_(needs_command_line_options)();
njn25e49d8e72002-09-23 09:36:25 +00001126
1127 VG_(register_compact_helper)((Addr) & log_1I_0D_cache_access);
nethercote9313ac42004-07-06 21:54:20 +00001128 VG_(register_compact_helper)((Addr) & log_1I_1Dr_cache_access);
1129 VG_(register_compact_helper)((Addr) & log_1I_1Dw_cache_access);
njn25e49d8e72002-09-23 09:36:25 +00001130 VG_(register_compact_helper)((Addr) & log_1I_2D_cache_access);
njn13f02932003-04-30 20:23:58 +00001131
njn99ccf082003-09-30 13:51:23 +00001132 /* Get working directory */
njnca82cc02004-11-22 17:18:48 +00001133 tl_assert( VG_(getcwd_alloc)(&base_dir) );
njn99ccf082003-09-30 13:51:23 +00001134
njn13f02932003-04-30 20:23:58 +00001135 /* Block is big enough for dir name + cachegrind.out.<pid> */
1136 cachegrind_out_file = VG_(malloc)((VG_(strlen)(base_dir) + 32)*sizeof(Char));
1137 VG_(sprintf)(cachegrind_out_file, "%s/cachegrind.out.%d",
1138 base_dir, VG_(getpid)());
njn99ccf082003-09-30 13:51:23 +00001139 VG_(free)(base_dir);
nethercote9313ac42004-07-06 21:54:20 +00001140
1141 instr_info_table = VG_(HT_construct)();
njn25e49d8e72002-09-23 09:36:25 +00001142}
1143
njn26f02512004-11-22 18:33:15 +00001144void TL_(post_clo_init)(void)
njn25e49d8e72002-09-23 09:36:25 +00001145{
1146 cache_t I1c, D1c, L2c;
njn25e49d8e72002-09-23 09:36:25 +00001147
nethercoteb35a8b92004-09-11 16:45:27 +00001148 configure_caches(&I1c, &D1c, &L2c);
njn25e49d8e72002-09-23 09:36:25 +00001149
1150 cachesim_I1_initcache(I1c);
1151 cachesim_D1_initcache(D1c);
1152 cachesim_L2_initcache(L2c);
1153
nethercote9313ac42004-07-06 21:54:20 +00001154 VGP_(register_profile_event)(VgpGetLineCC, "get-lineCC");
njn25e49d8e72002-09-23 09:36:25 +00001155 VGP_(register_profile_event)(VgpCacheSimulate, "cache-simulate");
1156 VGP_(register_profile_event)(VgpCacheResults, "cache-results");
njn25e49d8e72002-09-23 09:36:25 +00001157}
1158
njn26f02512004-11-22 18:33:15 +00001159VG_DETERMINE_INTERFACE_VERSION(TL_(pre_clo_init), 0)
fitzhardinge98abfc72003-12-16 02:05:15 +00001160
njn25e49d8e72002-09-23 09:36:25 +00001161/*--------------------------------------------------------------------*/
njn25cac76cb2002-09-23 11:21:57 +00001162/*--- end cg_main.c ---*/
sewardj18d75132002-05-16 11:06:21 +00001163/*--------------------------------------------------------------------*/