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

Lines Matching refs:VG_

60    VG_(printf)("SGCheck doesn't work on Darwin yet, sorry.\n");
61 VG_(exit)(1);
65 VG_(printf)("SGCheck doesn't work on s390x yet, sorry.\n");
66 VG_(exit)(1);
69 VG_(printf)("SGCheck doesn't work on PPC yet, sorry.\n");
70 VG_(exit)(1);
73 VG_(printf)("SGCheck doesn't work on ARM yet, sorry.\n");
74 VG_(exit)(1);
77 VG_(printf)("SGCheck doesn't work on MIPS yet, sorry.\n");
78 VG_(exit)(1);
81 VG_(printf)("SGCheck doesn't work on TileGx yet, sorry.\n");
82 VG_(exit)(1);
87 VG_(details_name) ("exp-sgcheck");
88 VG_(details_version) (NULL);
89 VG_(details_description) ("a stack and global array "
91 VG_(details_copyright_author)(
93 VG_(details_bug_reports_to) (VG_BUGS_TO);
94 VG_(details_avg_translation_sizeB) ( 496 );
96 VG_(basic_tool_funcs) (sg_post_clo_init,
100 VG_(needs_malloc_replacement)( h_replace_malloc,
112 VG_(needs_var_info) ();
114 VG_(needs_core_errors) ();
115 VG_(needs_tool_errors) (pc_eq_Error,
128 VG_(needs_xml_output) ();
130 //VG_(needs_syscall_wrapper)( h_pre_syscall,
133 VG_(needs_command_line_options)( pc_process_cmd_line_options,
137 VG_(track_die_mem_stack) ( sg_die_mem_stack );
138 VG_(track_pre_thread_ll_create) ( sg_pre_thread_ll_create );
139 VG_(track_pre_thread_first_insn)( sg_pre_thread_first_insn );
141 VG_(track_new_mem_mmap) ( sg_new_mem_mmap );
142 VG_(track_new_mem_startup) ( sg_new_mem_startup);
143 VG_(track_die_mem_munmap) ( sg_die_mem_munmap );
148 VG_(track_pre_mem_read) ( NULL );
149 VG_(track_pre_mem_read_asciiz) ( NULL );
150 VG_(track_pre_mem_write) ( NULL );
155 VG_(clo_vex_control).iropt_unroll_thresh = 0;
156 VG_(clo_vex_control).guest_chase_thresh = 0;