-> 3.17.0 final.
[valgrind.git] / coregrind / pub_core_tooliface.h
blob6b42cc07eceaf4b4092b3ceae18f1061196670aa
2 /*--------------------------------------------------------------------*/
3 /*--- The core/tool interface. pub_core_tooliface.h ---*/
4 /*--------------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2000-2017 Julian Seward
11 jseward@acm.org
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
29 #ifndef __PUB_CORE_TOOLIFACE_H
30 #define __PUB_CORE_TOOLIFACE_H
32 #include "pub_tool_tooliface.h"
34 //--------------------------------------------------------------------
35 // PURPOSE: This module encapsulates the key parts of the core/tool
36 // interface: 'details', 'needs' and 'trackable events'.
37 //--------------------------------------------------------------------
39 // Note the use of C's comma operator here -- it means that we execute both
40 // statements, and the rvalue of the whole thing is the rvalue of the last
41 // statement. This lets us say "x = VG_TDICT_CALL(...)" in the required
42 // places, while still checking the assertion.
43 #define VG_TDICT_CALL(fn, args...) \
44 ( vg_assert2(VG_(tdict).fn, \
45 "you forgot to set VgToolInterface function '" #fn "'"), \
46 VG_(tdict).fn(args) )
48 #define VG_TRACK(fn, args...) \
49 do { \
50 if (VG_(tdict).track_##fn) \
51 VG_(tdict).track_##fn(args); \
52 } while(0)
54 /* These structs are not exposed to tools to mitigate possibility of
55 binary-incompatibilities when the core/tool interface changes. Instead,
56 set functions are provided (see include/pub_tool_tooliface.h). */
58 /* ---------------------------------------------------------------------
59 'Details'
60 ------------------------------------------------------------------ */
62 typedef
63 struct {
64 const HChar* name;
65 const HChar* version;
66 const HChar* description;
67 const HChar* copyright_author;
68 const HChar* bug_reports_to;
69 UInt avg_translation_sizeB;
71 VgDetails;
73 extern VgDetails VG_(details);
75 /* ---------------------------------------------------------------------
76 'Needs'
77 ------------------------------------------------------------------ */
79 typedef
80 struct {
81 Bool libc_freeres;
82 Bool cxx_freeres;
83 Bool core_errors;
84 Bool tool_errors;
85 Bool superblock_discards;
86 Bool command_line_options;
87 Bool client_requests;
88 Bool syscall_wrapper;
89 Bool sanity_checks;
90 Bool print_stats;
91 Bool info_location;
92 Bool var_info;
93 Bool malloc_replacement;
94 Bool xml_output;
95 Bool final_IR_tidy_pass;
97 VgNeeds;
99 extern VgNeeds VG_(needs);
101 /* ---------------------------------------------------------------------
102 The dictionary of callable tool functions
103 ------------------------------------------------------------------ */
105 typedef struct {
106 // -- 'Needs'-related functions ----------------------------------
107 // Basic functions
108 void (*tool_pre_clo_init) (void);
109 void (*tool_post_clo_init)(void);
110 IRSB* (*tool_instrument) (VgCallbackClosure*,
111 IRSB*,
112 const VexGuestLayout*, const VexGuestExtents*,
113 const VexArchInfo*, IRType, IRType);
114 void (*tool_fini) (Int);
116 // VG_(needs).core_errors
117 // (none)
119 // VG_(needs).tool_errors
120 Bool (*tool_eq_Error) (VgRes, const Error*, const Error*);
121 void (*tool_before_pp_Error) (const Error*);
122 void (*tool_pp_Error) (const Error*);
123 Bool tool_show_ThreadIDs_for_errors;
124 UInt (*tool_update_extra) (const Error*);
125 Bool (*tool_recognised_suppression) (const HChar*, Supp*);
126 Bool (*tool_read_extra_suppression_info) (Int, HChar**, SizeT*, Int*,
127 Supp*);
128 Bool (*tool_error_matches_suppression) (const Error*, const Supp*);
129 const HChar* (*tool_get_error_name) (const Error*);
130 SizeT (*tool_get_extra_suppression_info) (const Error*,/*OUT*/HChar*,Int);
131 SizeT (*tool_print_extra_suppression_use) (const Supp*,/*OUT*/HChar*,Int);
132 void (*tool_update_extra_suppression_use) (const Error*, const Supp*);
134 // VG_(needs).superblock_discards
135 void (*tool_discard_superblock_info)(Addr, VexGuestExtents);
137 // VG_(needs).command_line_options
138 Bool (*tool_process_cmd_line_option)(const HChar*);
139 void (*tool_print_usage) (void);
140 void (*tool_print_debug_usage) (void);
142 // VG_(needs).client_requests
143 Bool (*tool_handle_client_request)(ThreadId, UWord*, UWord*);
145 // VG_(needs).syscall_wrapper
146 void (*tool_pre_syscall) (ThreadId, UInt, UWord*, UInt);
147 void (*tool_post_syscall)(ThreadId, UInt, UWord*, UInt, SysRes);
149 // VG_(needs).sanity_checks
150 Bool (*tool_cheap_sanity_check)(void);
151 Bool (*tool_expensive_sanity_check)(void);
153 // VG_(needs).print_stats
154 void (*tool_print_stats)(void);
156 // VG_(needs).info_location
157 void (*tool_info_location)(DiEpoch ep, Addr a);
159 // VG_(needs).malloc_replacement
160 void* (*tool_malloc) (ThreadId, SizeT);
161 void* (*tool___builtin_new) (ThreadId, SizeT);
162 void* (*tool___builtin_new_aligned) (ThreadId, SizeT, SizeT);
163 void* (*tool___builtin_vec_new) (ThreadId, SizeT);
164 void* (*tool___builtin_vec_new_aligned) (ThreadId, SizeT, SizeT);
165 void* (*tool_memalign) (ThreadId, SizeT, SizeT);
166 void* (*tool_calloc) (ThreadId, SizeT, SizeT);
167 void (*tool_free) (ThreadId, void*);
168 void (*tool___builtin_delete) (ThreadId, void*);
169 void (*tool___builtin_delete_aligned) (ThreadId, void*, SizeT);
170 void (*tool___builtin_vec_delete)(ThreadId, void*);
171 void (*tool___builtin_vec_delete_aligned)(ThreadId, void*, SizeT);
172 void* (*tool_realloc) (ThreadId, void*, SizeT);
173 SizeT (*tool_malloc_usable_size) (ThreadId, void*);
174 SizeT tool_client_redzone_szB;
176 // VG_(needs).final_IR_tidy_pass
177 IRSB* (*tool_final_IR_tidy_pass) (IRSB*);
179 // VG_(needs).xml_output
180 // (none)
182 // -- Event tracking functions ------------------------------------
183 void (*track_new_mem_startup) (Addr, SizeT, Bool, Bool, Bool, ULong);
184 void (*track_new_mem_stack_signal)(Addr, SizeT, ThreadId);
185 void (*track_new_mem_brk) (Addr, SizeT, ThreadId);
186 void (*track_new_mem_mmap) (Addr, SizeT, Bool, Bool, Bool, ULong);
188 void (*track_copy_mem_remap) (Addr src, Addr dst, SizeT);
189 void (*track_change_mem_mprotect) (Addr, SizeT, Bool, Bool, Bool);
190 void (*track_die_mem_stack_signal)(Addr, SizeT);
191 void (*track_die_mem_brk) (Addr, SizeT);
192 void (*track_die_mem_munmap) (Addr, SizeT);
194 void VG_REGPARM(2) (*track_new_mem_stack_4_w_ECU) (Addr,UInt);
195 void VG_REGPARM(2) (*track_new_mem_stack_8_w_ECU) (Addr,UInt);
196 void VG_REGPARM(2) (*track_new_mem_stack_12_w_ECU) (Addr,UInt);
197 void VG_REGPARM(2) (*track_new_mem_stack_16_w_ECU) (Addr,UInt);
198 void VG_REGPARM(2) (*track_new_mem_stack_32_w_ECU) (Addr,UInt);
199 void VG_REGPARM(2) (*track_new_mem_stack_112_w_ECU)(Addr,UInt);
200 void VG_REGPARM(2) (*track_new_mem_stack_128_w_ECU)(Addr,UInt);
201 void VG_REGPARM(2) (*track_new_mem_stack_144_w_ECU)(Addr,UInt);
202 void VG_REGPARM(2) (*track_new_mem_stack_160_w_ECU)(Addr,UInt);
203 void (*track_new_mem_stack_w_ECU)(Addr,SizeT,UInt);
205 void VG_REGPARM(1) (*track_new_mem_stack_4) (Addr);
206 void VG_REGPARM(1) (*track_new_mem_stack_8) (Addr);
207 void VG_REGPARM(1) (*track_new_mem_stack_12) (Addr);
208 void VG_REGPARM(1) (*track_new_mem_stack_16) (Addr);
209 void VG_REGPARM(1) (*track_new_mem_stack_32) (Addr);
210 void VG_REGPARM(1) (*track_new_mem_stack_112)(Addr);
211 void VG_REGPARM(1) (*track_new_mem_stack_128)(Addr);
212 void VG_REGPARM(1) (*track_new_mem_stack_144)(Addr);
213 void VG_REGPARM(1) (*track_new_mem_stack_160)(Addr);
214 void (*track_new_mem_stack)(Addr,SizeT);
216 Bool any_new_mem_stack; // True if one or more track_new_mem_stack is set
218 void VG_REGPARM(1) (*track_die_mem_stack_4) (Addr);
219 void VG_REGPARM(1) (*track_die_mem_stack_8) (Addr);
220 void VG_REGPARM(1) (*track_die_mem_stack_12) (Addr);
221 void VG_REGPARM(1) (*track_die_mem_stack_16) (Addr);
222 void VG_REGPARM(1) (*track_die_mem_stack_32) (Addr);
223 void VG_REGPARM(1) (*track_die_mem_stack_112)(Addr);
224 void VG_REGPARM(1) (*track_die_mem_stack_128)(Addr);
225 void VG_REGPARM(1) (*track_die_mem_stack_144)(Addr);
226 void VG_REGPARM(1) (*track_die_mem_stack_160)(Addr);
227 void (*track_die_mem_stack)(Addr, SizeT);
229 Bool any_die_mem_stack; // True if one or more track_die_mem_stack is set
231 void (*track_ban_mem_stack)(Addr, SizeT);
233 void (*track_register_stack)(Addr, Addr);
235 void (*track_pre_mem_read) (CorePart, ThreadId, const HChar*, Addr, SizeT);
236 void (*track_pre_mem_read_asciiz)(CorePart, ThreadId, const HChar*, Addr);
237 void (*track_pre_mem_write) (CorePart, ThreadId, const HChar*, Addr, SizeT);
238 void (*track_post_mem_write) (CorePart, ThreadId, Addr, SizeT);
240 void (*track_pre_reg_read) (CorePart, ThreadId, const HChar*, PtrdiffT, SizeT);
241 void (*track_post_reg_write)(CorePart, ThreadId, PtrdiffT, SizeT);
242 void (*track_post_reg_write_clientcall_return)(ThreadId, PtrdiffT, SizeT,
243 Addr);
245 void (*track_copy_mem_to_reg)(CorePart, ThreadId, Addr, PtrdiffT, SizeT);
246 void (*track_copy_reg_to_mem)(CorePart, ThreadId, PtrdiffT, Addr, SizeT);
248 void (*track_start_client_code)(ThreadId, ULong);
249 void (*track_stop_client_code) (ThreadId, ULong);
251 void (*track_pre_thread_ll_create)(ThreadId, ThreadId);
252 void (*track_pre_thread_first_insn)(ThreadId);
253 void (*track_pre_thread_ll_exit) (ThreadId);
255 void (*track_pre_deliver_signal) (ThreadId, Int sigNo, Bool);
256 void (*track_post_deliver_signal)(ThreadId, Int sigNo);
258 } VgToolInterface;
260 extern VgToolInterface VG_(tdict);
262 /* ---------------------------------------------------------------------
263 Miscellaneous functions
264 ------------------------------------------------------------------ */
266 /* Sanity checks and finish the initialisation of the tool needs.
267 Returns False and sets a failmsg if the needs are inconsistent. */
268 Bool VG_(finish_needs_init) ( const HChar** failmsg );
270 #endif // __PUB_CORE_TOOLIFACE_H
272 /*--------------------------------------------------------------------*/
273 /*--- end ---*/
274 /*--------------------------------------------------------------------*/