blob: 596f4b4f51befdbf39e6e69962e19b013f2da2ed [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
2 This file is part of drd, a data race detector.
3
sewardj85642922008-01-14 11:54:56 +00004 Copyright (C) 2006-2008 Bart Van Assche
sewardjaf44c822007-11-25 14:01:38 +00005 bart.vanassche@gmail.com
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
26// A bitmap is a data structure that contains information about which
27// addresses have been accessed for reading or writing within a given
28// segment.
29
30
bart33e56c92008-03-24 06:41:30 +000031#ifndef __PUB_DRD_BITMAP_H
32#define __PUB_DRD_BITMAP_H
sewardjaf44c822007-11-25 14:01:38 +000033
34
35#include "pub_tool_basics.h" /* Addr, SizeT */
36
37
38// Constant definitions.
39
40#define LHS_R (1<<0)
41#define LHS_W (1<<1)
42#define RHS_R (1<<2)
43#define RHS_W (1<<3)
44#define HAS_RACE(a) ((((a) & RHS_W) && ((a) & (LHS_R | LHS_W))) \
45 || (((a) & LHS_W) && ((a) & (RHS_R | RHS_W))))
46
47
48// Forward declarations.
49struct bitmap;
50
51
52// Datatype definitions.
bart5e234ac2008-03-16 08:39:54 +000053typedef enum { eLoad, eStore, eStart, eEnd } BmAccessTypeT;
sewardjaf44c822007-11-25 14:01:38 +000054
55
56// Function declarations.
57struct bitmap* bm_new(void);
58void bm_delete(struct bitmap* const bm);
bartd59bb0f2008-06-08 08:08:31 +000059void bm_access_range(struct bitmap* const bm,
60 const Addr a1, const Addr a2,
61 const BmAccessTypeT access_type);
bart36556122008-03-13 19:24:30 +000062void bm_access_range_load(struct bitmap* const bm,
63 const Addr a1, const Addr a2);
barta79df6e2008-03-14 17:07:51 +000064void bm_access_load_1(struct bitmap* const bm, const Addr a1);
65void bm_access_load_2(struct bitmap* const bm, const Addr a1);
66void bm_access_load_4(struct bitmap* const bm, const Addr a1);
67void bm_access_load_8(struct bitmap* const bm, const Addr a1);
bartd5f23702008-05-10 08:22:45 +000068void bm_access_range_store(struct bitmap* const bm,
69 const Addr a1, const Addr a2);
barta79df6e2008-03-14 17:07:51 +000070void bm_access_store_1(struct bitmap* const bm, const Addr a1);
71void bm_access_store_2(struct bitmap* const bm, const Addr a1);
72void bm_access_store_4(struct bitmap* const bm, const Addr a1);
73void bm_access_store_8(struct bitmap* const bm, const Addr a1);
bart7e81a172008-06-09 19:50:51 +000074Bool bm_has(struct bitmap* const bm,
bart36556122008-03-13 19:24:30 +000075 const Addr a1, const Addr a2,
sewardjaf44c822007-11-25 14:01:38 +000076 const BmAccessTypeT access_type);
bart7e81a172008-06-09 19:50:51 +000077Bool bm_has_any_load(struct bitmap* const bm,
bartd4907072008-03-30 18:41:07 +000078 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000079Bool bm_has_any_store(struct bitmap* const bm,
bartd4907072008-03-30 18:41:07 +000080 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000081Bool bm_has_any_access(struct bitmap* const bm,
bartc2c81db2008-05-10 11:19:10 +000082 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000083Bool bm_has_1(struct bitmap* const bm,
bartc2c81db2008-05-10 11:19:10 +000084 const Addr address, const BmAccessTypeT access_type);
bart7e81a172008-06-09 19:50:51 +000085void bm_clear(struct bitmap* const bm,
bart36556122008-03-13 19:24:30 +000086 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000087void bm_clear_load(struct bitmap* const bm,
bart9c4224c2008-03-29 14:40:08 +000088 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000089void bm_clear_store(struct bitmap* const bm,
bart9c4224c2008-03-29 14:40:08 +000090 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000091Bool bm_test_and_clear(struct bitmap* const bm,
bart8bf2f8b2008-03-30 17:56:43 +000092 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +000093Bool bm_has_conflict_with(struct bitmap* const bm,
bart36556122008-03-13 19:24:30 +000094 const Addr a1, const Addr a2,
sewardjaf44c822007-11-25 14:01:38 +000095 const BmAccessTypeT access_type);
bart7e81a172008-06-09 19:50:51 +000096Bool bm_load_1_has_conflict_with(struct bitmap* const bm, const Addr a1);
97Bool bm_load_2_has_conflict_with(struct bitmap* const bm, const Addr a1);
98Bool bm_load_4_has_conflict_with(struct bitmap* const bm, const Addr a1);
99Bool bm_load_8_has_conflict_with(struct bitmap* const bm, const Addr a1);
100Bool bm_load_has_conflict_with(struct bitmap* const bm,
bart36556122008-03-13 19:24:30 +0000101 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +0000102Bool bm_store_1_has_conflict_with(struct bitmap* const bm,const Addr a1);
103Bool bm_store_2_has_conflict_with(struct bitmap* const bm,const Addr a1);
104Bool bm_store_4_has_conflict_with(struct bitmap* const bm,const Addr a1);
105Bool bm_store_8_has_conflict_with(struct bitmap* const bm,const Addr a1);
106Bool bm_store_has_conflict_with(struct bitmap* const bm,
bart36556122008-03-13 19:24:30 +0000107 const Addr a1, const Addr a2);
bart7e81a172008-06-09 19:50:51 +0000108Bool bm_equal(struct bitmap* const lhs, struct bitmap* const rhs);
sewardjaf44c822007-11-25 14:01:38 +0000109void bm_swap(struct bitmap* const bm1, struct bitmap* const bm2);
110void bm_merge2(struct bitmap* const lhs,
bart7e81a172008-06-09 19:50:51 +0000111 struct bitmap* const rhs);
112int bm_has_races(struct bitmap* const bm1,
113 struct bitmap* const bm2);
sewardjaf44c822007-11-25 14:01:38 +0000114void bm_report_races(ThreadId const tid1, ThreadId const tid2,
bart7e81a172008-06-09 19:50:51 +0000115 struct bitmap* const bm1,
116 struct bitmap* const bm2);
117void bm_print(struct bitmap* bm);
sewardjaf44c822007-11-25 14:01:38 +0000118ULong bm_get_bitmap_creation_count(void);
bart588d90f2008-04-06 13:05:58 +0000119ULong bm_get_bitmap2_node_creation_count(void);
sewardjaf44c822007-11-25 14:01:38 +0000120ULong bm_get_bitmap2_creation_count(void);
bart588d90f2008-04-06 13:05:58 +0000121
bart33e56c92008-03-24 06:41:30 +0000122void bm_test(void);
sewardjaf44c822007-11-25 14:01:38 +0000123
124
bart33e56c92008-03-24 06:41:30 +0000125#endif /* __PUB_DRD_BITMAP_H */