blob: 6edf2260fc22942c59ef5dd2c96bbfd04cb66ad9 [file] [log] [blame]
njnc7561b92005-06-19 01:24:32 +00001
2/*--------------------------------------------------------------------*/
3/*--- The thread state. m_threadstate.c ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Julian Seward
njnc7561b92005-06-19 01:24:32 +000011 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#include "pub_core_basics.h"
sewardj4cfea4f2006-10-14 19:26:10 +000032#include "pub_core_vki.h"
njnc7561b92005-06-19 01:24:32 +000033#include "pub_core_threadstate.h"
florian1e802b62015-02-13 19:08:26 +000034#include "pub_core_mallocfree.h" // VG_(malloc)
njnc7561b92005-06-19 01:24:32 +000035#include "pub_core_libcassert.h"
florianc91f5842013-09-15 10:42:26 +000036#include "pub_core_inner.h"
bart27233e92012-03-08 14:59:25 +000037#if defined(ENABLE_INNER_CLIENT_REQUEST)
38#include "helgrind/helgrind.h"
bart27233e92012-03-08 14:59:25 +000039#endif
njnc7561b92005-06-19 01:24:32 +000040
41/*------------------------------------------------------------*/
42/*--- Data structures. ---*/
43/*------------------------------------------------------------*/
44
45ThreadId VG_(running_tid) = VG_INVALID_THREADID;
46
florian1e802b62015-02-13 19:08:26 +000047ThreadState *VG_(threads);
48UInt VG_N_THREADS;
njnc7561b92005-06-19 01:24:32 +000049
Elliott Hughesed398002017-06-21 14:41:24 -070050ThreadState *VG_(inner_threads);
51
njnc7561b92005-06-19 01:24:32 +000052/*------------------------------------------------------------*/
53/*--- Operations. ---*/
54/*------------------------------------------------------------*/
55
bart27233e92012-03-08 14:59:25 +000056void VG_(init_Threads)(void)
57{
58 ThreadId tid;
florian1e802b62015-02-13 19:08:26 +000059
philippe4e4ded72015-08-21 22:22:27 +000060 VG_(threads) = VG_(arena_memalign) (VG_AR_CORE, "init_Threads",
61 LibVEX_GUEST_STATE_ALIGN,
62 VG_N_THREADS * sizeof VG_(threads)[0]);
bart27233e92012-03-08 14:59:25 +000063
bart92e2c642012-03-08 19:07:08 +000064 for (tid = 1; tid < VG_N_THREADS; tid++) {
65 INNER_REQUEST(
66 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].status,
67 sizeof(VG_(threads)[tid].status), ""));
68 INNER_REQUEST(
69 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].os_state.exitcode,
70 sizeof(VG_(threads)[tid].os_state.exitcode),
71 ""));
72 }
Elliott Hughesed398002017-06-21 14:41:24 -070073 INNER_REQUEST(VALGRIND_INNER_THREADS(VG_(threads)));
bart27233e92012-03-08 14:59:25 +000074}
75
njnc7561b92005-06-19 01:24:32 +000076const HChar* VG_(name_of_ThreadStatus) ( ThreadStatus status )
77{
78 switch (status) {
79 case VgTs_Empty: return "VgTs_Empty";
80 case VgTs_Init: return "VgTs_Init";
81 case VgTs_Runnable: return "VgTs_Runnable";
82 case VgTs_WaitSys: return "VgTs_WaitSys";
83 case VgTs_Yielding: return "VgTs_Yielding";
84 case VgTs_Zombie: return "VgTs_Zombie";
85 default: return "VgTs_???";
86 }
87}
88
philippeb8ba0312013-10-21 19:57:08 +000089const HChar* VG_(name_of_VgSchedReturnCode) ( VgSchedReturnCode retcode )
90{
91 switch (retcode) {
92 case VgSrc_None: return "VgSrc_None";
93 case VgSrc_ExitThread: return "VgSrc_ExitThread";
94 case VgSrc_ExitProcess: return "VgSrc_ExitProcess";
95 case VgSrc_FatalSig: return "VgSrc_FatalSig";
96 default: return "VgSrc_???";
97 }
98}
99
njnc7561b92005-06-19 01:24:32 +0000100ThreadState *VG_(get_ThreadState)(ThreadId tid)
101{
102 vg_assert(tid >= 0 && tid < VG_N_THREADS);
sewardj13ac35b2005-07-08 18:23:40 +0000103 vg_assert(VG_(threads)[tid].tid == tid);
njnc7561b92005-06-19 01:24:32 +0000104 return &VG_(threads)[tid];
105}
106
107Bool VG_(is_valid_tid) ( ThreadId tid )
108{
109 /* tid is unsigned, hence no < 0 test. */
110 if (tid == 0) return False;
111 if (tid >= VG_N_THREADS) return False;
112 if (VG_(threads)[tid].status == VgTs_Empty) return False;
113 return True;
114}
115
116// This function is for tools to call.
117ThreadId VG_(get_running_tid)(void)
118{
119 return VG_(running_tid);
120}
121
122Bool VG_(is_running_thread)(ThreadId tid)
123{
124 ThreadState *tst = VG_(get_ThreadState)(tid);
125
126 return
127// tst->os_state.lwpid == VG_(gettid)() && // check we're this tid
128 VG_(running_tid) == tid && // and that we've got the lock
129 tst->status == VgTs_Runnable; // and we're runnable
130}
131
132/* Return true if the thread is still alive but in the process of exiting. */
133inline Bool VG_(is_exiting)(ThreadId tid)
134{
135 vg_assert(VG_(is_valid_tid)(tid));
136 return VG_(threads)[tid].exitreason != VgSrc_None;
137}
138
139/* Return the number of non-dead Threads */
140Int VG_(count_living_threads)(void)
141{
142 Int count = 0;
143 ThreadId tid;
144
145 for(tid = 1; tid < VG_N_THREADS; tid++)
146 if (VG_(threads)[tid].status != VgTs_Empty &&
147 VG_(threads)[tid].status != VgTs_Zombie)
148 count++;
149
150 return count;
151}
152
sewardjd8a725e2006-10-17 02:01:12 +0000153/* Return the number of threads in VgTs_Runnable state */
154Int VG_(count_runnable_threads)(void)
155{
156 Int count = 0;
157 ThreadId tid;
158
159 for(tid = 1; tid < VG_N_THREADS; tid++)
160 if (VG_(threads)[tid].status == VgTs_Runnable)
161 count++;
162
163 return count;
164}
165
njnc7561b92005-06-19 01:24:32 +0000166/* Given an LWP id (ie, real kernel thread id), find the corresponding
167 ThreadId */
sewardj42781722006-12-17 19:36:06 +0000168ThreadId VG_(lwpid_to_vgtid)(Int lwp)
njnc7561b92005-06-19 01:24:32 +0000169{
170 ThreadId tid;
171
172 for(tid = 1; tid < VG_N_THREADS; tid++)
sewardjd8a725e2006-10-17 02:01:12 +0000173 if (VG_(threads)[tid].status != VgTs_Empty
174 && VG_(threads)[tid].os_state.lwpid == lwp)
njnc7561b92005-06-19 01:24:32 +0000175 return tid;
176
177 return VG_INVALID_THREADID;
178}
179
njnc7561b92005-06-19 01:24:32 +0000180/*--------------------------------------------------------------------*/
181/*--- end ---*/
182/*--------------------------------------------------------------------*/