blob: 7c6a941a2cf3a73737b2d7e502fd4c5f94e97bd2 [file] [log] [blame]
sewardjf98e1c02008-10-25 16:22:41 +00001
2/*--------------------------------------------------------------------*/
3/*--- Basic definitions for all of Helgrind. ---*/
4/*--- hg_basics.c ---*/
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#include "pub_tool_basics.h"
33#include "pub_tool_libcbase.h"
34#include "pub_tool_libcassert.h"
35#include "pub_tool_mallocfree.h"
36#include "pub_tool_threadstate.h"
37
38#include "hg_basics.h" /* self */
39
40
41/*----------------------------------------------------------------*/
42/*--- Very basic stuff ---*/
43/*----------------------------------------------------------------*/
44
florian54fe2022012-10-27 23:07:42 +000045void* HG_(zalloc) ( const HChar* cc, SizeT n )
sewardjf98e1c02008-10-25 16:22:41 +000046{
47 void* p;
48 tl_assert(n > 0);
49 p = VG_(malloc)( cc, n );
sewardjf98e1c02008-10-25 16:22:41 +000050 VG_(memset)(p, 0, n);
51 return p;
52}
53
54void HG_(free) ( void* p )
55{
56 tl_assert(p);
57 VG_(free)(p);
58}
59
florian19f91bb2012-11-10 22:29:54 +000060HChar* HG_(strdup) ( const HChar* cc, const HChar* s )
sewardjf98e1c02008-10-25 16:22:41 +000061{
62 return VG_(strdup)( cc, s );
63}
64
65
66/*----------------------------------------------------------------*/
67/*--- Command line options ---*/
68/*----------------------------------------------------------------*/
69
70/* Description of these flags is in hg_basics.h. */
71
sewardj849b0ed2008-12-21 10:43:10 +000072Bool HG_(clo_track_lockorders) = True;
sewardjf98e1c02008-10-25 16:22:41 +000073
sewardj849b0ed2008-12-21 10:43:10 +000074Bool HG_(clo_cmp_race_err_addrs) = False;
sewardjf98e1c02008-10-25 16:22:41 +000075
sewardj23f12002009-07-24 08:45:08 +000076UWord HG_(clo_history_level) = 2;
sewardjf98e1c02008-10-25 16:22:41 +000077
philippe328d6622015-05-25 17:24:27 +000078UWord HG_(clo_conflict_cache_size) = 2000000;
sewardjf98e1c02008-10-25 16:22:41 +000079
florian5e5cb002015-08-03 21:21:42 +000080UWord HG_(clo_sanity_flags) = 0;
sewardjf98e1c02008-10-25 16:22:41 +000081
sewardj622fe492011-03-11 21:06:59 +000082Bool HG_(clo_free_is_write) = False;
83
sewardjffce8152011-06-24 10:09:41 +000084UWord HG_(clo_vts_pruning) = 1;
85
86Bool HG_(clo_check_stack_refs) = True;
sewardjf98e1c02008-10-25 16:22:41 +000087
88/*--------------------------------------------------------------------*/
89/*--- end hg_basics.c ---*/
90/*--------------------------------------------------------------------*/