blob: 39ef68a42dfc509f6ad0b92bc9cb106940241308 [file] [log] [blame]
Ian Rogers693ff612013-02-01 10:56:12 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_THREAD_INL_H_
18#define ART_RUNTIME_THREAD_INL_H_
Ian Rogers693ff612013-02-01 10:56:12 -080019
20#include "thread.h"
21
Ian Rogers02ed4c02013-09-06 13:10:04 -070022#include <pthread.h>
23
Ian Rogers1eb512d2013-10-18 15:42:20 -070024#include "base/casts.h"
Ian Rogers693ff612013-02-01 10:56:12 -080025#include "base/mutex-inl.h"
Ian Rogers576ca0c2014-06-06 15:58:22 -070026#include "gc/heap.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070027#include "jni_env_ext.h"
Mathieu Chartier3cf22532015-07-09 15:15:09 -070028#include "thread_pool.h"
Ian Rogers693ff612013-02-01 10:56:12 -080029
30namespace art {
31
Ian Rogers1eb512d2013-10-18 15:42:20 -070032// Quickly access the current thread from a JNIEnv.
33static inline Thread* ThreadForEnv(JNIEnv* env) {
34 JNIEnvExt* full_env(down_cast<JNIEnvExt*>(env));
35 return full_env->self;
36}
37
Ian Rogers02ed4c02013-09-06 13:10:04 -070038inline Thread* Thread::Current() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070039 // We rely on Thread::Current returning null for a detached thread, so it's not obvious
Ian Rogers02ed4c02013-09-06 13:10:04 -070040 // that we can replace this with a direct %fs access on x86.
41 if (!is_started_) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070042 return nullptr;
Ian Rogers02ed4c02013-09-06 13:10:04 -070043 } else {
44 void* thread = pthread_getspecific(Thread::pthread_key_self_);
45 return reinterpret_cast<Thread*>(thread);
46 }
47}
48
Ian Rogers7b078e82014-09-10 14:44:24 -070049inline void Thread::AllowThreadSuspension() {
50 DCHECK_EQ(Thread::Current(), this);
51 if (UNLIKELY(TestAllFlags())) {
52 CheckSuspend();
53 }
54}
55
56inline void Thread::CheckSuspend() {
57 DCHECK_EQ(Thread::Current(), this);
58 for (;;) {
59 if (ReadFlag(kCheckpointRequest)) {
60 RunCheckpointFunction();
61 } else if (ReadFlag(kSuspendRequest)) {
62 FullSuspendCheck();
63 } else {
64 break;
65 }
66 }
67}
68
Ian Rogersc0fa3ad2013-02-05 00:11:55 -080069inline ThreadState Thread::SetState(ThreadState new_state) {
Yu Lieac44242015-06-29 10:50:03 +080070 // Should only be used to change between suspended states.
71 // Cannot use this code to change into or from Runnable as changing to Runnable should
72 // fail if old_state_and_flags.suspend_request is true and changing from Runnable might
73 // miss passing an active suspend barrier.
Ian Rogersc0fa3ad2013-02-05 00:11:55 -080074 DCHECK_NE(new_state, kRunnable);
Andreas Gampeef048f62014-11-25 22:12:27 -080075 if (kIsDebugBuild && this != Thread::Current()) {
76 std::string name;
77 GetThreadName(name);
78 LOG(FATAL) << "Thread \"" << name << "\"(" << this << " != Thread::Current()="
79 << Thread::Current() << ") changing state to " << new_state;
80 }
Chris Dearman59cde532013-12-04 18:53:49 -080081 union StateAndFlags old_state_and_flags;
Ian Rogersdd7624d2014-03-14 17:43:00 -070082 old_state_and_flags.as_int = tls32_.state_and_flags.as_int;
Yu Lieac44242015-06-29 10:50:03 +080083 CHECK_NE(old_state_and_flags.as_struct.state, kRunnable);
Ian Rogersdd7624d2014-03-14 17:43:00 -070084 tls32_.state_and_flags.as_struct.state = new_state;
Ian Rogersc0fa3ad2013-02-05 00:11:55 -080085 return static_cast<ThreadState>(old_state_and_flags.as_struct.state);
86}
87
Ian Rogers693ff612013-02-01 10:56:12 -080088inline void Thread::AssertThreadSuspensionIsAllowable(bool check_locks) const {
Ian Rogersf3d874c2014-07-17 18:52:42 -070089 if (kIsDebugBuild) {
Nicolas Geoffraydb978712014-12-09 13:33:38 +000090 if (gAborting == 0) {
91 CHECK_EQ(0u, tls32_.no_thread_suspension) << tlsPtr_.last_no_thread_suspension_cause;
92 }
Ian Rogersf3d874c2014-07-17 18:52:42 -070093 if (check_locks) {
94 bool bad_mutexes_held = false;
95 for (int i = kLockLevelCount - 1; i >= 0; --i) {
96 // We expect no locks except the mutator_lock_ or thread list suspend thread lock.
Ian Rogers4ad5cd32014-11-11 23:08:07 -080097 if (i != kMutatorLock) {
Ian Rogersf3d874c2014-07-17 18:52:42 -070098 BaseMutex* held_mutex = GetHeldMutex(static_cast<LockLevel>(i));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070099 if (held_mutex != nullptr) {
Ian Rogersf3d874c2014-07-17 18:52:42 -0700100 LOG(ERROR) << "holding \"" << held_mutex->GetName()
101 << "\" at point where thread suspension is expected";
102 bad_mutexes_held = true;
103 }
Ian Rogers693ff612013-02-01 10:56:12 -0800104 }
105 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000106 if (gAborting == 0) {
107 CHECK(!bad_mutexes_held);
108 }
Ian Rogers693ff612013-02-01 10:56:12 -0800109 }
Ian Rogers693ff612013-02-01 10:56:12 -0800110 }
Ian Rogers693ff612013-02-01 10:56:12 -0800111}
112
113inline void Thread::TransitionFromRunnableToSuspended(ThreadState new_state) {
114 AssertThreadSuspensionIsAllowable();
115 DCHECK_NE(new_state, kRunnable);
116 DCHECK_EQ(this, Thread::Current());
117 // Change to non-runnable state, thereby appearing suspended to the system.
118 DCHECK_EQ(GetState(), kRunnable);
119 union StateAndFlags old_state_and_flags;
120 union StateAndFlags new_state_and_flags;
Dave Allison0f5f6bb2013-11-22 17:39:19 -0800121 while (true) {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700122 old_state_and_flags.as_int = tls32_.state_and_flags.as_int;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700123 if (UNLIKELY((old_state_and_flags.as_struct.flags & kCheckpointRequest) != 0)) {
124 RunCheckpointFunction();
125 continue;
126 }
Dave Allison0f5f6bb2013-11-22 17:39:19 -0800127 // Change the state but keep the current flags (kCheckpointRequest is clear).
128 DCHECK_EQ((old_state_and_flags.as_struct.flags & kCheckpointRequest), 0);
129 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags;
Ian Rogers693ff612013-02-01 10:56:12 -0800130 new_state_and_flags.as_struct.state = new_state;
Ian Rogersb8e087e2014-07-09 21:12:06 -0700131
Yu Lieac44242015-06-29 10:50:03 +0800132 // CAS the value with a memory ordering.
Ian Rogersb8e087e2014-07-09 21:12:06 -0700133 bool done =
Yu Lieac44242015-06-29 10:50:03 +0800134 tls32_.state_and_flags.as_atomic_int.CompareExchangeWeakRelease(old_state_and_flags.as_int,
Ian Rogersb8e087e2014-07-09 21:12:06 -0700135 new_state_and_flags.as_int);
136 if (LIKELY(done)) {
Dave Allison0f5f6bb2013-11-22 17:39:19 -0800137 break;
138 }
139 }
Yu Lieac44242015-06-29 10:50:03 +0800140
141 // Change to non-runnable state, thereby appearing suspended to the system.
142 // Mark the release of the share of the mutator_lock_.
143 Locks::mutator_lock_->TransitionFromRunnableToSuspended(this);
144
145 // Once suspended - check the active suspend barrier flag
146 while (true) {
147 uint16_t current_flags = tls32_.state_and_flags.as_struct.flags;
148 if (LIKELY((current_flags & (kCheckpointRequest | kActiveSuspendBarrier)) == 0)) {
149 break;
150 } else if ((current_flags & kActiveSuspendBarrier) != 0) {
151 PassActiveSuspendBarriers(this);
152 } else {
153 // Impossible
154 LOG(FATAL) << "Fatal, thread transited into suspended without running the checkpoint";
155 }
156 }
Ian Rogers693ff612013-02-01 10:56:12 -0800157}
158
159inline ThreadState Thread::TransitionFromSuspendedToRunnable() {
Chris Dearman59cde532013-12-04 18:53:49 -0800160 union StateAndFlags old_state_and_flags;
Ian Rogersdd7624d2014-03-14 17:43:00 -0700161 old_state_and_flags.as_int = tls32_.state_and_flags.as_int;
Ian Rogers693ff612013-02-01 10:56:12 -0800162 int16_t old_state = old_state_and_flags.as_struct.state;
163 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable);
164 do {
165 Locks::mutator_lock_->AssertNotHeld(this); // Otherwise we starve GC..
Ian Rogersdd7624d2014-03-14 17:43:00 -0700166 old_state_and_flags.as_int = tls32_.state_and_flags.as_int;
Ian Rogers693ff612013-02-01 10:56:12 -0800167 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
Yu Lieac44242015-06-29 10:50:03 +0800168 if (LIKELY(old_state_and_flags.as_struct.flags == 0)) {
169 // Optimize for the return from native code case - this is the fast path.
170 // Atomically change from suspended to runnable if no suspend request pending.
171 union StateAndFlags new_state_and_flags;
172 new_state_and_flags.as_int = old_state_and_flags.as_int;
173 new_state_and_flags.as_struct.state = kRunnable;
174 // CAS the value with a memory barrier.
175 if (LIKELY(tls32_.state_and_flags.as_atomic_int.CompareExchangeWeakAcquire(
176 old_state_and_flags.as_int,
177 new_state_and_flags.as_int))) {
178 // Mark the acquisition of a share of the mutator_lock_.
179 Locks::mutator_lock_->TransitionFromSuspendedToRunnable(this);
180 break;
181 }
182 } else if ((old_state_and_flags.as_struct.flags & kActiveSuspendBarrier) != 0) {
183 PassActiveSuspendBarriers(this);
184 } else if ((old_state_and_flags.as_struct.flags & kCheckpointRequest) != 0) {
185 // Impossible
186 LOG(FATAL) << "Fatal, wrong checkpoint flag";
187 } else if ((old_state_and_flags.as_struct.flags & kSuspendRequest) != 0) {
Ian Rogers693ff612013-02-01 10:56:12 -0800188 // Wait while our suspend count is non-zero.
189 MutexLock mu(this, *Locks::thread_suspend_count_lock_);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700190 old_state_and_flags.as_int = tls32_.state_and_flags.as_int;
Ian Rogers693ff612013-02-01 10:56:12 -0800191 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
192 while ((old_state_and_flags.as_struct.flags & kSuspendRequest) != 0) {
193 // Re-check when Thread::resume_cond_ is notified.
194 Thread::resume_cond_->Wait(this);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700195 old_state_and_flags.as_int = tls32_.state_and_flags.as_int;
Ian Rogers693ff612013-02-01 10:56:12 -0800196 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state);
197 }
198 DCHECK_EQ(GetSuspendCount(), 0);
199 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800200 } while (true);
Yu Lieac44242015-06-29 10:50:03 +0800201 // Run the flip function, if set.
202 Closure* flip_func = GetFlipFunction();
203 if (flip_func != nullptr) {
204 flip_func->Run(this);
205 }
206 return static_cast<ThreadState>(old_state);
Ian Rogers693ff612013-02-01 10:56:12 -0800207}
208
Ian Rogers04d7aa92013-03-16 14:29:17 -0700209inline void Thread::VerifyStack() {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800210 if (kVerifyStack) {
211 if (Runtime::Current()->GetHeap()->IsObjectValidationEnabled()) {
212 VerifyStackImpl();
213 }
Ian Rogers04d7aa92013-03-16 14:29:17 -0700214 }
215}
216
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800217inline size_t Thread::TlabSize() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700218 return tlsPtr_.thread_local_end - tlsPtr_.thread_local_pos;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800219}
220
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800221inline mirror::Object* Thread::AllocTlab(size_t bytes) {
222 DCHECK_GE(TlabSize(), bytes);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700223 ++tlsPtr_.thread_local_objects;
224 mirror::Object* ret = reinterpret_cast<mirror::Object*>(tlsPtr_.thread_local_pos);
225 tlsPtr_.thread_local_pos += bytes;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800226 return ret;
227}
228
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800229inline bool Thread::PushOnThreadLocalAllocationStack(mirror::Object* obj) {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700230 DCHECK_LE(tlsPtr_.thread_local_alloc_stack_top, tlsPtr_.thread_local_alloc_stack_end);
231 if (tlsPtr_.thread_local_alloc_stack_top < tlsPtr_.thread_local_alloc_stack_end) {
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800232 // There's room.
Ian Rogers13735952014-10-08 12:43:28 -0700233 DCHECK_LE(reinterpret_cast<uint8_t*>(tlsPtr_.thread_local_alloc_stack_top) +
Mathieu Chartiercb535da2015-01-23 13:50:03 -0800234 sizeof(StackReference<mirror::Object>),
Ian Rogers13735952014-10-08 12:43:28 -0700235 reinterpret_cast<uint8_t*>(tlsPtr_.thread_local_alloc_stack_end));
Mathieu Chartiercb535da2015-01-23 13:50:03 -0800236 DCHECK(tlsPtr_.thread_local_alloc_stack_top->AsMirrorPtr() == nullptr);
237 tlsPtr_.thread_local_alloc_stack_top->Assign(obj);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700238 ++tlsPtr_.thread_local_alloc_stack_top;
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800239 return true;
240 }
241 return false;
242}
243
Mathieu Chartiercb535da2015-01-23 13:50:03 -0800244inline void Thread::SetThreadLocalAllocationStack(StackReference<mirror::Object>* start,
245 StackReference<mirror::Object>* end) {
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800246 DCHECK(Thread::Current() == this) << "Should be called by self";
247 DCHECK(start != nullptr);
248 DCHECK(end != nullptr);
Mathieu Chartiercb535da2015-01-23 13:50:03 -0800249 DCHECK_ALIGNED(start, sizeof(StackReference<mirror::Object>));
250 DCHECK_ALIGNED(end, sizeof(StackReference<mirror::Object>));
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800251 DCHECK_LT(start, end);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700252 tlsPtr_.thread_local_alloc_stack_end = end;
253 tlsPtr_.thread_local_alloc_stack_top = start;
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800254}
255
256inline void Thread::RevokeThreadLocalAllocationStack() {
257 if (kIsDebugBuild) {
258 // Note: self is not necessarily equal to this thread since thread may be suspended.
259 Thread* self = Thread::Current();
260 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc)
261 << GetState() << " thread " << this << " self " << self;
262 }
Ian Rogersdd7624d2014-03-14 17:43:00 -0700263 tlsPtr_.thread_local_alloc_stack_end = nullptr;
264 tlsPtr_.thread_local_alloc_stack_top = nullptr;
Hiroshi Yamauchif5b0e202014-02-11 17:02:22 -0800265}
266
Ian Rogers693ff612013-02-01 10:56:12 -0800267} // namespace art
268
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700269#endif // ART_RUNTIME_THREAD_INL_H_