blob: 2a19fe36bb3499bf83944bbc195948d74ac91fd0 [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
sewardj9eecbbb2010-05-03 21:37:12 +000011 Copyright (C) 2007-2010 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. */
sewardj24118492009-07-15 14:50:02 +000038Bool HG_(eq_Error) ( VgRes not_used, Error* e1, Error* e2 );
39void HG_(before_pp_Error) ( Error* err );
40void HG_(pp_Error) ( Error* err );
41UInt HG_(update_extra) ( Error* err );
sewardjf98e1c02008-10-25 16:22:41 +000042Bool HG_(recognised_suppression) ( Char* name, Supp *su );
njn35db56c2009-07-24 07:38:29 +000043Bool HG_(read_extra_suppression_info) ( Int fd, Char** bufpp, SizeT* nBufp,
sewardjf98e1c02008-10-25 16:22:41 +000044 Supp* su );
45Bool HG_(error_matches_suppression) ( Error* err, Supp* su );
46Char* HG_(get_error_name) ( Error* err );
sewardj588adef2009-08-15 22:41:51 +000047Bool HG_(get_extra_suppression_info) ( Error* err,
48 /*OUT*/Char* buf, Int nBuf );
sewardjf98e1c02008-10-25 16:22:41 +000049
50/* Functions for recording various kinds of errors. */
51void HG_(record_error_Race) ( Thread* thr,
sewardja781be62008-12-08 00:12:28 +000052 Addr data_addr, Int szB, Bool isWrite,
sewardj23f12002009-07-24 08:45:08 +000053 Thread* h1_confthr,
54 ExeContext* h1_ct_segstart,
55 ExeContext* h1_ct_mbsegend );
sewardjf98e1c02008-10-25 16:22:41 +000056void HG_(record_error_UnlockUnlocked) ( Thread*, Lock* );
57void HG_(record_error_UnlockForeign) ( Thread*, Thread*, Lock* );
58void HG_(record_error_UnlockBogus) ( Thread*, Addr );
59void HG_(record_error_PthAPIerror) ( Thread*, HChar*, Word, HChar* );
60void HG_(record_error_LockOrder) ( Thread*, Addr, Addr,
61 ExeContext*, ExeContext* );
sewardj8fef6252010-07-29 05:28:02 +000062void HG_(record_error_Misc_w_aux) ( Thread*, HChar* errstr,
63 HChar* auxstr, ExeContext* auxctx );
64void HG_(record_error_Misc) ( Thread* thr, HChar* errstr );
65
sewardjf98e1c02008-10-25 16:22:41 +000066
67/* Statistics pertaining to error management. */
68extern ULong HG_(stats__LockN_to_P_queries);
69extern ULong HG_(stats__LockN_to_P_get_map_size) ( void );
70extern ULong HG_(stats__string_table_queries);
71extern ULong HG_(stats__string_table_get_map_size) ( void );
72
sewardj095d61e2010-03-11 13:43:18 +000073/* For error creation: map 'data_addr' to a malloc'd chunk, if any.
sewardjc8028ad2010-05-05 09:34:42 +000074 Slow linear search accelerated in some special cases normal hash
75 search of the mallocmeta table. This is an abuse of the normal file
76 structure since this is exported by hg_main.c, not hg_errors.c. Oh
77 Well. Returns True if found, False if not. Zero-sized blocks are
78 considered to contain the searched-for address if they equal that
79 address. */
80Bool HG_(mm_find_containing_block)( /*OUT*/ExeContext** where,
sewardj095d61e2010-03-11 13:43:18 +000081 /*OUT*/Addr* payload,
82 /*OUT*/SizeT* szB,
83 Addr data_addr );
84
sewardjf98e1c02008-10-25 16:22:41 +000085#endif /* ! __HG_ERRORS_H */
86
87/*--------------------------------------------------------------------*/
88/*--- end hg_errors.h ---*/
89/*--------------------------------------------------------------------*/