blob: 5cbcb602cb1434be1679420bcf2d3410654872e9 [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#ifndef __SEGMENT_H
27#define __SEGMENT_H
28
29
bart62ada3f2009-02-14 17:19:58 +000030/*
31 * Segments and segment lists. A segment represents information about
32 * a contiguous group of statements of a specific thread. There is a vector
33 * clock associated with each segment.
34 */
sewardjaf44c822007-11-25 14:01:38 +000035
36
37#include "drd_vc.h"
38#include "pub_drd_bitmap.h"
39#include "pub_tool_execontext.h" // ExeContext
40#include "pub_tool_stacktrace.h" // StackTrace
41
42
43typedef struct segment
44{
bart62ada3f2009-02-14 17:19:58 +000045 /** Pointers to next and previous segments executed by the same thread. */
sewardjaf44c822007-11-25 14:01:38 +000046 struct segment* next;
47 struct segment* prev;
bart62ada3f2009-02-14 17:19:58 +000048 /** Reference count: number of pointers that point to this segment. */
barta2b6e1b2008-03-17 18:32:39 +000049 int refcnt;
bart62ada3f2009-02-14 17:19:58 +000050 /** Stack trace of the first instruction of the segment. */
sewardjaf44c822007-11-25 14:01:38 +000051 ExeContext* stacktrace;
bart62ada3f2009-02-14 17:19:58 +000052 /** Vector clock associated with the segment. */
sewardjaf44c822007-11-25 14:01:38 +000053 VectorClock vc;
bart62ada3f2009-02-14 17:19:58 +000054 /**
55 * Bitmap representing the memory accesses by the instructions associated
56 * with the segment.
57 */
sewardjaf44c822007-11-25 14:01:38 +000058 struct bitmap* bm;
59} Segment;
60
barta2b6e1b2008-03-17 18:32:39 +000061
bart62ada3f2009-02-14 17:19:58 +000062Segment* DRD_(sg_new)(const ThreadId creator, const ThreadId created);
63int DRD_(sg_get_refcnt)(const Segment* const sg);
64Segment* DRD_(sg_get)(Segment* const sg);
65void DRD_(sg_put)(Segment* const sg);
66void DRD_(sg_merge)(const Segment* const sg1, Segment* const sg2);
67void DRD_(sg_print)(const Segment* const sg);
68Bool DRD_(sg_get_trace)(void);
69void DRD_(sg_set_trace)(const Bool trace_segment);
70ULong DRD_(sg_get_segments_created_count)(void);
71ULong DRD_(sg_get_segments_alive_count)(void);
72ULong DRD_(sg_get_max_segments_alive_count)(void);
sewardjaf44c822007-11-25 14:01:38 +000073
74
75#endif // __SEGMENT_H