Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 1 | /* |
| 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 | */ |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 16 | |
| 17 | #ifndef ART_SRC_THREAD_H_ |
| 18 | #define ART_SRC_THREAD_H_ |
| 19 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 20 | #include <pthread.h> |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 21 | |
Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 22 | #include <bitset> |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 23 | #include <iosfwd> |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 24 | #include <list> |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 25 | #include <string> |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 26 | #include <vector> |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 27 | |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 28 | #include "dex_file.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 29 | #include "globals.h" |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 30 | #include "jni_internal.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 31 | #include "logging.h" |
| 32 | #include "macros.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 33 | #include "mutex.h" |
Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 34 | #include "mem_map.h" |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 35 | #include "oat/runtime/oat_support_entrypoints.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 36 | #include "offsets.h" |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 37 | #include "runtime_stats.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 38 | #include "stack.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 39 | #include "trace.h" |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 40 | #include "UniquePtr.h" |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 41 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 42 | namespace art { |
| 43 | |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 44 | class Array; |
Elliott Hughes | 37f7a40 | 2011-08-22 18:56:01 -0700 | [diff] [blame] | 45 | class Class; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 46 | class ClassLinker; |
Elliott Hughes | edcc09c | 2011-08-21 18:47:05 -0700 | [diff] [blame] | 47 | class ClassLoader; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 48 | class Context; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 49 | class DebugInvokeReq; |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 50 | class Method; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 51 | class Monitor; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 52 | class Object; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 53 | class Runtime; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 54 | class ScopedObjectAccess; |
| 55 | class ScopedObjectAccessUnchecked; |
Logan Chien | f7ad17e | 2012-03-15 03:10:03 +0800 | [diff] [blame] | 56 | class ShadowFrame; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 57 | class StackIndirectReferenceTable; |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 58 | class StackTraceElement; |
buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 59 | class StaticStorageBase; |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 60 | class Thread; |
| 61 | class ThreadList; |
| 62 | class Throwable; |
buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 63 | |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 64 | template<class T> class ObjectArray; |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 65 | template<class T> class PrimitiveArray; |
| 66 | typedef PrimitiveArray<int32_t> IntArray; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 67 | |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 68 | // Thread priorities. These must match the Thread.MIN_PRIORITY, |
| 69 | // Thread.NORM_PRIORITY, and Thread.MAX_PRIORITY constants. |
| 70 | enum ThreadPriority { |
| 71 | kMinThreadPriority = 1, |
| 72 | kNormThreadPriority = 5, |
| 73 | kMaxThreadPriority = 10, |
| 74 | }; |
| 75 | |
| 76 | enum ThreadState { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 77 | kTerminated = 0, // Thread.TERMINATED JDWP TS_ZOMBIE |
| 78 | kRunnable = 1, // Thread.RUNNABLE JDWP TS_RUNNING |
| 79 | kTimedWaiting = 2, // Thread.TIMED_WAITING JDWP TS_WAIT - in Object.wait() with a timeout |
| 80 | kBlocked = 3, // Thread.BLOCKED JDWP TS_MONITOR - blocked on a monitor |
| 81 | kWaiting = 4, // Thread.WAITING JDWP TS_WAIT - in Object.wait() |
| 82 | kWaitingForGcToComplete = 5, // Thread.WAITING JDWP TS_WAIT - blocked waiting for GC |
| 83 | kWaitingPerformingGc = 6, // Thread.WAITING JDWP TS_WAIT - performing GC |
| 84 | kWaitingForDebuggerSend = 7, // Thread.WAITING JDWP TS_WAIT - blocked waiting for events to be sent |
| 85 | kWaitingForDebuggerToAttach = 8, // Thread.WAITING JDWP TS_WAIT - blocked waiting for debugger to attach |
| 86 | kWaitingInMainDebuggerLoop = 9, // Thread.WAITING JDWP TS_WAIT - blocking/reading/processing debugger events |
| 87 | kWaitingForDebuggerSuspension = 10, // Thread.WAITING JDWP TS_WAIT - waiting for debugger suspend all |
| 88 | kWaitingForJniOnLoad = 11, // Thread.WAITING JDWP TS_WAIT - waiting for execution of dlopen and JNI on load code |
| 89 | kWaitingForSignalCatcherOutput = 12, // Thread.WAITING JDWP TS_WAIT - waiting for signal catcher IO to complete |
| 90 | kWaitingInMainSignalCatcherLoop = 13, // Thread.WAITING JDWP TS_WAIT - blocking/reading/processing signals |
| 91 | kStarting = 14, // Thread.NEW JDWP TS_WAIT - native thread started, not yet ready to run managed code |
| 92 | kNative = 15, // Thread.RUNNABLE JDWP TS_RUNNING - running in a JNI native method |
| 93 | kSuspended = 16, // Thread.RUNNABLE JDWP TS_RUNNING - suspended by GC or debugger |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 94 | }; |
| 95 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 96 | class PACKED Thread { |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 97 | public: |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 98 | // Space to throw a StackOverflowError in. |
TDYa127 | 4165a83 | 2012-04-03 17:47:16 -0700 | [diff] [blame] | 99 | #if !defined(ART_USE_LLVM_COMPILER) |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 100 | static const size_t kStackOverflowReservedBytes = 4 * KB; |
TDYa127 | 4165a83 | 2012-04-03 17:47:16 -0700 | [diff] [blame] | 101 | #else // LLVM_x86 requires more memory to throw stack overflow exception. |
| 102 | static const size_t kStackOverflowReservedBytes = 8 * KB; |
| 103 | #endif |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 104 | |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 105 | // Creates a new native thread corresponding to the given managed peer. |
| 106 | // Used to implement Thread.start. |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 107 | static void CreateNativeThread(JNIEnv* env, jobject peer, size_t stack_size, bool daemon); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 108 | |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 109 | // Attaches the calling native thread to the runtime, returning the new native peer. |
| 110 | // Used to implement JNI AttachCurrentThread and AttachCurrentThreadAsDaemon calls. |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 111 | static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 112 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 113 | // Reset internal state of child thread after fork. |
| 114 | void InitAfterFork(); |
| 115 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 116 | static Thread* Current() __attribute__ ((pure)) { |
Elliott Hughes | e044735 | 2012-06-11 18:30:31 -0700 | [diff] [blame] | 117 | // We rely on Thread::Current returning NULL for a detached thread, so it's not obvious |
| 118 | // that we can replace this with a direct %fs access on x86. |
Carl Shapiro | d0e7e77 | 2011-07-15 14:31:01 -0700 | [diff] [blame] | 119 | void* thread = pthread_getspecific(Thread::pthread_key_self_); |
| 120 | return reinterpret_cast<Thread*>(thread); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 123 | static Thread* FromManagedThread(const ScopedObjectAccessUnchecked& ts, Object* thread_peer) |
| 124 | LOCKS_EXCLUDED(GlobalSynchronization::thread_suspend_count_lock_) |
| 125 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
| 126 | static Thread* FromManagedThread(const ScopedObjectAccessUnchecked& ts, jobject thread) |
| 127 | LOCKS_EXCLUDED(GlobalSynchronization::thread_suspend_count_lock_) |
| 128 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 129 | |
Elliott Hughes | 28fa76d | 2012-04-09 17:31:46 -0700 | [diff] [blame] | 130 | // Translates 172 to pAllocArrayFromCode and so on. |
| 131 | static void DumpThreadOffset(std::ostream& os, uint32_t offset, size_t size_of_pointers); |
| 132 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 133 | // Dumps a one-line summary of thread state (used for operator<<). |
| 134 | void ShortDump(std::ostream& os) const; |
| 135 | |
| 136 | // Dumps the detailed thread state and the thread stack (used for SIGQUIT). |
| 137 | void Dump(std::ostream& os) const |
| 138 | LOCKS_EXCLUDED(GlobalSynchronization::thread_suspend_count_lock_) |
| 139 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 140 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 141 | // Dumps the SIGQUIT per-thread header. 'thread' can be NULL for a non-attached thread, in which |
| 142 | // case we use 'tid' to identify the thread, and we'll include as much information as we can. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 143 | static void DumpState(std::ostream& os, const Thread* thread, pid_t tid) |
| 144 | LOCKS_EXCLUDED(GlobalSynchronization::thread_suspend_count_lock_); |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 145 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 146 | ThreadState GetState() const |
| 147 | EXCLUSIVE_LOCKS_REQUIRED(GlobalSynchronization::thread_suspend_count_lock_) { |
| 148 | GlobalSynchronization::thread_suspend_count_lock_->AssertHeld(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 149 | return state_; |
| 150 | } |
| 151 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 152 | ThreadState SetState(ThreadState new_state) |
| 153 | EXCLUSIVE_LOCKS_REQUIRED(GlobalSynchronization::thread_suspend_count_lock_) { |
| 154 | GlobalSynchronization::thread_suspend_count_lock_->AssertHeld(); |
| 155 | ThreadState old_state = state_; |
| 156 | if (new_state == kRunnable) { |
| 157 | // Sanity, should never become runnable with a pending suspension and should always hold |
| 158 | // share of mutator_lock_. |
| 159 | CHECK_EQ(GetSuspendCount(), 0); |
| 160 | GlobalSynchronization::mutator_lock_->AssertSharedHeld(); |
| 161 | } |
| 162 | state_ = new_state; |
| 163 | return old_state; |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 166 | int GetSuspendCount() const |
| 167 | EXCLUSIVE_LOCKS_REQUIRED(GlobalSynchronization::thread_suspend_count_lock_) { |
| 168 | GlobalSynchronization::thread_suspend_count_lock_->AssertHeld(); |
| 169 | return suspend_count_; |
| 170 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 171 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 172 | int GetDebugSuspendCount() const |
| 173 | EXCLUSIVE_LOCKS_REQUIRED(GlobalSynchronization::thread_suspend_count_lock_) { |
| 174 | GlobalSynchronization::thread_suspend_count_lock_->AssertHeld(); |
| 175 | return debug_suspend_count_; |
| 176 | } |
| 177 | |
| 178 | bool IsSuspended() const |
| 179 | EXCLUSIVE_LOCKS_REQUIRED(GlobalSynchronization::thread_suspend_count_lock_) { |
| 180 | int suspend_count = GetSuspendCount(); |
| 181 | return suspend_count != 0 && GetState() != kRunnable; |
| 182 | } |
| 183 | |
| 184 | void ModifySuspendCount(int delta, bool for_debugger) |
| 185 | EXCLUSIVE_LOCKS_REQUIRED(GlobalSynchronization::thread_suspend_count_lock_); |
| 186 | |
| 187 | // Called when thread detected that the thread_suspend_count_ was non-zero. Gives up share of |
| 188 | // mutator_lock_ and waits until it is resumed and thread_suspend_count_ is zero. |
| 189 | void FullSuspendCheck() SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
| 190 | |
| 191 | // Transition from non-runnable to runnable state acquiring share on mutator_lock_. |
| 192 | ThreadState TransitionFromSuspendedToRunnable() |
| 193 | SHARED_LOCK_FUNCTION(GlobalSynchronization::mutator_lock_); |
| 194 | |
| 195 | // Transition from runnable into a state where mutator privileges are denied. Releases share of |
| 196 | // mutator lock. |
| 197 | void TransitionFromRunnableToSuspended(ThreadState new_state) |
| 198 | UNLOCK_FUNCTION(GlobalSynchronization::mutator_lock_); |
| 199 | |
| 200 | // Wait for a debugger suspension on the thread associated with the given peer. Returns the |
| 201 | // thread on success, else NULL. If the thread should be suspended then request_suspension should |
| 202 | // be true on entry. If the suspension times out then *timeout is set to true. |
| 203 | static Thread* SuspendForDebugger(jobject peer, bool request_suspension, bool* timeout) |
| 204 | LOCKS_EXCLUDED(GlobalSynchronization::mutator_lock_, |
| 205 | GlobalSynchronization::thread_list_lock_, |
| 206 | GlobalSynchronization::thread_suspend_count_lock_); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 207 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 208 | // Once called thread suspension will cause an assertion failure. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 209 | #ifndef NDEBUG |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 210 | const char* StartAssertNoThreadSuspension(const char* cause) { |
| 211 | CHECK(cause != NULL); |
| 212 | const char* previous_cause = last_no_thread_suspension_cause_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 213 | no_thread_suspension_++; |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 214 | last_no_thread_suspension_cause_ = cause; |
| 215 | return previous_cause; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 216 | } |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 217 | #else |
| 218 | const char* StartAssertNoThreadSuspension(const char* cause) { |
| 219 | CHECK(cause != NULL); |
| 220 | return NULL; |
| 221 | } |
| 222 | #endif |
| 223 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 224 | // End region where no thread suspension is expected. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 225 | #ifndef NDEBUG |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 226 | void EndAssertNoThreadSuspension(const char* old_cause) { |
| 227 | CHECK(old_cause != NULL || no_thread_suspension_ == 1); |
| 228 | CHECK_GT(no_thread_suspension_, 0U); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 229 | no_thread_suspension_--; |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 230 | last_no_thread_suspension_cause_ = old_cause; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 231 | } |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 232 | #else |
| 233 | void EndAssertNoThreadSuspension(const char*) { |
| 234 | } |
| 235 | #endif |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 236 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 237 | |
| 238 | #ifndef NDEBUG |
| 239 | void AssertThreadSuspensionIsAllowable(bool check_locks = true) const; |
| 240 | #else |
| 241 | void AssertThreadSuspensionIsAllowable(bool check_locks = true) const { |
| 242 | check_locks = !check_locks; // Keep GCC happy about unused parameters. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 243 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 244 | #endif |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 245 | |
| 246 | bool CanAccessDirectReferences() const { |
| 247 | #ifdef MOVING_GARBAGE_COLLECTOR |
| 248 | // TODO: when we have a moving collector, we'll need: return state_ == kRunnable; |
| 249 | #endif |
| 250 | return true; |
| 251 | } |
| 252 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 253 | bool IsDaemon() const { |
| 254 | return daemon_; |
| 255 | } |
| 256 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 257 | bool HoldsLock(Object*); |
| 258 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 259 | /* |
| 260 | * Changes the priority of this thread to match that of the java.lang.Thread object. |
| 261 | * |
| 262 | * We map a priority value from 1-10 to Linux "nice" values, where lower |
| 263 | * numbers indicate higher priority. |
| 264 | */ |
| 265 | void SetNativePriority(int newPriority); |
| 266 | |
| 267 | /* |
| 268 | * Returns the thread priority for the current thread by querying the system. |
| 269 | * This is useful when attaching a thread through JNI. |
| 270 | * |
| 271 | * Returns a value from 1 to 10 (compatible with java.lang.Thread values). |
| 272 | */ |
| 273 | static int GetNativePriority(); |
| 274 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 275 | uint32_t GetThinLockId() const { |
| 276 | return thin_lock_id_; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 279 | pid_t GetTid() const { |
| 280 | return tid_; |
| 281 | } |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 282 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 283 | // Returns the java.lang.Thread's name, or NULL if this Thread* doesn't have a peer. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 284 | String* GetThreadName(const ScopedObjectAccessUnchecked& ts) const |
| 285 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 286 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 287 | // Sets 'name' to the java.lang.Thread's name. This requires no transition to managed code, |
| 288 | // allocation, or locking. |
| 289 | void GetThreadName(std::string& name) const; |
| 290 | |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 291 | // Sets the thread's name. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 292 | void SetThreadName(const char* name) SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 293 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 294 | Object* GetPeer() const SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) { |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 295 | return peer_; |
| 296 | } |
| 297 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 298 | bool HasPeer() const { |
| 299 | return peer_ != NULL; |
| 300 | } |
| 301 | |
| 302 | Object* GetThreadGroup(const ScopedObjectAccessUnchecked& ts) const |
| 303 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 304 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 305 | RuntimeStats* GetStats() { |
| 306 | return &stats_; |
| 307 | } |
| 308 | |
Elliott Hughes | 7dc5166 | 2012-05-16 14:48:43 -0700 | [diff] [blame] | 309 | bool IsStillStarting() const; |
| 310 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 311 | bool IsExceptionPending() const { |
Elliott Hughes | b20a554 | 2011-08-12 18:03:12 -0700 | [diff] [blame] | 312 | return exception_ != NULL; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 313 | } |
| 314 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 315 | Throwable* GetException() const SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 316 | DCHECK(CanAccessDirectReferences()); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 317 | return exception_; |
| 318 | } |
| 319 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 320 | void AssertNoPendingException() const; |
| 321 | |
| 322 | void SetException(Throwable* new_exception) |
| 323 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 324 | DCHECK(CanAccessDirectReferences()); |
| 325 | CHECK(new_exception != NULL); |
| 326 | // TODO: CHECK(exception_ == NULL); |
| 327 | exception_ = new_exception; // TODO |
| 328 | } |
| 329 | |
| 330 | void ClearException() { |
| 331 | exception_ = NULL; |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 334 | // Find catch block and perform long jump to appropriate exception handle |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 335 | void DeliverException() SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 336 | |
| 337 | Context* GetLongJumpContext(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 338 | void ReleaseLongJumpContext(Context* context) { |
| 339 | DCHECK(long_jump_context_ == NULL); |
| 340 | long_jump_context_ = context; |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 343 | Method* GetCurrentMethod(uint32_t* dex_pc = NULL, size_t* frame_id = NULL) const |
| 344 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 345 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 346 | void SetTopOfStack(void* stack, uintptr_t pc) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 347 | Method** top_method = reinterpret_cast<Method**>(stack); |
| 348 | managed_stack_.SetTopQuickFrame(top_method); |
| 349 | managed_stack_.SetTopQuickFramePc(pc); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 352 | bool HasManagedStack() const { |
| 353 | return managed_stack_.GetTopQuickFrame() != NULL || managed_stack_.GetTopShadowFrame() != NULL; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 356 | // If 'msg' is NULL, no detail message is set. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 357 | void ThrowNewException(const char* exception_class_descriptor, const char* msg) |
| 358 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | 5cb5ad2 | 2011-10-02 12:13:39 -0700 | [diff] [blame] | 359 | |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 360 | // If 'msg' is NULL, no detail message is set. An exception must be pending, and will be |
| 361 | // used as the new exception's cause. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 362 | void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg) |
| 363 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 364 | |
Elliott Hughes | 5cb5ad2 | 2011-10-02 12:13:39 -0700 | [diff] [blame] | 365 | void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 366 | __attribute__((format(printf, 3, 4))) |
| 367 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 368 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 369 | void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap) |
| 370 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | 4a2b417 | 2011-09-20 17:08:25 -0700 | [diff] [blame] | 371 | |
Elliott Hughes | 2ced6a5 | 2011-10-16 18:44:48 -0700 | [diff] [blame] | 372 | // OutOfMemoryError is special, because we need to pre-allocate an instance. |
Elliott Hughes | 8a8b9cb | 2012-04-13 18:29:22 -0700 | [diff] [blame] | 373 | // Only the GC should call this. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 374 | void ThrowOutOfMemoryError(const char* msg) |
| 375 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 376 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 377 | //QuickFrameIterator FindExceptionHandler(void* throw_pc, void** handler_pc); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 378 | |
| 379 | void* FindExceptionHandlerInMethod(const Method* method, |
| 380 | void* throw_pc, |
| 381 | const DexFile& dex_file, |
| 382 | ClassLinker* class_linker); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 383 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 384 | static void Startup(); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 385 | static void FinishStartup(); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 386 | static void Shutdown(); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 387 | |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 388 | // JNI methods |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 389 | JNIEnvExt* GetJniEnv() const { |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 390 | return jni_env_; |
| 391 | } |
| 392 | |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 393 | // Convert a jobject into a Object* |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 394 | Object* DecodeJObject(jobject obj) |
| 395 | LOCKS_EXCLUDED(JavaVMExt::globals_lock, |
| 396 | JavaVMExt::weak_globals_lock) |
| 397 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 398 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 399 | // Implements java.lang.Thread.interrupted. |
| 400 | bool Interrupted() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 401 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 402 | bool interrupted = interrupted_; |
| 403 | interrupted_ = false; |
| 404 | return interrupted; |
| 405 | } |
| 406 | |
| 407 | // Implements java.lang.Thread.isInterrupted. |
| 408 | bool IsInterrupted() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 409 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 410 | return interrupted_; |
| 411 | } |
| 412 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 413 | void Interrupt() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 414 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 415 | if (interrupted_) { |
| 416 | return; |
| 417 | } |
| 418 | interrupted_ = true; |
| 419 | NotifyLocked(); |
| 420 | } |
| 421 | |
| 422 | void Notify() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 423 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 424 | NotifyLocked(); |
| 425 | } |
| 426 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 427 | ClassLoader* GetClassLoaderOverride() |
| 428 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) { |
| 429 | DCHECK(CanAccessDirectReferences()); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 430 | return class_loader_override_; |
| 431 | } |
| 432 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 433 | void SetClassLoaderOverride(ClassLoader* class_loader_override) { |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 434 | class_loader_override_ = class_loader_override; |
| 435 | } |
| 436 | |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 437 | // Create the internal representation of a stack trace, that is more time |
| 438 | // and space efficient to compute than the StackTraceElement[] |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 439 | jobject CreateInternalStackTrace(const ScopedObjectAccess& soa) const |
| 440 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 441 | |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 442 | // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a |
| 443 | // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many |
| 444 | // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated |
| 445 | // with the number of valid frames in the returned array. |
| 446 | static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal, |
| 447 | jobjectArray output_array = NULL, int* stack_depth = NULL); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 448 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 449 | void VisitRoots(Heap::RootVisitor* visitor, void* arg) |
| 450 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 451 | |
jeffhao | 2504552 | 2012-03-13 19:34:37 -0700 | [diff] [blame] | 452 | #if VERIFY_OBJECT_ENABLED |
| 453 | void VerifyStack(); |
| 454 | #else |
| 455 | void VerifyStack() {} |
| 456 | #endif |
| 457 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 458 | // |
| 459 | // Offsets of various members of native Thread class, used by compiled code. |
| 460 | // |
| 461 | |
| 462 | static ThreadOffset SelfOffset() { |
| 463 | return ThreadOffset(OFFSETOF_MEMBER(Thread, self_)); |
| 464 | } |
| 465 | |
| 466 | static ThreadOffset ExceptionOffset() { |
| 467 | return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_)); |
| 468 | } |
| 469 | |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 470 | static ThreadOffset ThinLockIdOffset() { |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 471 | return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_)); |
| 472 | } |
| 473 | |
| 474 | static ThreadOffset CardTableOffset() { |
| 475 | return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_)); |
| 476 | } |
| 477 | |
| 478 | static ThreadOffset SuspendCountOffset() { |
| 479 | return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_)); |
| 480 | } |
| 481 | |
| 482 | static ThreadOffset StateOffset() { |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 483 | return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_)); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 486 | // Size of stack less any space reserved for stack overflow |
| 487 | size_t GetStackSize() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 488 | return stack_size_ - (stack_end_ - stack_begin_); |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | // Set the stack end to that to be used during a stack overflow |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 492 | void SetStackEndForStackOverflow() SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 493 | |
| 494 | // Set the stack end to that to be used during regular execution |
| 495 | void ResetDefaultStackEnd() { |
| 496 | // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room |
| 497 | // to throw a StackOverflowError. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 498 | stack_end_ = stack_begin_ + kStackOverflowReservedBytes; |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 499 | } |
| 500 | |
Elliott Hughes | 449b4bd | 2011-09-09 12:01:38 -0700 | [diff] [blame] | 501 | static ThreadOffset StackEndOffset() { |
| 502 | return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_)); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | static ThreadOffset JniEnvOffset() { |
| 506 | return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_)); |
| 507 | } |
| 508 | |
| 509 | static ThreadOffset TopOfManagedStackOffset() { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 510 | return ThreadOffset(OFFSETOF_MEMBER(Thread, managed_stack_) + |
| 511 | ManagedStack::TopQuickFrameOffset()); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 514 | static ThreadOffset TopOfManagedStackPcOffset() { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 515 | return ThreadOffset(OFFSETOF_MEMBER(Thread, managed_stack_) + |
| 516 | ManagedStack::TopQuickFramePcOffset()); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 519 | const ManagedStack* GetManagedStack() const { |
| 520 | return &managed_stack_; |
| 521 | } |
| 522 | |
| 523 | // Linked list recording fragments of managed stack. |
| 524 | void PushManagedStackFragment(ManagedStack* fragment) { |
| 525 | managed_stack_.PushManagedStackFragment(fragment); |
| 526 | } |
| 527 | void PopManagedStackFragment(const ManagedStack& fragment) { |
| 528 | managed_stack_.PopManagedStackFragment(fragment); |
| 529 | } |
| 530 | |
| 531 | ShadowFrame* PushShadowFrame(ShadowFrame* new_top_frame) { |
| 532 | return managed_stack_.PushShadowFrame(new_top_frame); |
TDYa127 | de479be | 2012-05-31 08:03:26 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | ShadowFrame* PopShadowFrame() { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 536 | return managed_stack_.PopShadowFrame(); |
TDYa127 | de479be | 2012-05-31 08:03:26 -0700 | [diff] [blame] | 537 | } |
Logan Chien | f7ad17e | 2012-03-15 03:10:03 +0800 | [diff] [blame] | 538 | |
TDYa127 | d668a06 | 2012-04-13 12:36:57 -0700 | [diff] [blame] | 539 | static ThreadOffset TopShadowFrameOffset() { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 540 | return ThreadOffset(OFFSETOF_MEMBER(Thread, managed_stack_) + |
| 541 | ManagedStack::TopShadowFrameOffset()); |
TDYa127 | d668a06 | 2012-04-13 12:36:57 -0700 | [diff] [blame] | 542 | } |
| 543 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 544 | // Number of references allocated in ShadowFrames on this thread |
| 545 | size_t NumShadowFrameReferences() const { |
| 546 | return managed_stack_.NumShadowFrameReferences(); |
| 547 | } |
| 548 | |
| 549 | // Number of references in SIRTs on this thread |
| 550 | size_t NumSirtReferences(); |
| 551 | |
| 552 | // Number of references allocated in SIRTs & shadow frames on this thread |
| 553 | size_t NumStackReferences() { |
| 554 | return NumSirtReferences() + NumShadowFrameReferences(); |
| 555 | }; |
| 556 | |
| 557 | // Is the given obj in this thread's stack indirect reference table? |
| 558 | bool SirtContains(jobject obj); |
| 559 | |
| 560 | void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg); |
| 561 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 562 | void PushSirt(StackIndirectReferenceTable* sirt); |
| 563 | StackIndirectReferenceTable* PopSirt(); |
| 564 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 565 | static ThreadOffset TopSirtOffset() { |
| 566 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_)); |
| 567 | } |
| 568 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 569 | DebugInvokeReq* GetInvokeReq() { |
| 570 | return debug_invoke_req_; |
| 571 | } |
| 572 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 573 | void SetDebuggerUpdatesEnabled(bool enabled); |
| 574 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 575 | const std::vector<TraceStackFrame>* GetTraceStack() const { |
| 576 | return trace_stack_; |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 577 | } |
| 578 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 579 | bool IsTraceStackEmpty() const { |
| 580 | return trace_stack_->empty(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 581 | } |
| 582 | |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 583 | void PushTraceStackFrame(const TraceStackFrame& frame) { |
| 584 | trace_stack_->push_back(frame); |
| 585 | } |
| 586 | |
| 587 | TraceStackFrame PopTraceStackFrame() { |
| 588 | TraceStackFrame frame = trace_stack_->back(); |
| 589 | trace_stack_->pop_back(); |
| 590 | return frame; |
| 591 | } |
| 592 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 593 | BaseMutex* GetHeldMutex(MutexLevel level) const { |
| 594 | return held_mutexes_[level]; |
| 595 | } |
| 596 | |
| 597 | void SetHeldMutex(MutexLevel level, BaseMutex* mutex) { |
| 598 | held_mutexes_[level] = mutex; |
| 599 | } |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 600 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 601 | private: |
Elliott Hughes | 5d96a71 | 2012-06-28 12:24:27 -0700 | [diff] [blame] | 602 | // We have no control over the size of 'bool', but want our boolean fields |
| 603 | // to be 4-byte quantities. |
| 604 | typedef uint32_t bool32_t; |
| 605 | |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 606 | explicit Thread(bool daemon); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 607 | ~Thread() LOCKS_EXCLUDED(GlobalSynchronization::mutator_lock_, |
| 608 | GlobalSynchronization::thread_suspend_count_lock_); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 609 | void Destroy(); |
| 610 | friend class ThreadList; // For ~Thread and Destroy. |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 611 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 612 | void CreatePeer(const char* name, bool as_daemon, jobject thread_group); |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 613 | friend class Runtime; // For CreatePeer. |
| 614 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 615 | // TODO: remove, callers should use GetState and hold the appropriate locks. Used only by |
| 616 | // ShortDump. |
| 617 | ThreadState GetStateUnsafe() const NO_THREAD_SAFETY_ANALYSIS { |
| 618 | return state_; |
| 619 | } |
| 620 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 621 | void DumpState(std::ostream& os) const; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 622 | void DumpStack(std::ostream& os) const |
| 623 | LOCKS_EXCLUDED(GlobalSynchronization::thread_suspend_count_lock_) |
| 624 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 625 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 626 | // Out-of-line conveniences for debugging in gdb. |
Elliott Hughes | 498508c | 2011-10-17 14:58:22 -0700 | [diff] [blame] | 627 | static Thread* CurrentFromGdb(); // Like Thread::Current. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 628 | // Like Thread::Dump(std::cerr). |
| 629 | void DumpFromGdb() const SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 630 | |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 631 | static void* CreateCallback(void* arg); |
| 632 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 633 | void HandleUncaughtExceptions(const ScopedObjectAccess& soa) |
| 634 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
| 635 | void RemoveFromThreadGroup(const ScopedObjectAccess& soa) |
| 636 | SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 637 | |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 638 | void Init(); |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 639 | void InitCardTable(); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 640 | void InitCpu(); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 641 | void InitFunctionPointers(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 642 | void InitTid(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 643 | void InitPthreadKeySelf(); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 644 | void InitStackHwm(); |
| 645 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 646 | void NotifyLocked() EXCLUSIVE_LOCKS_REQUIRED(wait_mutex_) { |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 647 | if (wait_monitor_ != NULL) { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 648 | wait_cond_->Signal(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 649 | } |
| 650 | } |
| 651 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 652 | static void ThreadExitCallback(void* arg); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 653 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 654 | // TLS key used to retrieve the Thread*. |
| 655 | static pthread_key_t pthread_key_self_; |
| 656 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 657 | // Used to notify threads that they should attempt to resume, they will suspend again if |
| 658 | // their suspend count is > 0. |
| 659 | static ConditionVariable* resume_cond_ |
| 660 | GUARDED_BY(GlobalSynchronization::thread_suspend_count_lock_); |
| 661 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 662 | // --- Frequently accessed fields first for short offsets --- |
| 663 | |
| 664 | // A non-zero value is used to tell the current thread to enter a safe point |
| 665 | // at the next poll. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 666 | int suspend_count_ GUARDED_BY(GlobalSynchronization::thread_suspend_count_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 667 | |
| 668 | // The biased card table, see CardTable for details |
| 669 | byte* card_table_; |
| 670 | |
| 671 | // The pending exception or NULL. |
| 672 | Throwable* exception_; |
| 673 | |
| 674 | // The end of this thread's stack. This is the lowest safely-addressable address on the stack. |
| 675 | // We leave extra space so there's room for the code that throws StackOverflowError. |
| 676 | byte* stack_end_; |
| 677 | |
| 678 | // The top of the managed stack often manipulated directly by compiler generated code. |
| 679 | ManagedStack managed_stack_; |
| 680 | |
| 681 | // Every thread may have an associated JNI environment |
| 682 | JNIEnvExt* jni_env_; |
| 683 | |
| 684 | // Initialized to "this". On certain architectures (such as x86) reading |
| 685 | // off of Thread::Current is easy but getting the address of Thread::Current |
| 686 | // is hard. This field can be read off of Thread::Current to give the address. |
| 687 | Thread* self_; |
| 688 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 689 | volatile ThreadState state_ GUARDED_BY(GlobalSynchronization::thread_suspend_count_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 690 | |
| 691 | // Our managed peer (an instance of java.lang.Thread). |
| 692 | Object* peer_; |
| 693 | |
| 694 | // The "lowest addressable byte" of the stack |
| 695 | byte* stack_begin_; |
| 696 | |
| 697 | // Size of the stack |
| 698 | size_t stack_size_; |
| 699 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 700 | // Thin lock thread id. This is a small integer used by the thin lock implementation. |
| 701 | // This is not to be confused with the native thread's tid, nor is it the value returned |
| 702 | // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One |
| 703 | // important difference between this id and the ids visible to managed code is that these |
| 704 | // ones get reused (to ensure that they fit in the number of bits available). |
| 705 | uint32_t thin_lock_id_; |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 706 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 707 | // System thread id. |
| 708 | pid_t tid_; |
| 709 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 710 | // Guards the 'interrupted_' and 'wait_monitor_' members. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 711 | mutable Mutex* wait_mutex_ DEFAULT_MUTEX_ACQUIRED_AFTER; |
| 712 | ConditionVariable* wait_cond_ GUARDED_BY(wait_mutex_); |
| 713 | // Pointer to the monitor lock we're currently waiting on (or NULL). |
| 714 | Monitor* wait_monitor_ GUARDED_BY(wait_mutex_); |
| 715 | // Thread "interrupted" status; stays raised until queried or thrown. |
| 716 | bool32_t interrupted_ GUARDED_BY(wait_mutex_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 717 | // The next thread in the wait set this thread is part of. |
| 718 | Thread* wait_next_; |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 719 | // If we're blocked in MonitorEnter, this is the object we're trying to lock. |
| 720 | Object* monitor_enter_object_; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 721 | |
| 722 | friend class Monitor; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 723 | |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 724 | // Top of linked list of stack indirect reference tables or NULL for none |
| 725 | StackIndirectReferenceTable* top_sirt_; |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 726 | |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 727 | Runtime* runtime_; |
| 728 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 729 | RuntimeStats stats_; |
Ian Rogers | 45a76cb | 2011-07-21 22:00:15 -0700 | [diff] [blame] | 730 | |
Elliott Hughes | edcc09c | 2011-08-21 18:47:05 -0700 | [diff] [blame] | 731 | // Needed to get the right ClassLoader in JNI_OnLoad, but also |
| 732 | // useful for testing. |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 733 | ClassLoader* class_loader_override_; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 734 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 735 | // Thread local, lazily allocated, long jump context. Used to deliver exceptions. |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 736 | Context* long_jump_context_; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 737 | |
Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 738 | // A boolean telling us whether we're recursively throwing OOME. |
Elliott Hughes | 5d96a71 | 2012-06-28 12:24:27 -0700 | [diff] [blame] | 739 | bool32_t throwing_OutOfMemoryError_; |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 740 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 741 | // How much of 'suspend_count_' is by request of the debugger, used to set things right |
| 742 | // when the debugger detaches. Must be <= suspend_count_. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 743 | int debug_suspend_count_ GUARDED_BY(GlobalSynchronization::thread_suspend_count_lock_); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 744 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 745 | // JDWP invoke-during-breakpoint support. |
| 746 | DebugInvokeReq* debug_invoke_req_; |
| 747 | |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 748 | // Additional stack used by method tracer to store method and return pc values. |
| 749 | // Stored as a pointer since std::vector is not PACKED. |
| 750 | std::vector<TraceStackFrame>* trace_stack_; |
| 751 | |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 752 | // A cached copy of the java.lang.Thread's name. |
| 753 | std::string* name_; |
| 754 | |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 755 | // Is the thread a daemon? |
Elliott Hughes | 5d96a71 | 2012-06-28 12:24:27 -0700 | [diff] [blame] | 756 | const bool32_t daemon_; |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 757 | |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 758 | // A cached pthread_t for the pthread underlying this Thread*. |
| 759 | pthread_t pthread_self_; |
| 760 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame^] | 761 | // Support for Mutex lock hierarchy bug detection. |
| 762 | BaseMutex* held_mutexes_[kMaxMutexLevel + 1]; |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 763 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 764 | // A positive value implies we're in a region where thread suspension isn't expected. |
| 765 | uint32_t no_thread_suspension_; |
Ian Rogers | 52673ff | 2012-06-27 23:25:34 -0700 | [diff] [blame] | 766 | |
| 767 | // Cause for last suspension. |
| 768 | const char* last_no_thread_suspension_cause_; |
Elliott Hughes | 5d96a71 | 2012-06-28 12:24:27 -0700 | [diff] [blame] | 769 | |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 770 | public: |
| 771 | // Runtime support function pointers |
Elliott Hughes | 6a607ad | 2012-07-13 20:40:00 -0700 | [diff] [blame] | 772 | // TODO: move this near the top, since changing its offset requires all oats to be recompiled! |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 773 | EntryPoints entrypoints_; |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 774 | |
| 775 | private: |
Elliott Hughes | 6a607ad | 2012-07-13 20:40:00 -0700 | [diff] [blame] | 776 | // How many times has our pthread key's destructor been called? |
| 777 | uint32_t thread_exit_check_count_; |
| 778 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 779 | DISALLOW_COPY_AND_ASSIGN(Thread); |
| 780 | }; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 781 | |
Elliott Hughes | 330304d | 2011-08-12 14:28:05 -0700 | [diff] [blame] | 782 | std::ostream& operator<<(std::ostream& os, const Thread& thread); |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 783 | std::ostream& operator<<(std::ostream& os, const ThreadState& state); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 784 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 785 | } // namespace art |
| 786 | |
| 787 | #endif // ART_SRC_THREAD_H_ |