blob: f9ca9ff60682c2e271660600c5528f10b79d1202 [file] [log] [blame]
sewardjf98e1c02008-10-25 16:22:41 +00001
2/*--------------------------------------------------------------------*/
3/*--- Error management for Helgrind. ---*/
4/*--- hg_errors.h ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Helgrind, a Valgrind tool for detecting errors
9 in threaded programs.
10
Elliott Hughesed398002017-06-21 14:41:24 -070011 Copyright (C) 2007-2017 OpenWorks Ltd
sewardjf98e1c02008-10-25 16:22:41 +000012 info@open-works.co.uk
13
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
29 The GNU General Public License is contained in the file COPYING.
30*/
31
32#ifndef __HG_ERRORS_H
33#define __HG_ERRORS_H
34
35
36/* The standard bundle of error management functions that we are
37required to present to the core/tool interface at startup. */
florian8e3fbb52014-10-20 19:02:38 +000038Bool HG_(eq_Error) ( VgRes not_used, const Error* e1, const Error* e2 );
39void HG_(before_pp_Error) ( const Error* err );
40void HG_(pp_Error) ( const Error* err );
41UInt HG_(update_extra) ( const Error* err );
florian19f91bb2012-11-10 22:29:54 +000042Bool HG_(recognised_suppression) ( const HChar* name, Supp *su );
43Bool HG_(read_extra_suppression_info) ( Int fd, HChar** bufpp, SizeT* nBufp,
philippe362441d2013-07-22 22:00:13 +000044 Int* lineno, Supp* su );
florian8e3fbb52014-10-20 19:02:38 +000045Bool HG_(error_matches_suppression) ( const Error* err, const Supp* su );
46const HChar* HG_(get_error_name) ( const Error* err );
47SizeT HG_(get_extra_suppression_info) ( const Error* err,
floriandbb35842012-10-27 18:39:11 +000048 /*OUT*/HChar* buf, Int nBuf );
florian8e3fbb52014-10-20 19:02:38 +000049SizeT HG_(print_extra_suppression_use) ( const Supp* su,
philippe4e32d672013-10-17 22:10:41 +000050 /*OUT*/HChar* buf, Int nBuf );
florian8e3fbb52014-10-20 19:02:38 +000051void HG_(update_extra_suppression_use) ( const Error* err, const Supp* su );
sewardjf98e1c02008-10-25 16:22:41 +000052
53/* Functions for recording various kinds of errors. */
54void HG_(record_error_Race) ( Thread* thr,
sewardja781be62008-12-08 00:12:28 +000055 Addr data_addr, Int szB, Bool isWrite,
sewardj23f12002009-07-24 08:45:08 +000056 Thread* h1_confthr,
57 ExeContext* h1_ct_segstart,
58 ExeContext* h1_ct_mbsegend );
sewardjf98e1c02008-10-25 16:22:41 +000059void HG_(record_error_UnlockUnlocked) ( Thread*, Lock* );
60void HG_(record_error_UnlockForeign) ( Thread*, Thread*, Lock* );
61void HG_(record_error_UnlockBogus) ( Thread*, Addr );
florian6bd9dc12012-11-23 16:17:43 +000062void HG_(record_error_PthAPIerror) ( Thread*, const HChar*, Word,
63 const HChar* );
sewardjffce8152011-06-24 10:09:41 +000064
philippe328d6622015-05-25 17:24:27 +000065/* Function for printing the details about an access */
66void HG_(print_access) (StackTrace ips, UInt n_ips,
67 Thr* thr_a,
68 Addr ga,
69 SizeT SzB,
70 Bool isW,
71 WordSetID locksHeldW );
72
sewardjffce8152011-06-24 10:09:41 +000073/* see the implementation for meaning of these params */
philippe46daf0d2014-07-29 20:08:15 +000074void HG_(record_error_LockOrder) ( Thread*, Lock*, Lock*,
sewardjffce8152011-06-24 10:09:41 +000075 ExeContext*, ExeContext*,
76 ExeContext* );
77
florian6bd9dc12012-11-23 16:17:43 +000078void HG_(record_error_Misc_w_aux) ( Thread*, const HChar* errstr,
79 const HChar* auxstr,
80 ExeContext* auxctx );
81void HG_(record_error_Misc) ( Thread* thr, const HChar* errstr );
sewardj8fef6252010-07-29 05:28:02 +000082
sewardjf98e1c02008-10-25 16:22:41 +000083
84/* Statistics pertaining to error management. */
85extern ULong HG_(stats__LockN_to_P_queries);
86extern ULong HG_(stats__LockN_to_P_get_map_size) ( void );
87extern ULong HG_(stats__string_table_queries);
88extern ULong HG_(stats__string_table_get_map_size) ( void );
89
sewardjf98e1c02008-10-25 16:22:41 +000090#endif /* ! __HG_ERRORS_H */
91
92/*--------------------------------------------------------------------*/
93/*--- end hg_errors.h ---*/
94/*--------------------------------------------------------------------*/