Home | History | Annotate | Download | only in exp-ptrcheck

Lines Matching refs:VG_

131    if (VG_(clo_verbosity) >= 1 && sg_clo_enable_sg_checks) {
132 VG_(message)(Vg_UserMsg,
135 VG_(message)(Vg_UserMsg,
138 VG_(message)(Vg_UserMsg,
152 VG_(printf)("Ptrcheck doesn't work on Darwin yet, sorry.\n");
153 VG_(exit)(1);
156 VG_(details_name) ("exp-ptrcheck");
157 VG_(details_version) (NULL);
158 VG_(details_description) ("a heap, stack and global array "
160 VG_(details_copyright_author)(
162 VG_(details_bug_reports_to) (VG_BUGS_TO);
163 VG_(details_avg_translation_sizeB) ( 496 );
165 VG_(basic_tool_funcs) (pc_post_clo_init,
169 VG_(needs_malloc_replacement)( h_replace_malloc,
181 VG_(needs_var_info) ();
183 VG_(needs_core_errors) ();
184 VG_(needs_tool_errors) (pc_eq_Error,
195 VG_(needs_xml_output) ();
197 VG_(needs_syscall_wrapper)( h_pre_syscall,
200 VG_(needs_command_line_options)( pc_process_cmd_line_options,
204 VG_(track_die_mem_stack) ( pc_die_mem_stack );
205 VG_(track_pre_thread_ll_create) ( pc_pre_thread_ll_create );
206 VG_(track_pre_thread_first_insn)( pc_pre_thread_first_insn );
208 VG_(track_new_mem_mmap) ( pc_new_mem_mmap );
209 VG_(track_new_mem_startup) ( pc_new_mem_startup);
210 VG_(track_die_mem_munmap) ( pc_die_mem_munmap );
212 VG_(track_pre_mem_read) ( pc_pre_mem_read );
213 VG_(track_pre_mem_read_asciiz) ( pc_pre_mem_read_asciiz );
214 VG_(track_pre_mem_write) ( pc_pre_mem_write );
216 VG_(track_post_reg_write_clientcall_return) ( h_post_reg_write_clientcall );
217 VG_(track_post_reg_write)( h_post_reg_write_demux );
222 VG_(clo_vex_control).iropt_unroll_thresh = 0;
223 VG_(clo_vex_control).guest_chase_thresh = 0;