blob: f98d323ed71c9acab4846f10a75a27bafe2a2ac7 [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
njn53612422005-03-12 16:22:54 +000011 Copyright (C) 2002-2005 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
njn6a3009b2005-03-20 00:20:06 +0000114// instruction (instr_len, 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;
njn6a3009b2005-03-20 00:20:06 +0000121 UChar instr_len;
nethercoteca1f2dc2004-07-21 08:49:02 +0000122 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{
njn6a3009b2005-03-20 00:20:06 +0000219 // Using calloc() zeroes instr_len and data_size
nethercote9313ac42004-07-06 21:54:20 +0000220 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.
njn6a3009b2005-03-20 00:20:06 +0000229static lineCC* get_lineCC(Addr origAddr)
nethercote9313ac42004-07-06 21:54:20 +0000230{
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
njn6a3009b2005-03-20 00:20:06 +0000238 get_debug_info(origAddr, file, fn, &line);
nethercote9313ac42004-07-06 21:54:20 +0000239
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{
njn6a3009b2005-03-20 00:20:06 +0000289 //VG_(printf)("1I_0D : CCaddr=0x%x, iaddr=0x%x, isize=%u\n",
290 // n, n->instr_addr, n->instr_len);
njn25e49d8e72002-09-23 09:36:25 +0000291 VGP_PUSHCC(VgpCacheSimulate);
njn6a3009b2005-03-20 00:20:06 +0000292 cachesim_I1_doref(n->instr_addr, n->instr_len,
nethercote9313ac42004-07-06 21:54:20 +0000293 &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",
njn6a3009b2005-03-20 00:20:06 +0000302 // n, n->instr_addr, n->instr_len, data_addr, n->data_size);
njn25e49d8e72002-09-23 09:36:25 +0000303 VGP_PUSHCC(VgpCacheSimulate);
njn6a3009b2005-03-20 00:20:06 +0000304 cachesim_I1_doref(n->instr_addr, n->instr_len,
nethercote9313ac42004-07-06 21:54:20 +0000305 &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",
njn6a3009b2005-03-20 00:20:06 +0000318 // n, n->instr_addr, n->instr_len, data_addr, n->data_size);
njn25e49d8e72002-09-23 09:36:25 +0000319 VGP_PUSHCC(VgpCacheSimulate);
njn6a3009b2005-03-20 00:20:06 +0000320 cachesim_I1_doref(n->instr_addr, n->instr_len,
nethercote9313ac42004-07-06 21:54:20 +0000321 &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",
njn6a3009b2005-03-20 00:20:06 +0000334 // n, n->instr_addr, n->instr_len, data_addr1, data_addr2, n->data_size);
njn25e49d8e72002-09-23 09:36:25 +0000335 VGP_PUSHCC(VgpCacheSimulate);
njn6a3009b2005-03-20 00:20:06 +0000336 cachesim_I1_doref(n->instr_addr, n->instr_len,
nethercote9313ac42004-07-06 21:54:20 +0000337 &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
njn6a3009b2005-03-20 00:20:06 +0000354BB_info* get_BB_info(IRBB* bbIn, Addr origAddr, Bool* bbSeenBefore)
nethercote9313ac42004-07-06 21:54:20 +0000355{
356 Int i, n_instrs;
njn6a3009b2005-03-20 00:20:06 +0000357 IRStmt* st;
358 BB_info* bbInfo;
nethercote9313ac42004-07-06 21:54:20 +0000359 VgHashNode** dummy;
360
njn6a3009b2005-03-20 00:20:06 +0000361 // Count number of original instrs in BB
362 n_instrs = 0;
363 for (i = 0; i < bbIn->stmts_used; i++) {
364 st = bbIn->stmts[i];
365 if (Ist_IMark == st->tag) n_instrs++;
nethercote9313ac42004-07-06 21:54:20 +0000366 }
367
368 // Get the BB_info
njn6a3009b2005-03-20 00:20:06 +0000369 bbInfo = (BB_info*)VG_(HT_get_node)(instr_info_table, origAddr, &dummy);
370 *bbSeenBefore = ( NULL == bbInfo ? False : True );
371 if (*bbSeenBefore) {
nethercote9313ac42004-07-06 21:54:20 +0000372 // BB must have been translated before, but flushed from the TT
njn6a3009b2005-03-20 00:20:06 +0000373 tl_assert(bbInfo->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)
njn6a3009b2005-03-20 00:20:06 +0000378 bbInfo = VG_(calloc)(1, sizeof(BB_info) + n_instrs*sizeof(instr_info));
379 bbInfo->BB_addr = origAddr;
380 bbInfo->n_instrs = n_instrs;
381 VG_(HT_add_node)( instr_info_table, (VgHashNode*)bbInfo );
nethercote9313ac42004-07-06 21:54:20 +0000382 distinct_instrs++;
383 }
njn6a3009b2005-03-20 00:20:06 +0000384 return bbInfo;
nethercote9313ac42004-07-06 21:54:20 +0000385}
njn6a3009b2005-03-20 00:20:06 +0000386
njn6a3009b2005-03-20 00:20:06 +0000387static
388void handleOneStatement(IRTypeEnv* tyenv, IRBB* bbOut, IRStmt* st,
389 Addr* instrAddr, UInt* instrLen,
390 IRExpr** loadAddrExpr, IRExpr** storeAddrExpr,
391 UInt* dataSize)
392{
sewardj7f4a8622005-03-26 21:55:21 +0000393 tl_assert(isFlatIRStmt(st));
394
njn6a3009b2005-03-20 00:20:06 +0000395 switch (st->tag) {
sewardj21dc3452005-03-21 00:27:41 +0000396 case Ist_NoOp:
njn6a3009b2005-03-20 00:20:06 +0000397 break;
398
399 case Ist_IMark:
sewardj2b641fe2005-03-21 11:53:38 +0000400 /* st->Ist.IMark.addr is a 64-bit int. ULong_to_Ptr casts this
401 to the host's native pointer type; if that is 32 bits then it
402 discards the upper 32 bits. If we are cachegrinding on a
403 32-bit host then we are also ensured that the guest word size
404 is 32 bits, due to the assertion in TL_(instrument) that the
405 host and guest word sizes must be the same. Hence
406 st->Ist.IMark.addr will have been derived from a 32-bit guest
407 code address and truncation of it is safe. I believe this
408 assignment should be correct for both 32- and 64-bit
409 machines. */
410 *instrAddr = (Addr)ULong_to_Ptr(st->Ist.IMark.addr);
njn6a3009b2005-03-20 00:20:06 +0000411 *instrLen = st->Ist.IMark.len;
412 addStmtToIRBB( bbOut, st );
413 break;
414
415 case Ist_Tmp: {
416 IRExpr* data = st->Ist.Tmp.data;
417 if (data->tag == Iex_LDle) {
418 IRExpr* aexpr = data->Iex.LDle.addr;
sewardj710d6c22005-03-20 18:55:15 +0000419 tl_assert( isIRAtom(aexpr) );
njn6a3009b2005-03-20 00:20:06 +0000420
421 // XXX: repe cmpsb does two loads... the first one is ignored here!
422 //tl_assert( NULL == *loadAddrExpr ); // XXX: ???
423 *loadAddrExpr = aexpr;
424 *dataSize = sizeofIRType(data->Iex.LDle.ty);
425 }
426 addStmtToIRBB( bbOut, st );
427 break;
428 }
429
430 case Ist_STle: {
431 IRExpr* data = st->Ist.STle.data;
432 IRExpr* aexpr = st->Ist.STle.addr;
sewardj710d6c22005-03-20 18:55:15 +0000433 tl_assert( isIRAtom(aexpr) );
njn6a3009b2005-03-20 00:20:06 +0000434 tl_assert( NULL == *storeAddrExpr ); // XXX: ???
435 *storeAddrExpr = aexpr;
436 *dataSize = sizeofIRType(typeOfIRExpr(tyenv, data));
437 addStmtToIRBB( bbOut, st );
438 break;
439 }
440
sewardj7f4a8622005-03-26 21:55:21 +0000441 case Ist_Dirty: {
442 IRDirty* d = st->Ist.Dirty.details;
443 if (d->mFx != Ifx_None) {
444 /* This dirty helper accesses memory. Collect the
445 details. */
446 tl_assert(d->mAddr != NULL);
447 tl_assert(d->mSize != 0);
448 *dataSize = d->mSize;
449 if (d->mFx == Ifx_Read || d->mFx == Ifx_Modify)
450 *loadAddrExpr = d->mAddr;
451 if (d->mFx == Ifx_Write || d->mFx == Ifx_Modify)
452 *storeAddrExpr = d->mAddr;
453 } else {
454 tl_assert(d->mAddr == NULL);
455 tl_assert(d->mSize == 0);
456 }
457 addStmtToIRBB( bbOut, st );
458 break;
459 }
460
njn6a3009b2005-03-20 00:20:06 +0000461 case Ist_Put:
462 case Ist_PutI:
463 case Ist_Exit:
njn6a3009b2005-03-20 00:20:06 +0000464 case Ist_MFence:
465 addStmtToIRBB( bbOut, st );
466 break;
467
468 default:
469 VG_(printf)("\n");
470 ppIRStmt(st);
471 VG_(printf)("\n");
472 VG_(tool_panic)("Cachegrind: unhandled IRStmt");
473 }
474}
nethercote9313ac42004-07-06 21:54:20 +0000475
nethercote564b2b02004-08-07 15:54:53 +0000476static
njn6a3009b2005-03-20 00:20:06 +0000477void do_details( instr_info* n, Bool bbSeenBefore,
478 Addr instr_addr, Int instr_len, Int data_size )
nethercote9313ac42004-07-06 21:54:20 +0000479{
njn6a3009b2005-03-20 00:20:06 +0000480 if (bbSeenBefore) {
njnca82cc02004-11-22 17:18:48 +0000481 tl_assert( n->instr_addr == instr_addr );
njn6a3009b2005-03-20 00:20:06 +0000482 tl_assert( n->instr_len == instr_len );
njnca82cc02004-11-22 17:18:48 +0000483 tl_assert( n->data_size == data_size );
njn6a3009b2005-03-20 00:20:06 +0000484 // Don't check that (n->parent == parent)... it's conceivable that
nethercote9313ac42004-07-06 21:54:20 +0000485 // the debug info might change; the other asserts should be enough to
486 // detect anything strange.
487 } else {
njn6a3009b2005-03-20 00:20:06 +0000488 lineCC* parent = get_lineCC(instr_addr);
nethercote9313ac42004-07-06 21:54:20 +0000489 n->instr_addr = instr_addr;
njn6a3009b2005-03-20 00:20:06 +0000490 n->instr_len = instr_len;
nethercote9313ac42004-07-06 21:54:20 +0000491 n->data_size = data_size;
492 n->parent = parent;
493 }
494}
495
njn6a3009b2005-03-20 00:20:06 +0000496// XXX: very x86-specific...
nethercote564b2b02004-08-07 15:54:53 +0000497static Bool is_valid_data_size(Int data_size)
nethercote9313ac42004-07-06 21:54:20 +0000498{
499 return (4 == data_size || 2 == data_size || 1 == data_size ||
500 8 == data_size || 10 == data_size || MIN_LINE_SIZE == data_size);
501}
502
njn6a3009b2005-03-20 00:20:06 +0000503static Bool loadStoreAddrsMatch(IRExpr* loadAddrExpr, IRExpr* storeAddrExpr)
nethercote9313ac42004-07-06 21:54:20 +0000504{
njn6a3009b2005-03-20 00:20:06 +0000505 // I'm assuming that for 'modify' instructions, that Vex always makes
506 // the loadAddrExpr and storeAddrExpr be of the same type, ie. both Tmp
507 // expressions, or both Const expressions.
sewardj710d6c22005-03-20 18:55:15 +0000508 tl_assert(isIRAtom(loadAddrExpr));
509 tl_assert(isIRAtom(storeAddrExpr));
510 return eqIRAtom(loadAddrExpr, storeAddrExpr);
njn6a3009b2005-03-20 00:20:06 +0000511}
512
513// Instrumentation for the end of each original instruction.
514static
515void endOfInstr(IRBB* bbOut, instr_info* i_node, Bool bbSeenBefore,
516 UInt instrAddr, UInt instrLen, UInt dataSize,
517 IRExpr* loadAddrExpr, IRExpr* storeAddrExpr)
518{
519 IRDirty* di;
520 IRExpr *arg1, *arg2, *arg3, **argv;
521 Int argc;
522 Char* helperName;
523 void* helperAddr;
sewardj17a56bf2005-03-21 01:35:02 +0000524 IRType wordTy;
525
526 // Stay sane ...
527 tl_assert(sizeof(HWord) == sizeof(void*));
528 if (sizeof(HWord) == 4) {
529 wordTy = Ity_I32;
530 } else
531 if (sizeof(HWord) == 8) {
532 wordTy = Ity_I64;
533 } else {
534 VG_(tool_panic)("endOfInstr: strange word size");
535 }
536
537 if (loadAddrExpr)
538 tl_assert(wordTy == typeOfIRExpr(bbOut->tyenv, loadAddrExpr));
539 if (storeAddrExpr)
540 tl_assert(wordTy == typeOfIRExpr(bbOut->tyenv, storeAddrExpr));
541
njn6a3009b2005-03-20 00:20:06 +0000542
543 // Nb: instrLen will be zero if Vex failed to decode it.
544 tl_assert( 0 == instrLen ||
545 (instrLen >= MIN_INSTR_SIZE && instrLen <= MAX_INSTR_SIZE) );
546
547 // Setup 1st arg: instr_info node's address
sewardj17a56bf2005-03-21 01:35:02 +0000548 // Believed to be 64-bit clean
njn6a3009b2005-03-20 00:20:06 +0000549 do_details(i_node, bbSeenBefore, instrAddr, instrLen, dataSize );
sewardj17a56bf2005-03-21 01:35:02 +0000550 arg1 = mkIRExpr_HWord( (HWord)i_node );
njn6a3009b2005-03-20 00:20:06 +0000551
552 if (!loadAddrExpr && !storeAddrExpr) {
553 // no load/store
554 tl_assert(0 == dataSize);
555 helperName = "log_1I_0D_cache_access";
556 helperAddr = &log_1I_0D_cache_access;
557 argc = 1;
558 argv = mkIRExprVec_1(arg1);
559
560 } else if (loadAddrExpr && !storeAddrExpr) {
561 // load
562 tl_assert( is_valid_data_size(dataSize) );
sewardj710d6c22005-03-20 18:55:15 +0000563 tl_assert( isIRAtom(loadAddrExpr) );
njn6a3009b2005-03-20 00:20:06 +0000564 helperName = "log_1I_1Dr_cache_access";
565 helperAddr = &log_1I_1Dr_cache_access;
566 argc = 2;
567 arg2 = loadAddrExpr;
568 argv = mkIRExprVec_2(arg1, arg2);
569
570 } else if (!loadAddrExpr && storeAddrExpr) {
571 // store
572 tl_assert( is_valid_data_size(dataSize) );
sewardj710d6c22005-03-20 18:55:15 +0000573 tl_assert( isIRAtom(storeAddrExpr) );
njn6a3009b2005-03-20 00:20:06 +0000574 helperName = "log_1I_1Dw_cache_access";
575 helperAddr = &log_1I_1Dw_cache_access;
576 argc = 2;
577 arg2 = storeAddrExpr;
578 argv = mkIRExprVec_2(arg1, arg2);
579
580 } else {
581 tl_assert( loadAddrExpr && storeAddrExpr );
582 tl_assert( is_valid_data_size(dataSize) );
sewardj710d6c22005-03-20 18:55:15 +0000583 tl_assert( isIRAtom(loadAddrExpr) );
584 tl_assert( isIRAtom(storeAddrExpr) );
njn6a3009b2005-03-20 00:20:06 +0000585
586 if ( loadStoreAddrsMatch(loadAddrExpr, storeAddrExpr) ) {
587 // modify
588 helperName = "log_1I_1Dr_cache_access";
589 helperAddr = &log_1I_1Dr_cache_access;
nethercote9313ac42004-07-06 21:54:20 +0000590 argc = 2;
njn6a3009b2005-03-20 00:20:06 +0000591 arg2 = loadAddrExpr;
592 argv = mkIRExprVec_2(arg1, arg2);
593
nethercote9313ac42004-07-06 21:54:20 +0000594 } else {
njn6a3009b2005-03-20 00:20:06 +0000595 // load/store
596 helperName = "log_1I_2D_cache_access";
597 helperAddr = &log_1I_2D_cache_access;
nethercote9313ac42004-07-06 21:54:20 +0000598 argc = 3;
njn6a3009b2005-03-20 00:20:06 +0000599 arg2 = loadAddrExpr;
600 arg3 = storeAddrExpr;
601 argv = mkIRExprVec_3(arg1, arg2, arg3);
njn4f9c9342002-04-29 16:03:24 +0000602 }
603 }
604
njn6a3009b2005-03-20 00:20:06 +0000605 // Add call to the instrumentation function
606 di = unsafeIRDirty_0_N( argc, helperName, helperAddr, argv);
607 addStmtToIRBB( bbOut, IRStmt_Dirty(di) );
njn4f9c9342002-04-29 16:03:24 +0000608}
njn14d01ce2004-11-26 11:30:14 +0000609
sewardjd54babf2005-03-21 00:55:49 +0000610IRBB* TL_(instrument) ( IRBB* bbIn, VexGuestLayout* layout,
611 IRType gWordTy, IRType hWordTy )
njn14d01ce2004-11-26 11:30:14 +0000612{
njn6a3009b2005-03-20 00:20:06 +0000613 Int i, dataSize = 0, bbInfo_i;
614 IRBB* bbOut;
615 IRStmt* st;
616 BB_info* bbInfo;
617 Bool bbSeenBefore = False;
618 Addr instrAddr, origAddr;
619 UInt instrLen;
620 IRExpr *loadAddrExpr, *storeAddrExpr;
621
sewardjd54babf2005-03-21 00:55:49 +0000622 if (gWordTy != hWordTy) {
623 /* We don't currently support this case. */
624 VG_(tool_panic)("host/guest word size mismatch");
625 }
626
njn6a3009b2005-03-20 00:20:06 +0000627 /* Set up BB */
628 bbOut = emptyIRBB();
629 bbOut->tyenv = dopyIRTypeEnv(bbIn->tyenv);
630 bbOut->next = dopyIRExpr(bbIn->next);
631 bbOut->jumpkind = bbIn->jumpkind;
632
633 // Get the first statement, and origAddr from it
634 i = 0;
635 tl_assert(bbIn->stmts_used > 0);
636 st = bbIn->stmts[0];
637 tl_assert(Ist_IMark == st->tag);
638 origAddr = (Addr)st->Ist.IMark.addr;
639 tl_assert(origAddr == st->Ist.IMark.addr); // XXX: check no overflow
640
641 // Get block info
642 bbInfo = get_BB_info(bbIn, origAddr, &bbSeenBefore);
643 bbInfo_i = 0;
644
645 do {
646 // We should be at an IMark statement
647 tl_assert(Ist_IMark == st->tag);
648
649 // Reset stuff for this original instruction
650 loadAddrExpr = storeAddrExpr = NULL;
651 dataSize = 0;
652
653 // Process all the statements for this original instruction (ie. until
654 // the next IMark statement, or the end of the block)
655 do {
656 handleOneStatement(bbIn->tyenv, bbOut, st, &instrAddr, &instrLen,
657 &loadAddrExpr, &storeAddrExpr, &dataSize);
658 i++;
659 st = ( i < bbIn->stmts_used ? bbIn->stmts[i] : NULL );
660 }
661 while (st && Ist_IMark != st->tag);
662
663 // Add instrumentation for this original instruction.
664 endOfInstr(bbOut, &bbInfo->instrs[ bbInfo_i ], bbSeenBefore,
665 instrAddr, instrLen, dataSize, loadAddrExpr, storeAddrExpr);
666
667 bbInfo_i++;
668 }
669 while (st);
670
671 return bbOut;
njn14d01ce2004-11-26 11:30:14 +0000672}
njn4f9c9342002-04-29 16:03:24 +0000673
674/*------------------------------------------------------------*/
nethercoteb35a8b92004-09-11 16:45:27 +0000675/*--- Cache configuration ---*/
njn4f9c9342002-04-29 16:03:24 +0000676/*------------------------------------------------------------*/
677
sewardjb5f6f512005-03-10 23:59:00 +0000678#define UNDEFINED_CACHE { -1, -1, -1 }
njn25e49d8e72002-09-23 09:36:25 +0000679
680static cache_t clo_I1_cache = UNDEFINED_CACHE;
681static cache_t clo_D1_cache = UNDEFINED_CACHE;
682static cache_t clo_L2_cache = UNDEFINED_CACHE;
683
njn7cf0bd32002-06-08 13:36:03 +0000684/* Checks cache config is ok; makes it so if not. */
sewardj07133bf2002-06-13 10:25:56 +0000685static
njna1d1a642004-11-26 18:36:02 +0000686void check_cache(cache_t* cache, Char *name)
njn7cf0bd32002-06-08 13:36:03 +0000687{
688 /* First check they're all powers of two */
sewardj07133bf2002-06-13 10:25:56 +0000689 if (-1 == VG_(log2)(cache->size)) {
njn7cf0bd32002-06-08 13:36:03 +0000690 VG_(message)(Vg_UserMsg,
njna1d1a642004-11-26 18:36:02 +0000691 "error: %s size of %dB not a power of two; aborting.",
692 name, cache->size);
693 VG_(exit)(1);
njn7cf0bd32002-06-08 13:36:03 +0000694 }
695
sewardj07133bf2002-06-13 10:25:56 +0000696 if (-1 == VG_(log2)(cache->assoc)) {
njn7cf0bd32002-06-08 13:36:03 +0000697 VG_(message)(Vg_UserMsg,
njna1d1a642004-11-26 18:36:02 +0000698 "error: %s associativity of %d not a power of two; aborting.",
699 name, cache->assoc);
700 VG_(exit)(1);
njn7cf0bd32002-06-08 13:36:03 +0000701 }
702
sewardj07133bf2002-06-13 10:25:56 +0000703 if (-1 == VG_(log2)(cache->line_size)) {
njn7cf0bd32002-06-08 13:36:03 +0000704 VG_(message)(Vg_UserMsg,
njna1d1a642004-11-26 18:36:02 +0000705 "error: %s line size of %dB not a power of two; aborting.",
706 name, cache->line_size);
707 VG_(exit)(1);
njn7cf0bd32002-06-08 13:36:03 +0000708 }
709
njn6a3009b2005-03-20 00:20:06 +0000710 // Then check line size >= 16 -- any smaller and a single instruction could
711 // straddle three cache lines, which breaks a simulation assertion and is
712 // stupid anyway.
njn7cf0bd32002-06-08 13:36:03 +0000713 if (cache->line_size < MIN_LINE_SIZE) {
714 VG_(message)(Vg_UserMsg,
njna1d1a642004-11-26 18:36:02 +0000715 "error: %s line size of %dB too small; aborting.",
716 name, cache->line_size);
717 VG_(exit)(1);
njn7cf0bd32002-06-08 13:36:03 +0000718 }
719
720 /* Then check cache size > line size (causes seg faults if not). */
721 if (cache->size <= cache->line_size) {
722 VG_(message)(Vg_UserMsg,
njna1d1a642004-11-26 18:36:02 +0000723 "error: %s cache size of %dB <= line size of %dB; aborting.",
724 name, cache->size, cache->line_size);
725 VG_(exit)(1);
njn7cf0bd32002-06-08 13:36:03 +0000726 }
727
728 /* Then check assoc <= (size / line size) (seg faults otherwise). */
729 if (cache->assoc > (cache->size / cache->line_size)) {
730 VG_(message)(Vg_UserMsg,
njna1d1a642004-11-26 18:36:02 +0000731 "warning: %s associativity > (size / line size); aborting.", name);
732 VG_(exit)(1);
njn7cf0bd32002-06-08 13:36:03 +0000733 }
734}
735
sewardj07133bf2002-06-13 10:25:56 +0000736static
nethercoteb35a8b92004-09-11 16:45:27 +0000737void configure_caches(cache_t* I1c, cache_t* D1c, cache_t* L2c)
njn7cf0bd32002-06-08 13:36:03 +0000738{
nethercote9313ac42004-07-06 21:54:20 +0000739#define DEFINED(L) (-1 != L.size || -1 != L.assoc || -1 != L.line_size)
740
nethercoteb35a8b92004-09-11 16:45:27 +0000741 Int n_clos = 0;
nethercote9313ac42004-07-06 21:54:20 +0000742
nethercoteb35a8b92004-09-11 16:45:27 +0000743 // Count how many were defined on the command line.
744 if (DEFINED(clo_I1_cache)) { n_clos++; }
745 if (DEFINED(clo_D1_cache)) { n_clos++; }
746 if (DEFINED(clo_L2_cache)) { n_clos++; }
njn7cf0bd32002-06-08 13:36:03 +0000747
njna1d1a642004-11-26 18:36:02 +0000748 // Set the cache config (using auto-detection, if supported by the
749 // architecture)
750 VGA_(configure_caches)( I1c, D1c, L2c, (3 == n_clos) );
sewardjb1a77a42002-07-13 13:31:20 +0000751
nethercote9313ac42004-07-06 21:54:20 +0000752 // Then replace with any defined on the command line.
nethercoteb35a8b92004-09-11 16:45:27 +0000753 if (DEFINED(clo_I1_cache)) { *I1c = clo_I1_cache; }
754 if (DEFINED(clo_D1_cache)) { *D1c = clo_D1_cache; }
755 if (DEFINED(clo_L2_cache)) { *L2c = clo_L2_cache; }
njn7cf0bd32002-06-08 13:36:03 +0000756
nethercote9313ac42004-07-06 21:54:20 +0000757 // Then check values and fix if not acceptable.
njna1d1a642004-11-26 18:36:02 +0000758 check_cache(I1c, "I1");
759 check_cache(D1c, "D1");
760 check_cache(L2c, "L2");
njn7cf0bd32002-06-08 13:36:03 +0000761
762 if (VG_(clo_verbosity) > 1) {
763 VG_(message)(Vg_UserMsg, "Cache configuration used:");
764 VG_(message)(Vg_UserMsg, " I1: %dB, %d-way, %dB lines",
765 I1c->size, I1c->assoc, I1c->line_size);
766 VG_(message)(Vg_UserMsg, " D1: %dB, %d-way, %dB lines",
767 D1c->size, D1c->assoc, D1c->line_size);
768 VG_(message)(Vg_UserMsg, " L2: %dB, %d-way, %dB lines",
769 L2c->size, L2c->assoc, L2c->line_size);
770 }
nethercote9313ac42004-07-06 21:54:20 +0000771#undef CMD_LINE_DEFINED
njn7cf0bd32002-06-08 13:36:03 +0000772}
773
njn4f9c9342002-04-29 16:03:24 +0000774/*------------------------------------------------------------*/
njn26f02512004-11-22 18:33:15 +0000775/*--- TL_(fini)() and related function ---*/
njn4f9c9342002-04-29 16:03:24 +0000776/*------------------------------------------------------------*/
777
nethercote9313ac42004-07-06 21:54:20 +0000778// Total reads/writes/misses. Calculated during CC traversal at the end.
779// All auto-zeroed.
780static CC Ir_total;
781static CC Dr_total;
782static CC Dw_total;
783
784static Char* cachegrind_out_file;
785
786static void file_err ( void )
njn4f9c9342002-04-29 16:03:24 +0000787{
nethercote9313ac42004-07-06 21:54:20 +0000788 VG_(message)(Vg_UserMsg,
789 "error: can't open cache simulation output file `%s'",
790 cachegrind_out_file );
791 VG_(message)(Vg_UserMsg,
792 " ... so simulation results will be missing.");
njn4f9c9342002-04-29 16:03:24 +0000793}
794
nethercote9313ac42004-07-06 21:54:20 +0000795static void fprint_lineCC(Int fd, lineCC* n)
njn4f9c9342002-04-29 16:03:24 +0000796{
nethercote9313ac42004-07-06 21:54:20 +0000797 Char buf[512];
798 VG_(sprintf)(buf, "%u %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
799 n->line,
800 n->Ir.a, n->Ir.m1, n->Ir.m2,
801 n->Dr.a, n->Dr.m1, n->Dr.m2,
802 n->Dw.a, n->Dw.m1, n->Dw.m2);
803 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
804
805 Ir_total.a += n->Ir.a; Ir_total.m1 += n->Ir.m1; Ir_total.m2 += n->Ir.m2;
806 Dr_total.a += n->Dr.a; Dr_total.m1 += n->Dr.m1; Dr_total.m2 += n->Dr.m2;
807 Dw_total.a += n->Dw.a; Dw_total.m1 += n->Dw.m1; Dw_total.m2 += n->Dw.m2;
808}
809
810static void fprint_CC_table_and_calc_totals(void)
811{
812 Int fd;
813 Char buf[512];
814 fileCC *curr_fileCC;
815 fnCC *curr_fnCC;
816 lineCC *curr_lineCC;
817 Int i, j, k;
njn4f9c9342002-04-29 16:03:24 +0000818
njn25e49d8e72002-09-23 09:36:25 +0000819 VGP_PUSHCC(VgpCacheResults);
njn13f02932003-04-30 20:23:58 +0000820
njndb918dd2003-07-22 20:45:11 +0000821 fd = VG_(open)(cachegrind_out_file, VKI_O_CREAT|VKI_O_TRUNC|VKI_O_WRONLY,
njn13f02932003-04-30 20:23:58 +0000822 VKI_S_IRUSR|VKI_S_IWUSR);
nethercote50da0f32003-10-30 10:33:30 +0000823 if (fd < 0) {
nethercote9313ac42004-07-06 21:54:20 +0000824 // If the file can't be opened for whatever reason (conflict
825 // between multiple cachegrinded processes?), give up now.
sewardj0744b6c2002-12-11 00:45:42 +0000826 file_err();
827 return;
828 }
njn4f9c9342002-04-29 16:03:24 +0000829
nethercote9313ac42004-07-06 21:54:20 +0000830 // "desc:" lines (giving I1/D1/L2 cache configuration). The spaces after
831 // the 2nd colon makes cg_annotate's output look nicer.
832 VG_(sprintf)(buf, "desc: I1 cache: %s\n"
833 "desc: D1 cache: %s\n"
834 "desc: L2 cache: %s\n",
835 I1.desc_line, D1.desc_line, L2.desc_line);
njn7cf0bd32002-06-08 13:36:03 +0000836 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
njn4f9c9342002-04-29 16:03:24 +0000837
nethercote9313ac42004-07-06 21:54:20 +0000838 // "cmd:" line
njn4f9c9342002-04-29 16:03:24 +0000839 VG_(strcpy)(buf, "cmd:");
840 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
njn25e49d8e72002-09-23 09:36:25 +0000841 for (i = 0; i < VG_(client_argc); i++) {
thughes6f7eb9c2004-10-06 13:50:12 +0000842 VG_(write)(fd, " ", 1);
thughes30c43d82004-10-06 13:49:36 +0000843 VG_(write)(fd, VG_(client_argv)[i], VG_(strlen)(VG_(client_argv)[i]));
njn4f9c9342002-04-29 16:03:24 +0000844 }
nethercote9313ac42004-07-06 21:54:20 +0000845 // "events:" line
njn4f9c9342002-04-29 16:03:24 +0000846 VG_(sprintf)(buf, "\nevents: Ir I1mr I2mr Dr D1mr D2mr Dw D1mw D2mw\n");
847 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
848
nethercote9313ac42004-07-06 21:54:20 +0000849 // Six loops here: three for the hash table arrays, and three for the
850 // chains hanging off the hash table arrays.
njn4f9c9342002-04-29 16:03:24 +0000851 for (i = 0; i < N_FILE_ENTRIES; i++) {
nethercote9313ac42004-07-06 21:54:20 +0000852 curr_fileCC = CC_table[i];
853 while (curr_fileCC != NULL) {
854 VG_(sprintf)(buf, "fl=%s\n", curr_fileCC->file);
njn4f9c9342002-04-29 16:03:24 +0000855 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
856
857 for (j = 0; j < N_FN_ENTRIES; j++) {
nethercote9313ac42004-07-06 21:54:20 +0000858 curr_fnCC = curr_fileCC->fns[j];
859 while (curr_fnCC != NULL) {
860 VG_(sprintf)(buf, "fn=%s\n", curr_fnCC->fn);
njn4f9c9342002-04-29 16:03:24 +0000861 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
862
nethercote9313ac42004-07-06 21:54:20 +0000863 for (k = 0; k < N_LINE_ENTRIES; k++) {
864 curr_lineCC = curr_fnCC->lines[k];
865 while (curr_lineCC != NULL) {
866 fprint_lineCC(fd, curr_lineCC);
867 curr_lineCC = curr_lineCC->next;
njn4f9c9342002-04-29 16:03:24 +0000868 }
869 }
nethercote9313ac42004-07-06 21:54:20 +0000870 curr_fnCC = curr_fnCC->next;
njn4f9c9342002-04-29 16:03:24 +0000871 }
872 }
nethercote9313ac42004-07-06 21:54:20 +0000873 curr_fileCC = curr_fileCC->next;
njn4f9c9342002-04-29 16:03:24 +0000874 }
875 }
876
nethercote9313ac42004-07-06 21:54:20 +0000877 // Summary stats must come after rest of table, since we calculate them
878 // during traversal. */
njn4f9c9342002-04-29 16:03:24 +0000879 VG_(sprintf)(buf, "summary: "
nethercote9313ac42004-07-06 21:54:20 +0000880 "%llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
njn4f9c9342002-04-29 16:03:24 +0000881 Ir_total.a, Ir_total.m1, Ir_total.m2,
882 Dr_total.a, Dr_total.m1, Dr_total.m2,
883 Dw_total.a, Dw_total.m1, Dw_total.m2);
884 VG_(write)(fd, (void*)buf, VG_(strlen)(buf));
885 VG_(close)(fd);
886}
887
njn607adfc2003-09-30 14:15:44 +0000888static UInt ULong_width(ULong n)
njn4f9c9342002-04-29 16:03:24 +0000889{
njn607adfc2003-09-30 14:15:44 +0000890 UInt w = 0;
891 while (n > 0) {
892 n = n / 10;
893 w++;
njn4f9c9342002-04-29 16:03:24 +0000894 }
njn607adfc2003-09-30 14:15:44 +0000895 return w + (w-1)/3; // add space for commas
njn4f9c9342002-04-29 16:03:24 +0000896}
897
sewardj4f29ddf2002-05-03 22:29:04 +0000898static
daywalker8ad1a402003-09-18 01:15:32 +0000899void percentify(Int n, Int ex, Int field_width, char buf[])
njn4f9c9342002-04-29 16:03:24 +0000900{
901 int i, len, space;
902
daywalker8ad1a402003-09-18 01:15:32 +0000903 VG_(sprintf)(buf, "%d.%d%%", n / ex, n % ex);
njn4f9c9342002-04-29 16:03:24 +0000904 len = VG_(strlen)(buf);
905 space = field_width - len;
njn25e49d8e72002-09-23 09:36:25 +0000906 if (space < 0) space = 0; /* Allow for v. small field_width */
njn4f9c9342002-04-29 16:03:24 +0000907 i = len;
908
909 /* Right justify in field */
910 for ( ; i >= 0; i--) buf[i + space] = buf[i];
911 for (i = 0; i < space; i++) buf[i] = ' ';
912}
913
njn26f02512004-11-22 18:33:15 +0000914void TL_(fini)(Int exitcode)
njn4f9c9342002-04-29 16:03:24 +0000915{
nethercote9313ac42004-07-06 21:54:20 +0000916 static char buf1[128], buf2[128], buf3[128], fmt [128];
njn607adfc2003-09-30 14:15:44 +0000917
njn4f9c9342002-04-29 16:03:24 +0000918 CC D_total;
njn1d021fa2002-05-02 13:56:34 +0000919 ULong L2_total_m, L2_total_mr, L2_total_mw,
920 L2_total, L2_total_r, L2_total_w;
njn4f9c9342002-04-29 16:03:24 +0000921 Int l1, l2, l3;
922 Int p;
923
nethercote9313ac42004-07-06 21:54:20 +0000924 fprint_CC_table_and_calc_totals();
njn4f9c9342002-04-29 16:03:24 +0000925
njn7cf0bd32002-06-08 13:36:03 +0000926 if (VG_(clo_verbosity) == 0)
927 return;
928
njn4f9c9342002-04-29 16:03:24 +0000929 /* I cache results. Use the I_refs value to determine the first column
930 * width. */
njn607adfc2003-09-30 14:15:44 +0000931 l1 = ULong_width(Ir_total.a);
932 l2 = ULong_width(Dr_total.a);
933 l3 = ULong_width(Dw_total.a);
njn4f9c9342002-04-29 16:03:24 +0000934
njn607adfc2003-09-30 14:15:44 +0000935 /* Make format string, getting width right for numbers */
936 VG_(sprintf)(fmt, "%%s %%,%dld", l1);
937
938 VG_(message)(Vg_UserMsg, fmt, "I refs: ", Ir_total.a);
939 VG_(message)(Vg_UserMsg, fmt, "I1 misses: ", Ir_total.m1);
940 VG_(message)(Vg_UserMsg, fmt, "L2i misses: ", Ir_total.m2);
njn4f9c9342002-04-29 16:03:24 +0000941
942 p = 100;
943
njn25e49d8e72002-09-23 09:36:25 +0000944 if (0 == Ir_total.a) Ir_total.a = 1;
njn4f9c9342002-04-29 16:03:24 +0000945 percentify(Ir_total.m1 * 100 * p / Ir_total.a, p, l1+1, buf1);
946 VG_(message)(Vg_UserMsg, "I1 miss rate: %s", buf1);
947
948 percentify(Ir_total.m2 * 100 * p / Ir_total.a, p, l1+1, buf1);
949 VG_(message)(Vg_UserMsg, "L2i miss rate: %s", buf1);
950 VG_(message)(Vg_UserMsg, "");
951
952 /* D cache results. Use the D_refs.rd and D_refs.wr values to determine the
953 * width of columns 2 & 3. */
954 D_total.a = Dr_total.a + Dw_total.a;
955 D_total.m1 = Dr_total.m1 + Dw_total.m1;
956 D_total.m2 = Dr_total.m2 + Dw_total.m2;
957
njn607adfc2003-09-30 14:15:44 +0000958 /* Make format string, getting width right for numbers */
959 VG_(sprintf)(fmt, "%%s %%,%dld (%%,%dld rd + %%,%dld wr)", l1, l2, l3);
njn4f9c9342002-04-29 16:03:24 +0000960
njn607adfc2003-09-30 14:15:44 +0000961 VG_(message)(Vg_UserMsg, fmt, "D refs: ",
962 D_total.a, Dr_total.a, Dw_total.a);
963 VG_(message)(Vg_UserMsg, fmt, "D1 misses: ",
964 D_total.m1, Dr_total.m1, Dw_total.m1);
965 VG_(message)(Vg_UserMsg, fmt, "L2d misses: ",
966 D_total.m2, Dr_total.m2, Dw_total.m2);
njn4f9c9342002-04-29 16:03:24 +0000967
968 p = 10;
969
njn25e49d8e72002-09-23 09:36:25 +0000970 if (0 == D_total.a) D_total.a = 1;
971 if (0 == Dr_total.a) Dr_total.a = 1;
972 if (0 == Dw_total.a) Dw_total.a = 1;
njn4f9c9342002-04-29 16:03:24 +0000973 percentify( D_total.m1 * 100 * p / D_total.a, p, l1+1, buf1);
974 percentify(Dr_total.m1 * 100 * p / Dr_total.a, p, l2+1, buf2);
975 percentify(Dw_total.m1 * 100 * p / Dw_total.a, p, l3+1, buf3);
976 VG_(message)(Vg_UserMsg, "D1 miss rate: %s (%s + %s )", buf1, buf2,buf3);
977
978 percentify( D_total.m2 * 100 * p / D_total.a, p, l1+1, buf1);
979 percentify(Dr_total.m2 * 100 * p / Dr_total.a, p, l2+1, buf2);
980 percentify(Dw_total.m2 * 100 * p / Dw_total.a, p, l3+1, buf3);
981 VG_(message)(Vg_UserMsg, "L2d miss rate: %s (%s + %s )", buf1, buf2,buf3);
982 VG_(message)(Vg_UserMsg, "");
983
984 /* L2 overall results */
njn1d021fa2002-05-02 13:56:34 +0000985
986 L2_total = Dr_total.m1 + Dw_total.m1 + Ir_total.m1;
987 L2_total_r = Dr_total.m1 + Ir_total.m1;
988 L2_total_w = Dw_total.m1;
njn607adfc2003-09-30 14:15:44 +0000989 VG_(message)(Vg_UserMsg, fmt, "L2 refs: ",
990 L2_total, L2_total_r, L2_total_w);
njn1d021fa2002-05-02 13:56:34 +0000991
njn4f9c9342002-04-29 16:03:24 +0000992 L2_total_m = Dr_total.m2 + Dw_total.m2 + Ir_total.m2;
993 L2_total_mr = Dr_total.m2 + Ir_total.m2;
994 L2_total_mw = Dw_total.m2;
njn607adfc2003-09-30 14:15:44 +0000995 VG_(message)(Vg_UserMsg, fmt, "L2 misses: ",
996 L2_total_m, L2_total_mr, L2_total_mw);
njn4f9c9342002-04-29 16:03:24 +0000997
998 percentify(L2_total_m * 100 * p / (Ir_total.a + D_total.a), p, l1+1, buf1);
999 percentify(L2_total_mr * 100 * p / (Ir_total.a + Dr_total.a), p, l2+1, buf2);
1000 percentify(L2_total_mw * 100 * p / Dw_total.a, p, l3+1, buf3);
1001 VG_(message)(Vg_UserMsg, "L2 miss rate: %s (%s + %s )", buf1, buf2,buf3);
1002
1003
nethercote9313ac42004-07-06 21:54:20 +00001004 // Various stats
njn4f9c9342002-04-29 16:03:24 +00001005 if (VG_(clo_verbosity) > 1) {
nethercote9313ac42004-07-06 21:54:20 +00001006 int BB_lookups = full_debug_BBs + fn_debug_BBs +
njn4f9c9342002-04-29 16:03:24 +00001007 file_line_debug_BBs + no_debug_BBs;
1008
1009 VG_(message)(Vg_DebugMsg, "");
1010 VG_(message)(Vg_DebugMsg, "Distinct files: %d", distinct_files);
1011 VG_(message)(Vg_DebugMsg, "Distinct fns: %d", distinct_fns);
nethercote9313ac42004-07-06 21:54:20 +00001012 VG_(message)(Vg_DebugMsg, "Distinct lines: %d", distinct_lines);
1013 VG_(message)(Vg_DebugMsg, "Distinct instrs: %d", distinct_instrs);
njn4f9c9342002-04-29 16:03:24 +00001014 VG_(message)(Vg_DebugMsg, "BB lookups: %d", BB_lookups);
1015 VG_(message)(Vg_DebugMsg, "With full debug info:%3d%% (%d)",
1016 full_debug_BBs * 100 / BB_lookups,
1017 full_debug_BBs);
1018 VG_(message)(Vg_DebugMsg, "With file/line debug info:%3d%% (%d)",
1019 file_line_debug_BBs * 100 / BB_lookups,
1020 file_line_debug_BBs);
1021 VG_(message)(Vg_DebugMsg, "With fn name debug info:%3d%% (%d)",
nethercote9313ac42004-07-06 21:54:20 +00001022 fn_debug_BBs * 100 / BB_lookups,
1023 fn_debug_BBs);
njn4f9c9342002-04-29 16:03:24 +00001024 VG_(message)(Vg_DebugMsg, "With no debug info:%3d%% (%d)",
1025 no_debug_BBs * 100 / BB_lookups,
1026 no_debug_BBs);
1027 VG_(message)(Vg_DebugMsg, "BBs Retranslated: %d", BB_retranslations);
njn4f9c9342002-04-29 16:03:24 +00001028 }
njn25e49d8e72002-09-23 09:36:25 +00001029 VGP_POPCC(VgpCacheResults);
njn4f9c9342002-04-29 16:03:24 +00001030}
1031
nethercote9313ac42004-07-06 21:54:20 +00001032/*--------------------------------------------------------------------*/
1033/*--- Discarding BB info ---*/
1034/*--------------------------------------------------------------------*/
sewardj18d75132002-05-16 11:06:21 +00001035
nethercote9313ac42004-07-06 21:54:20 +00001036// Called when a translation is invalidated due to code unloading.
njn26f02512004-11-22 18:33:15 +00001037void TL_(discard_basic_block_info) ( Addr a, SizeT size )
sewardj18d75132002-05-16 11:06:21 +00001038{
nethercote9313ac42004-07-06 21:54:20 +00001039 VgHashNode** prev_next_ptr;
njn6a3009b2005-03-20 00:20:06 +00001040 VgHashNode* bbInfo;
njn4294fd42002-06-05 14:41:10 +00001041
nethercote928a5f72004-11-03 18:10:37 +00001042 if (0) VG_(printf)( "discard_basic_block_info: %p, %llu\n", a, (ULong)size);
njn4294fd42002-06-05 14:41:10 +00001043
nethercote9313ac42004-07-06 21:54:20 +00001044 // Get BB info, remove from table, free BB info. Simple!
njn6a3009b2005-03-20 00:20:06 +00001045 bbInfo = VG_(HT_get_node)(instr_info_table, a, &prev_next_ptr);
1046 tl_assert(NULL != bbInfo);
1047 *prev_next_ptr = bbInfo->next;
1048 VG_(free)(bbInfo);
sewardj18d75132002-05-16 11:06:21 +00001049}
1050
1051/*--------------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +00001052/*--- Command line processing ---*/
1053/*--------------------------------------------------------------------*/
1054
nethercote9313ac42004-07-06 21:54:20 +00001055static void parse_cache_opt ( cache_t* cache, char* opt )
njn25e49d8e72002-09-23 09:36:25 +00001056{
nethercote9313ac42004-07-06 21:54:20 +00001057 int i = 0, i2, i3;
njn25e49d8e72002-09-23 09:36:25 +00001058
nethercote9313ac42004-07-06 21:54:20 +00001059 // Option argument looks like "65536,2,64".
1060 // Find commas, replace with NULs to make three independent
1061 // strings, then extract numbers, put NULs back. Yuck.
njn25e49d8e72002-09-23 09:36:25 +00001062 while (VG_(isdigit)(opt[i])) i++;
1063 if (',' == opt[i]) {
1064 opt[i++] = '\0';
1065 i2 = i;
1066 } else goto bad;
1067 while (VG_(isdigit)(opt[i])) i++;
1068 if (',' == opt[i]) {
1069 opt[i++] = '\0';
1070 i3 = i;
1071 } else goto bad;
1072 while (VG_(isdigit)(opt[i])) i++;
1073 if ('\0' != opt[i]) goto bad;
1074
nethercote9313ac42004-07-06 21:54:20 +00001075 cache->size = (Int)VG_(atoll)(opt);
njn25e49d8e72002-09-23 09:36:25 +00001076 cache->assoc = (Int)VG_(atoll)(opt + i2);
1077 cache->line_size = (Int)VG_(atoll)(opt + i3);
1078
nethercote9313ac42004-07-06 21:54:20 +00001079 opt[i2-1] = ',';
1080 opt[i3-1] = ',';
njn25e49d8e72002-09-23 09:36:25 +00001081 return;
1082
1083 bad:
nethercote9313ac42004-07-06 21:54:20 +00001084 VG_(bad_option)(opt);
njn25e49d8e72002-09-23 09:36:25 +00001085}
1086
njn26f02512004-11-22 18:33:15 +00001087Bool TL_(process_cmd_line_option)(Char* arg)
njn25e49d8e72002-09-23 09:36:25 +00001088{
nethercote9313ac42004-07-06 21:54:20 +00001089 // 5 is length of "--I1="
njn39c86652003-05-21 10:13:39 +00001090 if (VG_CLO_STREQN(5, arg, "--I1="))
nethercote9313ac42004-07-06 21:54:20 +00001091 parse_cache_opt(&clo_I1_cache, &arg[5]);
njn39c86652003-05-21 10:13:39 +00001092 else if (VG_CLO_STREQN(5, arg, "--D1="))
nethercote9313ac42004-07-06 21:54:20 +00001093 parse_cache_opt(&clo_D1_cache, &arg[5]);
njn39c86652003-05-21 10:13:39 +00001094 else if (VG_CLO_STREQN(5, arg, "--L2="))
nethercote9313ac42004-07-06 21:54:20 +00001095 parse_cache_opt(&clo_L2_cache, &arg[5]);
njn25e49d8e72002-09-23 09:36:25 +00001096 else
1097 return False;
1098
1099 return True;
1100}
1101
njn26f02512004-11-22 18:33:15 +00001102void TL_(print_usage)(void)
njn25e49d8e72002-09-23 09:36:25 +00001103{
njn3e884182003-04-15 13:03:23 +00001104 VG_(printf)(
njn25e49d8e72002-09-23 09:36:25 +00001105" --I1=<size>,<assoc>,<line_size> set I1 cache manually\n"
1106" --D1=<size>,<assoc>,<line_size> set D1 cache manually\n"
njn3e884182003-04-15 13:03:23 +00001107" --L2=<size>,<assoc>,<line_size> set L2 cache manually\n"
1108 );
1109}
1110
njn26f02512004-11-22 18:33:15 +00001111void TL_(print_debug_usage)(void)
njn3e884182003-04-15 13:03:23 +00001112{
1113 VG_(printf)(
1114" (none)\n"
1115 );
njn25e49d8e72002-09-23 09:36:25 +00001116}
1117
1118/*--------------------------------------------------------------------*/
1119/*--- Setup ---*/
1120/*--------------------------------------------------------------------*/
1121
njn26f02512004-11-22 18:33:15 +00001122void TL_(pre_clo_init)(void)
njn25e49d8e72002-09-23 09:36:25 +00001123{
njn13f02932003-04-30 20:23:58 +00001124 Char* base_dir = NULL;
njn607adfc2003-09-30 14:15:44 +00001125
njn810086f2002-11-14 12:42:47 +00001126 VG_(details_name) ("Cachegrind");
1127 VG_(details_version) (NULL);
1128 VG_(details_description) ("an I1/D1/L2 cache profiler");
1129 VG_(details_copyright_author)(
njn53612422005-03-12 16:22:54 +00001130 "Copyright (C) 2002-2005, and GNU GPL'd, by Nicholas Nethercote et al.");
nethercote421281e2003-11-20 16:20:55 +00001131 VG_(details_bug_reports_to) (VG_BUGS_TO);
sewardj78210aa2002-12-01 02:55:46 +00001132 VG_(details_avg_translation_sizeB) ( 155 );
njn25e49d8e72002-09-23 09:36:25 +00001133
njn810086f2002-11-14 12:42:47 +00001134 VG_(needs_basic_block_discards)();
1135 VG_(needs_command_line_options)();
njn25e49d8e72002-09-23 09:36:25 +00001136
njn99ccf082003-09-30 13:51:23 +00001137 /* Get working directory */
njnca82cc02004-11-22 17:18:48 +00001138 tl_assert( VG_(getcwd_alloc)(&base_dir) );
njn99ccf082003-09-30 13:51:23 +00001139
njn13f02932003-04-30 20:23:58 +00001140 /* Block is big enough for dir name + cachegrind.out.<pid> */
1141 cachegrind_out_file = VG_(malloc)((VG_(strlen)(base_dir) + 32)*sizeof(Char));
1142 VG_(sprintf)(cachegrind_out_file, "%s/cachegrind.out.%d",
1143 base_dir, VG_(getpid)());
njn99ccf082003-09-30 13:51:23 +00001144 VG_(free)(base_dir);
nethercote9313ac42004-07-06 21:54:20 +00001145
1146 instr_info_table = VG_(HT_construct)();
njn25e49d8e72002-09-23 09:36:25 +00001147}
1148
njn26f02512004-11-22 18:33:15 +00001149void TL_(post_clo_init)(void)
njn25e49d8e72002-09-23 09:36:25 +00001150{
1151 cache_t I1c, D1c, L2c;
njn25e49d8e72002-09-23 09:36:25 +00001152
nethercoteb35a8b92004-09-11 16:45:27 +00001153 configure_caches(&I1c, &D1c, &L2c);
njn25e49d8e72002-09-23 09:36:25 +00001154
1155 cachesim_I1_initcache(I1c);
1156 cachesim_D1_initcache(D1c);
1157 cachesim_L2_initcache(L2c);
1158
njn31066fd2005-03-26 00:42:02 +00001159 VG_(register_profile_event)(VgpGetLineCC, "get-lineCC");
1160 VG_(register_profile_event)(VgpCacheSimulate, "cache-simulate");
1161 VG_(register_profile_event)(VgpCacheResults, "cache-results");
njn25e49d8e72002-09-23 09:36:25 +00001162}
1163
njn26f02512004-11-22 18:33:15 +00001164VG_DETERMINE_INTERFACE_VERSION(TL_(pre_clo_init), 0)
fitzhardinge98abfc72003-12-16 02:05:15 +00001165
njn25e49d8e72002-09-23 09:36:25 +00001166/*--------------------------------------------------------------------*/
njn25cac76cb2002-09-23 11:21:57 +00001167/*--- end cg_main.c ---*/
sewardj18d75132002-05-16 11:06:21 +00001168/*--------------------------------------------------------------------*/