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 | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 16 | |
Mathieu Chartier | 752a0e6 | 2013-06-27 11:03:27 -0700 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_DALVIK |
| 18 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 19 | #include "thread.h" |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 20 | |
Mathieu Chartier | 752a0e6 | 2013-06-27 11:03:27 -0700 | [diff] [blame] | 21 | #include <cutils/trace.h> |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 22 | #include <pthread.h> |
Elliott Hughes | 2acf36d | 2012-04-17 13:30:13 -0700 | [diff] [blame] | 23 | #include <signal.h> |
Brian Carlstrom | dbf05b7 | 2011-12-15 00:55:24 -0800 | [diff] [blame] | 24 | #include <sys/resource.h> |
| 25 | #include <sys/time.h> |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 26 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 27 | #include <algorithm> |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 28 | #include <bitset> |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 29 | #include <cerrno> |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 30 | #include <iostream> |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 31 | #include <list> |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 32 | #include <sstream> |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 33 | |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 34 | #include "arch/context.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 35 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 36 | #include "art_method-inl.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 37 | #include "base/bit_utils.h" |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 38 | #include "base/memory_tool.h" |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 39 | #include "base/mutex.h" |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 40 | #include "base/timing_logger.h" |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 41 | #include "base/to_str.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 42 | #include "class_linker-inl.h" |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 43 | #include "debugger.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 44 | #include "dex_file-inl.h" |
Ian Rogers | 7655f29 | 2013-07-29 11:07:13 -0700 | [diff] [blame] | 45 | #include "entrypoints/entrypoint_utils.h" |
Mathieu Chartier | d889178 | 2014-03-02 13:28:37 -0800 | [diff] [blame] | 46 | #include "entrypoints/quick/quick_alloc_entrypoints.h" |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 47 | #include "gc_map.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 48 | #include "gc/accounting/card_table-inl.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 49 | #include "gc/allocator/rosalloc.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 50 | #include "gc/heap.h" |
| 51 | #include "gc/space/space.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 52 | #include "handle_scope-inl.h" |
Mathieu Chartier | c56057e | 2014-05-04 13:18:58 -0700 | [diff] [blame] | 53 | #include "indirect_reference_table-inl.h" |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 54 | #include "jni_internal.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 55 | #include "mirror/class_loader.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 56 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 57 | #include "mirror/object_array-inl.h" |
| 58 | #include "mirror/stack_trace_element.h" |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 59 | #include "monitor.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 60 | #include "object_lock.h" |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 61 | #include "quick_exception_handler.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 62 | #include "quick/quick_method_frame_info.h" |
Jesse Wilson | 9a6bae8 | 2011-11-14 14:57:30 -0500 | [diff] [blame] | 63 | #include "reflection.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 64 | #include "runtime.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 65 | #include "scoped_thread_state_change.h" |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 66 | #include "ScopedLocalRef.h" |
Anwar Ghuloum | 3c539ff | 2013-06-20 08:58:23 -0700 | [diff] [blame] | 67 | #include "ScopedUtfChars.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 68 | #include "stack.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 69 | #include "thread_list.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 70 | #include "thread-inl.h" |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 71 | #include "utils.h" |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 72 | #include "verifier/dex_gc_map.h" |
Mathieu Chartier | 12d625f | 2015-03-13 11:33:37 -0700 | [diff] [blame] | 73 | #include "verifier/method_verifier.h" |
Mathieu Chartier | 4e30541 | 2014-02-19 10:54:44 -0800 | [diff] [blame] | 74 | #include "verify_object-inl.h" |
Ian Rogers | 1809a72 | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 75 | #include "vmap_table.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 76 | #include "well_known_classes.h" |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 77 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 78 | #if ART_USE_FUTEXES |
| 79 | #include "linux/futex.h" |
| 80 | #include "sys/syscall.h" |
| 81 | #ifndef SYS_futex |
| 82 | #define SYS_futex __NR_futex |
| 83 | #endif |
| 84 | #endif // ART_USE_FUTEXES |
| 85 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 86 | namespace art { |
| 87 | |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 88 | bool Thread::is_started_ = false; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 89 | pthread_key_t Thread::pthread_key_self_; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 90 | ConditionVariable* Thread::resume_cond_ = nullptr; |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 91 | const size_t Thread::kStackOverflowImplicitCheckSize = GetStackOverflowReservedBytes(kRuntimeISA); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 92 | |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 93 | // For implicit overflow checks we reserve an extra piece of memory at the bottom |
| 94 | // of the stack (lowest memory). The higher portion of the memory |
| 95 | // is protected against reads and the lower is available for use while |
| 96 | // throwing the StackOverflow exception. |
| 97 | constexpr size_t kStackOverflowProtectedSize = 4 * kMemoryToolStackGuardSizeScale * KB; |
| 98 | |
Elliott Hughes | 7dc5166 | 2012-05-16 14:48:43 -0700 | [diff] [blame] | 99 | static const char* kThreadNameDuringStartup = "<native thread without managed peer>"; |
| 100 | |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 101 | void Thread::InitCardTable() { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 102 | tlsPtr_.card_table = Runtime::Current()->GetHeap()->GetCardTable()->GetBiasedBegin(); |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Elliott Hughes | 3ea0f42 | 2012-04-16 17:01:43 -0700 | [diff] [blame] | 105 | static void UnimplementedEntryPoint() { |
| 106 | UNIMPLEMENTED(FATAL); |
| 107 | } |
| 108 | |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 109 | void InitEntryPoints(InterpreterEntryPoints* ipoints, JniEntryPoints* jpoints, |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 110 | QuickEntryPoints* qpoints); |
Ian Rogers | 7655f29 | 2013-07-29 11:07:13 -0700 | [diff] [blame] | 111 | |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 112 | void Thread::InitTlsEntryPoints() { |
Elliott Hughes | 3ea0f42 | 2012-04-16 17:01:43 -0700 | [diff] [blame] | 113 | // Insert a placeholder so we can easily tell if we call an unimplemented entry point. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 114 | uintptr_t* begin = reinterpret_cast<uintptr_t*>(&tlsPtr_.interpreter_entrypoints); |
Xingxing Pan | acbb308 | 2014-10-16 13:41:58 +0800 | [diff] [blame] | 115 | uintptr_t* end = reinterpret_cast<uintptr_t*>(reinterpret_cast<uint8_t*>(&tlsPtr_.quick_entrypoints) + |
| 116 | sizeof(tlsPtr_.quick_entrypoints)); |
Ian Rogers | 7655f29 | 2013-07-29 11:07:13 -0700 | [diff] [blame] | 117 | for (uintptr_t* it = begin; it != end; ++it) { |
| 118 | *it = reinterpret_cast<uintptr_t>(UnimplementedEntryPoint); |
| 119 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 120 | InitEntryPoints(&tlsPtr_.interpreter_entrypoints, &tlsPtr_.jni_entrypoints, |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 121 | &tlsPtr_.quick_entrypoints); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 124 | void Thread::InitStringEntryPoints() { |
| 125 | ScopedObjectAccess soa(this); |
| 126 | QuickEntryPoints* qpoints = &tlsPtr_.quick_entrypoints; |
| 127 | qpoints->pNewEmptyString = reinterpret_cast<void(*)()>( |
| 128 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newEmptyString)); |
| 129 | qpoints->pNewStringFromBytes_B = reinterpret_cast<void(*)()>( |
| 130 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_B)); |
| 131 | qpoints->pNewStringFromBytes_BI = reinterpret_cast<void(*)()>( |
| 132 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BI)); |
| 133 | qpoints->pNewStringFromBytes_BII = reinterpret_cast<void(*)()>( |
| 134 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BII)); |
| 135 | qpoints->pNewStringFromBytes_BIII = reinterpret_cast<void(*)()>( |
| 136 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BIII)); |
| 137 | qpoints->pNewStringFromBytes_BIIString = reinterpret_cast<void(*)()>( |
| 138 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BIIString)); |
| 139 | qpoints->pNewStringFromBytes_BString = reinterpret_cast<void(*)()>( |
| 140 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BString)); |
| 141 | qpoints->pNewStringFromBytes_BIICharset = reinterpret_cast<void(*)()>( |
| 142 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BIICharset)); |
| 143 | qpoints->pNewStringFromBytes_BCharset = reinterpret_cast<void(*)()>( |
| 144 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromBytes_BCharset)); |
| 145 | qpoints->pNewStringFromChars_C = reinterpret_cast<void(*)()>( |
| 146 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromChars_C)); |
| 147 | qpoints->pNewStringFromChars_CII = reinterpret_cast<void(*)()>( |
| 148 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromChars_CII)); |
| 149 | qpoints->pNewStringFromChars_IIC = reinterpret_cast<void(*)()>( |
| 150 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromChars_IIC)); |
| 151 | qpoints->pNewStringFromCodePoints = reinterpret_cast<void(*)()>( |
| 152 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromCodePoints)); |
| 153 | qpoints->pNewStringFromString = reinterpret_cast<void(*)()>( |
| 154 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromString)); |
| 155 | qpoints->pNewStringFromStringBuffer = reinterpret_cast<void(*)()>( |
| 156 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromStringBuffer)); |
| 157 | qpoints->pNewStringFromStringBuilder = reinterpret_cast<void(*)()>( |
| 158 | soa.DecodeMethod(WellKnownClasses::java_lang_StringFactory_newStringFromStringBuilder)); |
| 159 | } |
| 160 | |
Hiroshi Yamauchi | 3b4c189 | 2013-09-12 21:33:12 -0700 | [diff] [blame] | 161 | void Thread::ResetQuickAllocEntryPointsForThread() { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 162 | ResetQuickAllocEntryPoints(&tlsPtr_.quick_entrypoints); |
Hiroshi Yamauchi | 3b4c189 | 2013-09-12 21:33:12 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 165 | class DeoptimizationContextRecord { |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 166 | public: |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 167 | DeoptimizationContextRecord(const JValue& ret_val, bool is_reference, |
| 168 | mirror::Throwable* pending_exception, |
| 169 | DeoptimizationContextRecord* link) |
| 170 | : ret_val_(ret_val), is_reference_(is_reference), pending_exception_(pending_exception), |
| 171 | link_(link) {} |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 172 | |
| 173 | JValue GetReturnValue() const { return ret_val_; } |
| 174 | bool IsReference() const { return is_reference_; } |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 175 | mirror::Throwable* GetPendingException() const { return pending_exception_; } |
| 176 | DeoptimizationContextRecord* GetLink() const { return link_; } |
| 177 | mirror::Object** GetReturnValueAsGCRoot() { |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 178 | DCHECK(is_reference_); |
| 179 | return ret_val_.GetGCRoot(); |
| 180 | } |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 181 | mirror::Object** GetPendingExceptionAsGCRoot() { |
| 182 | return reinterpret_cast<mirror::Object**>(&pending_exception_); |
| 183 | } |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 184 | |
| 185 | private: |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 186 | // The value returned by the method at the top of the stack before deoptimization. |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 187 | JValue ret_val_; |
Sebastien Hertz | 54b6248 | 2015-08-20 12:07:57 +0200 | [diff] [blame] | 188 | |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 189 | // Indicates whether the returned value is a reference. If so, the GC will visit it. |
| 190 | const bool is_reference_; |
| 191 | |
| 192 | // The exception that was pending before deoptimization (or null if there was no pending |
| 193 | // exception). |
| 194 | mirror::Throwable* pending_exception_; |
| 195 | |
| 196 | // A link to the previous DeoptimizationContextRecord. |
| 197 | DeoptimizationContextRecord* const link_; |
| 198 | |
| 199 | DISALLOW_COPY_AND_ASSIGN(DeoptimizationContextRecord); |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 200 | }; |
| 201 | |
| 202 | class StackedShadowFrameRecord { |
| 203 | public: |
| 204 | StackedShadowFrameRecord(ShadowFrame* shadow_frame, |
| 205 | StackedShadowFrameType type, |
| 206 | StackedShadowFrameRecord* link) |
| 207 | : shadow_frame_(shadow_frame), |
| 208 | type_(type), |
| 209 | link_(link) {} |
| 210 | |
| 211 | ShadowFrame* GetShadowFrame() const { return shadow_frame_; } |
| 212 | StackedShadowFrameType GetType() const { return type_; } |
| 213 | StackedShadowFrameRecord* GetLink() const { return link_; } |
| 214 | |
| 215 | private: |
| 216 | ShadowFrame* const shadow_frame_; |
| 217 | const StackedShadowFrameType type_; |
| 218 | StackedShadowFrameRecord* const link_; |
| 219 | |
| 220 | DISALLOW_COPY_AND_ASSIGN(StackedShadowFrameRecord); |
| 221 | }; |
| 222 | |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 223 | void Thread::PushDeoptimizationContext(const JValue& return_value, bool is_reference, |
| 224 | mirror::Throwable* exception) { |
| 225 | DeoptimizationContextRecord* record = new DeoptimizationContextRecord( |
| 226 | return_value, |
| 227 | is_reference, |
| 228 | exception, |
| 229 | tlsPtr_.deoptimization_context_stack); |
| 230 | tlsPtr_.deoptimization_context_stack = record; |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 233 | void Thread::PopDeoptimizationContext(JValue* result, mirror::Throwable** exception) { |
| 234 | AssertHasDeoptimizationContext(); |
| 235 | DeoptimizationContextRecord* record = tlsPtr_.deoptimization_context_stack; |
| 236 | tlsPtr_.deoptimization_context_stack = record->GetLink(); |
| 237 | result->SetJ(record->GetReturnValue().GetJ()); |
| 238 | *exception = record->GetPendingException(); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 239 | delete record; |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | void Thread::AssertHasDeoptimizationContext() { |
| 243 | CHECK(tlsPtr_.deoptimization_context_stack != nullptr) |
| 244 | << "No deoptimization context for thread " << *this; |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 245 | } |
| 246 | |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 247 | void Thread::PushStackedShadowFrame(ShadowFrame* sf, StackedShadowFrameType type) { |
| 248 | StackedShadowFrameRecord* record = new StackedShadowFrameRecord( |
| 249 | sf, type, tlsPtr_.stacked_shadow_frame_record); |
| 250 | tlsPtr_.stacked_shadow_frame_record = record; |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 251 | } |
| 252 | |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 253 | ShadowFrame* Thread::PopStackedShadowFrame(StackedShadowFrameType type) { |
| 254 | StackedShadowFrameRecord* record = tlsPtr_.stacked_shadow_frame_record; |
| 255 | DCHECK(record != nullptr); |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 256 | DCHECK_EQ(record->GetType(), type); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 257 | tlsPtr_.stacked_shadow_frame_record = record->GetLink(); |
| 258 | ShadowFrame* shadow_frame = record->GetShadowFrame(); |
| 259 | delete record; |
| 260 | return shadow_frame; |
Andreas Gampe | 2a0d4ec | 2014-06-02 22:05:22 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 263 | void Thread::InitTid() { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 264 | tls32_.tid = ::art::GetTid(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 267 | void Thread::InitAfterFork() { |
Elliott Hughes | 8029cbe | 2012-05-22 09:13:08 -0700 | [diff] [blame] | 268 | // One thread (us) survived the fork, but we have a new tid so we need to |
| 269 | // update the value stashed in this Thread*. |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 270 | InitTid(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 273 | void* Thread::CreateCallback(void* arg) { |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 274 | Thread* self = reinterpret_cast<Thread*>(arg); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 275 | Runtime* runtime = Runtime::Current(); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 276 | if (runtime == nullptr) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 277 | LOG(ERROR) << "Thread attaching to non-existent runtime: " << *self; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 278 | return nullptr; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 279 | } |
| 280 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 281 | // TODO: pass self to MutexLock - requires self to equal Thread::Current(), which is only true |
| 282 | // after self->Init(). |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 283 | MutexLock mu(nullptr, *Locks::runtime_shutdown_lock_); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 284 | // Check that if we got here we cannot be shutting down (as shutdown should never have started |
| 285 | // while threads are being born). |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 286 | CHECK(!runtime->IsShuttingDownLocked()); |
Andreas Gampe | 449357d | 2015-06-01 22:29:51 -0700 | [diff] [blame] | 287 | // Note: given that the JNIEnv is created in the parent thread, the only failure point here is |
| 288 | // a mess in InitStackHwm. We do not have a reasonable way to recover from that, so abort |
| 289 | // the runtime in such a case. In case this ever changes, we need to make sure here to |
| 290 | // delete the tmp_jni_env, as we own it at this point. |
| 291 | CHECK(self->Init(runtime->GetThreadList(), runtime->GetJavaVM(), self->tlsPtr_.tmp_jni_env)); |
| 292 | self->tlsPtr_.tmp_jni_env = nullptr; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 293 | Runtime::Current()->EndThreadBirth(); |
| 294 | } |
Elliott Hughes | 47179f7 | 2011-10-27 16:44:39 -0700 | [diff] [blame] | 295 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 296 | ScopedObjectAccess soa(self); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 297 | self->InitStringEntryPoints(); |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 298 | |
| 299 | // Copy peer into self, deleting global reference when done. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 300 | CHECK(self->tlsPtr_.jpeer != nullptr); |
| 301 | self->tlsPtr_.opeer = soa.Decode<mirror::Object*>(self->tlsPtr_.jpeer); |
| 302 | self->GetJniEnv()->DeleteGlobalRef(self->tlsPtr_.jpeer); |
| 303 | self->tlsPtr_.jpeer = nullptr; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 304 | self->SetThreadName(self->GetThreadName(soa)->ToModifiedUtf8().c_str()); |
Narayan Kamath | a0b3451 | 2014-10-07 12:51:26 +0100 | [diff] [blame] | 305 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 306 | ArtField* priorityField = soa.DecodeField(WellKnownClasses::java_lang_Thread_priority); |
Narayan Kamath | a0b3451 | 2014-10-07 12:51:26 +0100 | [diff] [blame] | 307 | self->SetNativePriority(priorityField->GetInt(self->tlsPtr_.opeer)); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 308 | Dbg::PostThreadStart(self); |
| 309 | |
| 310 | // Invoke the 'run' method of our java.lang.Thread. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 311 | mirror::Object* receiver = self->tlsPtr_.opeer; |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 312 | jmethodID mid = WellKnownClasses::java_lang_Thread_run; |
Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 313 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(receiver)); |
| 314 | InvokeVirtualOrInterfaceWithJValues(soa, ref.get(), mid, nullptr); |
Elliott Hughes | 47179f7 | 2011-10-27 16:44:39 -0700 | [diff] [blame] | 315 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 316 | // Detach and delete self. |
| 317 | Runtime::Current()->GetThreadList()->Unregister(self); |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 318 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 319 | return nullptr; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 322 | Thread* Thread::FromManagedThread(const ScopedObjectAccessAlreadyRunnable& soa, |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 323 | mirror::Object* thread_peer) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 324 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_nativePeer); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 325 | Thread* result = reinterpret_cast<Thread*>(static_cast<uintptr_t>(f->GetLong(thread_peer))); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 326 | // Sanity check that if we have a result it is either suspended or we hold the thread_list_lock_ |
| 327 | // to stop it from going away. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 328 | if (kIsDebugBuild) { |
| 329 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 330 | if (result != nullptr && !result->IsSuspended()) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 331 | Locks::thread_list_lock_->AssertHeld(soa.Self()); |
| 332 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 333 | } |
| 334 | return result; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 335 | } |
| 336 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 337 | Thread* Thread::FromManagedThread(const ScopedObjectAccessAlreadyRunnable& soa, |
| 338 | jobject java_thread) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 339 | return FromManagedThread(soa, soa.Decode<mirror::Object*>(java_thread)); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 340 | } |
| 341 | |
Elliott Hughes | ab7b9dc | 2012-03-27 13:16:29 -0700 | [diff] [blame] | 342 | static size_t FixStackSize(size_t stack_size) { |
Elliott Hughes | 7502e2a | 2011-10-02 13:24:37 -0700 | [diff] [blame] | 343 | // A stack size of zero means "use the default". |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 344 | if (stack_size == 0) { |
| 345 | stack_size = Runtime::Current()->GetDefaultStackSize(); |
| 346 | } |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 347 | |
Brian Carlstrom | 6414a97 | 2012-04-14 14:20:04 -0700 | [diff] [blame] | 348 | // Dalvik used the bionic pthread default stack size for native threads, |
| 349 | // so include that here to support apps that expect large native stacks. |
| 350 | stack_size += 1 * MB; |
| 351 | |
Elliott Hughes | 7502e2a | 2011-10-02 13:24:37 -0700 | [diff] [blame] | 352 | // It's not possible to request a stack smaller than the system-defined PTHREAD_STACK_MIN. |
| 353 | if (stack_size < PTHREAD_STACK_MIN) { |
| 354 | stack_size = PTHREAD_STACK_MIN; |
| 355 | } |
| 356 | |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 357 | if (Runtime::Current()->ExplicitStackOverflowChecks()) { |
| 358 | // It's likely that callers are trying to ensure they have at least a certain amount of |
| 359 | // stack space, so we should add our reserved space on top of what they requested, rather |
| 360 | // than implicitly take it away from them. |
Andreas Gampe | 7ea6f79 | 2014-07-14 16:21:44 -0700 | [diff] [blame] | 361 | stack_size += GetStackOverflowReservedBytes(kRuntimeISA); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 362 | } else { |
| 363 | // If we are going to use implicit stack checks, allocate space for the protected |
| 364 | // region at the bottom of the stack. |
Dave Allison | b090a18 | 2014-08-14 17:02:48 +0000 | [diff] [blame] | 365 | stack_size += Thread::kStackOverflowImplicitCheckSize + |
| 366 | GetStackOverflowReservedBytes(kRuntimeISA); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 367 | } |
Elliott Hughes | 7502e2a | 2011-10-02 13:24:37 -0700 | [diff] [blame] | 368 | |
| 369 | // Some systems require the stack size to be a multiple of the system page size, so round up. |
| 370 | stack_size = RoundUp(stack_size, kPageSize); |
| 371 | |
| 372 | return stack_size; |
| 373 | } |
| 374 | |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 375 | // Global variable to prevent the compiler optimizing away the page reads for the stack. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 376 | uint8_t dont_optimize_this; |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 377 | |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 378 | // Install a protected region in the stack. This is used to trigger a SIGSEGV if a stack |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 379 | // overflow is detected. It is located right below the stack_begin_. |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 380 | // |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 381 | // There is a little complexity here that deserves a special mention. On some |
| 382 | // architectures, the stack created using a VM_GROWSDOWN flag |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 383 | // to prevent memory being allocated when it's not needed. This flag makes the |
| 384 | // kernel only allocate memory for the stack by growing down in memory. Because we |
| 385 | // want to put an mprotected region far away from that at the stack top, we need |
| 386 | // to make sure the pages for the stack are mapped in before we call mprotect. We do |
| 387 | // this by reading every page from the stack bottom (highest address) to the stack top. |
| 388 | // We then madvise this away. |
Evgenii Stepanov | 4abf451 | 2015-07-13 10:41:57 -0700 | [diff] [blame] | 389 | |
| 390 | // AddressSanitizer does not like the part of this functions that reads every stack page. |
| 391 | // Looks a lot like an out-of-bounds access. |
| 392 | ATTRIBUTE_NO_SANITIZE_ADDRESS |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 393 | void Thread::InstallImplicitProtection() { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 394 | uint8_t* pregion = tlsPtr_.stack_begin - kStackOverflowProtectedSize; |
| 395 | uint8_t* stack_himem = tlsPtr_.stack_end; |
| 396 | uint8_t* stack_top = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(&stack_himem) & |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 397 | ~(kPageSize - 1)); // Page containing current top of stack. |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 398 | |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 399 | // First remove the protection on the protected region as will want to read and |
| 400 | // write it. This may fail (on the first attempt when the stack is not mapped) |
| 401 | // but we ignore that. |
| 402 | UnprotectStack(); |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 403 | |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 404 | // Map in the stack. This must be done by reading from the |
| 405 | // current stack pointer downwards as the stack may be mapped using VM_GROWSDOWN |
| 406 | // in the kernel. Any access more than a page below the current SP might cause |
| 407 | // a segv. |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 408 | |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 409 | // Read every page from the high address to the low. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 410 | for (uint8_t* p = stack_top; p >= pregion; p -= kPageSize) { |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 411 | dont_optimize_this = *p; |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 414 | VLOG(threads) << "installing stack protected region at " << std::hex << |
| 415 | static_cast<void*>(pregion) << " to " << |
| 416 | static_cast<void*>(pregion + kStackOverflowProtectedSize - 1); |
| 417 | |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 418 | // Protect the bottom of the stack to prevent read/write to it. |
| 419 | ProtectStack(); |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 420 | |
| 421 | // Tell the kernel that we won't be needing these pages any more. |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 422 | // NB. madvise will probably write zeroes into the memory (on linux it does). |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 423 | uint32_t unwanted_size = stack_top - pregion - kPageSize; |
| 424 | madvise(pregion, unwanted_size, MADV_DONTNEED); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 425 | } |
| 426 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 427 | void Thread::CreateNativeThread(JNIEnv* env, jobject java_peer, size_t stack_size, bool is_daemon) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 428 | CHECK(java_peer != nullptr); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 429 | Thread* self = static_cast<JNIEnvExt*>(env)->self; |
Andreas Gampe | 5662383 | 2015-07-09 21:53:15 -0700 | [diff] [blame] | 430 | |
| 431 | if (VLOG_IS_ON(threads)) { |
| 432 | ScopedObjectAccess soa(env); |
| 433 | |
| 434 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_name); |
| 435 | mirror::String* java_name = reinterpret_cast<mirror::String*>(f->GetObject( |
| 436 | soa.Decode<mirror::Object*>(java_peer))); |
| 437 | std::string thread_name; |
| 438 | if (java_name != nullptr) { |
| 439 | thread_name = java_name->ToModifiedUtf8(); |
| 440 | } else { |
| 441 | thread_name = "(Unnamed)"; |
| 442 | } |
| 443 | |
| 444 | VLOG(threads) << "Creating native thread for " << thread_name; |
| 445 | self->Dump(LOG(INFO)); |
| 446 | } |
| 447 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 448 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 449 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 450 | // Atomically start the birth of the thread ensuring the runtime isn't shutting down. |
| 451 | bool thread_start_during_shutdown = false; |
Elliott Hughes | 47179f7 | 2011-10-27 16:44:39 -0700 | [diff] [blame] | 452 | { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 453 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 454 | if (runtime->IsShuttingDownLocked()) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 455 | thread_start_during_shutdown = true; |
| 456 | } else { |
| 457 | runtime->StartThreadBirth(); |
| 458 | } |
Elliott Hughes | 47179f7 | 2011-10-27 16:44:39 -0700 | [diff] [blame] | 459 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 460 | if (thread_start_during_shutdown) { |
| 461 | ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/InternalError")); |
| 462 | env->ThrowNew(error_class.get(), "Thread starting during runtime shutdown"); |
| 463 | return; |
| 464 | } |
| 465 | |
| 466 | Thread* child_thread = new Thread(is_daemon); |
| 467 | // Use global JNI ref to hold peer live while child thread starts. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 468 | child_thread->tlsPtr_.jpeer = env->NewGlobalRef(java_peer); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 469 | stack_size = FixStackSize(stack_size); |
| 470 | |
Anwar Ghuloum | 3c50a4b | 2013-06-21 13:05:23 -0700 | [diff] [blame] | 471 | // Thread.start is synchronized, so we know that nativePeer is 0, and know that we're not racing to |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 472 | // assign it. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 473 | env->SetLongField(java_peer, WellKnownClasses::java_lang_Thread_nativePeer, |
| 474 | reinterpret_cast<jlong>(child_thread)); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 475 | |
Andreas Gampe | 449357d | 2015-06-01 22:29:51 -0700 | [diff] [blame] | 476 | // Try to allocate a JNIEnvExt for the thread. We do this here as we might be out of memory and |
| 477 | // do not have a good way to report this on the child's side. |
| 478 | std::unique_ptr<JNIEnvExt> child_jni_env_ext( |
| 479 | JNIEnvExt::Create(child_thread, Runtime::Current()->GetJavaVM())); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 480 | |
Andreas Gampe | 449357d | 2015-06-01 22:29:51 -0700 | [diff] [blame] | 481 | int pthread_create_result = 0; |
| 482 | if (child_jni_env_ext.get() != nullptr) { |
| 483 | pthread_t new_pthread; |
| 484 | pthread_attr_t attr; |
| 485 | child_thread->tlsPtr_.tmp_jni_env = child_jni_env_ext.get(); |
| 486 | CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread"); |
| 487 | CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), |
| 488 | "PTHREAD_CREATE_DETACHED"); |
| 489 | CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size); |
| 490 | pthread_create_result = pthread_create(&new_pthread, |
| 491 | &attr, |
| 492 | Thread::CreateCallback, |
| 493 | child_thread); |
| 494 | CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread"); |
| 495 | |
| 496 | if (pthread_create_result == 0) { |
| 497 | // pthread_create started the new thread. The child is now responsible for managing the |
| 498 | // JNIEnvExt we created. |
| 499 | // Note: we can't check for tmp_jni_env == nullptr, as that would require synchronization |
| 500 | // between the threads. |
| 501 | child_jni_env_ext.release(); |
| 502 | return; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 503 | } |
Andreas Gampe | 449357d | 2015-06-01 22:29:51 -0700 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | // Either JNIEnvExt::Create or pthread_create(3) failed, so clean up. |
| 507 | { |
| 508 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| 509 | runtime->EndThreadBirth(); |
| 510 | } |
| 511 | // Manually delete the global reference since Thread::Init will not have been run. |
| 512 | env->DeleteGlobalRef(child_thread->tlsPtr_.jpeer); |
| 513 | child_thread->tlsPtr_.jpeer = nullptr; |
| 514 | delete child_thread; |
| 515 | child_thread = nullptr; |
| 516 | // TODO: remove from thread group? |
| 517 | env->SetLongField(java_peer, WellKnownClasses::java_lang_Thread_nativePeer, 0); |
| 518 | { |
| 519 | std::string msg(child_jni_env_ext.get() == nullptr ? |
| 520 | "Could not allocate JNI Env" : |
| 521 | StringPrintf("pthread_create (%s stack) failed: %s", |
| 522 | PrettySize(stack_size).c_str(), strerror(pthread_create_result))); |
| 523 | ScopedObjectAccess soa(env); |
| 524 | soa.Self()->ThrowOutOfMemoryError(msg.c_str()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 525 | } |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Andreas Gampe | 449357d | 2015-06-01 22:29:51 -0700 | [diff] [blame] | 528 | bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_env_ext) { |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 529 | // This function does all the initialization that must be run by the native thread it applies to. |
| 530 | // (When we create a new thread from managed code, we allocate the Thread* in Thread::Create so |
| 531 | // we can handshake with the corresponding native thread when it's ready.) Check this native |
| 532 | // thread hasn't been through here already... |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 533 | CHECK(Thread::Current() == nullptr); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 534 | |
| 535 | // Set pthread_self_ ahead of pthread_setspecific, that makes Thread::Current function, this |
| 536 | // avoids pthread_self_ ever being invalid when discovered from Thread::Current(). |
| 537 | tlsPtr_.pthread_self = pthread_self(); |
| 538 | CHECK(is_started_); |
| 539 | |
Elliott Hughes | d8af159 | 2012-04-16 20:40:15 -0700 | [diff] [blame] | 540 | SetUpAlternateSignalStack(); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 541 | if (!InitStackHwm()) { |
| 542 | return false; |
| 543 | } |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 544 | InitCpu(); |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 545 | InitTlsEntryPoints(); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 546 | RemoveSuspendTrigger(); |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 547 | InitCardTable(); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 548 | InitTid(); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 549 | |
Andreas Gampe | 4382f1e | 2015-08-05 01:08:53 +0000 | [diff] [blame] | 550 | #ifdef __ANDROID__ |
| 551 | __get_tls()[TLS_SLOT_ART_THREAD_SELF] = this; |
| 552 | #else |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 553 | CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self"); |
Andreas Gampe | 4382f1e | 2015-08-05 01:08:53 +0000 | [diff] [blame] | 554 | #endif |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 555 | DCHECK_EQ(Thread::Current(), this); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 556 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 557 | tls32_.thin_lock_thread_id = thread_list->AllocThreadId(this); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 558 | |
Andreas Gampe | 449357d | 2015-06-01 22:29:51 -0700 | [diff] [blame] | 559 | if (jni_env_ext != nullptr) { |
| 560 | DCHECK_EQ(jni_env_ext->vm, java_vm); |
| 561 | DCHECK_EQ(jni_env_ext->self, this); |
| 562 | tlsPtr_.jni_env = jni_env_ext; |
| 563 | } else { |
| 564 | tlsPtr_.jni_env = JNIEnvExt::Create(this, java_vm); |
| 565 | if (tlsPtr_.jni_env == nullptr) { |
| 566 | return false; |
| 567 | } |
Andreas Gampe | 3f5881f | 2015-04-08 10:26:16 -0700 | [diff] [blame] | 568 | } |
| 569 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 570 | thread_list->Register(this); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 571 | return true; |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 572 | } |
| 573 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 574 | Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_group, |
| 575 | bool create_peer) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 576 | Runtime* runtime = Runtime::Current(); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 577 | if (runtime == nullptr) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 578 | LOG(ERROR) << "Thread attaching to non-existent runtime: " << thread_name; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 579 | return nullptr; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 580 | } |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 581 | Thread* self; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 582 | { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 583 | MutexLock mu(nullptr, *Locks::runtime_shutdown_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 584 | if (runtime->IsShuttingDownLocked()) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 585 | LOG(ERROR) << "Thread attaching while runtime is shutting down: " << thread_name; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 586 | return nullptr; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 587 | } else { |
| 588 | Runtime::Current()->StartThreadBirth(); |
| 589 | self = new Thread(as_daemon); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 590 | bool init_success = self->Init(runtime->GetThreadList(), runtime->GetJavaVM()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 591 | Runtime::Current()->EndThreadBirth(); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 592 | if (!init_success) { |
| 593 | delete self; |
| 594 | return nullptr; |
| 595 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 596 | } |
| 597 | } |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 598 | |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 599 | self->InitStringEntryPoints(); |
| 600 | |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 601 | CHECK_NE(self->GetState(), kRunnable); |
| 602 | self->SetState(kNative); |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 603 | |
Elliott Hughes | cac6cc7 | 2011-11-03 20:31:21 -0700 | [diff] [blame] | 604 | // If we're the main thread, ClassLinker won't be created until after we're attached, |
| 605 | // so that thread needs a two-stage attach. Regular threads don't need this hack. |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 606 | // In the compiler, all threads need this hack, because no-one's going to be getting |
| 607 | // a native peer! |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 608 | if (create_peer) { |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 609 | self->CreatePeer(thread_name, as_daemon, thread_group); |
Elliott Hughes | 06e3ad4 | 2012-02-07 14:51:57 -0800 | [diff] [blame] | 610 | } else { |
| 611 | // These aren't necessary, but they improve diagnostics for unit tests & command-line tools. |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 612 | if (thread_name != nullptr) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 613 | self->tlsPtr_.name->assign(thread_name); |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 614 | ::art::SetThreadName(thread_name); |
Brian Carlstrom | 3ea69c0 | 2014-08-18 15:38:34 -0700 | [diff] [blame] | 615 | } else if (self->GetJniEnv()->check_jni) { |
| 616 | LOG(WARNING) << *Thread::Current() << " attached without supplying a name"; |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 617 | } |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 618 | } |
Elliott Hughes | cac6cc7 | 2011-11-03 20:31:21 -0700 | [diff] [blame] | 619 | |
Andreas Gampe | 5662383 | 2015-07-09 21:53:15 -0700 | [diff] [blame] | 620 | if (VLOG_IS_ON(threads)) { |
| 621 | if (thread_name != nullptr) { |
| 622 | VLOG(threads) << "Attaching thread " << thread_name; |
| 623 | } else { |
| 624 | VLOG(threads) << "Attaching unnamed thread."; |
| 625 | } |
| 626 | ScopedObjectAccess soa(self); |
| 627 | self->Dump(LOG(INFO)); |
| 628 | } |
| 629 | |
Daniel Mihalyi | dfafeef | 2014-10-20 11:47:56 +0200 | [diff] [blame] | 630 | { |
| 631 | ScopedObjectAccess soa(self); |
| 632 | Dbg::PostThreadStart(self); |
| 633 | } |
| 634 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 635 | return self; |
| 636 | } |
| 637 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 638 | void Thread::CreatePeer(const char* name, bool as_daemon, jobject thread_group) { |
| 639 | Runtime* runtime = Runtime::Current(); |
| 640 | CHECK(runtime->IsStarted()); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 641 | JNIEnv* env = tlsPtr_.jni_env; |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 642 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 643 | if (thread_group == nullptr) { |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 644 | thread_group = runtime->GetMainThreadGroup(); |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 645 | } |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 646 | ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name)); |
Mathieu Chartier | e07fd17 | 2014-11-10 16:58:19 -0800 | [diff] [blame] | 647 | // Add missing null check in case of OOM b/18297817 |
Vladimir Marko | 4451205 | 2014-11-12 15:41:57 +0000 | [diff] [blame] | 648 | if (name != nullptr && thread_name.get() == nullptr) { |
Mathieu Chartier | e07fd17 | 2014-11-10 16:58:19 -0800 | [diff] [blame] | 649 | CHECK(IsExceptionPending()); |
| 650 | return; |
| 651 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 652 | jint thread_priority = GetNativePriority(); |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 653 | jboolean thread_is_daemon = as_daemon; |
| 654 | |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 655 | ScopedLocalRef<jobject> peer(env, env->AllocObject(WellKnownClasses::java_lang_Thread)); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 656 | if (peer.get() == nullptr) { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 657 | CHECK(IsExceptionPending()); |
| 658 | return; |
Ian Rogers | 5d4bdc2 | 2011-11-02 22:15:43 -0700 | [diff] [blame] | 659 | } |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 660 | { |
| 661 | ScopedObjectAccess soa(this); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 662 | tlsPtr_.opeer = soa.Decode<mirror::Object*>(peer.get()); |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 663 | } |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 664 | env->CallNonvirtualVoidMethod(peer.get(), |
| 665 | WellKnownClasses::java_lang_Thread, |
| 666 | WellKnownClasses::java_lang_Thread_init, |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 667 | thread_group, thread_name.get(), thread_priority, thread_is_daemon); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 668 | AssertNoPendingException(); |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 669 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 670 | Thread* self = this; |
| 671 | DCHECK_EQ(self, Thread::Current()); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 672 | env->SetLongField(peer.get(), WellKnownClasses::java_lang_Thread_nativePeer, |
| 673 | reinterpret_cast<jlong>(self)); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 674 | |
| 675 | ScopedObjectAccess soa(self); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 676 | StackHandleScope<1> hs(self); |
Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 677 | MutableHandle<mirror::String> peer_thread_name(hs.NewHandle(GetThreadName(soa))); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 678 | if (peer_thread_name.Get() == nullptr) { |
Brian Carlstrom | 00fae58 | 2011-10-28 01:16:28 -0700 | [diff] [blame] | 679 | // The Thread constructor should have set the Thread.name to a |
| 680 | // non-null value. However, because we can run without code |
| 681 | // available (in the compiler, in tests), we manually assign the |
| 682 | // fields the constructor should have set. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 683 | if (runtime->IsActiveTransaction()) { |
| 684 | InitPeer<true>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority); |
| 685 | } else { |
| 686 | InitPeer<false>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority); |
| 687 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 688 | peer_thread_name.Assign(GetThreadName(soa)); |
Brian Carlstrom | 00fae58 | 2011-10-28 01:16:28 -0700 | [diff] [blame] | 689 | } |
Elliott Hughes | 225f5a1 | 2012-06-11 11:23:48 -0700 | [diff] [blame] | 690 | // 'thread_name' may have been null, so don't trust 'peer_thread_name' to be non-null. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 691 | if (peer_thread_name.Get() != nullptr) { |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 692 | SetThreadName(peer_thread_name->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 00fae58 | 2011-10-28 01:16:28 -0700 | [diff] [blame] | 693 | } |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 694 | } |
| 695 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 696 | template<bool kTransactionActive> |
| 697 | void Thread::InitPeer(ScopedObjectAccess& soa, jboolean thread_is_daemon, jobject thread_group, |
| 698 | jobject thread_name, jint thread_priority) { |
| 699 | soa.DecodeField(WellKnownClasses::java_lang_Thread_daemon)-> |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 700 | SetBoolean<kTransactionActive>(tlsPtr_.opeer, thread_is_daemon); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 701 | soa.DecodeField(WellKnownClasses::java_lang_Thread_group)-> |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 702 | SetObject<kTransactionActive>(tlsPtr_.opeer, soa.Decode<mirror::Object*>(thread_group)); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 703 | soa.DecodeField(WellKnownClasses::java_lang_Thread_name)-> |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 704 | SetObject<kTransactionActive>(tlsPtr_.opeer, soa.Decode<mirror::Object*>(thread_name)); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 705 | soa.DecodeField(WellKnownClasses::java_lang_Thread_priority)-> |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 706 | SetInt<kTransactionActive>(tlsPtr_.opeer, thread_priority); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 707 | } |
| 708 | |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 709 | void Thread::SetThreadName(const char* name) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 710 | tlsPtr_.name->assign(name); |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 711 | ::art::SetThreadName(name); |
| 712 | Dbg::DdmSendThreadNotification(this, CHUNK_TYPE("THNM")); |
| 713 | } |
| 714 | |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 715 | bool Thread::InitStackHwm() { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 716 | void* read_stack_base; |
| 717 | size_t read_stack_size; |
Elliott Hughes | 6d3fc56 | 2014-08-27 11:47:01 -0700 | [diff] [blame] | 718 | size_t read_guard_size; |
| 719 | GetThreadStack(tlsPtr_.pthread_self, &read_stack_base, &read_stack_size, &read_guard_size); |
Elliott Hughes | 36ecb78 | 2012-04-17 16:55:45 -0700 | [diff] [blame] | 720 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 721 | tlsPtr_.stack_begin = reinterpret_cast<uint8_t*>(read_stack_base); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 722 | tlsPtr_.stack_size = read_stack_size; |
Elliott Hughes | 36ecb78 | 2012-04-17 16:55:45 -0700 | [diff] [blame] | 723 | |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 724 | // The minimum stack size we can cope with is the overflow reserved bytes (typically |
| 725 | // 8K) + the protected region size (4K) + another page (4K). Typically this will |
| 726 | // be 8+4+4 = 16K. The thread won't be able to do much with this stack even the GC takes |
| 727 | // between 8K and 12K. |
| 728 | uint32_t min_stack = GetStackOverflowReservedBytes(kRuntimeISA) + kStackOverflowProtectedSize |
| 729 | + 4 * KB; |
| 730 | if (read_stack_size <= min_stack) { |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 731 | // Note, as we know the stack is small, avoid operations that could use a lot of stack. |
| 732 | LogMessage::LogLineLowStack(__PRETTY_FUNCTION__, __LINE__, ERROR, |
| 733 | "Attempt to attach a thread with a too-small stack"); |
| 734 | return false; |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 735 | } |
Elliott Hughes | 449b4bd | 2011-09-09 12:01:38 -0700 | [diff] [blame] | 736 | |
Vladimir Marko | b8f2f63 | 2015-01-02 14:23:26 +0000 | [diff] [blame] | 737 | // This is included in the SIGQUIT output, but it's useful here for thread debugging. |
| 738 | VLOG(threads) << StringPrintf("Native stack is at %p (%s with %s guard)", |
| 739 | read_stack_base, |
| 740 | PrettySize(read_stack_size).c_str(), |
| 741 | PrettySize(read_guard_size).c_str()); |
| 742 | |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 743 | // Set stack_end_ to the bottom of the stack saving space of stack overflows |
Mathieu Chartier | 8e219ae | 2014-08-19 14:29:46 -0700 | [diff] [blame] | 744 | |
| 745 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 746 | bool implicit_stack_check = !runtime->ExplicitStackOverflowChecks() && !runtime->IsAotCompiler(); |
Dave Allison | b090a18 | 2014-08-14 17:02:48 +0000 | [diff] [blame] | 747 | ResetDefaultStackEnd(); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 748 | |
| 749 | // Install the protected region if we are doing implicit overflow checks. |
| 750 | if (implicit_stack_check) { |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 751 | // The thread might have protected region at the bottom. We need |
| 752 | // to install our own region so we need to move the limits |
| 753 | // of the stack to make room for it. |
Dave Allison | 216cf23 | 2014-08-18 15:49:51 -0700 | [diff] [blame] | 754 | |
Elliott Hughes | 6d3fc56 | 2014-08-27 11:47:01 -0700 | [diff] [blame] | 755 | tlsPtr_.stack_begin += read_guard_size + kStackOverflowProtectedSize; |
| 756 | tlsPtr_.stack_end += read_guard_size + kStackOverflowProtectedSize; |
| 757 | tlsPtr_.stack_size -= read_guard_size; |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 758 | |
| 759 | InstallImplicitProtection(); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 760 | } |
Elliott Hughes | 449b4bd | 2011-09-09 12:01:38 -0700 | [diff] [blame] | 761 | |
| 762 | // Sanity check. |
| 763 | int stack_variable; |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 764 | CHECK_GT(&stack_variable, reinterpret_cast<void*>(tlsPtr_.stack_end)); |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 765 | |
| 766 | return true; |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 767 | } |
| 768 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 769 | void Thread::ShortDump(std::ostream& os) const { |
| 770 | os << "Thread["; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 771 | if (GetThreadId() != 0) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 772 | // If we're in kStarting, we won't have a thin lock id or tid yet. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 773 | os << GetThreadId() |
Mathieu Chartier | b28412e | 2015-04-24 15:28:36 -0700 | [diff] [blame] | 774 | << ",tid=" << GetTid() << ','; |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 775 | } |
Ian Rogers | 474b6da | 2012-09-25 00:20:38 -0700 | [diff] [blame] | 776 | os << GetState() |
Mathieu Chartier | b28412e | 2015-04-24 15:28:36 -0700 | [diff] [blame] | 777 | << ",Thread*=" << this |
| 778 | << ",peer=" << tlsPtr_.opeer |
| 779 | << ",\"" << (tlsPtr_.name != nullptr ? *tlsPtr_.name : "null") << "\"" |
| 780 | << "]"; |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 783 | void Thread::Dump(std::ostream& os) const { |
| 784 | DumpState(os); |
| 785 | DumpStack(os); |
| 786 | } |
| 787 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 788 | mirror::String* Thread::GetThreadName(const ScopedObjectAccessAlreadyRunnable& soa) const { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 789 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_name); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 790 | return (tlsPtr_.opeer != nullptr) ? |
| 791 | reinterpret_cast<mirror::String*>(f->GetObject(tlsPtr_.opeer)) : nullptr; |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 792 | } |
| 793 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 794 | void Thread::GetThreadName(std::string& name) const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 795 | name.assign(*tlsPtr_.name); |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 796 | } |
| 797 | |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 798 | uint64_t Thread::GetCpuMicroTime() const { |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 799 | #if defined(__linux__) |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 800 | clockid_t cpu_clock_id; |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 801 | pthread_getcpuclockid(tlsPtr_.pthread_self, &cpu_clock_id); |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 802 | timespec now; |
| 803 | clock_gettime(cpu_clock_id, &now); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 804 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_nsec / UINT64_C(1000); |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 805 | #else // __APPLE__ |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 806 | UNIMPLEMENTED(WARNING); |
| 807 | return -1; |
| 808 | #endif |
| 809 | } |
| 810 | |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 811 | // Attempt to rectify locks so that we dump thread list with required locks before exiting. |
| 812 | static void UnsafeLogFatalForSuspendCount(Thread* self, Thread* thread) NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 813 | LOG(ERROR) << *thread << " suspend count already zero."; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 814 | Locks::thread_suspend_count_lock_->Unlock(self); |
| 815 | if (!Locks::mutator_lock_->IsSharedHeld(self)) { |
| 816 | Locks::mutator_lock_->SharedTryLock(self); |
| 817 | if (!Locks::mutator_lock_->IsSharedHeld(self)) { |
| 818 | LOG(WARNING) << "Dumping thread list without holding mutator_lock_"; |
| 819 | } |
| 820 | } |
| 821 | if (!Locks::thread_list_lock_->IsExclusiveHeld(self)) { |
| 822 | Locks::thread_list_lock_->TryLock(self); |
| 823 | if (!Locks::thread_list_lock_->IsExclusiveHeld(self)) { |
| 824 | LOG(WARNING) << "Dumping thread list without holding thread_list_lock_"; |
| 825 | } |
| 826 | } |
| 827 | std::ostringstream ss; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 828 | Runtime::Current()->GetThreadList()->Dump(ss); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 829 | LOG(FATAL) << ss.str(); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 832 | bool Thread::ModifySuspendCount(Thread* self, int delta, AtomicInteger* suspend_barrier, |
| 833 | bool for_debugger) { |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 834 | if (kIsDebugBuild) { |
| 835 | DCHECK(delta == -1 || delta == +1 || delta == -tls32_.debug_suspend_count) |
| 836 | << delta << " " << tls32_.debug_suspend_count << " " << this; |
| 837 | DCHECK_GE(tls32_.suspend_count, tls32_.debug_suspend_count) << this; |
| 838 | Locks::thread_suspend_count_lock_->AssertHeld(self); |
| 839 | if (this != self && !IsSuspended()) { |
| 840 | Locks::thread_list_lock_->AssertHeld(self); |
| 841 | } |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 842 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 843 | if (UNLIKELY(delta < 0 && tls32_.suspend_count <= 0)) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 844 | UnsafeLogFatalForSuspendCount(self, this); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 845 | return false; |
| 846 | } |
| 847 | |
| 848 | uint16_t flags = kSuspendRequest; |
| 849 | if (delta > 0 && suspend_barrier != nullptr) { |
| 850 | uint32_t available_barrier = kMaxSuspendBarriers; |
| 851 | for (uint32_t i = 0; i < kMaxSuspendBarriers; ++i) { |
| 852 | if (tlsPtr_.active_suspend_barriers[i] == nullptr) { |
| 853 | available_barrier = i; |
| 854 | break; |
| 855 | } |
| 856 | } |
| 857 | if (available_barrier == kMaxSuspendBarriers) { |
| 858 | // No barrier spaces available, we can't add another. |
| 859 | return false; |
| 860 | } |
| 861 | tlsPtr_.active_suspend_barriers[available_barrier] = suspend_barrier; |
| 862 | flags |= kActiveSuspendBarrier; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 863 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 864 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 865 | tls32_.suspend_count += delta; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 866 | if (for_debugger) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 867 | tls32_.debug_suspend_count += delta; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 868 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 869 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 870 | if (tls32_.suspend_count == 0) { |
Ian Rogers | 474b6da | 2012-09-25 00:20:38 -0700 | [diff] [blame] | 871 | AtomicClearFlag(kSuspendRequest); |
| 872 | } else { |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 873 | // Two bits might be set simultaneously. |
| 874 | tls32_.state_and_flags.as_atomic_int.FetchAndOrSequentiallyConsistent(flags); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 875 | TriggerSuspend(); |
Ian Rogers | 474b6da | 2012-09-25 00:20:38 -0700 | [diff] [blame] | 876 | } |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 877 | return true; |
| 878 | } |
| 879 | |
| 880 | bool Thread::PassActiveSuspendBarriers(Thread* self) { |
| 881 | // Grab the suspend_count lock and copy the current set of |
| 882 | // barriers. Then clear the list and the flag. The ModifySuspendCount |
| 883 | // function requires the lock so we prevent a race between setting |
| 884 | // the kActiveSuspendBarrier flag and clearing it. |
| 885 | AtomicInteger* pass_barriers[kMaxSuspendBarriers]; |
| 886 | { |
| 887 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
| 888 | if (!ReadFlag(kActiveSuspendBarrier)) { |
| 889 | // quick exit test: the barriers have already been claimed - this is |
| 890 | // possible as there may be a race to claim and it doesn't matter |
| 891 | // who wins. |
| 892 | // All of the callers of this function (except the SuspendAllInternal) |
| 893 | // will first test the kActiveSuspendBarrier flag without lock. Here |
| 894 | // double-check whether the barrier has been passed with the |
| 895 | // suspend_count lock. |
| 896 | return false; |
| 897 | } |
| 898 | |
| 899 | for (uint32_t i = 0; i < kMaxSuspendBarriers; ++i) { |
| 900 | pass_barriers[i] = tlsPtr_.active_suspend_barriers[i]; |
| 901 | tlsPtr_.active_suspend_barriers[i] = nullptr; |
| 902 | } |
| 903 | AtomicClearFlag(kActiveSuspendBarrier); |
| 904 | } |
| 905 | |
| 906 | uint32_t barrier_count = 0; |
| 907 | for (uint32_t i = 0; i < kMaxSuspendBarriers; i++) { |
| 908 | AtomicInteger* pending_threads = pass_barriers[i]; |
| 909 | if (pending_threads != nullptr) { |
| 910 | bool done = false; |
| 911 | do { |
| 912 | int32_t cur_val = pending_threads->LoadRelaxed(); |
| 913 | CHECK_GT(cur_val, 0) << "Unexpected value for PassActiveSuspendBarriers(): " << cur_val; |
| 914 | // Reduce value by 1. |
| 915 | done = pending_threads->CompareExchangeWeakRelaxed(cur_val, cur_val - 1); |
| 916 | #if ART_USE_FUTEXES |
| 917 | if (done && (cur_val - 1) == 0) { // Weak CAS may fail spuriously. |
| 918 | futex(pending_threads->Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0); |
| 919 | } |
| 920 | #endif |
| 921 | } while (!done); |
| 922 | ++barrier_count; |
| 923 | } |
| 924 | } |
| 925 | CHECK_GT(barrier_count, 0U); |
| 926 | return true; |
| 927 | } |
| 928 | |
| 929 | void Thread::ClearSuspendBarrier(AtomicInteger* target) { |
| 930 | CHECK(ReadFlag(kActiveSuspendBarrier)); |
| 931 | bool clear_flag = true; |
| 932 | for (uint32_t i = 0; i < kMaxSuspendBarriers; ++i) { |
| 933 | AtomicInteger* ptr = tlsPtr_.active_suspend_barriers[i]; |
| 934 | if (ptr == target) { |
| 935 | tlsPtr_.active_suspend_barriers[i] = nullptr; |
| 936 | } else if (ptr != nullptr) { |
| 937 | clear_flag = false; |
| 938 | } |
| 939 | } |
| 940 | if (LIKELY(clear_flag)) { |
| 941 | AtomicClearFlag(kActiveSuspendBarrier); |
| 942 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 943 | } |
| 944 | |
Mathieu Chartier | 752a0e6 | 2013-06-27 11:03:27 -0700 | [diff] [blame] | 945 | void Thread::RunCheckpointFunction() { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 946 | Closure *checkpoints[kMaxCheckpoints]; |
| 947 | |
| 948 | // Grab the suspend_count lock and copy the current set of |
| 949 | // checkpoints. Then clear the list and the flag. The RequestCheckpoint |
| 950 | // function will also grab this lock so we prevent a race between setting |
| 951 | // the kCheckpointRequest flag and clearing it. |
| 952 | { |
| 953 | MutexLock mu(this, *Locks::thread_suspend_count_lock_); |
| 954 | for (uint32_t i = 0; i < kMaxCheckpoints; ++i) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 955 | checkpoints[i] = tlsPtr_.checkpoint_functions[i]; |
| 956 | tlsPtr_.checkpoint_functions[i] = nullptr; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 957 | } |
| 958 | AtomicClearFlag(kCheckpointRequest); |
| 959 | } |
| 960 | |
| 961 | // Outside the lock, run all the checkpoint functions that |
| 962 | // we collected. |
| 963 | bool found_checkpoint = false; |
| 964 | for (uint32_t i = 0; i < kMaxCheckpoints; ++i) { |
| 965 | if (checkpoints[i] != nullptr) { |
| 966 | ATRACE_BEGIN("Checkpoint function"); |
| 967 | checkpoints[i]->Run(this); |
| 968 | ATRACE_END(); |
| 969 | found_checkpoint = true; |
| 970 | } |
| 971 | } |
| 972 | CHECK(found_checkpoint); |
Mathieu Chartier | 752a0e6 | 2013-06-27 11:03:27 -0700 | [diff] [blame] | 973 | } |
| 974 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 975 | bool Thread::RequestCheckpoint(Closure* function) { |
Chris Dearman | 59cde53 | 2013-12-04 18:53:49 -0800 | [diff] [blame] | 976 | union StateAndFlags old_state_and_flags; |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 977 | old_state_and_flags.as_int = tls32_.state_and_flags.as_int; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 978 | if (old_state_and_flags.as_struct.state != kRunnable) { |
| 979 | return false; // Fail, thread is suspended and so can't run a checkpoint. |
| 980 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 981 | |
| 982 | uint32_t available_checkpoint = kMaxCheckpoints; |
| 983 | for (uint32_t i = 0 ; i < kMaxCheckpoints; ++i) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 984 | if (tlsPtr_.checkpoint_functions[i] == nullptr) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 985 | available_checkpoint = i; |
| 986 | break; |
| 987 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 988 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 989 | if (available_checkpoint == kMaxCheckpoints) { |
| 990 | // No checkpoint functions available, we can't run a checkpoint |
| 991 | return false; |
| 992 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 993 | tlsPtr_.checkpoint_functions[available_checkpoint] = function; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 994 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 995 | // Checkpoint function installed now install flag bit. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 996 | // We must be runnable to request a checkpoint. |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 997 | DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); |
Chris Dearman | 59cde53 | 2013-12-04 18:53:49 -0800 | [diff] [blame] | 998 | union StateAndFlags new_state_and_flags; |
| 999 | new_state_and_flags.as_int = old_state_and_flags.as_int; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 1000 | new_state_and_flags.as_struct.flags |= kCheckpointRequest; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1001 | bool success = tls32_.state_and_flags.as_atomic_int.CompareExchangeStrongSequentiallyConsistent( |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1002 | old_state_and_flags.as_int, new_state_and_flags.as_int); |
Ian Rogers | 8c1b5f7 | 2014-07-09 22:02:36 -0700 | [diff] [blame] | 1003 | if (UNLIKELY(!success)) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1004 | // The thread changed state before the checkpoint was installed. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1005 | CHECK_EQ(tlsPtr_.checkpoint_functions[available_checkpoint], function); |
| 1006 | tlsPtr_.checkpoint_functions[available_checkpoint] = nullptr; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1007 | } else { |
| 1008 | CHECK_EQ(ReadFlag(kCheckpointRequest), true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 1009 | TriggerSuspend(); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1010 | } |
Ian Rogers | 8c1b5f7 | 2014-07-09 22:02:36 -0700 | [diff] [blame] | 1011 | return success; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 1012 | } |
| 1013 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1014 | Closure* Thread::GetFlipFunction() { |
| 1015 | Atomic<Closure*>* atomic_func = reinterpret_cast<Atomic<Closure*>*>(&tlsPtr_.flip_function); |
| 1016 | Closure* func; |
| 1017 | do { |
| 1018 | func = atomic_func->LoadRelaxed(); |
| 1019 | if (func == nullptr) { |
| 1020 | return nullptr; |
| 1021 | } |
| 1022 | } while (!atomic_func->CompareExchangeWeakSequentiallyConsistent(func, nullptr)); |
| 1023 | DCHECK(func != nullptr); |
| 1024 | return func; |
| 1025 | } |
| 1026 | |
| 1027 | void Thread::SetFlipFunction(Closure* function) { |
| 1028 | CHECK(function != nullptr); |
| 1029 | Atomic<Closure*>* atomic_func = reinterpret_cast<Atomic<Closure*>*>(&tlsPtr_.flip_function); |
| 1030 | atomic_func->StoreSequentiallyConsistent(function); |
| 1031 | } |
| 1032 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1033 | void Thread::FullSuspendCheck() { |
| 1034 | VLOG(threads) << this << " self-suspending"; |
Mathieu Chartier | 752a0e6 | 2013-06-27 11:03:27 -0700 | [diff] [blame] | 1035 | ATRACE_BEGIN("Full suspend check"); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1036 | // Make thread appear suspended to other threads, release mutator_lock_. |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1037 | tls32_.suspended_at_suspend_check = true; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1038 | TransitionFromRunnableToSuspended(kSuspended); |
| 1039 | // Transition back to runnable noting requests to suspend, re-acquire share on mutator_lock_. |
| 1040 | TransitionFromSuspendedToRunnable(); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1041 | tls32_.suspended_at_suspend_check = false; |
Mathieu Chartier | 752a0e6 | 2013-06-27 11:03:27 -0700 | [diff] [blame] | 1042 | ATRACE_END(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1043 | VLOG(threads) << this << " self-reviving"; |
| 1044 | } |
| 1045 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1046 | void Thread::DumpState(std::ostream& os, const Thread* thread, pid_t tid) { |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1047 | std::string group_name; |
| 1048 | int priority; |
| 1049 | bool is_daemon = false; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1050 | Thread* self = Thread::Current(); |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1051 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1052 | // If flip_function is not null, it means we have run a checkpoint |
| 1053 | // before the thread wakes up to execute the flip function and the |
| 1054 | // thread roots haven't been forwarded. So the following access to |
| 1055 | // the roots (opeer or methods in the frames) would be bad. Run it |
| 1056 | // here. TODO: clean up. |
| 1057 | if (thread != nullptr) { |
| 1058 | ScopedObjectAccessUnchecked soa(self); |
| 1059 | Thread* this_thread = const_cast<Thread*>(thread); |
| 1060 | Closure* flip_func = this_thread->GetFlipFunction(); |
| 1061 | if (flip_func != nullptr) { |
| 1062 | flip_func->Run(this_thread); |
| 1063 | } |
| 1064 | } |
| 1065 | |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 1066 | // Don't do this if we are aborting since the GC may have all the threads suspended. This will |
| 1067 | // cause ScopedObjectAccessUnchecked to deadlock. |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 1068 | if (gAborting == 0 && self != nullptr && thread != nullptr && thread->tlsPtr_.opeer != nullptr) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1069 | ScopedObjectAccessUnchecked soa(self); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1070 | priority = soa.DecodeField(WellKnownClasses::java_lang_Thread_priority) |
| 1071 | ->GetInt(thread->tlsPtr_.opeer); |
| 1072 | is_daemon = soa.DecodeField(WellKnownClasses::java_lang_Thread_daemon) |
| 1073 | ->GetBoolean(thread->tlsPtr_.opeer); |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1074 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1075 | mirror::Object* thread_group = |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1076 | soa.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(thread->tlsPtr_.opeer); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1077 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1078 | if (thread_group != nullptr) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1079 | ArtField* group_name_field = |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1080 | soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name); |
| 1081 | mirror::String* group_name_string = |
| 1082 | reinterpret_cast<mirror::String*>(group_name_field->GetObject(thread_group)); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1083 | group_name = (group_name_string != nullptr) ? group_name_string->ToModifiedUtf8() : "<null>"; |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1084 | } |
| 1085 | } else { |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1086 | priority = GetNativePriority(); |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1087 | } |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1088 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1089 | std::string scheduler_group_name(GetSchedulerGroupName(tid)); |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1090 | if (scheduler_group_name.empty()) { |
| 1091 | scheduler_group_name = "default"; |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1092 | } |
| 1093 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1094 | if (thread != nullptr) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1095 | os << '"' << *thread->tlsPtr_.name << '"'; |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1096 | if (is_daemon) { |
| 1097 | os << " daemon"; |
| 1098 | } |
| 1099 | os << " prio=" << priority |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1100 | << " tid=" << thread->GetThreadId() |
Elliott Hughes | 80537bb | 2013-01-04 16:37:26 -0800 | [diff] [blame] | 1101 | << " " << thread->GetState(); |
| 1102 | if (thread->IsStillStarting()) { |
| 1103 | os << " (still starting up)"; |
| 1104 | } |
| 1105 | os << "\n"; |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1106 | } else { |
Elliott Hughes | 289be85 | 2012-06-12 13:57:20 -0700 | [diff] [blame] | 1107 | os << '"' << ::art::GetThreadName(tid) << '"' |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1108 | << " prio=" << priority |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1109 | << " (not attached)\n"; |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1110 | } |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1111 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1112 | if (thread != nullptr) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1113 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1114 | os << " | group=\"" << group_name << "\"" |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1115 | << " sCount=" << thread->tls32_.suspend_count |
| 1116 | << " dsCount=" << thread->tls32_.debug_suspend_count |
| 1117 | << " obj=" << reinterpret_cast<void*>(thread->tlsPtr_.opeer) |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1118 | << " self=" << reinterpret_cast<const void*>(thread) << "\n"; |
| 1119 | } |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 1120 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1121 | os << " | sysTid=" << tid |
| 1122 | << " nice=" << getpriority(PRIO_PROCESS, tid) |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 1123 | << " cgrp=" << scheduler_group_name; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1124 | if (thread != nullptr) { |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 1125 | int policy; |
| 1126 | sched_param sp; |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1127 | CHECK_PTHREAD_CALL(pthread_getschedparam, (thread->tlsPtr_.pthread_self, &policy, &sp), |
| 1128 | __FUNCTION__); |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 1129 | os << " sched=" << policy << "/" << sp.sched_priority |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1130 | << " handle=" << reinterpret_cast<void*>(thread->tlsPtr_.pthread_self); |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 1131 | } |
| 1132 | os << "\n"; |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1133 | |
| 1134 | // Grab the scheduler stats for this thread. |
| 1135 | std::string scheduler_stats; |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1136 | if (ReadFileToString(StringPrintf("/proc/self/task/%d/schedstat", tid), &scheduler_stats)) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1137 | scheduler_stats.resize(scheduler_stats.size() - 1); // Lose the trailing '\n'. |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1138 | } else { |
| 1139 | scheduler_stats = "0 0 0"; |
| 1140 | } |
| 1141 | |
Elliott Hughes | ba0b9c5 | 2012-09-20 11:25:12 -0700 | [diff] [blame] | 1142 | char native_thread_state = '?'; |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1143 | int utime = 0; |
| 1144 | int stime = 0; |
| 1145 | int task_cpu = 0; |
Brian Carlstrom | 2921201 | 2013-09-12 22:18:30 -0700 | [diff] [blame] | 1146 | GetTaskStats(tid, &native_thread_state, &utime, &stime, &task_cpu); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1147 | |
Elliott Hughes | ba0b9c5 | 2012-09-20 11:25:12 -0700 | [diff] [blame] | 1148 | os << " | state=" << native_thread_state |
| 1149 | << " schedstat=( " << scheduler_stats << " )" |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1150 | << " utm=" << utime |
| 1151 | << " stm=" << stime |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1152 | << " core=" << task_cpu |
| 1153 | << " HZ=" << sysconf(_SC_CLK_TCK) << "\n"; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1154 | if (thread != nullptr) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1155 | os << " | stack=" << reinterpret_cast<void*>(thread->tlsPtr_.stack_begin) << "-" |
| 1156 | << reinterpret_cast<void*>(thread->tlsPtr_.stack_end) << " stackSize=" |
| 1157 | << PrettySize(thread->tlsPtr_.stack_size) << "\n"; |
Mathieu Chartier | 9db911e | 2014-06-04 11:23:58 -0700 | [diff] [blame] | 1158 | // Dump the held mutexes. |
| 1159 | os << " | held mutexes="; |
| 1160 | for (size_t i = 0; i < kLockLevelCount; ++i) { |
| 1161 | if (i != kMonitorLock) { |
| 1162 | BaseMutex* mutex = thread->GetHeldMutex(static_cast<LockLevel>(i)); |
| 1163 | if (mutex != nullptr) { |
| 1164 | os << " \"" << mutex->GetName() << "\""; |
| 1165 | if (mutex->IsReaderWriterMutex()) { |
| 1166 | ReaderWriterMutex* rw_mutex = down_cast<ReaderWriterMutex*>(mutex); |
Ian Rogers | a9d8c4c | 2014-07-07 21:38:36 -0700 | [diff] [blame] | 1167 | if (rw_mutex->GetExclusiveOwnerTid() == static_cast<uint64_t>(tid)) { |
Mathieu Chartier | 9db911e | 2014-06-04 11:23:58 -0700 | [diff] [blame] | 1168 | os << "(exclusive held)"; |
| 1169 | } else { |
Mathieu Chartier | 9db911e | 2014-06-04 11:23:58 -0700 | [diff] [blame] | 1170 | os << "(shared held)"; |
| 1171 | } |
| 1172 | } |
| 1173 | } |
| 1174 | } |
| 1175 | } |
| 1176 | os << "\n"; |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | void Thread::DumpState(std::ostream& os) const { |
| 1181 | Thread::DumpState(os, this, GetTid()); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1182 | } |
| 1183 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1184 | struct StackDumpVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1185 | StackDumpVisitor(std::ostream& os_in, Thread* thread_in, Context* context, bool can_allocate_in) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1186 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 1187 | : StackVisitor(thread_in, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 1188 | os(os_in), |
| 1189 | thread(thread_in), |
| 1190 | can_allocate(can_allocate_in), |
| 1191 | last_method(nullptr), |
| 1192 | last_line_number(0), |
| 1193 | repetition_count(0), |
| 1194 | frame_count(0) {} |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1195 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 1196 | virtual ~StackDumpVisitor() { |
Elliott Hughes | e85d2e9 | 2012-05-01 14:02:10 -0700 | [diff] [blame] | 1197 | if (frame_count == 0) { |
| 1198 | os << " (no managed stack frames)\n"; |
| 1199 | } |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1200 | } |
| 1201 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1202 | bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1203 | ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1204 | if (m->IsRuntimeMethod()) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1205 | return true; |
Ian Rogers | 9086572 | 2011-09-19 11:11:44 -0700 | [diff] [blame] | 1206 | } |
Mathieu Chartier | ef76c3f | 2015-07-17 18:46:32 -0700 | [diff] [blame] | 1207 | m = m->GetInterfaceMethodIfProxy(sizeof(void*)); |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1208 | const int kMaxRepetition = 3; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1209 | mirror::Class* c = m->GetDeclaringClass(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1210 | mirror::DexCache* dex_cache = c->GetDexCache(); |
Ian Rogers | b861dc0 | 2011-11-14 17:00:05 -0800 | [diff] [blame] | 1211 | int line_number = -1; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1212 | if (dex_cache != nullptr) { // be tolerant of bad input |
Ian Rogers | 4445a7e | 2012-10-05 17:19:13 -0700 | [diff] [blame] | 1213 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 1214 | line_number = dex_file.GetLineNumFromPC(m, GetDexPc(false)); |
Ian Rogers | b861dc0 | 2011-11-14 17:00:05 -0800 | [diff] [blame] | 1215 | } |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1216 | if (line_number == last_line_number && last_method == m) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1217 | ++repetition_count; |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1218 | } else { |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1219 | if (repetition_count >= kMaxRepetition) { |
| 1220 | os << " ... repeated " << (repetition_count - kMaxRepetition) << " times\n"; |
| 1221 | } |
| 1222 | repetition_count = 0; |
| 1223 | last_line_number = line_number; |
| 1224 | last_method = m; |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1225 | } |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1226 | if (repetition_count < kMaxRepetition) { |
| 1227 | os << " at " << PrettyMethod(m, false); |
| 1228 | if (m->IsNative()) { |
| 1229 | os << "(Native method)"; |
| 1230 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1231 | const char* source_file(m->GetDeclaringClassSourceFile()); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1232 | os << "(" << (source_file != nullptr ? source_file : "unavailable") |
Brian Carlstrom | 2e450bf | 2013-09-06 15:39:46 -0700 | [diff] [blame] | 1233 | << ":" << line_number << ")"; |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1234 | } |
| 1235 | os << "\n"; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1236 | if (frame_count == 0) { |
| 1237 | Monitor::DescribeWait(os, thread); |
| 1238 | } |
| 1239 | if (can_allocate) { |
Andreas Gampe | 956a522 | 2014-08-16 13:41:10 -0700 | [diff] [blame] | 1240 | // Visit locks, but do not abort on errors. This would trigger a nested abort. |
| 1241 | Monitor::VisitLocks(this, DumpLockedObject, &os, false); |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1242 | } |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1243 | } |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 1244 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1245 | ++frame_count; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1246 | return true; |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1247 | } |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 1248 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1249 | static void DumpLockedObject(mirror::Object* o, void* context) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1250 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 1251 | std::ostream& os = *reinterpret_cast<std::ostream*>(context); |
Ian Rogers | d803bc7 | 2014-04-01 15:33:03 -0700 | [diff] [blame] | 1252 | os << " - locked "; |
| 1253 | if (o == nullptr) { |
| 1254 | os << "an unknown object"; |
| 1255 | } else { |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1256 | if ((o->GetLockWord(false).GetState() == LockWord::kThinLocked) && |
Ian Rogers | d803bc7 | 2014-04-01 15:33:03 -0700 | [diff] [blame] | 1257 | Locks::mutator_lock_->IsExclusiveHeld(Thread::Current())) { |
| 1258 | // Getting the identity hashcode here would result in lock inflation and suspension of the |
| 1259 | // current thread, which isn't safe if this is the only runnable thread. |
| 1260 | os << StringPrintf("<@addr=0x%" PRIxPTR "> (a %s)", reinterpret_cast<intptr_t>(o), |
| 1261 | PrettyTypeOf(o).c_str()); |
| 1262 | } else { |
Mathieu Chartier | e6a8eec | 2015-01-06 14:17:57 -0800 | [diff] [blame] | 1263 | // IdentityHashCode can cause thread suspension, which would invalidate o if it moved. So |
| 1264 | // we get the pretty type beofre we call IdentityHashCode. |
| 1265 | const std::string pretty_type(PrettyTypeOf(o)); |
| 1266 | os << StringPrintf("<0x%08x> (a %s)", o->IdentityHashCode(), pretty_type.c_str()); |
Ian Rogers | d803bc7 | 2014-04-01 15:33:03 -0700 | [diff] [blame] | 1267 | } |
| 1268 | } |
| 1269 | os << "\n"; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 1270 | } |
| 1271 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1272 | std::ostream& os; |
| 1273 | const Thread* thread; |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1274 | const bool can_allocate; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1275 | ArtMethod* last_method; |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 1276 | int last_line_number; |
| 1277 | int repetition_count; |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 1278 | int frame_count; |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1279 | }; |
| 1280 | |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 1281 | static bool ShouldShowNativeStack(const Thread* thread) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1282 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Elliott Hughes | aef701d | 2013-04-05 18:15:40 -0700 | [diff] [blame] | 1283 | ThreadState state = thread->GetState(); |
| 1284 | |
| 1285 | // In native code somewhere in the VM (one of the kWaitingFor* states)? That's interesting. |
| 1286 | if (state > kWaiting && state < kStarting) { |
| 1287 | return true; |
| 1288 | } |
| 1289 | |
| 1290 | // In an Object.wait variant or Thread.sleep? That's not interesting. |
| 1291 | if (state == kTimedWaiting || state == kSleeping || state == kWaiting) { |
| 1292 | return false; |
| 1293 | } |
| 1294 | |
Christopher Ferris | 2366f4e | 2014-09-19 17:23:59 -0700 | [diff] [blame] | 1295 | // Threads with no managed stack frames should be shown. |
| 1296 | const ManagedStack* managed_stack = thread->GetManagedStack(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1297 | if (managed_stack == nullptr || (managed_stack->GetTopQuickFrame() == nullptr && |
| 1298 | managed_stack->GetTopShadowFrame() == nullptr)) { |
Christopher Ferris | 2366f4e | 2014-09-19 17:23:59 -0700 | [diff] [blame] | 1299 | return true; |
| 1300 | } |
| 1301 | |
Elliott Hughes | aef701d | 2013-04-05 18:15:40 -0700 | [diff] [blame] | 1302 | // In some other native method? That's interesting. |
| 1303 | // We don't just check kNative because native methods will be in state kSuspended if they're |
| 1304 | // calling back into the VM, or kBlocked if they're blocked on a monitor, or one of the |
| 1305 | // thread-startup states if it's early enough in their life cycle (http://b/7432159). |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1306 | ArtMethod* current_method = thread->GetCurrentMethod(nullptr); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1307 | return current_method != nullptr && current_method->IsNative(); |
Elliott Hughes | aef701d | 2013-04-05 18:15:40 -0700 | [diff] [blame] | 1308 | } |
| 1309 | |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 1310 | void Thread::DumpJavaStack(std::ostream& os) const { |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1311 | // If flip_function is not null, it means we have run a checkpoint |
| 1312 | // before the thread wakes up to execute the flip function and the |
| 1313 | // thread roots haven't been forwarded. So the following access to |
| 1314 | // the roots (locks or methods in the frames) would be bad. Run it |
| 1315 | // here. TODO: clean up. |
| 1316 | { |
| 1317 | Thread* this_thread = const_cast<Thread*>(this); |
| 1318 | Closure* flip_func = this_thread->GetFlipFunction(); |
| 1319 | if (flip_func != nullptr) { |
| 1320 | flip_func->Run(this_thread); |
| 1321 | } |
| 1322 | } |
| 1323 | |
Andreas Gampe | 986c6fb | 2014-10-02 21:00:06 -0700 | [diff] [blame] | 1324 | // Dumping the Java stack involves the verifier for locks. The verifier operates under the |
| 1325 | // assumption that there is no exception pending on entry. Thus, stash any pending exception. |
Mathieu Chartier | bef89c9 | 2015-01-09 09:46:49 -0800 | [diff] [blame] | 1326 | // Thread::Current() instead of this in case a thread is dumping the stack of another suspended |
| 1327 | // thread. |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1328 | StackHandleScope<1> scope(Thread::Current()); |
Andreas Gampe | 986c6fb | 2014-10-02 21:00:06 -0700 | [diff] [blame] | 1329 | Handle<mirror::Throwable> exc; |
Andreas Gampe | 986c6fb | 2014-10-02 21:00:06 -0700 | [diff] [blame] | 1330 | bool have_exception = false; |
| 1331 | if (IsExceptionPending()) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1332 | exc = scope.NewHandle(GetException()); |
Andreas Gampe | 986c6fb | 2014-10-02 21:00:06 -0700 | [diff] [blame] | 1333 | const_cast<Thread*>(this)->ClearException(); |
| 1334 | have_exception = true; |
| 1335 | } |
| 1336 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 1337 | std::unique_ptr<Context> context(Context::Create()); |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 1338 | StackDumpVisitor dumper(os, const_cast<Thread*>(this), context.get(), |
| 1339 | !tls32_.throwing_OutOfMemoryError); |
| 1340 | dumper.WalkStack(); |
Andreas Gampe | 986c6fb | 2014-10-02 21:00:06 -0700 | [diff] [blame] | 1341 | |
| 1342 | if (have_exception) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1343 | const_cast<Thread*>(this)->SetException(exc.Get()); |
Andreas Gampe | 986c6fb | 2014-10-02 21:00:06 -0700 | [diff] [blame] | 1344 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1347 | void Thread::DumpStack(std::ostream& os) const { |
Jeff Hao | ed1790e | 2013-04-12 09:58:14 -0700 | [diff] [blame] | 1348 | // TODO: we call this code when dying but may not have suspended the thread ourself. The |
| 1349 | // IsSuspended check is therefore racy with the use for dumping (normally we inhibit |
| 1350 | // the race with the thread_suspend_count_lock_). |
Ian Rogers | eef2e54 | 2014-06-24 22:48:01 -0700 | [diff] [blame] | 1351 | bool dump_for_abort = (gAborting > 0); |
| 1352 | bool safe_to_dump = (this == Thread::Current() || IsSuspended()); |
| 1353 | if (!kIsDebugBuild) { |
| 1354 | // We always want to dump the stack for an abort, however, there is no point dumping another |
| 1355 | // thread's stack in debug builds where we'll hit the not suspended check in the stack walk. |
| 1356 | safe_to_dump = (safe_to_dump || dump_for_abort); |
| 1357 | } |
| 1358 | if (safe_to_dump) { |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 1359 | // If we're currently in native code, dump that stack before dumping the managed stack. |
Ian Rogers | d090cf4 | 2013-06-06 15:35:18 -0700 | [diff] [blame] | 1360 | if (dump_for_abort || ShouldShowNativeStack(this)) { |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 1361 | DumpKernelStack(os, GetTid(), " kernel: ", false); |
Andreas Gampe | b2f5dbb | 2014-09-16 15:15:13 -0700 | [diff] [blame] | 1362 | DumpNativeStack(os, GetTid(), " native: ", GetCurrentMethod(nullptr, !dump_for_abort)); |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 1363 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 1364 | DumpJavaStack(os); |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 1365 | } else { |
| 1366 | os << "Not able to dump stack of thread that isn't suspended"; |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 1367 | } |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 1368 | } |
| 1369 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 1370 | void Thread::ThreadExitCallback(void* arg) { |
| 1371 | Thread* self = reinterpret_cast<Thread*>(arg); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1372 | if (self->tls32_.thread_exit_check_count == 0) { |
| 1373 | LOG(WARNING) << "Native thread exiting without having called DetachCurrentThread (maybe it's " |
| 1374 | "going to use a pthread_key_create destructor?): " << *self; |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1375 | CHECK(is_started_); |
Andreas Gampe | 4382f1e | 2015-08-05 01:08:53 +0000 | [diff] [blame] | 1376 | #ifdef __ANDROID__ |
| 1377 | __get_tls()[TLS_SLOT_ART_THREAD_SELF] = self; |
| 1378 | #else |
Elliott Hughes | 6a607ad | 2012-07-13 20:40:00 -0700 | [diff] [blame] | 1379 | CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self"); |
Andreas Gampe | 4382f1e | 2015-08-05 01:08:53 +0000 | [diff] [blame] | 1380 | #endif |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1381 | self->tls32_.thread_exit_check_count = 1; |
Elliott Hughes | 6a607ad | 2012-07-13 20:40:00 -0700 | [diff] [blame] | 1382 | } else { |
| 1383 | LOG(FATAL) << "Native thread exited without calling DetachCurrentThread: " << *self; |
| 1384 | } |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 1385 | } |
| 1386 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 1387 | void Thread::Startup() { |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1388 | CHECK(!is_started_); |
| 1389 | is_started_ = true; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1390 | { |
Brian Carlstrom | 6d69f59 | 2013-07-16 17:18:16 -0700 | [diff] [blame] | 1391 | // MutexLock to keep annotalysis happy. |
| 1392 | // |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1393 | // Note we use null for the thread because Thread::Current can |
Brian Carlstrom | 6d69f59 | 2013-07-16 17:18:16 -0700 | [diff] [blame] | 1394 | // return garbage since (is_started_ == true) and |
| 1395 | // Thread::pthread_key_self_ is not yet initialized. |
| 1396 | // This was seen on glibc. |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1397 | MutexLock mu(nullptr, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1398 | resume_cond_ = new ConditionVariable("Thread resumption condition variable", |
| 1399 | *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1400 | } |
| 1401 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 1402 | // Allocate a TLS slot. |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 1403 | CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), |
| 1404 | "self key"); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 1405 | |
| 1406 | // Double-check the TLS slot allocation. |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1407 | if (pthread_getspecific(pthread_key_self_) != nullptr) { |
| 1408 | LOG(FATAL) << "Newly-created pthread TLS slot is not nullptr"; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 1409 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1410 | } |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 1411 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1412 | void Thread::FinishStartup() { |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1413 | Runtime* runtime = Runtime::Current(); |
| 1414 | CHECK(runtime->IsStarted()); |
Brian Carlstrom | b82b687 | 2011-10-26 17:18:07 -0700 | [diff] [blame] | 1415 | |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1416 | // Finish attaching the main thread. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1417 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1418 | Thread::Current()->CreatePeer("main", false, runtime->GetMainThreadGroup()); |
Jesse Wilson | 9a6bae8 | 2011-11-14 14:57:30 -0500 | [diff] [blame] | 1419 | |
Elliott Hughes | af8d15a | 2012-05-29 09:12:18 -0700 | [diff] [blame] | 1420 | Runtime::Current()->GetClassLinker()->RunRootClinits(); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 1421 | } |
| 1422 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1423 | void Thread::Shutdown() { |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1424 | CHECK(is_started_); |
| 1425 | is_started_ = false; |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 1426 | CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key"); |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 1427 | MutexLock mu(Thread::Current(), *Locks::thread_suspend_count_lock_); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1428 | if (resume_cond_ != nullptr) { |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1429 | delete resume_cond_; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1430 | resume_cond_ = nullptr; |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1431 | } |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1432 | } |
| 1433 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1434 | Thread::Thread(bool daemon) : tls32_(daemon), wait_monitor_(nullptr), interrupted_(false) { |
| 1435 | wait_mutex_ = new Mutex("a thread wait mutex"); |
| 1436 | wait_cond_ = new ConditionVariable("a thread wait condition variable", *wait_mutex_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1437 | tlsPtr_.instrumentation_stack = new std::deque<instrumentation::InstrumentationStackFrame>; |
| 1438 | tlsPtr_.name = new std::string(kThreadNameDuringStartup); |
Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 1439 | tlsPtr_.nested_signal_state = static_cast<jmp_buf*>(malloc(sizeof(jmp_buf))); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1440 | |
Roland Levillain | 33d6903 | 2015-06-18 18:20:59 +0100 | [diff] [blame] | 1441 | static_assert((sizeof(Thread) % 4) == 0U, |
| 1442 | "art::Thread has a size which is not a multiple of 4."); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1443 | tls32_.state_and_flags.as_struct.flags = 0; |
| 1444 | tls32_.state_and_flags.as_struct.state = kNative; |
| 1445 | memset(&tlsPtr_.held_mutexes[0], 0, sizeof(tlsPtr_.held_mutexes)); |
Mathieu Chartier | 0651d41 | 2014-04-29 14:37:57 -0700 | [diff] [blame] | 1446 | std::fill(tlsPtr_.rosalloc_runs, |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 1447 | tlsPtr_.rosalloc_runs + kNumRosAllocThreadLocalSizeBrackets, |
Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 1448 | gc::allocator::RosAlloc::GetDedicatedFullRun()); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1449 | for (uint32_t i = 0; i < kMaxCheckpoints; ++i) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1450 | tlsPtr_.checkpoint_functions[i] = nullptr; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1451 | } |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 1452 | for (uint32_t i = 0; i < kMaxSuspendBarriers; ++i) { |
| 1453 | tlsPtr_.active_suspend_barriers[i] = nullptr; |
| 1454 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1455 | tlsPtr_.flip_function = nullptr; |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 1456 | tlsPtr_.thread_local_mark_stack = nullptr; |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1457 | tls32_.suspended_at_suspend_check = false; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1458 | } |
| 1459 | |
Elliott Hughes | 7dc5166 | 2012-05-16 14:48:43 -0700 | [diff] [blame] | 1460 | bool Thread::IsStillStarting() const { |
| 1461 | // You might think you can check whether the state is kStarting, but for much of thread startup, |
Elliott Hughes | 80537bb | 2013-01-04 16:37:26 -0800 | [diff] [blame] | 1462 | // the thread is in kNative; it might also be in kVmWait. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1463 | // You might think you can check whether the peer is null, but the peer is actually created and |
Elliott Hughes | 7dc5166 | 2012-05-16 14:48:43 -0700 | [diff] [blame] | 1464 | // assigned fairly early on, and needs to be. |
| 1465 | // It turns out that the last thing to change is the thread name; that's a good proxy for "has |
| 1466 | // this thread _ever_ entered kRunnable". |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1467 | return (tlsPtr_.jpeer == nullptr && tlsPtr_.opeer == nullptr) || |
| 1468 | (*tlsPtr_.name == kThreadNameDuringStartup); |
Elliott Hughes | 7dc5166 | 2012-05-16 14:48:43 -0700 | [diff] [blame] | 1469 | } |
| 1470 | |
Andreas Gampe | d9efea6 | 2014-07-21 22:56:08 -0700 | [diff] [blame] | 1471 | void Thread::AssertPendingException() const { |
Mathieu Chartier | a61894d | 2015-04-23 16:32:54 -0700 | [diff] [blame] | 1472 | CHECK(IsExceptionPending()) << "Pending exception expected."; |
| 1473 | } |
| 1474 | |
| 1475 | void Thread::AssertPendingOOMException() const { |
| 1476 | AssertPendingException(); |
| 1477 | auto* e = GetException(); |
| 1478 | CHECK_EQ(e->GetClass(), DecodeJObject(WellKnownClasses::java_lang_OutOfMemoryError)->AsClass()) |
| 1479 | << e->Dump(); |
Andreas Gampe | d9efea6 | 2014-07-21 22:56:08 -0700 | [diff] [blame] | 1480 | } |
| 1481 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1482 | void Thread::AssertNoPendingException() const { |
| 1483 | if (UNLIKELY(IsExceptionPending())) { |
| 1484 | ScopedObjectAccess soa(Thread::Current()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1485 | mirror::Throwable* exception = GetException(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1486 | LOG(FATAL) << "No pending exception expected: " << exception->Dump(); |
| 1487 | } |
| 1488 | } |
| 1489 | |
Mathieu Chartier | 8d7672e | 2014-02-25 10:57:16 -0800 | [diff] [blame] | 1490 | void Thread::AssertNoPendingExceptionForNewException(const char* msg) const { |
| 1491 | if (UNLIKELY(IsExceptionPending())) { |
| 1492 | ScopedObjectAccess soa(Thread::Current()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1493 | mirror::Throwable* exception = GetException(); |
Ian Rogers | c114b5f | 2014-07-21 08:55:01 -0700 | [diff] [blame] | 1494 | LOG(FATAL) << "Throwing new exception '" << msg << "' with unexpected pending exception: " |
Mathieu Chartier | 8d7672e | 2014-02-25 10:57:16 -0800 | [diff] [blame] | 1495 | << exception->Dump(); |
| 1496 | } |
| 1497 | } |
| 1498 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 1499 | class MonitorExitVisitor : public SingleRootVisitor { |
| 1500 | public: |
| 1501 | explicit MonitorExitVisitor(Thread* self) : self_(self) { } |
| 1502 | |
| 1503 | // NO_THREAD_SAFETY_ANALYSIS due to MonitorExit. |
| 1504 | void VisitRoot(mirror::Object* entered_monitor, const RootInfo& info ATTRIBUTE_UNUSED) |
| 1505 | OVERRIDE NO_THREAD_SAFETY_ANALYSIS { |
| 1506 | if (self_->HoldsLock(entered_monitor)) { |
| 1507 | LOG(WARNING) << "Calling MonitorExit on object " |
| 1508 | << entered_monitor << " (" << PrettyTypeOf(entered_monitor) << ")" |
| 1509 | << " left locked by native thread " |
| 1510 | << *Thread::Current() << " which is detaching"; |
| 1511 | entered_monitor->MonitorExit(self_); |
| 1512 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1513 | } |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 1514 | |
| 1515 | private: |
| 1516 | Thread* const self_; |
| 1517 | }; |
Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 1518 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 1519 | void Thread::Destroy() { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1520 | Thread* self = this; |
| 1521 | DCHECK_EQ(self, Thread::Current()); |
Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 1522 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1523 | if (tlsPtr_.jni_env != nullptr) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 1524 | { |
| 1525 | ScopedObjectAccess soa(self); |
| 1526 | MonitorExitVisitor visitor(self); |
| 1527 | // On thread detach, all monitors entered with JNI MonitorEnter are automatically exited. |
| 1528 | tlsPtr_.jni_env->monitors.VisitRoots(&visitor, RootInfo(kRootVMInternal)); |
| 1529 | } |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1530 | // Release locally held global references which releasing may require the mutator lock. |
| 1531 | if (tlsPtr_.jpeer != nullptr) { |
| 1532 | // If pthread_create fails we don't have a jni env here. |
| 1533 | tlsPtr_.jni_env->DeleteGlobalRef(tlsPtr_.jpeer); |
| 1534 | tlsPtr_.jpeer = nullptr; |
| 1535 | } |
| 1536 | if (tlsPtr_.class_loader_override != nullptr) { |
| 1537 | tlsPtr_.jni_env->DeleteGlobalRef(tlsPtr_.class_loader_override); |
| 1538 | tlsPtr_.class_loader_override = nullptr; |
| 1539 | } |
| 1540 | } |
| 1541 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1542 | if (tlsPtr_.opeer != nullptr) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1543 | ScopedObjectAccess soa(self); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1544 | // We may need to call user-supplied managed code, do this before final clean-up. |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1545 | HandleUncaughtExceptions(soa); |
| 1546 | RemoveFromThreadGroup(soa); |
Elliott Hughes | 534da07 | 2012-03-27 15:17:42 -0700 | [diff] [blame] | 1547 | |
Anwar Ghuloum | 3c50a4b | 2013-06-21 13:05:23 -0700 | [diff] [blame] | 1548 | // this.nativePeer = 0; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1549 | if (Runtime::Current()->IsActiveTransaction()) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1550 | soa.DecodeField(WellKnownClasses::java_lang_Thread_nativePeer) |
| 1551 | ->SetLong<true>(tlsPtr_.opeer, 0); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1552 | } else { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1553 | soa.DecodeField(WellKnownClasses::java_lang_Thread_nativePeer) |
| 1554 | ->SetLong<false>(tlsPtr_.opeer, 0); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1555 | } |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1556 | Dbg::PostThreadDeath(self); |
Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 1557 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1558 | // Thread.join() is implemented as an Object.wait() on the Thread.lock object. Signal anyone |
| 1559 | // who is waiting. |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1560 | mirror::Object* lock = |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1561 | soa.DecodeField(WellKnownClasses::java_lang_Thread_lock)->GetObject(tlsPtr_.opeer); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1562 | // (This conditional is only needed for tests, where Thread.lock won't have been set.) |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1563 | if (lock != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1564 | StackHandleScope<1> hs(self); |
| 1565 | Handle<mirror::Object> h_obj(hs.NewHandle(lock)); |
Mathieu Chartier | db2633c | 2014-05-16 09:59:29 -0700 | [diff] [blame] | 1566 | ObjectLock<mirror::Object> locker(self, h_obj); |
Yevgeny Rouban | 63e8a68 | 2014-04-16 18:26:09 +0700 | [diff] [blame] | 1567 | locker.NotifyAll(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1568 | } |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1569 | tlsPtr_.opeer = nullptr; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1570 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1571 | |
Hiroshi Yamauchi | a1b94c6 | 2014-12-17 15:49:56 -0800 | [diff] [blame] | 1572 | { |
| 1573 | ScopedObjectAccess soa(self); |
| 1574 | Runtime::Current()->GetHeap()->RevokeThreadLocalBuffers(this); |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 1575 | if (kUseReadBarrier) { |
| 1576 | Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->RevokeThreadLocalMarkStack(this); |
| 1577 | } |
Hiroshi Yamauchi | a1b94c6 | 2014-12-17 15:49:56 -0800 | [diff] [blame] | 1578 | } |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 1579 | } |
Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 1580 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 1581 | Thread::~Thread() { |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1582 | CHECK(tlsPtr_.class_loader_override == nullptr); |
| 1583 | CHECK(tlsPtr_.jpeer == nullptr); |
| 1584 | CHECK(tlsPtr_.opeer == nullptr); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1585 | bool initialized = (tlsPtr_.jni_env != nullptr); // Did Thread::Init run? |
Alexei Zavjalov | 1efa0a9 | 2014-02-04 02:08:31 +0700 | [diff] [blame] | 1586 | if (initialized) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1587 | delete tlsPtr_.jni_env; |
| 1588 | tlsPtr_.jni_env = nullptr; |
Alexei Zavjalov | 1efa0a9 | 2014-02-04 02:08:31 +0700 | [diff] [blame] | 1589 | } |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 1590 | CHECK_NE(GetState(), kRunnable); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1591 | CHECK_NE(ReadFlag(kCheckpointRequest), true); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1592 | CHECK(tlsPtr_.checkpoint_functions[0] == nullptr); |
| 1593 | CHECK(tlsPtr_.checkpoint_functions[1] == nullptr); |
| 1594 | CHECK(tlsPtr_.checkpoint_functions[2] == nullptr); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1595 | CHECK(tlsPtr_.flip_function == nullptr); |
| 1596 | CHECK_EQ(tls32_.suspended_at_suspend_check, false); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1597 | |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 1598 | // Make sure we processed all deoptimization requests. |
| 1599 | CHECK(tlsPtr_.deoptimization_context_stack == nullptr) << "Missed deoptimization"; |
| 1600 | |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 1601 | // We may be deleting a still born thread. |
| 1602 | SetStateUnsafe(kTerminated); |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 1603 | |
| 1604 | delete wait_cond_; |
| 1605 | delete wait_mutex_; |
| 1606 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1607 | if (tlsPtr_.long_jump_context != nullptr) { |
| 1608 | delete tlsPtr_.long_jump_context; |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 1609 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 1610 | |
Alexei Zavjalov | 1efa0a9 | 2014-02-04 02:08:31 +0700 | [diff] [blame] | 1611 | if (initialized) { |
| 1612 | CleanupCpu(); |
| 1613 | } |
| 1614 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 1615 | if (tlsPtr_.single_step_control != nullptr) { |
| 1616 | delete tlsPtr_.single_step_control; |
| 1617 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1618 | delete tlsPtr_.instrumentation_stack; |
| 1619 | delete tlsPtr_.name; |
| 1620 | delete tlsPtr_.stack_trace_sample; |
Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 1621 | free(tlsPtr_.nested_signal_state); |
Elliott Hughes | d8af159 | 2012-04-16 20:40:15 -0700 | [diff] [blame] | 1622 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1623 | Runtime::Current()->GetHeap()->AssertThreadLocalBuffersAreRevoked(this); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 1624 | |
Elliott Hughes | d8af159 | 2012-04-16 20:40:15 -0700 | [diff] [blame] | 1625 | TearDownAlternateSignalStack(); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1626 | } |
| 1627 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1628 | void Thread::HandleUncaughtExceptions(ScopedObjectAccess& soa) { |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1629 | if (!IsExceptionPending()) { |
| 1630 | return; |
| 1631 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1632 | ScopedLocalRef<jobject> peer(tlsPtr_.jni_env, soa.AddLocalReference<jobject>(tlsPtr_.opeer)); |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1633 | ScopedThreadStateChange tsc(this, kNative); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1634 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1635 | // Get and clear the exception. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1636 | ScopedLocalRef<jthrowable> exception(tlsPtr_.jni_env, tlsPtr_.jni_env->ExceptionOccurred()); |
| 1637 | tlsPtr_.jni_env->ExceptionClear(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1638 | |
| 1639 | // If the thread has its own handler, use that. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1640 | ScopedLocalRef<jobject> handler(tlsPtr_.jni_env, |
| 1641 | tlsPtr_.jni_env->GetObjectField(peer.get(), |
| 1642 | WellKnownClasses::java_lang_Thread_uncaughtHandler)); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1643 | if (handler.get() == nullptr) { |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1644 | // Otherwise use the thread group's default handler. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1645 | handler.reset(tlsPtr_.jni_env->GetObjectField(peer.get(), |
| 1646 | WellKnownClasses::java_lang_Thread_group)); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | // Call the handler. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1650 | tlsPtr_.jni_env->CallVoidMethod(handler.get(), |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 1651 | WellKnownClasses::java_lang_Thread__UncaughtExceptionHandler_uncaughtException, |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1652 | peer.get(), exception.get()); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1653 | |
| 1654 | // If the handler threw, clear that exception too. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1655 | tlsPtr_.jni_env->ExceptionClear(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 1656 | } |
| 1657 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1658 | void Thread::RemoveFromThreadGroup(ScopedObjectAccess& soa) { |
Brian Carlstrom | 4514d3c | 2011-10-21 17:01:31 -0700 | [diff] [blame] | 1659 | // this.group.removeThread(this); |
| 1660 | // group can be null if we're in the compiler or a test. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1661 | mirror::Object* ogroup = soa.DecodeField(WellKnownClasses::java_lang_Thread_group) |
| 1662 | ->GetObject(tlsPtr_.opeer); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1663 | if (ogroup != nullptr) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1664 | ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup)); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1665 | ScopedLocalRef<jobject> peer(soa.Env(), soa.AddLocalReference<jobject>(tlsPtr_.opeer)); |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1666 | ScopedThreadStateChange tsc(soa.Self(), kNative); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1667 | tlsPtr_.jni_env->CallVoidMethod(group.get(), |
| 1668 | WellKnownClasses::java_lang_ThreadGroup_removeThread, |
| 1669 | peer.get()); |
Brian Carlstrom | 4514d3c | 2011-10-21 17:01:31 -0700 | [diff] [blame] | 1670 | } |
| 1671 | } |
| 1672 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1673 | size_t Thread::NumHandleReferences() { |
Ian Rogers | a8cd9f4 | 2011-08-19 16:43:41 -0700 | [diff] [blame] | 1674 | size_t count = 0; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1675 | for (HandleScope* cur = tlsPtr_.top_handle_scope; cur != nullptr; cur = cur->GetLink()) { |
Ian Rogers | a8cd9f4 | 2011-08-19 16:43:41 -0700 | [diff] [blame] | 1676 | count += cur->NumberOfReferences(); |
| 1677 | } |
| 1678 | return count; |
| 1679 | } |
| 1680 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1681 | bool Thread::HandleScopeContains(jobject obj) const { |
| 1682 | StackReference<mirror::Object>* hs_entry = |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1683 | reinterpret_cast<StackReference<mirror::Object>*>(obj); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1684 | for (HandleScope* cur = tlsPtr_.top_handle_scope; cur!= nullptr; cur = cur->GetLink()) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1685 | if (cur->Contains(hs_entry)) { |
Ian Rogers | a8cd9f4 | 2011-08-19 16:43:41 -0700 | [diff] [blame] | 1686 | return true; |
| 1687 | } |
| 1688 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1689 | // JNI code invoked from portable code uses shadow frames rather than the handle scope. |
| 1690 | return tlsPtr_.managed_stack.ShadowFramesContain(hs_entry); |
TDYa127 | 28f1a14 | 2012-03-15 21:51:52 -0700 | [diff] [blame] | 1691 | } |
| 1692 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 1693 | void Thread::HandleScopeVisitRoots(RootVisitor* visitor, uint32_t thread_id) { |
Mathieu Chartier | 4809d0a | 2015-04-07 10:39:04 -0700 | [diff] [blame] | 1694 | BufferedRootVisitor<kDefaultBufferedRootCount> buffered_visitor( |
| 1695 | visitor, RootInfo(kRootNativeStack, thread_id)); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1696 | for (HandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 1697 | for (size_t j = 0, count = cur->NumberOfReferences(); j < count; ++j) { |
Mathieu Chartier | 9086b65 | 2015-04-14 09:35:18 -0700 | [diff] [blame] | 1698 | // GetReference returns a pointer to the stack reference within the handle scope. If this |
| 1699 | // needs to be updated, it will be done by the root visitor. |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 1700 | buffered_visitor.VisitRootIfNonNull(cur->GetHandle(j).GetReference()); |
Shih-wei Liao | 8dfc9d5 | 2011-09-28 18:06:15 -0700 | [diff] [blame] | 1701 | } |
| 1702 | } |
| 1703 | } |
| 1704 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1705 | mirror::Object* Thread::DecodeJObject(jobject obj) const { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1706 | if (obj == nullptr) { |
| 1707 | return nullptr; |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 1708 | } |
| 1709 | IndirectRef ref = reinterpret_cast<IndirectRef>(obj); |
| 1710 | IndirectRefKind kind = GetIndirectRefKind(ref); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1711 | mirror::Object* result; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1712 | bool expect_null = false; |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 1713 | // The "kinds" below are sorted by the frequency we expect to encounter them. |
| 1714 | if (kind == kLocal) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1715 | IndirectReferenceTable& locals = tlsPtr_.jni_env->locals; |
Hiroshi Yamauchi | 196851b | 2014-05-29 12:16:04 -0700 | [diff] [blame] | 1716 | // Local references do not need a read barrier. |
| 1717 | result = locals.Get<kWithoutReadBarrier>(ref); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1718 | } else if (kind == kHandleScopeOrInvalid) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1719 | // TODO: make stack indirect reference table lookup more efficient. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1720 | // Check if this is a local reference in the handle scope. |
| 1721 | if (LIKELY(HandleScopeContains(obj))) { |
| 1722 | // Read from handle scope. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1723 | result = reinterpret_cast<StackReference<mirror::Object>*>(obj)->AsMirrorPtr(); |
Mathieu Chartier | c645f1d | 2014-03-06 18:11:53 -0800 | [diff] [blame] | 1724 | VerifyObject(result); |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 1725 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1726 | tlsPtr_.jni_env->vm->JniAbortF(nullptr, "use of invalid jobject %p", obj); |
| 1727 | expect_null = true; |
| 1728 | result = nullptr; |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 1729 | } |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 1730 | } else if (kind == kGlobal) { |
Mathieu Chartier | 30b5e27 | 2015-09-01 11:14:34 -0700 | [diff] [blame^] | 1731 | result = tlsPtr_.jni_env->vm->DecodeGlobal(ref); |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 1732 | } else { |
| 1733 | DCHECK_EQ(kind, kWeakGlobal); |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1734 | result = tlsPtr_.jni_env->vm->DecodeWeakGlobal(const_cast<Thread*>(this), ref); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1735 | if (Runtime::Current()->IsClearedJniWeakGlobal(result)) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1736 | // This is a special case where it's okay to return null. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1737 | expect_null = true; |
| 1738 | result = nullptr; |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 1739 | } |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 1740 | } |
| 1741 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1742 | if (UNLIKELY(!expect_null && result == nullptr)) { |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1743 | tlsPtr_.jni_env->vm->JniAbortF(nullptr, "use of deleted %s %p", |
| 1744 | ToStr<IndirectRefKind>(kind).c_str(), obj); |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 1745 | } |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 1746 | return result; |
| 1747 | } |
| 1748 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1749 | // Implements java.lang.Thread.interrupted. |
| 1750 | bool Thread::Interrupted() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1751 | MutexLock mu(Thread::Current(), *wait_mutex_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1752 | bool interrupted = IsInterruptedLocked(); |
| 1753 | SetInterruptedLocked(false); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1754 | return interrupted; |
| 1755 | } |
| 1756 | |
| 1757 | // Implements java.lang.Thread.isInterrupted. |
| 1758 | bool Thread::IsInterrupted() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1759 | MutexLock mu(Thread::Current(), *wait_mutex_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1760 | return IsInterruptedLocked(); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1761 | } |
| 1762 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1763 | void Thread::Interrupt(Thread* self) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1764 | MutexLock mu(self, *wait_mutex_); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1765 | if (interrupted_) { |
| 1766 | return; |
| 1767 | } |
| 1768 | interrupted_ = true; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1769 | NotifyLocked(self); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1770 | } |
| 1771 | |
| 1772 | void Thread::Notify() { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1773 | Thread* self = Thread::Current(); |
| 1774 | MutexLock mu(self, *wait_mutex_); |
| 1775 | NotifyLocked(self); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1776 | } |
| 1777 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1778 | void Thread::NotifyLocked(Thread* self) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1779 | if (wait_monitor_ != nullptr) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1780 | wait_cond_->Signal(self); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1781 | } |
| 1782 | } |
| 1783 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1784 | void Thread::SetClassLoaderOverride(jobject class_loader_override) { |
| 1785 | if (tlsPtr_.class_loader_override != nullptr) { |
| 1786 | GetJniEnv()->DeleteGlobalRef(tlsPtr_.class_loader_override); |
| 1787 | } |
| 1788 | tlsPtr_.class_loader_override = GetJniEnv()->NewGlobalRef(class_loader_override); |
| 1789 | } |
| 1790 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1791 | class CountStackDepthVisitor : public StackVisitor { |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1792 | public: |
Brian Carlstrom | 93ba893 | 2013-07-17 21:31:49 -0700 | [diff] [blame] | 1793 | explicit CountStackDepthVisitor(Thread* thread) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1794 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 1795 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1796 | depth_(0), skip_depth_(0), skipping_(true) {} |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 1797 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1798 | bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) { |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1799 | // We want to skip frames up to and including the exception's constructor. |
Ian Rogers | 9086572 | 2011-09-19 11:11:44 -0700 | [diff] [blame] | 1800 | // Note we also skip the frame if it doesn't have a method (namely the callee |
| 1801 | // save frame) |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1802 | ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1803 | if (skipping_ && !m->IsRuntimeMethod() && |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1804 | !mirror::Throwable::GetJavaLangThrowable()->IsAssignableFrom(m->GetDeclaringClass())) { |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1805 | skipping_ = false; |
| 1806 | } |
| 1807 | if (!skipping_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1808 | if (!m->IsRuntimeMethod()) { // Ignore runtime frames (in particular callee save). |
Ian Rogers | 6b0870d | 2011-12-15 19:38:12 -0800 | [diff] [blame] | 1809 | ++depth_; |
| 1810 | } |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1811 | } else { |
| 1812 | ++skip_depth_; |
| 1813 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1814 | return true; |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 1815 | } |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1816 | |
| 1817 | int GetDepth() const { |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1818 | return depth_; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1819 | } |
| 1820 | |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1821 | int GetSkipDepth() const { |
| 1822 | return skip_depth_; |
| 1823 | } |
| 1824 | |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1825 | private: |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1826 | uint32_t depth_; |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1827 | uint32_t skip_depth_; |
| 1828 | bool skipping_; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1829 | }; |
| 1830 | |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1831 | template<bool kTransactionActive> |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1832 | class BuildInternalStackTraceVisitor : public StackVisitor { |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1833 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 1834 | BuildInternalStackTraceVisitor(Thread* self, Thread* thread, int skip_depth) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 1835 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 1836 | self_(self), |
| 1837 | skip_depth_(skip_depth), |
| 1838 | count_(0), |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1839 | trace_(nullptr), |
| 1840 | pointer_size_(Runtime::Current()->GetClassLinker()->GetImagePointerSize()) {} |
Ian Rogers | 283ed0d | 2012-02-16 15:25:09 -0800 | [diff] [blame] | 1841 | |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 1842 | bool Init(int depth) SHARED_REQUIRES(Locks::mutator_lock_) ACQUIRE(Roles::uninterruptible_) { |
Sebastien Hertz | 415fd08 | 2015-06-01 11:42:27 +0200 | [diff] [blame] | 1843 | // Allocate method trace with format [method pointers][pcs]. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1844 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 1845 | trace_ = cl->AllocPointerArray(self_, depth * 2); |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 1846 | const char* last_no_suspend_cause = |
| 1847 | self_->StartAssertNoThreadSuspension("Building internal stack trace"); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1848 | if (trace_ == nullptr) { |
| 1849 | self_->AssertPendingOOMException(); |
Ian Rogers | 283ed0d | 2012-02-16 15:25:09 -0800 | [diff] [blame] | 1850 | return false; |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 1851 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1852 | // If We are called from native, use non-transactional mode. |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1853 | CHECK(last_no_suspend_cause == nullptr) << last_no_suspend_cause; |
Ian Rogers | 283ed0d | 2012-02-16 15:25:09 -0800 | [diff] [blame] | 1854 | return true; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1855 | } |
| 1856 | |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 1857 | virtual ~BuildInternalStackTraceVisitor() RELEASE(Roles::uninterruptible_) { |
| 1858 | self_->EndAssertNoThreadSuspension(nullptr); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1859 | } |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1860 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1861 | bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1862 | if (trace_ == nullptr) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1863 | return true; // We're probably trying to fillInStackTrace for an OutOfMemoryError. |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 1864 | } |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1865 | if (skip_depth_ > 0) { |
| 1866 | skip_depth_--; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1867 | return true; |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1868 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1869 | ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1870 | if (m->IsRuntimeMethod()) { |
| 1871 | return true; // Ignore runtime frames (in particular callee save). |
Ian Rogers | 6b0870d | 2011-12-15 19:38:12 -0800 | [diff] [blame] | 1872 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1873 | trace_->SetElementPtrSize<kTransactionActive>( |
| 1874 | count_, m, pointer_size_); |
| 1875 | trace_->SetElementPtrSize<kTransactionActive>( |
| 1876 | trace_->GetLength() / 2 + count_, m->IsProxyMethod() ? DexFile::kDexNoIndex : GetDexPc(), |
| 1877 | pointer_size_); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1878 | ++count_; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1879 | return true; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1880 | } |
| 1881 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1882 | mirror::PointerArray* GetInternalStackTrace() const { |
| 1883 | return trace_; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | private: |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 1887 | Thread* const self_; |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1888 | // How many more frames to skip. |
| 1889 | int32_t skip_depth_; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1890 | // Current position down stack trace. |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1891 | uint32_t count_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1892 | // An array of the methods on the stack, the last entries are the dex PCs. |
| 1893 | mirror::PointerArray* trace_; |
| 1894 | // For cross compilation. |
| 1895 | size_t pointer_size_; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1896 | }; |
| 1897 | |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1898 | template<bool kTransactionActive> |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 1899 | jobject Thread::CreateInternalStackTrace(const ScopedObjectAccessAlreadyRunnable& soa) const { |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1900 | // Compute depth of stack |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 1901 | CountStackDepthVisitor count_visitor(const_cast<Thread*>(this)); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1902 | count_visitor.WalkStack(); |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1903 | int32_t depth = count_visitor.GetDepth(); |
Elliott Hughes | 29f2742 | 2011-09-18 16:02:18 -0700 | [diff] [blame] | 1904 | int32_t skip_depth = count_visitor.GetSkipDepth(); |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 1905 | |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 1906 | // Build internal stack trace. |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1907 | BuildInternalStackTraceVisitor<kTransactionActive> build_trace_visitor(soa.Self(), |
| 1908 | const_cast<Thread*>(this), |
| 1909 | skip_depth); |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 1910 | if (!build_trace_visitor.Init(depth)) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1911 | return nullptr; // Allocation failed. |
Ian Rogers | 283ed0d | 2012-02-16 15:25:09 -0800 | [diff] [blame] | 1912 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1913 | build_trace_visitor.WalkStack(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1914 | mirror::PointerArray* trace = build_trace_visitor.GetInternalStackTrace(); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 1915 | if (kIsDebugBuild) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1916 | // Second half is dex PCs. |
| 1917 | for (uint32_t i = 0; i < static_cast<uint32_t>(trace->GetLength() / 2); ++i) { |
| 1918 | auto* method = trace->GetElementPtrSize<ArtMethod*>( |
| 1919 | i, Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
| 1920 | CHECK(method != nullptr); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 1921 | } |
| 1922 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1923 | return soa.AddLocalReference<jobject>(trace); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1924 | } |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 1925 | template jobject Thread::CreateInternalStackTrace<false>( |
| 1926 | const ScopedObjectAccessAlreadyRunnable& soa) const; |
| 1927 | template jobject Thread::CreateInternalStackTrace<true>( |
| 1928 | const ScopedObjectAccessAlreadyRunnable& soa) const; |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1929 | |
Nicolas Geoffray | 7642cfc | 2015-02-26 10:56:09 +0000 | [diff] [blame] | 1930 | bool Thread::IsExceptionThrownByCurrentMethod(mirror::Throwable* exception) const { |
| 1931 | CountStackDepthVisitor count_visitor(const_cast<Thread*>(this)); |
| 1932 | count_visitor.WalkStack(); |
| 1933 | return count_visitor.GetDepth() == exception->GetStackDepth(); |
| 1934 | } |
| 1935 | |
Mathieu Chartier | 2b7c4d1 | 2014-05-19 10:52:16 -0700 | [diff] [blame] | 1936 | jobjectArray Thread::InternalStackTraceToStackTraceElementArray( |
| 1937 | const ScopedObjectAccessAlreadyRunnable& soa, jobject internal, jobjectArray output_array, |
| 1938 | int* stack_depth) { |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1939 | // Decode the internal stack trace into the depth, method trace and PC trace |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1940 | int32_t depth = soa.Decode<mirror::PointerArray*>(internal)->GetLength() / 2; |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1941 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1942 | auto* cl = Runtime::Current()->GetClassLinker(); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1943 | |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1944 | jobjectArray result; |
Mathieu Chartier | 530825b | 2013-09-25 17:56:49 -0700 | [diff] [blame] | 1945 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1946 | if (output_array != nullptr) { |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1947 | // Reuse the array we were given. |
| 1948 | result = output_array; |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1949 | // ...adjusting the number of frames we'll write to not exceed the array length. |
Mathieu Chartier | 530825b | 2013-09-25 17:56:49 -0700 | [diff] [blame] | 1950 | const int32_t traces_length = |
| 1951 | soa.Decode<mirror::ObjectArray<mirror::StackTraceElement>*>(result)->GetLength(); |
| 1952 | depth = std::min(depth, traces_length); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1953 | } else { |
| 1954 | // Create java_trace array and place in local reference table |
Mathieu Chartier | 530825b | 2013-09-25 17:56:49 -0700 | [diff] [blame] | 1955 | mirror::ObjectArray<mirror::StackTraceElement>* java_traces = |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1956 | cl->AllocStackTraceElementArray(soa.Self(), depth); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1957 | if (java_traces == nullptr) { |
| 1958 | return nullptr; |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 1959 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1960 | result = soa.AddLocalReference<jobjectArray>(java_traces); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1961 | } |
| 1962 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1963 | if (stack_depth != nullptr) { |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 1964 | *stack_depth = depth; |
| 1965 | } |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 1966 | |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 1967 | for (int32_t i = 0; i < depth; ++i) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1968 | auto* method_trace = soa.Decode<mirror::PointerArray*>(internal); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 1969 | // Prepare parameters for StackTraceElement(String cls, String method, String file, int line) |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1970 | ArtMethod* method = method_trace->GetElementPtrSize<ArtMethod*>(i, sizeof(void*)); |
| 1971 | uint32_t dex_pc = method_trace->GetElementPtrSize<uint32_t>( |
| 1972 | i + method_trace->GetLength() / 2, sizeof(void*)); |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 1973 | int32_t line_number; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1974 | StackHandleScope<3> hs(soa.Self()); |
| 1975 | auto class_name_object(hs.NewHandle<mirror::String>(nullptr)); |
| 1976 | auto source_name_object(hs.NewHandle<mirror::String>(nullptr)); |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 1977 | if (method->IsProxyMethod()) { |
| 1978 | line_number = -1; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1979 | class_name_object.Assign(method->GetDeclaringClass()->GetName()); |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 1980 | // source_name_object intentionally left null for proxy methods |
| 1981 | } else { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1982 | line_number = method->GetLineNumFromDexPC(dex_pc); |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 1983 | // Allocate element, potentially triggering GC |
| 1984 | // TODO: reuse class_name_object via Class::name_? |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1985 | const char* descriptor = method->GetDeclaringClassDescriptor(); |
Brian Carlstrom | 7c6aca2 | 2014-01-31 18:44:56 -0800 | [diff] [blame] | 1986 | CHECK(descriptor != nullptr); |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 1987 | std::string class_name(PrettyDescriptor(descriptor)); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1988 | class_name_object.Assign( |
| 1989 | mirror::String::AllocFromModifiedUtf8(soa.Self(), class_name.c_str())); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1990 | if (class_name_object.Get() == nullptr) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1991 | soa.Self()->AssertPendingOOMException(); |
Brian Carlstrom | 7c6aca2 | 2014-01-31 18:44:56 -0800 | [diff] [blame] | 1992 | return nullptr; |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 1993 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1994 | const char* source_file = method->GetDeclaringClassSourceFile(); |
Brian Carlstrom | 7c6aca2 | 2014-01-31 18:44:56 -0800 | [diff] [blame] | 1995 | if (source_file != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1996 | source_name_object.Assign(mirror::String::AllocFromModifiedUtf8(soa.Self(), source_file)); |
| 1997 | if (source_name_object.Get() == nullptr) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1998 | soa.Self()->AssertPendingOOMException(); |
Brian Carlstrom | 7c6aca2 | 2014-01-31 18:44:56 -0800 | [diff] [blame] | 1999 | return nullptr; |
| 2000 | } |
Jeff Hao | 228d6b8 | 2013-12-03 15:00:05 -0800 | [diff] [blame] | 2001 | } |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 2002 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2003 | const char* method_name = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetName(); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2004 | CHECK(method_name != nullptr); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2005 | Handle<mirror::String> method_name_object( |
| 2006 | hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), method_name))); |
| 2007 | if (method_name_object.Get() == nullptr) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2008 | return nullptr; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 2009 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 2010 | mirror::StackTraceElement* obj = mirror::StackTraceElement::Alloc( |
| 2011 | soa.Self(), class_name_object, method_name_object, source_name_object, line_number); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2012 | if (obj == nullptr) { |
| 2013 | return nullptr; |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 2014 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2015 | // We are called from native: use non-transactional mode. |
| 2016 | soa.Decode<mirror::ObjectArray<mirror::StackTraceElement>*>(result)->Set<false>(i, obj); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2017 | } |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 2018 | return result; |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2021 | void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { |
Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 2022 | va_list args; |
| 2023 | va_start(args, fmt); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2024 | ThrowNewExceptionV(exception_class_descriptor, fmt, args); |
Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 2025 | va_end(args); |
Elliott Hughes | 4a2b417 | 2011-09-20 17:08:25 -0700 | [diff] [blame] | 2026 | } |
| 2027 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2028 | void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2029 | const char* fmt, va_list ap) { |
Elliott Hughes | 4a2b417 | 2011-09-20 17:08:25 -0700 | [diff] [blame] | 2030 | std::string msg; |
| 2031 | StringAppendV(&msg, fmt, ap); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2032 | ThrowNewException(exception_class_descriptor, msg.c_str()); |
Elliott Hughes | 5cb5ad2 | 2011-10-02 12:13:39 -0700 | [diff] [blame] | 2033 | } |
Elliott Hughes | 37f7a40 | 2011-08-22 18:56:01 -0700 | [diff] [blame] | 2034 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2035 | void Thread::ThrowNewException(const char* exception_class_descriptor, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2036 | const char* msg) { |
Mathieu Chartier | 8d7672e | 2014-02-25 10:57:16 -0800 | [diff] [blame] | 2037 | // Callers should either clear or call ThrowNewWrappedException. |
| 2038 | AssertNoPendingExceptionForNewException(msg); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2039 | ThrowNewWrappedException(exception_class_descriptor, msg); |
Elliott Hughes | a4f9474 | 2012-05-29 16:28:38 -0700 | [diff] [blame] | 2040 | } |
| 2041 | |
Nicolas Geoffray | ee07703 | 2015-03-09 14:56:37 +0000 | [diff] [blame] | 2042 | static mirror::ClassLoader* GetCurrentClassLoader(Thread* self) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2043 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2044 | ArtMethod* method = self->GetCurrentMethod(nullptr); |
Nicolas Geoffray | ee07703 | 2015-03-09 14:56:37 +0000 | [diff] [blame] | 2045 | return method != nullptr |
| 2046 | ? method->GetDeclaringClass()->GetClassLoader() |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2047 | : nullptr; |
| 2048 | } |
| 2049 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2050 | void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2051 | const char* msg) { |
| 2052 | DCHECK_EQ(this, Thread::Current()); |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2053 | ScopedObjectAccessUnchecked soa(this); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2054 | StackHandleScope<3> hs(soa.Self()); |
Nicolas Geoffray | ee07703 | 2015-03-09 14:56:37 +0000 | [diff] [blame] | 2055 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle(GetCurrentClassLoader(soa.Self()))); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2056 | ScopedLocalRef<jobject> cause(GetJniEnv(), soa.AddLocalReference<jobject>(GetException())); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2057 | ClearException(); |
| 2058 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2059 | auto* cl = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2060 | Handle<mirror::Class> exception_class( |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2061 | hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader))); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2062 | if (UNLIKELY(exception_class.Get() == nullptr)) { |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 2063 | CHECK(IsExceptionPending()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2064 | LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor); |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 2065 | return; |
| 2066 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2067 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 2068 | if (UNLIKELY(!runtime->GetClassLinker()->EnsureInitialized(soa.Self(), exception_class, true, |
| 2069 | true))) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2070 | DCHECK(IsExceptionPending()); |
| 2071 | return; |
| 2072 | } |
| 2073 | DCHECK(!runtime->IsStarted() || exception_class->IsThrowableClass()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2074 | Handle<mirror::Throwable> exception( |
| 2075 | hs.NewHandle(down_cast<mirror::Throwable*>(exception_class->AllocObject(this)))); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2076 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 2077 | // If we couldn't allocate the exception, throw the pre-allocated out of memory exception. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2078 | if (exception.Get() == nullptr) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2079 | SetException(Runtime::Current()->GetPreAllocatedOutOfMemoryError()); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 2080 | return; |
| 2081 | } |
| 2082 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2083 | // Choose an appropriate constructor and set up the arguments. |
| 2084 | const char* signature; |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2085 | ScopedLocalRef<jstring> msg_string(GetJniEnv(), nullptr); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2086 | if (msg != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2087 | // Ensure we remember this and the method over the String allocation. |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2088 | msg_string.reset( |
| 2089 | soa.AddLocalReference<jstring>(mirror::String::AllocFromModifiedUtf8(this, msg))); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2090 | if (UNLIKELY(msg_string.get() == nullptr)) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2091 | CHECK(IsExceptionPending()); // OOME. |
| 2092 | return; |
Brian Carlstrom | ebd1fd2 | 2011-12-07 15:46:26 -0800 | [diff] [blame] | 2093 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2094 | if (cause.get() == nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2095 | signature = "(Ljava/lang/String;)V"; |
| 2096 | } else { |
| 2097 | signature = "(Ljava/lang/String;Ljava/lang/Throwable;)V"; |
| 2098 | } |
| 2099 | } else { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2100 | if (cause.get() == nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2101 | signature = "()V"; |
| 2102 | } else { |
| 2103 | signature = "(Ljava/lang/Throwable;)V"; |
| 2104 | } |
Brian Carlstrom | ebd1fd2 | 2011-12-07 15:46:26 -0800 | [diff] [blame] | 2105 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2106 | ArtMethod* exception_init_method = |
| 2107 | exception_class->FindDeclaredDirectMethod("<init>", signature, cl->GetImagePointerSize()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2108 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2109 | CHECK(exception_init_method != nullptr) << "No <init>" << signature << " in " |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2110 | << PrettyDescriptor(exception_class_descriptor); |
| 2111 | |
| 2112 | if (UNLIKELY(!runtime->IsStarted())) { |
| 2113 | // Something is trying to throw an exception without a started runtime, which is the common |
| 2114 | // case in the compiler. We won't be able to invoke the constructor of the exception, so set |
| 2115 | // the exception fields directly. |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2116 | if (msg != nullptr) { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2117 | exception->SetDetailMessage(down_cast<mirror::String*>(DecodeJObject(msg_string.get()))); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2118 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2119 | if (cause.get() != nullptr) { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2120 | exception->SetCause(down_cast<mirror::Throwable*>(DecodeJObject(cause.get()))); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2121 | } |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2122 | ScopedLocalRef<jobject> trace(GetJniEnv(), |
| 2123 | Runtime::Current()->IsActiveTransaction() |
| 2124 | ? CreateInternalStackTrace<true>(soa) |
| 2125 | : CreateInternalStackTrace<false>(soa)); |
| 2126 | if (trace.get() != nullptr) { |
| 2127 | exception->SetStackState(down_cast<mirror::Throwable*>(DecodeJObject(trace.get()))); |
| 2128 | } |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2129 | SetException(exception.Get()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2130 | } else { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2131 | jvalue jv_args[2]; |
| 2132 | size_t i = 0; |
| 2133 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2134 | if (msg != nullptr) { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2135 | jv_args[i].l = msg_string.get(); |
| 2136 | ++i; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2137 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2138 | if (cause.get() != nullptr) { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 2139 | jv_args[i].l = cause.get(); |
| 2140 | ++i; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2141 | } |
Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 2142 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(exception.Get())); |
| 2143 | InvokeWithJValues(soa, ref.get(), soa.EncodeMethod(exception_init_method), jv_args); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2144 | if (LIKELY(!IsExceptionPending())) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2145 | SetException(exception.Get()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2146 | } |
Elliott Hughes | 3064683 | 2011-10-13 16:59:46 -0700 | [diff] [blame] | 2147 | } |
Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 2148 | } |
| 2149 | |
Elliott Hughes | 2ced6a5 | 2011-10-16 18:44:48 -0700 | [diff] [blame] | 2150 | void Thread::ThrowOutOfMemoryError(const char* msg) { |
Andreas Gampe | e4301ff | 2015-02-17 19:25:29 -0800 | [diff] [blame] | 2151 | LOG(WARNING) << StringPrintf("Throwing OutOfMemoryError \"%s\"%s", |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2152 | msg, (tls32_.throwing_OutOfMemoryError ? " (recursive case)" : "")); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2153 | if (!tls32_.throwing_OutOfMemoryError) { |
| 2154 | tls32_.throwing_OutOfMemoryError = true; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 2155 | ThrowNewException("Ljava/lang/OutOfMemoryError;", msg); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2156 | tls32_.throwing_OutOfMemoryError = false; |
Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 2157 | } else { |
Andreas Gampe | e4301ff | 2015-02-17 19:25:29 -0800 | [diff] [blame] | 2158 | Dump(LOG(WARNING)); // The pre-allocated OOME has no stack, so help out and log one. |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2159 | SetException(Runtime::Current()->GetPreAllocatedOutOfMemoryError()); |
Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 2160 | } |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 2161 | } |
| 2162 | |
Elliott Hughes | 498508c | 2011-10-17 14:58:22 -0700 | [diff] [blame] | 2163 | Thread* Thread::CurrentFromGdb() { |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 2164 | return Thread::Current(); |
| 2165 | } |
| 2166 | |
| 2167 | void Thread::DumpFromGdb() const { |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 2168 | std::ostringstream ss; |
| 2169 | Dump(ss); |
Elliott Hughes | 9557241 | 2011-12-13 18:14:20 -0800 | [diff] [blame] | 2170 | std::string str(ss.str()); |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 2171 | // log to stderr for debugging command line processes |
| 2172 | std::cerr << str; |
Andreas Gampe | c60e1b7 | 2015-07-30 08:57:50 -0700 | [diff] [blame] | 2173 | #ifdef __ANDROID__ |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 2174 | // log to logcat for debugging frameworks processes |
| 2175 | LOG(INFO) << str; |
| 2176 | #endif |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 2177 | } |
| 2178 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2179 | // Explicitly instantiate 32 and 64bit thread offset dumping support. |
| 2180 | template void Thread::DumpThreadOffset<4>(std::ostream& os, uint32_t offset); |
| 2181 | template void Thread::DumpThreadOffset<8>(std::ostream& os, uint32_t offset); |
Elliott Hughes | 98e2017 | 2012-04-24 15:38:13 -0700 | [diff] [blame] | 2182 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2183 | template<size_t ptr_size> |
| 2184 | void Thread::DumpThreadOffset(std::ostream& os, uint32_t offset) { |
| 2185 | #define DO_THREAD_OFFSET(x, y) \ |
| 2186 | if (offset == x.Uint32Value()) { \ |
| 2187 | os << y; \ |
Brian Carlstrom | f69863b | 2013-07-17 21:53:13 -0700 | [diff] [blame] | 2188 | return; \ |
| 2189 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2190 | DO_THREAD_OFFSET(ThreadFlagsOffset<ptr_size>(), "state_and_flags") |
| 2191 | DO_THREAD_OFFSET(CardTableOffset<ptr_size>(), "card_table") |
| 2192 | DO_THREAD_OFFSET(ExceptionOffset<ptr_size>(), "exception") |
| 2193 | DO_THREAD_OFFSET(PeerOffset<ptr_size>(), "peer"); |
| 2194 | DO_THREAD_OFFSET(JniEnvOffset<ptr_size>(), "jni_env") |
| 2195 | DO_THREAD_OFFSET(SelfOffset<ptr_size>(), "self") |
| 2196 | DO_THREAD_OFFSET(StackEndOffset<ptr_size>(), "stack_end") |
| 2197 | DO_THREAD_OFFSET(ThinLockIdOffset<ptr_size>(), "thin_lock_thread_id") |
| 2198 | DO_THREAD_OFFSET(TopOfManagedStackOffset<ptr_size>(), "top_quick_frame_method") |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2199 | DO_THREAD_OFFSET(TopShadowFrameOffset<ptr_size>(), "top_shadow_frame") |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2200 | DO_THREAD_OFFSET(TopHandleScopeOffset<ptr_size>(), "top_handle_scope") |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2201 | DO_THREAD_OFFSET(ThreadSuspendTriggerOffset<ptr_size>(), "suspend_trigger") |
Elliott Hughes | 28fa76d | 2012-04-09 17:31:46 -0700 | [diff] [blame] | 2202 | #undef DO_THREAD_OFFSET |
Elliott Hughes | 98e2017 | 2012-04-24 15:38:13 -0700 | [diff] [blame] | 2203 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2204 | #define INTERPRETER_ENTRY_POINT_INFO(x) \ |
| 2205 | if (INTERPRETER_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ |
| 2206 | os << #x; \ |
| 2207 | return; \ |
Elliott Hughes | 98e2017 | 2012-04-24 15:38:13 -0700 | [diff] [blame] | 2208 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2209 | INTERPRETER_ENTRY_POINT_INFO(pInterpreterToInterpreterBridge) |
| 2210 | INTERPRETER_ENTRY_POINT_INFO(pInterpreterToCompiledCodeBridge) |
| 2211 | #undef INTERPRETER_ENTRY_POINT_INFO |
| 2212 | |
| 2213 | #define JNI_ENTRY_POINT_INFO(x) \ |
| 2214 | if (JNI_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ |
| 2215 | os << #x; \ |
| 2216 | return; \ |
| 2217 | } |
| 2218 | JNI_ENTRY_POINT_INFO(pDlsymLookup) |
| 2219 | #undef JNI_ENTRY_POINT_INFO |
| 2220 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2221 | #define QUICK_ENTRY_POINT_INFO(x) \ |
| 2222 | if (QUICK_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ |
| 2223 | os << #x; \ |
| 2224 | return; \ |
| 2225 | } |
| 2226 | QUICK_ENTRY_POINT_INFO(pAllocArray) |
| 2227 | QUICK_ENTRY_POINT_INFO(pAllocArrayResolved) |
| 2228 | QUICK_ENTRY_POINT_INFO(pAllocArrayWithAccessCheck) |
| 2229 | QUICK_ENTRY_POINT_INFO(pAllocObject) |
| 2230 | QUICK_ENTRY_POINT_INFO(pAllocObjectResolved) |
| 2231 | QUICK_ENTRY_POINT_INFO(pAllocObjectInitialized) |
| 2232 | QUICK_ENTRY_POINT_INFO(pAllocObjectWithAccessCheck) |
| 2233 | QUICK_ENTRY_POINT_INFO(pCheckAndAllocArray) |
| 2234 | QUICK_ENTRY_POINT_INFO(pCheckAndAllocArrayWithAccessCheck) |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 2235 | QUICK_ENTRY_POINT_INFO(pAllocStringFromBytes) |
| 2236 | QUICK_ENTRY_POINT_INFO(pAllocStringFromChars) |
| 2237 | QUICK_ENTRY_POINT_INFO(pAllocStringFromString) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2238 | QUICK_ENTRY_POINT_INFO(pInstanceofNonTrivial) |
| 2239 | QUICK_ENTRY_POINT_INFO(pCheckCast) |
| 2240 | QUICK_ENTRY_POINT_INFO(pInitializeStaticStorage) |
| 2241 | QUICK_ENTRY_POINT_INFO(pInitializeTypeAndVerifyAccess) |
| 2242 | QUICK_ENTRY_POINT_INFO(pInitializeType) |
| 2243 | QUICK_ENTRY_POINT_INFO(pResolveString) |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 2244 | QUICK_ENTRY_POINT_INFO(pSet8Instance) |
| 2245 | QUICK_ENTRY_POINT_INFO(pSet8Static) |
| 2246 | QUICK_ENTRY_POINT_INFO(pSet16Instance) |
| 2247 | QUICK_ENTRY_POINT_INFO(pSet16Static) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2248 | QUICK_ENTRY_POINT_INFO(pSet32Instance) |
| 2249 | QUICK_ENTRY_POINT_INFO(pSet32Static) |
| 2250 | QUICK_ENTRY_POINT_INFO(pSet64Instance) |
| 2251 | QUICK_ENTRY_POINT_INFO(pSet64Static) |
| 2252 | QUICK_ENTRY_POINT_INFO(pSetObjInstance) |
| 2253 | QUICK_ENTRY_POINT_INFO(pSetObjStatic) |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 2254 | QUICK_ENTRY_POINT_INFO(pGetByteInstance) |
| 2255 | QUICK_ENTRY_POINT_INFO(pGetBooleanInstance) |
| 2256 | QUICK_ENTRY_POINT_INFO(pGetByteStatic) |
| 2257 | QUICK_ENTRY_POINT_INFO(pGetBooleanStatic) |
| 2258 | QUICK_ENTRY_POINT_INFO(pGetShortInstance) |
| 2259 | QUICK_ENTRY_POINT_INFO(pGetCharInstance) |
| 2260 | QUICK_ENTRY_POINT_INFO(pGetShortStatic) |
| 2261 | QUICK_ENTRY_POINT_INFO(pGetCharStatic) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2262 | QUICK_ENTRY_POINT_INFO(pGet32Instance) |
| 2263 | QUICK_ENTRY_POINT_INFO(pGet32Static) |
| 2264 | QUICK_ENTRY_POINT_INFO(pGet64Instance) |
| 2265 | QUICK_ENTRY_POINT_INFO(pGet64Static) |
| 2266 | QUICK_ENTRY_POINT_INFO(pGetObjInstance) |
| 2267 | QUICK_ENTRY_POINT_INFO(pGetObjStatic) |
| 2268 | QUICK_ENTRY_POINT_INFO(pAputObjectWithNullAndBoundCheck) |
| 2269 | QUICK_ENTRY_POINT_INFO(pAputObjectWithBoundCheck) |
| 2270 | QUICK_ENTRY_POINT_INFO(pAputObject) |
| 2271 | QUICK_ENTRY_POINT_INFO(pHandleFillArrayData) |
| 2272 | QUICK_ENTRY_POINT_INFO(pJniMethodStart) |
| 2273 | QUICK_ENTRY_POINT_INFO(pJniMethodStartSynchronized) |
| 2274 | QUICK_ENTRY_POINT_INFO(pJniMethodEnd) |
| 2275 | QUICK_ENTRY_POINT_INFO(pJniMethodEndSynchronized) |
| 2276 | QUICK_ENTRY_POINT_INFO(pJniMethodEndWithReference) |
| 2277 | QUICK_ENTRY_POINT_INFO(pJniMethodEndWithReferenceSynchronized) |
| 2278 | QUICK_ENTRY_POINT_INFO(pQuickGenericJniTrampoline) |
| 2279 | QUICK_ENTRY_POINT_INFO(pLockObject) |
| 2280 | QUICK_ENTRY_POINT_INFO(pUnlockObject) |
| 2281 | QUICK_ENTRY_POINT_INFO(pCmpgDouble) |
| 2282 | QUICK_ENTRY_POINT_INFO(pCmpgFloat) |
| 2283 | QUICK_ENTRY_POINT_INFO(pCmplDouble) |
| 2284 | QUICK_ENTRY_POINT_INFO(pCmplFloat) |
| 2285 | QUICK_ENTRY_POINT_INFO(pFmod) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2286 | QUICK_ENTRY_POINT_INFO(pL2d) |
| 2287 | QUICK_ENTRY_POINT_INFO(pFmodf) |
| 2288 | QUICK_ENTRY_POINT_INFO(pL2f) |
| 2289 | QUICK_ENTRY_POINT_INFO(pD2iz) |
| 2290 | QUICK_ENTRY_POINT_INFO(pF2iz) |
| 2291 | QUICK_ENTRY_POINT_INFO(pIdivmod) |
| 2292 | QUICK_ENTRY_POINT_INFO(pD2l) |
| 2293 | QUICK_ENTRY_POINT_INFO(pF2l) |
| 2294 | QUICK_ENTRY_POINT_INFO(pLdiv) |
| 2295 | QUICK_ENTRY_POINT_INFO(pLmod) |
| 2296 | QUICK_ENTRY_POINT_INFO(pLmul) |
| 2297 | QUICK_ENTRY_POINT_INFO(pShlLong) |
| 2298 | QUICK_ENTRY_POINT_INFO(pShrLong) |
| 2299 | QUICK_ENTRY_POINT_INFO(pUshrLong) |
| 2300 | QUICK_ENTRY_POINT_INFO(pIndexOf) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2301 | QUICK_ENTRY_POINT_INFO(pStringCompareTo) |
| 2302 | QUICK_ENTRY_POINT_INFO(pMemcpy) |
| 2303 | QUICK_ENTRY_POINT_INFO(pQuickImtConflictTrampoline) |
| 2304 | QUICK_ENTRY_POINT_INFO(pQuickResolutionTrampoline) |
| 2305 | QUICK_ENTRY_POINT_INFO(pQuickToInterpreterBridge) |
| 2306 | QUICK_ENTRY_POINT_INFO(pInvokeDirectTrampolineWithAccessCheck) |
| 2307 | QUICK_ENTRY_POINT_INFO(pInvokeInterfaceTrampolineWithAccessCheck) |
| 2308 | QUICK_ENTRY_POINT_INFO(pInvokeStaticTrampolineWithAccessCheck) |
| 2309 | QUICK_ENTRY_POINT_INFO(pInvokeSuperTrampolineWithAccessCheck) |
| 2310 | QUICK_ENTRY_POINT_INFO(pInvokeVirtualTrampolineWithAccessCheck) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2311 | QUICK_ENTRY_POINT_INFO(pTestSuspend) |
| 2312 | QUICK_ENTRY_POINT_INFO(pDeliverException) |
| 2313 | QUICK_ENTRY_POINT_INFO(pThrowArrayBounds) |
| 2314 | QUICK_ENTRY_POINT_INFO(pThrowDivZero) |
| 2315 | QUICK_ENTRY_POINT_INFO(pThrowNoSuchMethod) |
| 2316 | QUICK_ENTRY_POINT_INFO(pThrowNullPointer) |
| 2317 | QUICK_ENTRY_POINT_INFO(pThrowStackOverflow) |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 2318 | QUICK_ENTRY_POINT_INFO(pDeoptimize) |
Douglas Leung | d9cb8ae | 2014-07-09 14:28:35 -0700 | [diff] [blame] | 2319 | QUICK_ENTRY_POINT_INFO(pA64Load) |
| 2320 | QUICK_ENTRY_POINT_INFO(pA64Store) |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 2321 | QUICK_ENTRY_POINT_INFO(pNewEmptyString) |
| 2322 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_B) |
| 2323 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BI) |
| 2324 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BII) |
| 2325 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BIII) |
| 2326 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BIIString) |
| 2327 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BString) |
| 2328 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BIICharset) |
| 2329 | QUICK_ENTRY_POINT_INFO(pNewStringFromBytes_BCharset) |
| 2330 | QUICK_ENTRY_POINT_INFO(pNewStringFromChars_C) |
| 2331 | QUICK_ENTRY_POINT_INFO(pNewStringFromChars_CII) |
| 2332 | QUICK_ENTRY_POINT_INFO(pNewStringFromChars_IIC) |
| 2333 | QUICK_ENTRY_POINT_INFO(pNewStringFromCodePoints) |
| 2334 | QUICK_ENTRY_POINT_INFO(pNewStringFromString) |
| 2335 | QUICK_ENTRY_POINT_INFO(pNewStringFromStringBuffer) |
| 2336 | QUICK_ENTRY_POINT_INFO(pNewStringFromStringBuilder) |
Hiroshi Yamauchi | 1cc71eb | 2015-05-07 10:47:27 -0700 | [diff] [blame] | 2337 | QUICK_ENTRY_POINT_INFO(pReadBarrierJni) |
Man Cao | 1aee900 | 2015-07-14 22:31:42 -0700 | [diff] [blame] | 2338 | QUICK_ENTRY_POINT_INFO(pReadBarrierSlow) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2339 | #undef QUICK_ENTRY_POINT_INFO |
| 2340 | |
Elliott Hughes | 98e2017 | 2012-04-24 15:38:13 -0700 | [diff] [blame] | 2341 | os << offset; |
Elliott Hughes | 28fa76d | 2012-04-09 17:31:46 -0700 | [diff] [blame] | 2342 | } |
| 2343 | |
jeffhao | 94d6df4 | 2012-11-26 16:02:12 -0800 | [diff] [blame] | 2344 | void Thread::QuickDeliverException() { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2345 | // Get exception from thread. |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2346 | mirror::Throwable* exception = GetException(); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2347 | CHECK(exception != nullptr); |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 2348 | // Don't leave exception visible while we try to find the handler, which may cause class |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2349 | // resolution. |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 2350 | ClearException(); |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 2351 | bool is_deoptimization = (exception == GetDeoptimizationException()); |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 2352 | QuickExceptionHandler exception_handler(this, is_deoptimization); |
| 2353 | if (is_deoptimization) { |
| 2354 | exception_handler.DeoptimizeStack(); |
| 2355 | } else { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2356 | exception_handler.FindCatch(exception); |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 2357 | } |
| 2358 | exception_handler.UpdateInstrumentationStack(); |
| 2359 | exception_handler.DoLongJump(); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 2360 | } |
| 2361 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 2362 | Context* Thread::GetLongJumpContext() { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2363 | Context* result = tlsPtr_.long_jump_context; |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2364 | if (result == nullptr) { |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 2365 | result = Context::Create(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2366 | } else { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2367 | tlsPtr_.long_jump_context = nullptr; // Avoid context being shared. |
Mathieu Chartier | 6702243 | 2012-11-29 18:04:50 -0800 | [diff] [blame] | 2368 | result->Reset(); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 2369 | } |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 2370 | return result; |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 2371 | } |
| 2372 | |
Andreas Gampe | 4a8c3fa | 2014-07-16 22:20:31 -0700 | [diff] [blame] | 2373 | // Note: this visitor may return with a method set, but dex_pc_ being DexFile:kDexNoIndex. This is |
| 2374 | // so we don't abort in a special situation (thinlocked monitor) when dumping the Java stack. |
Ian Rogers | e0dcd46 | 2014-03-08 15:21:04 -0800 | [diff] [blame] | 2375 | struct CurrentMethodVisitor FINAL : public StackVisitor { |
Andreas Gampe | 6ec8ebd | 2014-07-25 13:36:56 -0700 | [diff] [blame] | 2376 | CurrentMethodVisitor(Thread* thread, Context* context, bool abort_on_error) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2377 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2378 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2379 | this_object_(nullptr), |
| 2380 | method_(nullptr), |
| 2381 | dex_pc_(0), |
Andreas Gampe | 6ec8ebd | 2014-07-25 13:36:56 -0700 | [diff] [blame] | 2382 | abort_on_error_(abort_on_error) {} |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2383 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2384 | ArtMethod* m = GetMethod(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2385 | if (m->IsRuntimeMethod()) { |
| 2386 | // Continue if this is a runtime method. |
| 2387 | return true; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2388 | } |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2389 | if (context_ != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2390 | this_object_ = GetThisObject(); |
| 2391 | } |
| 2392 | method_ = m; |
Andreas Gampe | 6ec8ebd | 2014-07-25 13:36:56 -0700 | [diff] [blame] | 2393 | dex_pc_ = GetDexPc(abort_on_error_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2394 | return false; |
| 2395 | } |
| 2396 | mirror::Object* this_object_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2397 | ArtMethod* method_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2398 | uint32_t dex_pc_; |
Andreas Gampe | 6ec8ebd | 2014-07-25 13:36:56 -0700 | [diff] [blame] | 2399 | const bool abort_on_error_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2400 | }; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2401 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2402 | ArtMethod* Thread::GetCurrentMethod(uint32_t* dex_pc, bool abort_on_error) const { |
Andreas Gampe | 6ec8ebd | 2014-07-25 13:36:56 -0700 | [diff] [blame] | 2403 | CurrentMethodVisitor visitor(const_cast<Thread*>(this), nullptr, abort_on_error); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2404 | visitor.WalkStack(false); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2405 | if (dex_pc != nullptr) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2406 | *dex_pc = visitor.dex_pc_; |
Elliott Hughes | 9fd66f5 | 2011-10-16 12:13:26 -0700 | [diff] [blame] | 2407 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2408 | return visitor.method_; |
jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 2409 | } |
| 2410 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2411 | bool Thread::HoldsLock(mirror::Object* object) const { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2412 | if (object == nullptr) { |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 2413 | return false; |
| 2414 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2415 | return object->GetLockOwnerThreadId() == GetThreadId(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 2416 | } |
| 2417 | |
Ian Rogers | 40e3bac | 2012-11-20 00:09:14 -0800 | [diff] [blame] | 2418 | // RootVisitor parameters are: (const Object* obj, size_t vreg, const StackVisitor* visitor). |
| 2419 | template <typename RootVisitor> |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2420 | class ReferenceMapVisitor : public StackVisitor { |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 2421 | public: |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2422 | ReferenceMapVisitor(Thread* thread, Context* context, RootVisitor& visitor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2423 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2424 | // We are visiting the references in compiled frames, so we do not need |
| 2425 | // to know the inlined frames. |
| 2426 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kSkipInlinedFrames), |
| 2427 | visitor_(visitor) {} |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 2428 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2429 | bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) { |
Brian Carlstrom | 6a4be3a | 2011-10-20 16:34:03 -0700 | [diff] [blame] | 2430 | if (false) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2431 | LOG(INFO) << "Visiting stack roots in " << PrettyMethod(GetMethod()) |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2432 | << StringPrintf("@ PC:%04x", GetDexPc()); |
Brian Carlstrom | 6a4be3a | 2011-10-20 16:34:03 -0700 | [diff] [blame] | 2433 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2434 | ShadowFrame* shadow_frame = GetCurrentShadowFrame(); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 2435 | if (shadow_frame != nullptr) { |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2436 | VisitShadowFrame(shadow_frame); |
| 2437 | } else { |
| 2438 | VisitQuickFrame(); |
| 2439 | } |
| 2440 | return true; |
| 2441 | } |
| 2442 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2443 | void VisitShadowFrame(ShadowFrame* shadow_frame) SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2444 | ArtMethod* m = shadow_frame->GetMethod(); |
Mathieu Chartier | 10e5ea9 | 2015-08-13 12:56:31 -0700 | [diff] [blame] | 2445 | VisitDeclaringClass(m); |
Hiroshi Yamauchi | 92d1a66 | 2014-05-15 21:43:59 -0700 | [diff] [blame] | 2446 | DCHECK(m != nullptr); |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2447 | size_t num_regs = shadow_frame->NumberOfVRegs(); |
| 2448 | if (m->IsNative() || shadow_frame->HasReferenceArray()) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2449 | // handle scope for JNI or References for interpreter. |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2450 | for (size_t reg = 0; reg < num_regs; ++reg) { |
| 2451 | mirror::Object* ref = shadow_frame->GetVRegReference(reg); |
| 2452 | if (ref != nullptr) { |
| 2453 | mirror::Object* new_ref = ref; |
| 2454 | visitor_(&new_ref, reg, this); |
| 2455 | if (new_ref != ref) { |
| 2456 | shadow_frame->SetVRegReference(reg, new_ref); |
| 2457 | } |
| 2458 | } |
| 2459 | } |
| 2460 | } else { |
| 2461 | // Java method. |
| 2462 | // Portable path use DexGcMap and store in Method.native_gc_map_. |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 2463 | const uint8_t* gc_map = m->GetNativeGcMap(sizeof(void*)); |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2464 | CHECK(gc_map != nullptr) << PrettyMethod(m); |
| 2465 | verifier::DexPcToReferenceMap dex_gc_map(gc_map); |
| 2466 | uint32_t dex_pc = shadow_frame->GetDexPC(); |
| 2467 | const uint8_t* reg_bitmap = dex_gc_map.FindBitMap(dex_pc); |
| 2468 | DCHECK(reg_bitmap != nullptr); |
| 2469 | num_regs = std::min(dex_gc_map.RegWidth() * 8, num_regs); |
| 2470 | for (size_t reg = 0; reg < num_regs; ++reg) { |
| 2471 | if (TestBitmap(reg, reg_bitmap)) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2472 | mirror::Object* ref = shadow_frame->GetVRegReference(reg); |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 2473 | if (ref != nullptr) { |
Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 2474 | mirror::Object* new_ref = ref; |
| 2475 | visitor_(&new_ref, reg, this); |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 2476 | if (new_ref != ref) { |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2477 | shadow_frame->SetVRegReference(reg, new_ref); |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 2478 | } |
| 2479 | } |
| 2480 | } |
| 2481 | } |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2482 | } |
| 2483 | } |
| 2484 | |
| 2485 | private: |
Mathieu Chartier | 10e5ea9 | 2015-08-13 12:56:31 -0700 | [diff] [blame] | 2486 | // Visiting the declaring class is necessary so that we don't unload the class of a method that |
| 2487 | // is executing. We need to ensure that the code stays mapped. |
| 2488 | void VisitDeclaringClass(ArtMethod* method) SHARED_REQUIRES(Locks::mutator_lock_) { |
| 2489 | mirror::Class* klass = method->GetDeclaringClassNoBarrier(); |
| 2490 | // klass can be null for runtime methods. |
| 2491 | if (klass != nullptr) { |
| 2492 | mirror::Object* new_ref = klass; |
| 2493 | visitor_(&new_ref, -1, this); |
| 2494 | if (new_ref != klass) { |
| 2495 | method->CASDeclaringClass(klass, new_ref->AsClass()); |
| 2496 | } |
| 2497 | } |
| 2498 | } |
| 2499 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2500 | void VisitQuickFrame() SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | 10e5ea9 | 2015-08-13 12:56:31 -0700 | [diff] [blame] | 2501 | ArtMethod** cur_quick_frame = GetCurrentQuickFrame(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2502 | DCHECK(cur_quick_frame != nullptr); |
Mathieu Chartier | 10e5ea9 | 2015-08-13 12:56:31 -0700 | [diff] [blame] | 2503 | ArtMethod* m = *cur_quick_frame; |
| 2504 | VisitDeclaringClass(m); |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 2505 | |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2506 | // Process register map (which native and runtime methods don't have) |
| 2507 | if (!m->IsNative() && !m->IsRuntimeMethod() && !m->IsProxyMethod()) { |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 2508 | if (m->IsOptimized(sizeof(void*))) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2509 | auto* vreg_base = reinterpret_cast<StackReference<mirror::Object>*>( |
| 2510 | reinterpret_cast<uintptr_t>(cur_quick_frame)); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 2511 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 2512 | const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(m, sizeof(void*)); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 2513 | uintptr_t native_pc_offset = m->NativeQuickPcOffset(GetCurrentQuickFramePc(), entry_point); |
Nicolas Geoffray | 004c230 | 2015-03-20 10:06:38 +0000 | [diff] [blame] | 2514 | CodeInfo code_info = m->GetOptimizedCodeInfo(); |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 2515 | StackMapEncoding encoding = code_info.ExtractEncoding(); |
| 2516 | StackMap map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding); |
Nicolas Geoffray | e12997f | 2015-05-22 14:01:33 +0100 | [diff] [blame] | 2517 | DCHECK(map.IsValid()); |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 2518 | MemoryRegion mask = map.GetStackMask(encoding); |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 2519 | // Visit stack entries that hold pointers. |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2520 | for (size_t i = 0; i < mask.size_in_bits(); ++i) { |
| 2521 | if (mask.LoadBit(i)) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2522 | auto* ref_addr = vreg_base + i; |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2523 | mirror::Object* ref = ref_addr->AsMirrorPtr(); |
| 2524 | if (ref != nullptr) { |
| 2525 | mirror::Object* new_ref = ref; |
| 2526 | visitor_(&new_ref, -1, this); |
| 2527 | if (ref != new_ref) { |
| 2528 | ref_addr->Assign(new_ref); |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2529 | } |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2530 | } |
| 2531 | } |
| 2532 | } |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 2533 | // Visit callee-save registers that hold pointers. |
David Brazdil | f677ebf | 2015-05-29 16:29:43 +0100 | [diff] [blame] | 2534 | uint32_t register_mask = map.GetRegisterMask(encoding); |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 2535 | for (size_t i = 0; i < BitSizeOf<uint32_t>(); ++i) { |
| 2536 | if (register_mask & (1 << i)) { |
| 2537 | mirror::Object** ref_addr = reinterpret_cast<mirror::Object**>(GetGPRAddress(i)); |
| 2538 | if (*ref_addr != nullptr) { |
| 2539 | visitor_(ref_addr, -1, this); |
| 2540 | } |
| 2541 | } |
| 2542 | } |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2543 | } else { |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 2544 | const uint8_t* native_gc_map = m->GetNativeGcMap(sizeof(void*)); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2545 | CHECK(native_gc_map != nullptr) << PrettyMethod(m); |
| 2546 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2547 | // Can't be null or how would we compile its instructions? |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2548 | DCHECK(code_item != nullptr) << PrettyMethod(m); |
| 2549 | NativePcOffsetToReferenceMap map(native_gc_map); |
Pavel Vyssotski | 41f9cc2 | 2015-06-16 17:57:37 +0600 | [diff] [blame] | 2550 | size_t num_regs = map.RegWidth() * 8; |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2551 | if (num_regs > 0) { |
| 2552 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 2553 | const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(m, sizeof(void*)); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 2554 | uintptr_t native_pc_offset = m->NativeQuickPcOffset(GetCurrentQuickFramePc(), entry_point); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2555 | const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset); |
| 2556 | DCHECK(reg_bitmap != nullptr); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2557 | const void* code_pointer = ArtMethod::EntryPointToCodePointer(entry_point); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 2558 | const VmapTable vmap_table(m->GetVmapTable(code_pointer, sizeof(void*))); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2559 | QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); |
| 2560 | // For all dex registers in the bitmap |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2561 | DCHECK(cur_quick_frame != nullptr); |
| 2562 | for (size_t reg = 0; reg < num_regs; ++reg) { |
| 2563 | // Does this register hold a reference? |
| 2564 | if (TestBitmap(reg, reg_bitmap)) { |
| 2565 | uint32_t vmap_offset; |
| 2566 | if (vmap_table.IsInContext(reg, kReferenceVReg, &vmap_offset)) { |
| 2567 | int vmap_reg = vmap_table.ComputeRegister(frame_info.CoreSpillMask(), vmap_offset, |
| 2568 | kReferenceVReg); |
| 2569 | // This is sound as spilled GPRs will be word sized (ie 32 or 64bit). |
| 2570 | mirror::Object** ref_addr = |
| 2571 | reinterpret_cast<mirror::Object**>(GetGPRAddress(vmap_reg)); |
| 2572 | if (*ref_addr != nullptr) { |
| 2573 | visitor_(ref_addr, reg, this); |
| 2574 | } |
| 2575 | } else { |
| 2576 | StackReference<mirror::Object>* ref_addr = |
Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 2577 | reinterpret_cast<StackReference<mirror::Object>*>(GetVRegAddrFromQuickCode( |
| 2578 | cur_quick_frame, code_item, frame_info.CoreSpillMask(), |
| 2579 | frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), reg)); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 2580 | mirror::Object* ref = ref_addr->AsMirrorPtr(); |
| 2581 | if (ref != nullptr) { |
| 2582 | mirror::Object* new_ref = ref; |
| 2583 | visitor_(&new_ref, reg, this); |
| 2584 | if (ref != new_ref) { |
| 2585 | ref_addr->Assign(new_ref); |
| 2586 | } |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 2587 | } |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 2588 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2589 | } |
Shih-wei Liao | 4f894e3 | 2011-09-27 21:33:19 -0700 | [diff] [blame] | 2590 | } |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 2591 | } |
| 2592 | } |
| 2593 | } |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 2594 | } |
| 2595 | |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 2596 | // Visitor for when we visit a root. |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2597 | RootVisitor& visitor_; |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 2598 | }; |
| 2599 | |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 2600 | class RootCallbackVisitor { |
| 2601 | public: |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2602 | RootCallbackVisitor(RootVisitor* visitor, uint32_t tid) : visitor_(visitor), tid_(tid) {} |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 2603 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2604 | void operator()(mirror::Object** obj, size_t vreg, const StackVisitor* stack_visitor) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2605 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2606 | visitor_->VisitRoot(obj, JavaFrameRootInfo(tid_, stack_visitor, vreg)); |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 2607 | } |
| 2608 | |
| 2609 | private: |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2610 | RootVisitor* const visitor_; |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 2611 | const uint32_t tid_; |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 2612 | }; |
| 2613 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2614 | void Thread::VisitRoots(RootVisitor* visitor) { |
| 2615 | const uint32_t thread_id = GetThreadId(); |
| 2616 | visitor->VisitRootIfNonNull(&tlsPtr_.opeer, RootInfo(kRootThreadObject, thread_id)); |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 2617 | if (tlsPtr_.exception != nullptr && tlsPtr_.exception != GetDeoptimizationException()) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2618 | visitor->VisitRoot(reinterpret_cast<mirror::Object**>(&tlsPtr_.exception), |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 2619 | RootInfo(kRootNativeStack, thread_id)); |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 2620 | } |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2621 | visitor->VisitRootIfNonNull(&tlsPtr_.monitor_enter_object, RootInfo(kRootNativeStack, thread_id)); |
| 2622 | tlsPtr_.jni_env->locals.VisitRoots(visitor, RootInfo(kRootJNILocal, thread_id)); |
| 2623 | tlsPtr_.jni_env->monitors.VisitRoots(visitor, RootInfo(kRootJNIMonitor, thread_id)); |
| 2624 | HandleScopeVisitRoots(visitor, thread_id); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2625 | if (tlsPtr_.debug_invoke_req != nullptr) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2626 | tlsPtr_.debug_invoke_req->VisitRoots(visitor, RootInfo(kRootDebugger, thread_id)); |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 2627 | } |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 2628 | // Visit roots for deoptimization. |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 2629 | if (tlsPtr_.stacked_shadow_frame_record != nullptr) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2630 | RootCallbackVisitor visitor_to_callback(visitor, thread_id); |
| 2631 | ReferenceMapVisitor<RootCallbackVisitor> mapper(this, nullptr, visitor_to_callback); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 2632 | for (StackedShadowFrameRecord* record = tlsPtr_.stacked_shadow_frame_record; |
| 2633 | record != nullptr; |
| 2634 | record = record->GetLink()) { |
| 2635 | for (ShadowFrame* shadow_frame = record->GetShadowFrame(); |
| 2636 | shadow_frame != nullptr; |
| 2637 | shadow_frame = shadow_frame->GetLink()) { |
| 2638 | mapper.VisitShadowFrame(shadow_frame); |
| 2639 | } |
Sebastien Hertz | 714f175 | 2014-04-28 15:03:08 +0200 | [diff] [blame] | 2640 | } |
| 2641 | } |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 2642 | if (tlsPtr_.deoptimization_context_stack != nullptr) { |
| 2643 | for (DeoptimizationContextRecord* record = tlsPtr_.deoptimization_context_stack; |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 2644 | record != nullptr; |
| 2645 | record = record->GetLink()) { |
| 2646 | if (record->IsReference()) { |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 2647 | visitor->VisitRootIfNonNull(record->GetReturnValueAsGCRoot(), |
| 2648 | RootInfo(kRootThreadObject, thread_id)); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 2649 | } |
Sebastien Hertz | 0747466 | 2015-08-25 15:12:33 +0000 | [diff] [blame] | 2650 | visitor->VisitRootIfNonNull(record->GetPendingExceptionAsGCRoot(), |
| 2651 | RootInfo(kRootThreadObject, thread_id)); |
Andreas Gampe | 2a0d4ec | 2014-06-02 22:05:22 -0700 | [diff] [blame] | 2652 | } |
| 2653 | } |
Mathieu Chartier | d0ad2ee | 2015-03-31 14:59:59 -0700 | [diff] [blame] | 2654 | for (auto* verifier = tlsPtr_.method_verifier; verifier != nullptr; verifier = verifier->link_) { |
| 2655 | verifier->VisitRoots(visitor, RootInfo(kRootNativeStack, thread_id)); |
Mathieu Chartier | 12d625f | 2015-03-13 11:33:37 -0700 | [diff] [blame] | 2656 | } |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 2657 | // Visit roots on this thread's stack |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2658 | Context* context = GetLongJumpContext(); |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2659 | RootCallbackVisitor visitor_to_callback(visitor, thread_id); |
Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 2660 | ReferenceMapVisitor<RootCallbackVisitor> mapper(this, context, visitor_to_callback); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2661 | mapper.WalkStack(); |
| 2662 | ReleaseLongJumpContext(context); |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 2663 | for (instrumentation::InstrumentationStackFrame& frame : *GetInstrumentationStack()) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2664 | visitor->VisitRootIfNonNull(&frame.this_object_, RootInfo(kRootVMInternal, thread_id)); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2665 | } |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 2666 | } |
| 2667 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2668 | class VerifyRootVisitor : public SingleRootVisitor { |
| 2669 | public: |
| 2670 | void VisitRoot(mirror::Object* root, const RootInfo& info ATTRIBUTE_UNUSED) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2671 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2672 | VerifyObject(root); |
| 2673 | } |
| 2674 | }; |
jeffhao | 2504552 | 2012-03-13 19:34:37 -0700 | [diff] [blame] | 2675 | |
Ian Rogers | 04d7aa9 | 2013-03-16 14:29:17 -0700 | [diff] [blame] | 2676 | void Thread::VerifyStackImpl() { |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2677 | VerifyRootVisitor visitor; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2678 | std::unique_ptr<Context> context(Context::Create()); |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 2679 | RootCallbackVisitor visitor_to_callback(&visitor, GetThreadId()); |
| 2680 | ReferenceMapVisitor<RootCallbackVisitor> mapper(this, context.get(), visitor_to_callback); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2681 | mapper.WalkStack(); |
jeffhao | 2504552 | 2012-03-13 19:34:37 -0700 | [diff] [blame] | 2682 | } |
jeffhao | 2504552 | 2012-03-13 19:34:37 -0700 | [diff] [blame] | 2683 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2684 | // Set the stack end to that to be used during a stack overflow |
| 2685 | void Thread::SetStackEndForStackOverflow() { |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 2686 | // During stack overflow we allow use of the full stack. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2687 | if (tlsPtr_.stack_end == tlsPtr_.stack_begin) { |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 2688 | // However, we seem to have already extended to use the full stack. |
| 2689 | LOG(ERROR) << "Need to increase kStackOverflowReservedBytes (currently " |
Andreas Gampe | 7ea6f79 | 2014-07-14 16:21:44 -0700 | [diff] [blame] | 2690 | << GetStackOverflowReservedBytes(kRuntimeISA) << ")?"; |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 2691 | DumpStack(LOG(ERROR)); |
| 2692 | LOG(FATAL) << "Recursive stack overflow."; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2693 | } |
| 2694 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2695 | tlsPtr_.stack_end = tlsPtr_.stack_begin; |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 2696 | |
| 2697 | // Remove the stack overflow protection if is it set up. |
| 2698 | bool implicit_stack_check = !Runtime::Current()->ExplicitStackOverflowChecks(); |
| 2699 | if (implicit_stack_check) { |
| 2700 | if (!UnprotectStack()) { |
| 2701 | LOG(ERROR) << "Unable to remove stack protection for stack overflow"; |
| 2702 | } |
| 2703 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2704 | } |
| 2705 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 2706 | void Thread::SetTlab(uint8_t* start, uint8_t* end) { |
Mathieu Chartier | 692fafd | 2013-11-29 17:24:40 -0800 | [diff] [blame] | 2707 | DCHECK_LE(start, end); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2708 | tlsPtr_.thread_local_start = start; |
| 2709 | tlsPtr_.thread_local_pos = tlsPtr_.thread_local_start; |
| 2710 | tlsPtr_.thread_local_end = end; |
| 2711 | tlsPtr_.thread_local_objects = 0; |
Mathieu Chartier | 692fafd | 2013-11-29 17:24:40 -0800 | [diff] [blame] | 2712 | } |
| 2713 | |
Hiroshi Yamauchi | c93c530 | 2014-03-20 16:15:37 -0700 | [diff] [blame] | 2714 | bool Thread::HasTlab() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2715 | bool has_tlab = tlsPtr_.thread_local_pos != nullptr; |
Hiroshi Yamauchi | c93c530 | 2014-03-20 16:15:37 -0700 | [diff] [blame] | 2716 | if (has_tlab) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2717 | DCHECK(tlsPtr_.thread_local_start != nullptr && tlsPtr_.thread_local_end != nullptr); |
Hiroshi Yamauchi | c93c530 | 2014-03-20 16:15:37 -0700 | [diff] [blame] | 2718 | } else { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2719 | DCHECK(tlsPtr_.thread_local_start == nullptr && tlsPtr_.thread_local_end == nullptr); |
Hiroshi Yamauchi | c93c530 | 2014-03-20 16:15:37 -0700 | [diff] [blame] | 2720 | } |
| 2721 | return has_tlab; |
| 2722 | } |
| 2723 | |
Elliott Hughes | 330304d | 2011-08-12 14:28:05 -0700 | [diff] [blame] | 2724 | std::ostream& operator<<(std::ostream& os, const Thread& thread) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2725 | thread.ShortDump(os); |
Elliott Hughes | 330304d | 2011-08-12 14:28:05 -0700 | [diff] [blame] | 2726 | return os; |
| 2727 | } |
| 2728 | |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 2729 | void Thread::ProtectStack() { |
| 2730 | void* pregion = tlsPtr_.stack_begin - kStackOverflowProtectedSize; |
| 2731 | VLOG(threads) << "Protecting stack at " << pregion; |
| 2732 | if (mprotect(pregion, kStackOverflowProtectedSize, PROT_NONE) == -1) { |
| 2733 | LOG(FATAL) << "Unable to create protected region in stack for implicit overflow check. " |
| 2734 | "Reason: " |
| 2735 | << strerror(errno) << " size: " << kStackOverflowProtectedSize; |
| 2736 | } |
| 2737 | } |
| 2738 | |
| 2739 | bool Thread::UnprotectStack() { |
| 2740 | void* pregion = tlsPtr_.stack_begin - kStackOverflowProtectedSize; |
| 2741 | VLOG(threads) << "Unprotecting stack at " << pregion; |
| 2742 | return mprotect(pregion, kStackOverflowProtectedSize, PROT_READ|PROT_WRITE) == 0; |
| 2743 | } |
| 2744 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2745 | void Thread::ActivateSingleStepControl(SingleStepControl* ssc) { |
| 2746 | CHECK(Dbg::IsDebuggerActive()); |
| 2747 | CHECK(GetSingleStepControl() == nullptr) << "Single step already active in thread " << *this; |
| 2748 | CHECK(ssc != nullptr); |
| 2749 | tlsPtr_.single_step_control = ssc; |
| 2750 | } |
| 2751 | |
| 2752 | void Thread::DeactivateSingleStepControl() { |
| 2753 | CHECK(Dbg::IsDebuggerActive()); |
| 2754 | CHECK(GetSingleStepControl() != nullptr) << "Single step not active in thread " << *this; |
| 2755 | SingleStepControl* ssc = GetSingleStepControl(); |
| 2756 | tlsPtr_.single_step_control = nullptr; |
| 2757 | delete ssc; |
| 2758 | } |
Dave Allison | 648d711 | 2014-07-25 16:15:27 -0700 | [diff] [blame] | 2759 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 2760 | void Thread::SetDebugInvokeReq(DebugInvokeReq* req) { |
| 2761 | CHECK(Dbg::IsDebuggerActive()); |
| 2762 | CHECK(GetInvokeReq() == nullptr) << "Debug invoke req already active in thread " << *this; |
| 2763 | CHECK(Thread::Current() != this) << "Debug invoke can't be dispatched by the thread itself"; |
| 2764 | CHECK(req != nullptr); |
| 2765 | tlsPtr_.debug_invoke_req = req; |
| 2766 | } |
| 2767 | |
| 2768 | void Thread::ClearDebugInvokeReq() { |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 2769 | CHECK(GetInvokeReq() != nullptr) << "Debug invoke req not active in thread " << *this; |
| 2770 | CHECK(Thread::Current() == this) << "Debug invoke must be finished by the thread itself"; |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 2771 | DebugInvokeReq* req = tlsPtr_.debug_invoke_req; |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 2772 | tlsPtr_.debug_invoke_req = nullptr; |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 2773 | delete req; |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 2774 | } |
| 2775 | |
Mathieu Chartier | d0ad2ee | 2015-03-31 14:59:59 -0700 | [diff] [blame] | 2776 | void Thread::PushVerifier(verifier::MethodVerifier* verifier) { |
| 2777 | verifier->link_ = tlsPtr_.method_verifier; |
Mathieu Chartier | 12d625f | 2015-03-13 11:33:37 -0700 | [diff] [blame] | 2778 | tlsPtr_.method_verifier = verifier; |
| 2779 | } |
| 2780 | |
Mathieu Chartier | d0ad2ee | 2015-03-31 14:59:59 -0700 | [diff] [blame] | 2781 | void Thread::PopVerifier(verifier::MethodVerifier* verifier) { |
Mathieu Chartier | 12d625f | 2015-03-13 11:33:37 -0700 | [diff] [blame] | 2782 | CHECK_EQ(tlsPtr_.method_verifier, verifier); |
Mathieu Chartier | d0ad2ee | 2015-03-31 14:59:59 -0700 | [diff] [blame] | 2783 | tlsPtr_.method_verifier = verifier->link_; |
Mathieu Chartier | 12d625f | 2015-03-13 11:33:37 -0700 | [diff] [blame] | 2784 | } |
| 2785 | |
Mathieu Chartier | 14c3bf9 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 2786 | size_t Thread::NumberOfHeldMutexes() const { |
| 2787 | size_t count = 0; |
| 2788 | for (BaseMutex* mu : tlsPtr_.held_mutexes) { |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 2789 | count += mu != nullptr ? 1 : 0; |
Mathieu Chartier | 14c3bf9 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 2790 | } |
| 2791 | return count; |
| 2792 | } |
| 2793 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 2794 | } // namespace art |