| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "fault_handler.h" |
| Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 18 | |
| Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 19 | #include <setjmp.h> |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 20 | #include <sys/mman.h> |
| 21 | #include <sys/ucontext.h> |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 22 | |
| 23 | #include "art_method-inl.h" |
| Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 24 | #include "base/stl_util.h" |
| Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 25 | #include "mirror/class.h" |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 26 | #include "oat_quick_method_header.h" |
| Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 27 | #include "sigchain.h" |
| Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 28 | #include "thread-inl.h" |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 29 | #include "verify_object-inl.h" |
| 30 | |
| 31 | namespace art { |
| 32 | // Static fault manger object accessed by signal handler. |
| 33 | FaultManager fault_manager; |
| 34 | |
| Narayan Kamath | c37769b | 2015-06-17 09:49:40 +0100 | [diff] [blame] | 35 | extern "C" __attribute__((visibility("default"))) void art_sigsegv_fault() { |
| Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 36 | // Set a breakpoint here to be informed when a SIGSEGV is unhandled by ART. |
| 37 | VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler."; |
| 38 | } |
| Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 39 | |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 40 | // Signal handler called on SIGSEGV. |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 41 | static bool art_fault_handler(int sig, siginfo_t* info, void* context) { |
| 42 | return fault_manager.HandleFault(sig, info, context); |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 43 | } |
| 44 | |
| Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 45 | FaultManager::FaultManager() : initialized_(false) { |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 46 | sigaction(SIGSEGV, nullptr, &oldaction_); |
| 47 | } |
| 48 | |
| 49 | FaultManager::~FaultManager() { |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | void FaultManager::Init() { |
| Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 53 | CHECK(!initialized_); |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 54 | AddSpecialSignalHandlerFn(SIGSEGV, art_fault_handler); |
| Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 55 | initialized_ = true; |
| 56 | } |
| 57 | |
| Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 58 | void FaultManager::Release() { |
| Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 59 | if (initialized_) { |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 60 | RemoveSpecialSignalHandlerFn(SIGSEGV, art_fault_handler); |
| Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 61 | initialized_ = false; |
| 62 | } |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 63 | } |
| 64 | |
| Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 65 | void FaultManager::Shutdown() { |
| 66 | if (initialized_) { |
| 67 | Release(); |
| 68 | |
| 69 | // Free all handlers. |
| 70 | STLDeleteElements(&generated_code_handlers_); |
| 71 | STLDeleteElements(&other_handlers_); |
| 72 | } |
| 73 | } |
| 74 | |
| jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 75 | bool FaultManager::HandleFaultByOtherHandlers(int sig, siginfo_t* info, void* context) { |
| Andreas Gampe | d14b73d | 2016-04-18 17:15:42 -0700 | [diff] [blame] | 76 | if (other_handlers_.empty()) { |
| 77 | return false; |
| 78 | } |
| 79 | |
| Dave Allison | 0c2894b | 2014-08-29 12:06:16 -0700 | [diff] [blame] | 80 | Thread* self = Thread::Current(); |
| 81 | |
| jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 82 | DCHECK(self != nullptr); |
| 83 | DCHECK(Runtime::Current() != nullptr); |
| 84 | DCHECK(Runtime::Current()->IsStarted()); |
| Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 85 | for (const auto& handler : other_handlers_) { |
| 86 | if (handler->Action(sig, info, context)) { |
| 87 | return true; |
| Ian Rogers | ad11e7a | 2014-11-11 16:55:11 -0800 | [diff] [blame] | 88 | } |
| 89 | } |
| jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 90 | return false; |
| 91 | } |
| 92 | |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 93 | bool FaultManager::HandleFault(int sig, siginfo_t* info, void* context) { |
| 94 | VLOG(signals) << "Handling fault"; |
| Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 95 | |
| 96 | #ifdef TEST_NESTED_SIGNAL |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 97 | // Simulate a crash in a handler. |
| 98 | raise(SIGSEGV); |
| Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 99 | #endif |
| 100 | |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 101 | if (IsInGeneratedCode(info, context, true)) { |
| 102 | VLOG(signals) << "in generated code, looking for handler"; |
| 103 | for (const auto& handler : generated_code_handlers_) { |
| 104 | VLOG(signals) << "invoking Action on handler " << handler; |
| 105 | if (handler->Action(sig, info, context)) { |
| 106 | // We have handled a signal so it's time to return from the |
| 107 | // signal handler to the appropriate place. |
| 108 | return true; |
| Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 109 | } |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 110 | } |
| Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 111 | |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 112 | // We hit a signal we didn't handle. This might be something for which |
| 113 | // we can give more information about so call all registered handlers to |
| 114 | // see if it is. |
| 115 | if (HandleFaultByOtherHandlers(sig, info, context)) { |
| 116 | return true; |
| jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 117 | } |
| 118 | } |
| Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 119 | |
| Dave Allison | 8be44cf | 2014-09-04 14:33:42 -0700 | [diff] [blame] | 120 | // Set a breakpoint in this function to catch unhandled signals. |
| 121 | art_sigsegv_fault(); |
| Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 122 | return false; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 123 | } |
| 124 | |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 125 | void FaultManager::AddHandler(FaultHandler* handler, bool generated_code) { |
| Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 126 | DCHECK(initialized_); |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 127 | if (generated_code) { |
| 128 | generated_code_handlers_.push_back(handler); |
| 129 | } else { |
| 130 | other_handlers_.push_back(handler); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | void FaultManager::RemoveHandler(FaultHandler* handler) { |
| 135 | auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler); |
| 136 | if (it != generated_code_handlers_.end()) { |
| 137 | generated_code_handlers_.erase(it); |
| 138 | return; |
| 139 | } |
| 140 | auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler); |
| 141 | if (it2 != other_handlers_.end()) { |
| 142 | other_handlers_.erase(it); |
| 143 | return; |
| 144 | } |
| 145 | LOG(FATAL) << "Attempted to remove non existent handler " << handler; |
| 146 | } |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 147 | |
| 148 | // This function is called within the signal handler. It checks that |
| 149 | // the mutator_lock is held (shared). No annotalysis is done. |
| Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 150 | bool FaultManager::IsInGeneratedCode(siginfo_t* siginfo, void* context, bool check_dex_pc) { |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 151 | // We can only be running Java code in the current thread if it |
| 152 | // is in Runnable state. |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 153 | VLOG(signals) << "Checking for generated code"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 154 | Thread* thread = Thread::Current(); |
| 155 | if (thread == nullptr) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 156 | VLOG(signals) << "no current thread"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 157 | return false; |
| 158 | } |
| 159 | |
| 160 | ThreadState state = thread->GetState(); |
| 161 | if (state != kRunnable) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 162 | VLOG(signals) << "not runnable"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 163 | return false; |
| 164 | } |
| 165 | |
| 166 | // Current thread is runnable. |
| 167 | // Make sure it has the mutator lock. |
| 168 | if (!Locks::mutator_lock_->IsSharedHeld(thread)) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 169 | VLOG(signals) << "no lock"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 170 | return false; |
| 171 | } |
| 172 | |
| Nicolas Geoffray | 7bf2b4f | 2015-07-08 10:11:59 +0000 | [diff] [blame] | 173 | ArtMethod* method_obj = nullptr; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 174 | uintptr_t return_pc = 0; |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 175 | uintptr_t sp = 0; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 176 | |
| 177 | // Get the architecture specific method address and return address. These |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 178 | // are in architecture specific files in arch/<arch>/fault_handler_<arch>. |
| Dave Allison | dfd3b47 | 2014-07-16 16:04:32 -0700 | [diff] [blame] | 179 | GetMethodAndReturnPcAndSp(siginfo, context, &method_obj, &return_pc, &sp); |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 180 | |
| 181 | // If we don't have a potential method, we're outta here. |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 182 | VLOG(signals) << "potential method: " << method_obj; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 183 | // TODO: Check linear alloc and image. |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 184 | DCHECK_ALIGNED(ArtMethod::Size(kRuntimePointerSize), sizeof(void*)) |
| Nicolas Geoffray | 7bf2b4f | 2015-07-08 10:11:59 +0000 | [diff] [blame] | 185 | << "ArtMethod is not pointer aligned"; |
| 186 | if (method_obj == nullptr || !IsAligned<sizeof(void*)>(method_obj)) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 187 | VLOG(signals) << "no method"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 188 | return false; |
| 189 | } |
| 190 | |
| 191 | // Verify that the potential method is indeed a method. |
| 192 | // TODO: check the GC maps to make sure it's an object. |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 193 | // Check that the class pointer inside the object is not null and is aligned. |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 194 | // TODO: Method might be not a heap address, and GetClass could fault. |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 195 | // No read barrier because method_obj may not be a real object. |
| Mathieu Chartier | e7f75f3 | 2016-02-01 16:08:15 -0800 | [diff] [blame] | 196 | mirror::Class* cls = method_obj->GetDeclaringClassUnchecked<kWithoutReadBarrier>(); |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 197 | if (cls == nullptr) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 198 | VLOG(signals) << "not a class"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 199 | return false; |
| 200 | } |
| 201 | if (!IsAligned<kObjectAlignment>(cls)) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 202 | VLOG(signals) << "not aligned"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 203 | return false; |
| 204 | } |
| 205 | |
| 206 | |
| 207 | if (!VerifyClassClass(cls)) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 208 | VLOG(signals) << "not a class class"; |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 209 | return false; |
| 210 | } |
| 211 | |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 212 | const OatQuickMethodHeader* method_header = method_obj->GetOatQuickMethodHeader(return_pc); |
| Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 213 | |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 214 | // We can be certain that this is a method now. Check if we have a GC map |
| 215 | // at the return PC address. |
| Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 216 | if (true || kIsDebugBuild) { |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 217 | VLOG(signals) << "looking for dex pc for return pc " << std::hex << return_pc; |
| Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 218 | uint32_t sought_offset = return_pc - |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 219 | reinterpret_cast<uintptr_t>(method_header->GetEntryPoint()); |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 220 | VLOG(signals) << "pc offset: " << std::hex << sought_offset; |
| Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 221 | } |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 222 | uint32_t dexpc = method_header->ToDexPc(method_obj, return_pc, false); |
| Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 223 | VLOG(signals) << "dexpc: " << dexpc; |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 224 | return !check_dex_pc || dexpc != DexFile::kDexNoIndex; |
| 225 | } |
| 226 | |
| 227 | FaultHandler::FaultHandler(FaultManager* manager) : manager_(manager) { |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | // |
| 231 | // Null pointer fault handler |
| 232 | // |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 233 | NullPointerHandler::NullPointerHandler(FaultManager* manager) : FaultHandler(manager) { |
| 234 | manager_->AddHandler(this, true); |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | // |
| 238 | // Suspension fault handler |
| 239 | // |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 240 | SuspensionHandler::SuspensionHandler(FaultManager* manager) : FaultHandler(manager) { |
| 241 | manager_->AddHandler(this, true); |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | // |
| 245 | // Stack overflow fault handler |
| 246 | // |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 247 | StackOverflowHandler::StackOverflowHandler(FaultManager* manager) : FaultHandler(manager) { |
| 248 | manager_->AddHandler(this, true); |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 249 | } |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 250 | |
| 251 | // |
| 252 | // Stack trace handler, used to help get a stack trace from SIGSEGV inside of compiled code. |
| 253 | // |
| 254 | JavaStackTraceHandler::JavaStackTraceHandler(FaultManager* manager) : FaultHandler(manager) { |
| 255 | manager_->AddHandler(this, false); |
| 256 | } |
| 257 | |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 258 | bool JavaStackTraceHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* siginfo, void* context) { |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 259 | // Make sure that we are in the generated code, but we may not have a dex pc. |
| Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 260 | bool in_generated_code = manager_->IsInGeneratedCode(siginfo, context, false); |
| Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 261 | if (in_generated_code) { |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 262 | LOG(ERROR) << "Dumping java stack trace for crash in generated code"; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 263 | ArtMethod* method = nullptr; |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 264 | uintptr_t return_pc = 0; |
| 265 | uintptr_t sp = 0; |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 266 | Thread* self = Thread::Current(); |
| Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 267 | |
| Dave Allison | 0c2894b | 2014-08-29 12:06:16 -0700 | [diff] [blame] | 268 | manager_->GetMethodAndReturnPcAndSp(siginfo, context, &method, &return_pc, &sp); |
| 269 | // Inside of generated code, sp[0] is the method, so sp is the frame. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 270 | self->SetTopOfStack(reinterpret_cast<ArtMethod**>(sp)); |
| Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 271 | self->DumpJavaStack(LOG_STREAM(ERROR)); |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 272 | } |
| Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 273 | |
| Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 274 | return false; // Return false since we want to propagate the fault to the main signal handler. |
| 275 | } |
| 276 | |
| Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 277 | } // namespace art |