Lines Matching full:trace
40 // * --trace-mem=yes: trace all (data) memory accesses.
41 // * --trace-superblocks=yes:
42 // trace all superblock entries. Mostly of interest
55 // Specific Details about --trace-mem=yes
57 // Lackey's --trace-mem code is a good starting point for building Valgrind
82 // store, as in the last two examples in the above trace.
106 // Lackey with --trace-mem gives good traces, but they are not perfect, for
109 // - It does not trace into the OS kernel, so system calls and other kernel
144 // Specific Details about --trace-superblocks=yes
147 // known as superblocks. By itself, --trace-superblocks=yes just
157 // --trace-superblocks=yes and --trace-mem=yes together. Then a "SB"
202 else if VG_BOOL_CLO(arg, "--trace-mem", clo_trace_mem) {}
203 else if VG_BOOL_CLO(arg, "--trace-superblocks", clo_trace_sbs) {}
217 " --trace-mem=no|yes trace all loads and stores [no]\n"
218 " --trace-superblocks=no|yes trace all superblock entries [no]\n"
387 /*--- Stuff for --trace-mem ---*/
577 /*--- Stuff for --trace-superblocks ---*/
723 // Add a call to trace_load() if --trace-mem=yes.