sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 1 | /* |
bart | 86562bd | 2009-02-16 19:43:56 +0000 | [diff] [blame] | 2 | This file is part of drd, a thread error detector. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 3 | |
bart | d4bab99 | 2013-10-04 05:55:30 +0000 | [diff] [blame] | 4 | Copyright (C) 2006-2013 Bart Van Assche <bvanassche@acm.org>. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or |
| 7 | modify it under the terms of the GNU General Public License as |
| 8 | published by the Free Software Foundation; either version 2 of the |
| 9 | License, or (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, but |
| 12 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, write to the Free Software |
| 18 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 19 | 02111-1307, USA. |
| 20 | |
| 21 | The GNU General Public License is contained in the file COPYING. |
| 22 | */ |
| 23 | |
| 24 | |
| 25 | #ifndef __THREAD_H |
| 26 | #define __THREAD_H |
| 27 | |
| 28 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 29 | /* Include directives. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 30 | |
bart | 09dc13f | 2009-02-14 15:13:31 +0000 | [diff] [blame] | 31 | #include "drd_basics.h" |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 32 | #include "drd_segment.h" |
bart | d59bb0f | 2008-06-08 08:08:31 +0000 | [diff] [blame] | 33 | #include "pub_drd_bitmap.h" |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 34 | #include "pub_tool_libcassert.h" /* tl_assert() */ |
| 35 | #include "pub_tool_stacktrace.h" /* typedef StackTrace */ |
| 36 | #include "pub_tool_threadstate.h" /* VG_N_THREADS */ |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 37 | |
| 38 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 39 | /* Defines. */ |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 40 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 41 | /** Maximum number of threads DRD keeps information about. */ |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 42 | #define DRD_N_THREADS VG_N_THREADS |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 43 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 44 | /** A number different from any valid DRD thread ID. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 45 | #define DRD_INVALID_THREADID 0 |
| 46 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 47 | /** |
| 48 | * A number different from any valid POSIX thread ID. |
| 49 | * |
| 50 | * @note The PThreadId typedef and the INVALID_POSIX_THREADID depend on the |
| 51 | * operating system and threading library in use. PThreadId must contain at |
| 52 | * least as many bits as pthread_t, and INVALID_POSIX_THREADID |
| 53 | * must be a value that will never be returned by pthread_self(). |
| 54 | */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 55 | #define INVALID_POSIX_THREADID ((PThreadId)0) |
| 56 | |
| 57 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 58 | /* Type definitions. */ |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 59 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 60 | /** |
| 61 | * POSIX thread ID. The type PThreadId must be at least as wide as |
| 62 | * pthread_t. |
| 63 | */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 64 | typedef UWord PThreadId; |
| 65 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 66 | /** Per-thread information managed by DRD. */ |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 67 | typedef struct |
| 68 | { |
bart | 91b7ec3 | 2012-01-25 20:36:27 +0000 | [diff] [blame] | 69 | struct segment* sg_first;/**< Segment list. */ |
| 70 | struct segment* sg_last; |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 71 | ThreadId vg_threadid; /**< Valgrind thread ID. */ |
| 72 | PThreadId pt_threadid; /**< POSIX thread ID. */ |
| 73 | Addr stack_min_min; /**< Lowest value stack pointer ever had. */ |
| 74 | Addr stack_min; /**< Current stack pointer. */ |
| 75 | Addr stack_startup; /**<Stack pointer after pthread_create() finished.*/ |
| 76 | Addr stack_max; /**< Top of stack. */ |
| 77 | SizeT stack_size; /**< Maximum size of stack. */ |
florian | 19f91bb | 2012-11-10 22:29:54 +0000 | [diff] [blame] | 78 | HChar name[64]; /**< User-assigned thread name. */ |
bart | 383d613 | 2010-09-02 14:43:18 +0000 | [diff] [blame] | 79 | Bool on_alt_stack; |
bart | 6d956dc | 2011-07-28 09:54:37 +0000 | [diff] [blame] | 80 | /** Whether this structure contains valid information. */ |
| 81 | Bool valid; |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 82 | /** Indicates whether the Valgrind core knows about this thread. */ |
| 83 | Bool vg_thread_exists; |
| 84 | /** Indicates whether there is an associated POSIX thread ID. */ |
| 85 | Bool posix_thread_exists; |
| 86 | /** |
| 87 | * If true, indicates that there is a corresponding POSIX thread ID and |
| 88 | * a corresponding OS thread that is detached. |
| 89 | */ |
| 90 | Bool detached_posix_thread; |
bart | d45d995 | 2009-05-31 18:53:54 +0000 | [diff] [blame] | 91 | /** Wether recording of memory load accesses is currently enabled. */ |
| 92 | Bool is_recording_loads; |
| 93 | /** Wether recording of memory load accesses is currently enabled. */ |
| 94 | Bool is_recording_stores; |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 95 | /** pthread_create() nesting level. */ |
| 96 | Int pthread_create_nesting_level; |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 97 | /** Nesting level of synchronization functions called by the client. */ |
| 98 | Int synchr_nesting; |
bart | 6d956dc | 2011-07-28 09:54:37 +0000 | [diff] [blame] | 99 | /** Delayed thread deletion sequence number. */ |
| 100 | unsigned deletion_seq; |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 101 | } ThreadInfo; |
| 102 | |
| 103 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 104 | /* |
| 105 | * Local variables of drd_thread.c that are declared here such that these |
| 106 | * can be accessed by inline functions. |
| 107 | */ |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 108 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 109 | /** |
| 110 | * DRD thread ID of the currently running thread. It is crucial for correct |
| 111 | * operation of DRD that this number is always in sync with |
| 112 | * VG_(get_running_tid)(). |
| 113 | */ |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 114 | extern DrdThreadId DRD_(g_drd_running_tid); |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 115 | /** Per-thread information managed by DRD. */ |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 116 | extern ThreadInfo DRD_(g_threadinfo)[DRD_N_THREADS]; |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 117 | /** Conflict set for the currently running thread. */ |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 118 | extern struct bitmap* DRD_(g_conflict_set); |
bart | 9cdc083 | 2014-08-09 12:58:17 +0000 | [diff] [blame] | 119 | extern Bool DRD_(verify_conflict_set); |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 120 | |
| 121 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 122 | /* Function declarations. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 123 | |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 124 | void DRD_(thread_trace_context_switches)(const Bool t); |
| 125 | void DRD_(thread_trace_conflict_set)(const Bool t); |
bart | 8f822af | 2009-06-08 18:20:42 +0000 | [diff] [blame] | 126 | void DRD_(thread_trace_conflict_set_bm)(const Bool t); |
bart | 09dc13f | 2009-02-14 15:13:31 +0000 | [diff] [blame] | 127 | Bool DRD_(thread_get_trace_fork_join)(void); |
| 128 | void DRD_(thread_set_trace_fork_join)(const Bool t); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 129 | void DRD_(thread_set_segment_merging)(const Bool m); |
bart | 8f822af | 2009-06-08 18:20:42 +0000 | [diff] [blame] | 130 | int DRD_(thread_get_segment_merge_interval)(void); |
| 131 | void DRD_(thread_set_segment_merge_interval)(const int i); |
bart | 6d956dc | 2011-07-28 09:54:37 +0000 | [diff] [blame] | 132 | void DRD_(thread_set_join_list_vol)(const int jlv); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 133 | |
bart | e278ab5 | 2012-01-24 18:28:55 +0000 | [diff] [blame] | 134 | void DRD_(thread_init)(void); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 135 | DrdThreadId DRD_(VgThreadIdToDrdThreadId)(const ThreadId tid); |
| 136 | DrdThreadId DRD_(NewVgThreadIdToDrdThreadId)(const ThreadId tid); |
| 137 | DrdThreadId DRD_(PtThreadIdToDrdThreadId)(const PThreadId tid); |
| 138 | ThreadId DRD_(DrdThreadIdToVgThreadId)(const DrdThreadId tid); |
| 139 | DrdThreadId DRD_(thread_pre_create)(const DrdThreadId creator, |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 140 | const ThreadId vg_created); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 141 | DrdThreadId DRD_(thread_post_create)(const ThreadId vg_created); |
bart | 09dc13f | 2009-02-14 15:13:31 +0000 | [diff] [blame] | 142 | void DRD_(thread_post_join)(DrdThreadId drd_joiner, DrdThreadId drd_joinee); |
bart | 9194e93 | 2011-02-09 11:55:12 +0000 | [diff] [blame] | 143 | void DRD_(thread_delete)(const DrdThreadId tid, Bool detached); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 144 | void DRD_(thread_finished)(const DrdThreadId tid); |
bart | 5c7e6b6 | 2011-02-03 17:47:50 +0000 | [diff] [blame] | 145 | void DRD_(drd_thread_atfork_child)(const DrdThreadId tid); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 146 | void DRD_(thread_pre_cancel)(const DrdThreadId tid); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 147 | void DRD_(thread_set_stack_startup)(const DrdThreadId tid, |
| 148 | const Addr stack_startup); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 149 | Addr DRD_(thread_get_stack_min)(const DrdThreadId tid); |
| 150 | Addr DRD_(thread_get_stack_min_min)(const DrdThreadId tid); |
| 151 | Addr DRD_(thread_get_stack_max)(const DrdThreadId tid); |
| 152 | SizeT DRD_(thread_get_stack_size)(const DrdThreadId tid); |
bart | 383d613 | 2010-09-02 14:43:18 +0000 | [diff] [blame] | 153 | Bool DRD_(thread_get_on_alt_stack)(const DrdThreadId tid); |
| 154 | void DRD_(thread_set_on_alt_stack)(const DrdThreadId tid, |
| 155 | const Bool on_alt_stack); |
| 156 | Int DRD_(thread_get_threads_on_alt_stack)(void); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 157 | void DRD_(thread_set_pthreadid)(const DrdThreadId tid, const PThreadId ptid); |
| 158 | Bool DRD_(thread_get_joinable)(const DrdThreadId tid); |
| 159 | void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable); |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 160 | void DRD_(thread_entering_pthread_create)(const DrdThreadId tid); |
| 161 | void DRD_(thread_left_pthread_create)(const DrdThreadId tid); |
florian | 19f91bb | 2012-11-10 22:29:54 +0000 | [diff] [blame] | 162 | const HChar* DRD_(thread_get_name)(const DrdThreadId tid); |
| 163 | void DRD_(thread_set_name)(const DrdThreadId tid, const HChar* const name); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 164 | void DRD_(thread_set_vg_running_tid)(const ThreadId vg_tid); |
| 165 | void DRD_(thread_set_running_tid)(const ThreadId vg_tid, |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 166 | const DrdThreadId drd_tid); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 167 | int DRD_(thread_enter_synchr)(const DrdThreadId tid); |
| 168 | int DRD_(thread_leave_synchr)(const DrdThreadId tid); |
| 169 | int DRD_(thread_get_synchr_nesting_count)(const DrdThreadId tid); |
| 170 | void DRD_(thread_new_segment)(const DrdThreadId tid); |
| 171 | VectorClock* DRD_(thread_get_vc)(const DrdThreadId tid); |
| 172 | void DRD_(thread_get_latest_segment)(Segment** sg, const DrdThreadId tid); |
bart | 8f822af | 2009-06-08 18:20:42 +0000 | [diff] [blame] | 173 | void DRD_(thread_combine_vc_join)(const DrdThreadId joiner, |
| 174 | const DrdThreadId joinee); |
bart | f6ec1fe | 2009-06-21 18:07:35 +0000 | [diff] [blame] | 175 | void DRD_(thread_new_segment_and_combine_vc)(DrdThreadId tid, |
| 176 | const Segment* sg); |
bart | 8f822af | 2009-06-08 18:20:42 +0000 | [diff] [blame] | 177 | void DRD_(thread_update_conflict_set)(const DrdThreadId tid, |
| 178 | const VectorClock* const old_vc); |
bart | dfbae6e | 2008-06-05 08:29:53 +0000 | [diff] [blame] | 179 | |
bart | 23ef19d | 2011-03-12 12:34:44 +0000 | [diff] [blame] | 180 | void DRD_(thread_stop_using_mem)(const Addr a1, const Addr a2); |
bart | d45d995 | 2009-05-31 18:53:54 +0000 | [diff] [blame] | 181 | void DRD_(thread_set_record_loads)(const DrdThreadId tid, const Bool enabled); |
| 182 | void DRD_(thread_set_record_stores)(const DrdThreadId tid, const Bool enabled); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 183 | void DRD_(thread_print_all)(void); |
| 184 | void DRD_(thread_report_races)(const DrdThreadId tid); |
| 185 | void DRD_(thread_report_races_segment)(const DrdThreadId tid, |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 186 | const Segment* const p); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 187 | void DRD_(thread_report_all_races)(void); |
| 188 | void DRD_(thread_report_conflicting_segments)(const DrdThreadId tid, |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 189 | const Addr addr, |
| 190 | const SizeT size, |
| 191 | const BmAccessTypeT access_type); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 192 | ULong DRD_(thread_get_context_switch_count)(void); |
| 193 | ULong DRD_(thread_get_report_races_count)(void); |
| 194 | ULong DRD_(thread_get_discard_ordered_segments_count)(void); |
bart | 54803fe | 2009-06-21 09:26:27 +0000 | [diff] [blame] | 195 | ULong DRD_(thread_get_compute_conflict_set_count)(void); |
| 196 | ULong DRD_(thread_get_update_conflict_set_count)(void); |
bart | e521466 | 2009-06-21 11:51:23 +0000 | [diff] [blame] | 197 | ULong DRD_(thread_get_update_conflict_set_new_sg_count)(void); |
| 198 | ULong DRD_(thread_get_update_conflict_set_sync_count)(void); |
| 199 | ULong DRD_(thread_get_update_conflict_set_join_count)(void); |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 200 | ULong DRD_(thread_get_conflict_set_bitmap_creation_count)(void); |
| 201 | ULong DRD_(thread_get_conflict_set_bitmap2_creation_count)(void); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 202 | |
| 203 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 204 | /* Inline function definitions. */ |
| 205 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 206 | /** |
| 207 | * Whether or not the specified DRD thread ID is valid. |
| 208 | * |
| 209 | * A DRD thread ID is valid if and only if the following conditions are met: |
| 210 | * - The ID is a valid index of the DRD_(g_threadinfo)[] array. |
| 211 | * - The ID is not equal to DRD_INVALID_THREADID. |
| 212 | * - The ID refers either to a thread known by the Valgrind core, a joinable |
| 213 | * thread that has not yet been joined or a detached thread. |
| 214 | */ |
bart | bf80e12 | 2008-06-06 10:18:24 +0000 | [diff] [blame] | 215 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 216 | Bool DRD_(IsValidDrdThreadId)(const DrdThreadId tid) |
bart | bf80e12 | 2008-06-06 10:18:24 +0000 | [diff] [blame] | 217 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 218 | return (0 <= (int)tid && tid < DRD_N_THREADS && tid != DRD_INVALID_THREADID |
bart | 6d956dc | 2011-07-28 09:54:37 +0000 | [diff] [blame] | 219 | && (DRD_(g_threadinfo)[tid].valid)); |
bart | bf80e12 | 2008-06-06 10:18:24 +0000 | [diff] [blame] | 220 | } |
| 221 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 222 | /** Returns the DRD thread ID of the currently running thread. */ |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 223 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 224 | DrdThreadId DRD_(thread_get_running_tid)(void) |
bart | 1ea5fff | 2008-03-16 08:36:23 +0000 | [diff] [blame] | 225 | { |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 226 | #ifdef ENABLE_DRD_CONSISTENCY_CHECKS |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 227 | tl_assert(DRD_(g_drd_running_tid) != DRD_INVALID_THREADID); |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 228 | #endif |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 229 | return DRD_(g_drd_running_tid); |
bart | 1ea5fff | 2008-03-16 08:36:23 +0000 | [diff] [blame] | 230 | } |
| 231 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 232 | /** Returns a pointer to the conflict set for the currently running thread. */ |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 233 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 234 | struct bitmap* DRD_(thread_get_conflict_set)(void) |
bart | 1a473c7 | 2008-03-13 19:03:38 +0000 | [diff] [blame] | 235 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 236 | return DRD_(g_conflict_set); |
bart | 1a473c7 | 2008-03-13 19:03:38 +0000 | [diff] [blame] | 237 | } |
| 238 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 239 | /** |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 240 | * Reports whether or not the currently running client thread is executing code |
| 241 | * inside the pthread_create() function. |
| 242 | */ |
| 243 | static __inline__ |
| 244 | Bool DRD_(running_thread_inside_pthread_create)(void) |
| 245 | { |
| 246 | return (DRD_(g_threadinfo)[DRD_(g_drd_running_tid)] |
| 247 | .pthread_create_nesting_level > 0); |
| 248 | } |
| 249 | |
| 250 | /** |
bart | 31b983d | 2010-02-21 14:52:59 +0000 | [diff] [blame] | 251 | * Reports whether or not recording of memory loads is enabled for the |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 252 | * currently running client thread. |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 253 | */ |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 254 | static __inline__ |
bart | d45d995 | 2009-05-31 18:53:54 +0000 | [diff] [blame] | 255 | Bool DRD_(running_thread_is_recording_loads)(void) |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 256 | { |
bart | 8b4b2ee | 2008-06-11 13:17:56 +0000 | [diff] [blame] | 257 | #ifdef ENABLE_DRD_CONSISTENCY_CHECKS |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 258 | tl_assert(0 <= (int)DRD_(g_drd_running_tid) |
| 259 | && DRD_(g_drd_running_tid) < DRD_N_THREADS |
| 260 | && DRD_(g_drd_running_tid) != DRD_INVALID_THREADID); |
bart | 589f948 | 2008-06-09 15:08:22 +0000 | [diff] [blame] | 261 | #endif |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 262 | return (DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].synchr_nesting == 0 |
bart | d45d995 | 2009-05-31 18:53:54 +0000 | [diff] [blame] | 263 | && DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].is_recording_loads); |
| 264 | } |
| 265 | |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 266 | /** |
bart | 31b983d | 2010-02-21 14:52:59 +0000 | [diff] [blame] | 267 | * Reports whether or not recording memory stores is enabled for the |
bart | dd75cdf | 2009-07-24 08:20:10 +0000 | [diff] [blame] | 268 | * currently running client thread. |
| 269 | */ |
bart | d45d995 | 2009-05-31 18:53:54 +0000 | [diff] [blame] | 270 | static __inline__ |
| 271 | Bool DRD_(running_thread_is_recording_stores)(void) |
| 272 | { |
| 273 | #ifdef ENABLE_DRD_CONSISTENCY_CHECKS |
| 274 | tl_assert(0 <= (int)DRD_(g_drd_running_tid) |
| 275 | && DRD_(g_drd_running_tid) < DRD_N_THREADS |
| 276 | && DRD_(g_drd_running_tid) != DRD_INVALID_THREADID); |
| 277 | #endif |
| 278 | return (DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].synchr_nesting == 0 |
| 279 | && DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].is_recording_stores); |
bart | 1a473c7 | 2008-03-13 19:03:38 +0000 | [diff] [blame] | 280 | } |
| 281 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 282 | /** |
| 283 | * Update the information about the lowest stack address that has ever been |
| 284 | * accessed by a thread. |
| 285 | */ |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 286 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 287 | void DRD_(thread_set_stack_min)(const DrdThreadId tid, const Addr stack_min) |
bart | 1ea5fff | 2008-03-16 08:36:23 +0000 | [diff] [blame] | 288 | { |
bart | 8b4b2ee | 2008-06-11 13:17:56 +0000 | [diff] [blame] | 289 | #ifdef ENABLE_DRD_CONSISTENCY_CHECKS |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 290 | tl_assert(0 <= (int)tid |
| 291 | && tid < DRD_N_THREADS |
| 292 | && tid != DRD_INVALID_THREADID); |
bart | 1ea5fff | 2008-03-16 08:36:23 +0000 | [diff] [blame] | 293 | #endif |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 294 | DRD_(g_threadinfo)[tid].stack_min = stack_min; |
bart | 8b4b2ee | 2008-06-11 13:17:56 +0000 | [diff] [blame] | 295 | #ifdef ENABLE_DRD_CONSISTENCY_CHECKS |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 296 | /* This function can be called after the thread has been created but */ |
| 297 | /* before drd_post_thread_create() has filled in stack_max. */ |
| 298 | tl_assert(DRD_(g_threadinfo)[tid].stack_min |
bart | caefb28 | 2014-03-12 14:27:49 +0000 | [diff] [blame] | 299 | <= DRD_(g_threadinfo)[tid].stack_max |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 300 | || DRD_(g_threadinfo)[tid].stack_max == 0); |
bart | 1ea5fff | 2008-03-16 08:36:23 +0000 | [diff] [blame] | 301 | #endif |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 302 | if (UNLIKELY(stack_min < DRD_(g_threadinfo)[tid].stack_min_min)) |
| 303 | { |
| 304 | DRD_(g_threadinfo)[tid].stack_min_min = stack_min; |
| 305 | } |
bart | 1ea5fff | 2008-03-16 08:36:23 +0000 | [diff] [blame] | 306 | } |
| 307 | |
bart | 324a23b | 2009-02-15 12:14:52 +0000 | [diff] [blame] | 308 | /** |
| 309 | * Return true if and only if the specified address is on the stack of the |
| 310 | * currently scheduled thread. |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 311 | */ |
| 312 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 313 | Bool DRD_(thread_address_on_stack)(const Addr a) |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 314 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 315 | return (DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].stack_min <= a |
| 316 | && a < DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].stack_max); |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 317 | } |
| 318 | |
bart | 0d6d5c5 | 2009-03-10 09:22:13 +0000 | [diff] [blame] | 319 | /** |
| 320 | * Return true if and only if the specified address is on the stack of any |
| 321 | * thread. |
| 322 | */ |
| 323 | static __inline__ |
| 324 | Bool DRD_(thread_address_on_any_stack)(const Addr a) |
| 325 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 326 | int i; |
bart | 0d6d5c5 | 2009-03-10 09:22:13 +0000 | [diff] [blame] | 327 | |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 328 | for (i = 1; i < DRD_N_THREADS; i++) |
| 329 | { |
| 330 | if (DRD_(g_threadinfo)[i].vg_thread_exists |
| 331 | && DRD_(g_threadinfo)[i].stack_min <= a |
| 332 | && a < DRD_(g_threadinfo)[i].stack_max) |
| 333 | { |
| 334 | return True; |
| 335 | } |
| 336 | } |
| 337 | return False; |
bart | 0d6d5c5 | 2009-03-10 09:22:13 +0000 | [diff] [blame] | 338 | } |
| 339 | |
bart | 1a473c7 | 2008-03-13 19:03:38 +0000 | [diff] [blame] | 340 | /** Return a pointer to the latest segment for the specified thread. */ |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 341 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 342 | Segment* DRD_(thread_get_segment)(const DrdThreadId tid) |
bart | 1a473c7 | 2008-03-13 19:03:38 +0000 | [diff] [blame] | 343 | { |
bart | 8b4b2ee | 2008-06-11 13:17:56 +0000 | [diff] [blame] | 344 | #ifdef ENABLE_DRD_CONSISTENCY_CHECKS |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 345 | tl_assert(0 <= (int)tid && tid < DRD_N_THREADS |
| 346 | && tid != DRD_INVALID_THREADID); |
bart | 91b7ec3 | 2012-01-25 20:36:27 +0000 | [diff] [blame] | 347 | tl_assert(DRD_(g_threadinfo)[tid].sg_last); |
bart | 589f948 | 2008-06-09 15:08:22 +0000 | [diff] [blame] | 348 | #endif |
bart | 91b7ec3 | 2012-01-25 20:36:27 +0000 | [diff] [blame] | 349 | return DRD_(g_threadinfo)[tid].sg_last; |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 350 | } |
| 351 | |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 352 | /** Return a pointer to the latest segment for the running thread. */ |
bart | 0886562 | 2008-06-06 14:31:36 +0000 | [diff] [blame] | 353 | static __inline__ |
bart | 62a784c | 2009-02-15 13:11:14 +0000 | [diff] [blame] | 354 | Segment* DRD_(running_thread_get_segment)(void) |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 355 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 356 | return DRD_(thread_get_segment)(DRD_(g_drd_running_tid)); |
bart | a79df6e | 2008-03-14 17:07:51 +0000 | [diff] [blame] | 357 | } |
bart | f00a85b | 2008-03-13 18:49:23 +0000 | [diff] [blame] | 358 | |
bart | 86a87df | 2009-03-04 19:26:47 +0000 | [diff] [blame] | 359 | #endif /* __THREAD_H */ |