drd: Add a consistency check
[valgrind.git] / exp-bbv / bbv_main.c
blob82ac7ea872c7b403ca0fd0e199b5cd4d4ad42950
1 /* -*- mode: C; c-basic-offset: 3; -*- */
3 //--------------------------------------------------------------------*/
4 //--- BBV: a SimPoint basic block vector generator bbv_main.c ---*/
5 //--------------------------------------------------------------------*/
7 /*
8 This file is part of BBV, a Valgrind tool for generating SimPoint
9 basic block vectors.
11 Copyright (C) 2006-2013 Vince Weaver
12 vince _at_ csl.cornell.edu
14 pcfile code is Copyright (C) 2006-2013 Oriol Prat
15 oriol.prat _at _ bsc.es
17 This program is free software; you can redistribute it and/or
18 modify it under the terms of the GNU General Public License as
19 published by the Free Software Foundation; either version 2 of the
20 License, or (at your option) any later version.
22 This program is distributed in the hope that it will be useful, but
23 WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
30 02111-1307, USA.
32 The GNU General Public License is contained in the file COPYING.
36 #include "pub_tool_basics.h"
37 #include "pub_tool_tooliface.h"
38 #include "pub_tool_options.h" /* command line options */
40 #include "pub_tool_vki.h" /* VKI_O_CREAT */
41 #include "pub_tool_libcbase.h" /* VG_(strlen) */
42 #include "pub_tool_libcprint.h" /* VG_(printf) */
43 #include "pub_tool_libcassert.h" /* VG_(exit) */
44 #include "pub_tool_mallocfree.h" /* VG_(malloc) */
45 #include "pub_tool_machine.h" /* VG_(fnptr_to_fnentry) */
46 #include "pub_tool_debuginfo.h" /* VG_(get_fnname) */
48 #include "pub_tool_oset.h" /* ordered set stuff */
50 /* instruction special cases */
51 #define REP_INSTRUCTION 0x1
52 #define FLDCW_INSTRUCTION 0x2
54 /* interval variables */
55 #define DEFAULT_GRAIN_SIZE 100000000 /* 100 million by default */
56 static Int interval_size=DEFAULT_GRAIN_SIZE;
58 /* filenames */
59 static const HChar *clo_bb_out_file="bb.out.%p";
60 static const HChar *clo_pc_out_file="pc.out.%p";
61 static HChar *pc_out_file=NULL;
62 static HChar *bb_out_file=NULL;
65 /* output parameters */
66 static Bool instr_count_only=False;
67 static Bool generate_pc_file=False;
69 /* Global values */
70 static OSet* instr_info_table; /* table that holds the basic block info */
71 static Int block_num=1; /* global next block number */
72 static Int current_thread=0;
73 static Int allocated_threads=1;
74 struct thread_info *bbv_thread=NULL;
76 /* Per-thread variables */
77 struct thread_info {
78 ULong dyn_instr; /* Current retired instruction count */
79 ULong total_instr; /* Total retired instruction count */
80 Addr last_rep_addr; /* rep counting values */
81 ULong rep_count;
82 ULong global_rep_count;
83 ULong unique_rep_count;
84 ULong fldcw_count; /* fldcw count */
85 VgFile *bbtrace_fp; /* file pointer */
88 struct BB_info {
89 Addr BB_addr; /* used as key, must be first */
90 Int n_instrs; /* instructions in the basic block */
91 Int block_num; /* unique block identifier */
92 Int *inst_counter; /* times entered * num_instructions */
93 Bool is_entry; /* is this block a function entry point */
94 const HChar *fn_name; /* Function block is in */
98 /* dump the optional PC file, which contains basic block number to */
99 /* instruction address and function name mappings */
100 static void dumpPcFile(void)
102 struct BB_info *bb_elem;
103 VgFile *fp;
105 pc_out_file =
106 VG_(expand_file_name)("--pc-out-file", clo_pc_out_file);
108 fp = VG_(fopen)(pc_out_file, VKI_O_CREAT|VKI_O_TRUNC|VKI_O_WRONLY,
109 VKI_S_IRUSR|VKI_S_IWUSR|VKI_S_IRGRP|VKI_S_IWGRP);
110 if (fp == NULL) {
111 VG_(umsg)("Error: cannot create pc file %s\n", pc_out_file);
112 VG_(exit)(1);
115 /* Loop through the table, printing the number, address, */
116 /* and function name for each basic block */
117 VG_(OSetGen_ResetIter)(instr_info_table);
118 while ( (bb_elem = VG_(OSetGen_Next)(instr_info_table)) ) {
119 VG_(fprintf)( fp, "F:%d:%x:%s\n", bb_elem->block_num,
120 (Int)bb_elem->BB_addr, bb_elem->fn_name);
123 VG_(fclose)(fp);
126 static VgFile *open_tracefile(Int thread_num)
128 VgFile *fp;
129 // Allocate a buffer large enough for the general case "%s.%d" below
130 HChar temp_string[VG_(strlen)(bb_out_file) + 1 + 10 + 1];
132 /* For thread 1, don't append any thread number */
133 /* This lets the single-thread case not have any */
134 /* extra values appended to the file name. */
135 if (thread_num==1) {
136 VG_(strcpy)(temp_string, bb_out_file);
138 else {
139 VG_(sprintf)(temp_string,"%s.%d",bb_out_file,thread_num);
142 fp = VG_(fopen)(temp_string, VKI_O_CREAT|VKI_O_TRUNC|VKI_O_WRONLY,
143 VKI_S_IRUSR|VKI_S_IWUSR|VKI_S_IRGRP|VKI_S_IWGRP);
145 if (fp == NULL) {
146 VG_(umsg)("Error: cannot create bb file %s\n",temp_string);
147 VG_(exit)(1);
150 return fp;
153 static void handle_overflow(void)
155 struct BB_info *bb_elem;
157 if (bbv_thread[current_thread].dyn_instr > interval_size) {
159 if (!instr_count_only) {
161 /* If our output file hasn't been opened, open it */
162 if (bbv_thread[current_thread].bbtrace_fp == NULL) {
163 bbv_thread[current_thread].bbtrace_fp=open_tracefile(current_thread);
166 /* put an entry to the bb.out file */
168 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, "T");
170 VG_(OSetGen_ResetIter)(instr_info_table);
171 while ( (bb_elem = VG_(OSetGen_Next)(instr_info_table)) ) {
172 if ( bb_elem->inst_counter[current_thread] != 0 ) {
173 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, ":%d:%d ",
174 bb_elem->block_num,
175 bb_elem->inst_counter[current_thread]);
176 bb_elem->inst_counter[current_thread] = 0;
180 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, "\n");
183 bbv_thread[current_thread].dyn_instr -= interval_size;
188 static void close_out_reps(void)
190 bbv_thread[current_thread].global_rep_count+=bbv_thread[current_thread].rep_count;
191 bbv_thread[current_thread].unique_rep_count++;
192 bbv_thread[current_thread].rep_count=0;
195 /* Generic function to get called each instruction */
196 static VG_REGPARM(1) void per_instruction_BBV(struct BB_info *bbInfo)
198 Int n_instrs=1;
200 tl_assert(bbInfo);
202 /* we finished rep but didn't clear out count */
203 if (bbv_thread[current_thread].rep_count) {
204 n_instrs++;
205 close_out_reps();
208 bbInfo->inst_counter[current_thread]+=n_instrs;
210 bbv_thread[current_thread].total_instr+=n_instrs;
211 bbv_thread[current_thread].dyn_instr +=n_instrs;
213 handle_overflow();
216 /* Function to get called if instruction has a rep prefix */
217 static VG_REGPARM(1) void per_instruction_BBV_rep(Addr addr)
219 /* handle back-to-back rep instructions */
220 if (bbv_thread[current_thread].last_rep_addr!=addr) {
221 if (bbv_thread[current_thread].rep_count) {
222 close_out_reps();
223 bbv_thread[current_thread].total_instr++;
224 bbv_thread[current_thread].dyn_instr++;
226 bbv_thread[current_thread].last_rep_addr=addr;
229 bbv_thread[current_thread].rep_count++;
233 /* Function to call if our instruction has a fldcw instruction */
234 static VG_REGPARM(1) void per_instruction_BBV_fldcw(struct BB_info *bbInfo)
236 Int n_instrs=1;
238 tl_assert(bbInfo);
240 /* we finished rep but didn't clear out count */
241 if (bbv_thread[current_thread].rep_count) {
242 n_instrs++;
243 close_out_reps();
246 /* count fldcw instructions */
247 bbv_thread[current_thread].fldcw_count++;
249 bbInfo->inst_counter[current_thread]+=n_instrs;
251 bbv_thread[current_thread].total_instr+=n_instrs;
252 bbv_thread[current_thread].dyn_instr +=n_instrs;
254 handle_overflow();
257 /* Check if the instruction pointed to is one that needs */
258 /* special handling. If so, set a bit in the return */
259 /* value indicating what type. */
260 static Int get_inst_type(Int len, Addr addr)
262 int result=0;
264 #if defined(VGA_x86) || defined(VGA_amd64)
266 UChar *inst_pointer;
267 UChar inst_byte;
268 int i,possible_rep;
270 /* rep prefixed instructions are counted as one instruction on */
271 /* x86 processors and must be handled as a special case */
273 /* Also, the rep prefix is re-used as part of the opcode for */
274 /* SSE instructions. So we need to specifically check for */
275 /* the following: movs, cmps, scas, lods, stos, ins, outs */
277 inst_pointer=(UChar *)addr;
278 i=0;
279 inst_byte=0;
280 possible_rep=0;
282 while (i<len) {
284 inst_byte=*inst_pointer;
286 if ( (inst_byte == 0x67) || /* size override prefix */
287 (inst_byte == 0x66) || /* size override prefix */
288 (inst_byte == 0x48) ) { /* 64-bit prefix */
289 } else if ( (inst_byte == 0xf2) || /* rep prefix */
290 (inst_byte == 0xf3) ) { /* repne prefix */
291 possible_rep=1;
292 } else {
293 break; /* other byte, exit */
296 i++;
297 inst_pointer++;
300 if ( possible_rep &&
301 ( ( (inst_byte >= 0xa4) && /* movs,cmps,scas */
302 (inst_byte <= 0xaf) ) || /* lods,stos */
303 ( (inst_byte >= 0x6c) &&
304 (inst_byte <= 0x6f) ) ) ) { /* ins,outs */
306 result|=REP_INSTRUCTION;
309 /* fldcw instructions are double-counted by the hardware */
310 /* performance counters on pentium 4 processors so it is */
311 /* useful to have that count when doing validation work. */
313 inst_pointer=(UChar *)addr;
314 if (len>1) {
315 /* FLDCW detection */
316 /* opcode is 0xd9/5, ie 1101 1001 oo10 1mmm */
317 if ((*inst_pointer==0xd9) &&
318 (*(inst_pointer+1)<0xb0) && /* need this case of fldz, etc, count */
319 ( (*(inst_pointer+1) & 0x38) == 0x28)) {
320 result|=FLDCW_INSTRUCTION;
324 #endif
325 return result;
330 /* Our instrumentation function */
331 /* sbIn = super block to translate */
332 /* layout = guest layout */
333 /* gWordTy = size of guest word */
334 /* hWordTy = size of host word */
335 static IRSB* bbv_instrument ( VgCallbackClosure* closure,
336 IRSB* sbIn, const VexGuestLayout* layout,
337 const VexGuestExtents* vge,
338 const VexArchInfo* archinfo_host,
339 IRType gWordTy, IRType hWordTy )
341 Int i,n_instrs=1;
342 IRSB *sbOut;
343 IRStmt *st;
344 struct BB_info *bbInfo;
345 Addr64 origAddr,ourAddr;
346 IRDirty *di;
347 IRExpr **argv, *arg1;
348 Int regparms,opcode_type;
350 /* We don't handle a host/guest word size mismatch */
351 if (gWordTy != hWordTy) {
352 VG_(tool_panic)("host/guest word size mismatch");
355 /* Set up SB */
356 sbOut = deepCopyIRSBExceptStmts(sbIn);
358 /* Copy verbatim any IR preamble preceding the first IMark */
359 i = 0;
360 while ( (i < sbIn->stmts_used) && (sbIn->stmts[i]->tag!=Ist_IMark)) {
361 addStmtToIRSB( sbOut, sbIn->stmts[i] );
362 i++;
365 /* Get the first statement */
366 tl_assert(sbIn->stmts_used > 0);
367 st = sbIn->stmts[i];
369 /* double check we are at a Mark statement */
370 tl_assert(Ist_IMark == st->tag);
372 origAddr=st->Ist.IMark.addr;
374 /* Get the BB_info */
375 bbInfo = VG_(OSetGen_Lookup)(instr_info_table, &origAddr);
377 if (bbInfo==NULL) {
379 /* BB never translated before (at this address, at least; */
380 /* could have been unloaded and then reloaded elsewhere in memory) */
382 /* allocate and initialize a new basic block structure */
383 bbInfo=VG_(OSetGen_AllocNode)(instr_info_table, sizeof(struct BB_info));
384 bbInfo->BB_addr = origAddr;
385 bbInfo->n_instrs = n_instrs;
386 bbInfo->inst_counter=VG_(calloc)("bbv_instrument",
387 allocated_threads,
388 sizeof(Int));
390 /* assign a unique block number */
391 bbInfo->block_num=block_num;
392 block_num++;
393 /* get function name and entry point information */
394 const HChar *fn_name;
395 bbInfo->is_entry=VG_(get_fnname_if_entry)(origAddr, &fn_name);
396 bbInfo->fn_name =VG_(strdup)("bbv_strings", fn_name);
397 /* insert structure into table */
398 VG_(OSetGen_Insert)( instr_info_table, bbInfo );
401 /* Iterate through the basic block, putting the original */
402 /* instructions in place, plus putting a call to updateBBV */
403 /* for each original instruction */
405 /* This is less efficient than only instrumenting the BB */
406 /* But it gives proper results given the fact that */
407 /* valgrind uses superblocks (not basic blocks) by default */
410 while(i < sbIn->stmts_used) {
411 st=sbIn->stmts[i];
413 if (st->tag == Ist_IMark) {
415 ourAddr = st->Ist.IMark.addr;
417 opcode_type=get_inst_type(st->Ist.IMark.len,ourAddr);
419 regparms=1;
420 arg1= mkIRExpr_HWord( (HWord)bbInfo);
421 argv= mkIRExprVec_1(arg1);
424 if (opcode_type&REP_INSTRUCTION) {
425 arg1= mkIRExpr_HWord(ourAddr);
426 argv= mkIRExprVec_1(arg1);
427 di= unsafeIRDirty_0_N( regparms, "per_instruction_BBV_rep",
428 VG_(fnptr_to_fnentry)( &per_instruction_BBV_rep ),
429 argv);
431 else if (opcode_type&FLDCW_INSTRUCTION) {
432 di= unsafeIRDirty_0_N( regparms, "per_instruction_BBV_fldcw",
433 VG_(fnptr_to_fnentry)( &per_instruction_BBV_fldcw ),
434 argv);
436 else {
437 di= unsafeIRDirty_0_N( regparms, "per_instruction_BBV",
438 VG_(fnptr_to_fnentry)( &per_instruction_BBV ),
439 argv);
443 /* Insert our call */
444 addStmtToIRSB( sbOut, IRStmt_Dirty(di));
447 /* Insert the original instruction */
448 addStmtToIRSB( sbOut, st );
450 i++;
453 return sbOut;
456 static struct thread_info *allocate_new_thread(struct thread_info *old,
457 Int old_number, Int new_number)
459 struct thread_info *temp;
460 struct BB_info *bb_elem;
461 Int i;
463 temp=VG_(realloc)("bbv_main.c allocate_threads",
464 old,
465 new_number*sizeof(struct thread_info));
467 /* init the new thread */
468 /* We loop in case the new thread is not contiguous */
469 for(i=old_number;i<new_number;i++) {
470 temp[i].last_rep_addr=0;
471 temp[i].dyn_instr=0;
472 temp[i].total_instr=0;
473 temp[i].global_rep_count=0;
474 temp[i].unique_rep_count=0;
475 temp[i].rep_count=0;
476 temp[i].fldcw_count=0;
477 temp[i].bbtrace_fp=NULL;
479 /* expand the inst_counter on all allocated basic blocks */
480 VG_(OSetGen_ResetIter)(instr_info_table);
481 while ( (bb_elem = VG_(OSetGen_Next)(instr_info_table)) ) {
482 bb_elem->inst_counter =
483 VG_(realloc)("bbv_main.c inst_counter",
484 bb_elem->inst_counter,
485 new_number*sizeof(Int));
486 for(i=old_number;i<new_number;i++) {
487 bb_elem->inst_counter[i]=0;
491 return temp;
494 static void bbv_thread_called ( ThreadId tid, ULong nDisp )
496 if (tid >= allocated_threads) {
497 bbv_thread=allocate_new_thread(bbv_thread,allocated_threads,tid+1);
498 allocated_threads=tid+1;
500 current_thread=tid;
506 /*--------------------------------------------------------------------*/
507 /*--- Setup ---*/
508 /*--------------------------------------------------------------------*/
510 static void bbv_post_clo_init(void)
512 bb_out_file =
513 VG_(expand_file_name)("--bb-out-file", clo_bb_out_file);
515 /* Try a closer approximation of basic blocks */
516 /* This is the same as the command line option */
517 /* --vex-guest-chase-thresh=0 */
518 VG_(clo_vex_control).guest_chase_thresh = 0;
521 /* Parse the command line options */
522 static Bool bbv_process_cmd_line_option(const HChar* arg)
524 if VG_INT_CLO (arg, "--interval-size", interval_size) {}
525 else if VG_STR_CLO (arg, "--bb-out-file", clo_bb_out_file) {}
526 else if VG_STR_CLO (arg, "--pc-out-file", clo_pc_out_file) {
527 generate_pc_file = True;
529 else if VG_BOOL_CLO (arg, "--instr-count-only", instr_count_only) {}
530 else {
531 return False;
534 return True;
537 static void bbv_print_usage(void)
539 VG_(printf)(
540 " --bb-out-file=<file> filename for BBV info\n"
541 " --pc-out-file=<file> filename for BB addresses and function names\n"
542 " --interval-size=<num> interval size\n"
543 " --instr-count-only=yes|no only print total instruction count\n"
547 static void bbv_print_debug_usage(void)
549 VG_(printf)(" (none)\n");
552 static void bbv_fini(Int exitcode)
554 Int i;
556 if (generate_pc_file) {
557 dumpPcFile();
560 for(i=0;i<allocated_threads;i++) {
562 if (bbv_thread[i].total_instr!=0) {
563 HChar buf[500]; // large enough
564 VG_(sprintf)(buf,"\n\n"
565 "# Thread %d\n"
566 "# Total intervals: %d (Interval Size %d)\n"
567 "# Total instructions: %lld\n"
568 "# Total reps: %lld\n"
569 "# Unique reps: %lld\n"
570 "# Total fldcw instructions: %lld\n\n",
572 (Int)(bbv_thread[i].total_instr/(ULong)interval_size),
573 interval_size,
574 bbv_thread[i].total_instr,
575 bbv_thread[i].global_rep_count,
576 bbv_thread[i].unique_rep_count,
577 bbv_thread[i].fldcw_count);
579 /* Print results to display */
580 VG_(umsg)("%s\n", buf);
582 /* open the output file if it hasn't already */
583 if (bbv_thread[i].bbtrace_fp == NULL) {
584 bbv_thread[i].bbtrace_fp=open_tracefile(i);
586 /* Also print to results file */
587 VG_(fprintf)(bbv_thread[i].bbtrace_fp, "%s", buf);
588 VG_(fclose)(bbv_thread[i].bbtrace_fp);
593 static void bbv_pre_clo_init(void)
595 VG_(details_name) ("exp-bbv");
596 VG_(details_version) (NULL);
597 VG_(details_description) ("a SimPoint basic block vector generator");
598 VG_(details_copyright_author)(
599 "Copyright (C) 2006-2013 Vince Weaver");
600 VG_(details_bug_reports_to) (VG_BUGS_TO);
602 VG_(basic_tool_funcs) (bbv_post_clo_init,
603 bbv_instrument,
604 bbv_fini);
606 VG_(needs_command_line_options)(bbv_process_cmd_line_option,
607 bbv_print_usage,
608 bbv_print_debug_usage);
610 VG_(track_start_client_code)( bbv_thread_called );
613 instr_info_table = VG_(OSetGen_Create)(/*keyOff*/0,
614 NULL,
615 VG_(malloc), "bbv.1", VG_(free));
617 bbv_thread=allocate_new_thread(bbv_thread,0,allocated_threads);
620 VG_DETERMINE_INTERFACE_VERSION(bbv_pre_clo_init)
622 /*--------------------------------------------------------------------*/
623 /*--- end ---*/
624 /*--------------------------------------------------------------------*/