Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 17 | #include "quick_exception_handler.h" |
| 18 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 19 | #include "arch/context.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 20 | #include "art_method-inl.h" |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 21 | #include "dex_instruction.h" |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 22 | #include "entrypoints/entrypoint_utils.h" |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 23 | #include "entrypoints/quick/quick_entrypoints_enum.h" |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 24 | #include "entrypoints/runtime_asm_entrypoints.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 25 | #include "handle_scope-inl.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 26 | #include "mirror/class-inl.h" |
| 27 | #include "mirror/class_loader.h" |
| 28 | #include "mirror/throwable.h" |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 29 | #include "oat_quick_method_header.h" |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 30 | #include "stack_map.h" |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 31 | #include "verifier/method_verifier.h" |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 32 | |
| 33 | namespace art { |
| 34 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 35 | static constexpr bool kDebugExceptionDelivery = false; |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 36 | static constexpr size_t kInvalidFrameDepth = 0xffffffff; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 37 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 38 | QuickExceptionHandler::QuickExceptionHandler(Thread* self, bool is_deoptimization) |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 39 | : self_(self), |
| 40 | context_(self->GetLongJumpContext()), |
| 41 | is_deoptimization_(is_deoptimization), |
| 42 | method_tracing_active_(is_deoptimization || |
| 43 | Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled()), |
| 44 | handler_quick_frame_(nullptr), |
| 45 | handler_quick_frame_pc_(0), |
| 46 | handler_method_header_(nullptr), |
| 47 | handler_quick_arg0_(0), |
| 48 | handler_method_(nullptr), |
| 49 | handler_dex_pc_(0), |
| 50 | clear_exception_(false), |
| 51 | handler_frame_depth_(kInvalidFrameDepth) {} |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 52 | |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 53 | // Finds catch handler. |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 54 | class CatchBlockStackVisitor FINAL : public StackVisitor { |
| 55 | public: |
| 56 | CatchBlockStackVisitor(Thread* self, Context* context, Handle<mirror::Throwable>* exception, |
| 57 | QuickExceptionHandler* exception_handler) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 58 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 59 | : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 60 | exception_(exception), |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 61 | exception_handler_(exception_handler) { |
| 62 | } |
| 63 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 64 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 65 | ArtMethod* method = GetMethod(); |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 66 | exception_handler_->SetHandlerFrameDepth(GetFrameDepth()); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 67 | if (method == nullptr) { |
| 68 | // This is the upcall, we remember the frame and last pc so that we may long jump to them. |
| 69 | exception_handler_->SetHandlerQuickFramePc(GetCurrentQuickFramePc()); |
| 70 | exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame()); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 71 | exception_handler_->SetHandlerMethodHeader(GetCurrentOatQuickMethodHeader()); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 72 | uint32_t next_dex_pc; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 73 | ArtMethod* next_art_method; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 74 | bool has_next = GetNextMethodAndDexPc(&next_art_method, &next_dex_pc); |
| 75 | // Report the method that did the down call as the handler. |
| 76 | exception_handler_->SetHandlerDexPc(next_dex_pc); |
| 77 | exception_handler_->SetHandlerMethod(next_art_method); |
| 78 | if (!has_next) { |
| 79 | // No next method? Check exception handler is set up for the unhandled exception handler |
| 80 | // case. |
| 81 | DCHECK_EQ(0U, exception_handler_->GetHandlerDexPc()); |
| 82 | DCHECK(nullptr == exception_handler_->GetHandlerMethod()); |
| 83 | } |
| 84 | return false; // End stack walk. |
| 85 | } |
| 86 | if (method->IsRuntimeMethod()) { |
| 87 | // Ignore callee save method. |
| 88 | DCHECK(method->IsCalleeSaveMethod()); |
| 89 | return true; |
| 90 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 91 | return HandleTryItems(method); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | private: |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 95 | bool HandleTryItems(ArtMethod* method) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 96 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 97 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| 98 | if (!method->IsNative()) { |
| 99 | dex_pc = GetDexPc(); |
| 100 | } |
| 101 | if (dex_pc != DexFile::kDexNoIndex) { |
| 102 | bool clear_exception = false; |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 103 | StackHandleScope<1> hs(GetThread()); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 104 | Handle<mirror::Class> to_find(hs.NewHandle((*exception_)->GetClass())); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 105 | uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 106 | exception_handler_->SetClearException(clear_exception); |
| 107 | if (found_dex_pc != DexFile::kDexNoIndex) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 108 | exception_handler_->SetHandlerMethod(method); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 109 | exception_handler_->SetHandlerDexPc(found_dex_pc); |
David Brazdil | 72f7b88 | 2015-09-15 17:00:52 +0100 | [diff] [blame] | 110 | exception_handler_->SetHandlerQuickFramePc( |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 111 | GetCurrentOatQuickMethodHeader()->ToNativeQuickPc( |
| 112 | method, found_dex_pc, /* is_catch_handler */ true)); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 113 | exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame()); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 114 | exception_handler_->SetHandlerMethodHeader(GetCurrentOatQuickMethodHeader()); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 115 | return false; // End stack walk. |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 116 | } else if (UNLIKELY(GetThread()->HasDebuggerShadowFrames())) { |
| 117 | // We are going to unwind this frame. Did we prepare a shadow frame for debugging? |
| 118 | size_t frame_id = GetFrameId(); |
| 119 | ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(frame_id); |
| 120 | if (frame != nullptr) { |
| 121 | // We will not execute this shadow frame so we can safely deallocate it. |
| 122 | GetThread()->RemoveDebuggerShadowFrameMapping(frame_id); |
| 123 | ShadowFrame::DeleteDeoptimizedFrame(frame); |
| 124 | } |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 125 | } |
| 126 | } |
| 127 | return true; // Continue stack walk. |
| 128 | } |
| 129 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 130 | // The exception we're looking for the catch block of. |
| 131 | Handle<mirror::Throwable>* exception_; |
| 132 | // The quick exception handler we're visiting for. |
| 133 | QuickExceptionHandler* const exception_handler_; |
| 134 | |
| 135 | DISALLOW_COPY_AND_ASSIGN(CatchBlockStackVisitor); |
| 136 | }; |
| 137 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 138 | void QuickExceptionHandler::FindCatch(mirror::Throwable* exception) { |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 139 | DCHECK(!is_deoptimization_); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 140 | if (kDebugExceptionDelivery) { |
| 141 | mirror::String* msg = exception->GetDetailMessage(); |
| 142 | std::string str_msg(msg != nullptr ? msg->ToModifiedUtf8() : ""); |
| 143 | self_->DumpStack(LOG(INFO) << "Delivering exception: " << PrettyTypeOf(exception) |
| 144 | << ": " << str_msg << "\n"); |
| 145 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 146 | StackHandleScope<1> hs(self_); |
| 147 | Handle<mirror::Throwable> exception_ref(hs.NewHandle(exception)); |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 148 | |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 149 | // Walk the stack to find catch handler. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 150 | CatchBlockStackVisitor visitor(self_, context_, &exception_ref, this); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 151 | visitor.WalkStack(true); |
| 152 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 153 | if (kDebugExceptionDelivery) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 154 | if (*handler_quick_frame_ == nullptr) { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 155 | LOG(INFO) << "Handler is upcall"; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 156 | } |
| 157 | if (handler_method_ != nullptr) { |
| 158 | const DexFile& dex_file = *handler_method_->GetDeclaringClass()->GetDexCache()->GetDexFile(); |
| 159 | int line_number = dex_file.GetLineNumFromPC(handler_method_, handler_dex_pc_); |
| 160 | LOG(INFO) << "Handler: " << PrettyMethod(handler_method_) << " (line: " << line_number << ")"; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 161 | } |
| 162 | } |
| 163 | if (clear_exception_) { |
| 164 | // Exception was cleared as part of delivery. |
| 165 | DCHECK(!self_->IsExceptionPending()); |
| 166 | } else { |
| 167 | // Put exception back in root set with clear throw location. |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 168 | self_->SetException(exception_ref.Get()); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 169 | } |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 170 | // If the handler is in optimized code, we need to set the catch environment. |
| 171 | if (*handler_quick_frame_ != nullptr && |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 172 | handler_method_header_ != nullptr && |
| 173 | handler_method_header_->IsOptimized()) { |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 174 | SetCatchEnvironmentForOptimizedHandler(&visitor); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | static VRegKind ToVRegKind(DexRegisterLocation::Kind kind) { |
| 179 | // Slightly hacky since we cannot map DexRegisterLocationKind and VRegKind |
| 180 | // one to one. However, StackVisitor::GetVRegFromOptimizedCode only needs to |
| 181 | // distinguish between core/FPU registers and low/high bits on 64-bit. |
| 182 | switch (kind) { |
| 183 | case DexRegisterLocation::Kind::kConstant: |
| 184 | case DexRegisterLocation::Kind::kInStack: |
| 185 | // VRegKind is ignored. |
| 186 | return VRegKind::kUndefined; |
| 187 | |
| 188 | case DexRegisterLocation::Kind::kInRegister: |
| 189 | // Selects core register. For 64-bit registers, selects low 32 bits. |
| 190 | return VRegKind::kLongLoVReg; |
| 191 | |
| 192 | case DexRegisterLocation::Kind::kInRegisterHigh: |
| 193 | // Selects core register. For 64-bit registers, selects high 32 bits. |
| 194 | return VRegKind::kLongHiVReg; |
| 195 | |
| 196 | case DexRegisterLocation::Kind::kInFpuRegister: |
| 197 | // Selects FPU register. For 64-bit registers, selects low 32 bits. |
| 198 | return VRegKind::kDoubleLoVReg; |
| 199 | |
| 200 | case DexRegisterLocation::Kind::kInFpuRegisterHigh: |
| 201 | // Selects FPU register. For 64-bit registers, selects high 32 bits. |
| 202 | return VRegKind::kDoubleHiVReg; |
| 203 | |
| 204 | default: |
| 205 | LOG(FATAL) << "Unexpected vreg location " |
| 206 | << DexRegisterLocation::PrettyDescriptor(kind); |
| 207 | UNREACHABLE(); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | void QuickExceptionHandler::SetCatchEnvironmentForOptimizedHandler(StackVisitor* stack_visitor) { |
| 212 | DCHECK(!is_deoptimization_); |
| 213 | DCHECK(*handler_quick_frame_ != nullptr) << "Method should not be called on upcall exceptions"; |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 214 | DCHECK(handler_method_ != nullptr && handler_method_header_->IsOptimized()); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 215 | |
| 216 | if (kDebugExceptionDelivery) { |
| 217 | self_->DumpStack(LOG(INFO) << "Setting catch phis: "); |
| 218 | } |
| 219 | |
| 220 | const size_t number_of_vregs = handler_method_->GetCodeItem()->registers_size_; |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 221 | CodeInfo code_info = handler_method_header_->GetOptimizedCodeInfo(); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 222 | StackMapEncoding encoding = code_info.ExtractEncoding(); |
| 223 | |
Nicolas Geoffray | 012fc4e | 2016-01-08 15:58:19 +0000 | [diff] [blame] | 224 | // Find stack map of the catch block. |
| 225 | StackMap catch_stack_map = code_info.GetCatchStackMapForDexPc(GetHandlerDexPc(), encoding); |
| 226 | DCHECK(catch_stack_map.IsValid()); |
| 227 | DexRegisterMap catch_vreg_map = |
| 228 | code_info.GetDexRegisterMapOf(catch_stack_map, encoding, number_of_vregs); |
| 229 | if (!catch_vreg_map.IsValid()) { |
| 230 | return; |
| 231 | } |
| 232 | |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 233 | // Find stack map of the throwing instruction. |
| 234 | StackMap throw_stack_map = |
| 235 | code_info.GetStackMapForNativePcOffset(stack_visitor->GetNativePcOffset(), encoding); |
| 236 | DCHECK(throw_stack_map.IsValid()); |
| 237 | DexRegisterMap throw_vreg_map = |
| 238 | code_info.GetDexRegisterMapOf(throw_stack_map, encoding, number_of_vregs); |
Nicolas Geoffray | 012fc4e | 2016-01-08 15:58:19 +0000 | [diff] [blame] | 239 | DCHECK(throw_vreg_map.IsValid()); |
David Brazdil | 77a48ae | 2015-09-15 12:34:04 +0000 | [diff] [blame] | 240 | |
| 241 | // Copy values between them. |
| 242 | for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) { |
| 243 | DexRegisterLocation::Kind catch_location = |
| 244 | catch_vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding); |
| 245 | if (catch_location == DexRegisterLocation::Kind::kNone) { |
| 246 | continue; |
| 247 | } |
| 248 | DCHECK(catch_location == DexRegisterLocation::Kind::kInStack); |
| 249 | |
| 250 | // Get vreg value from its current location. |
| 251 | uint32_t vreg_value; |
| 252 | VRegKind vreg_kind = ToVRegKind(throw_vreg_map.GetLocationKind(vreg, |
| 253 | number_of_vregs, |
| 254 | code_info, |
| 255 | encoding)); |
| 256 | bool get_vreg_success = stack_visitor->GetVReg(stack_visitor->GetMethod(), |
| 257 | vreg, |
| 258 | vreg_kind, |
| 259 | &vreg_value); |
| 260 | CHECK(get_vreg_success) << "VReg " << vreg << " was optimized out (" |
| 261 | << "method=" << PrettyMethod(stack_visitor->GetMethod()) << ", " |
| 262 | << "dex_pc=" << stack_visitor->GetDexPc() << ", " |
| 263 | << "native_pc_offset=" << stack_visitor->GetNativePcOffset() << ")"; |
| 264 | |
| 265 | // Copy value to the catch phi's stack slot. |
| 266 | int32_t slot_offset = catch_vreg_map.GetStackOffsetInBytes(vreg, |
| 267 | number_of_vregs, |
| 268 | code_info, |
| 269 | encoding); |
| 270 | ArtMethod** frame_top = stack_visitor->GetCurrentQuickFrame(); |
| 271 | uint8_t* slot_address = reinterpret_cast<uint8_t*>(frame_top) + slot_offset; |
| 272 | uint32_t* slot_ptr = reinterpret_cast<uint32_t*>(slot_address); |
| 273 | *slot_ptr = vreg_value; |
| 274 | } |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 275 | } |
| 276 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 277 | // Prepares deoptimization. |
| 278 | class DeoptimizeStackVisitor FINAL : public StackVisitor { |
| 279 | public: |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 280 | DeoptimizeStackVisitor(Thread* self, |
| 281 | Context* context, |
| 282 | QuickExceptionHandler* exception_handler, |
| 283 | bool single_frame) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 284 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 285 | : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 286 | exception_handler_(exception_handler), |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 287 | prev_shadow_frame_(nullptr), |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 288 | stacked_shadow_frame_pushed_(false), |
| 289 | single_frame_deopt_(single_frame), |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 290 | single_frame_done_(false), |
| 291 | single_frame_deopt_method_(nullptr) { |
| 292 | } |
| 293 | |
| 294 | ArtMethod* GetSingleFrameDeoptMethod() const { |
| 295 | return single_frame_deopt_method_; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 298 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 299 | exception_handler_->SetHandlerFrameDepth(GetFrameDepth()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 300 | ArtMethod* method = GetMethod(); |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 301 | if (method == nullptr || single_frame_done_) { |
| 302 | // This is the upcall (or the next full frame in single-frame deopt), we remember the frame |
| 303 | // and last pc so that we may long jump to them. |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 304 | exception_handler_->SetHandlerQuickFramePc(GetCurrentQuickFramePc()); |
| 305 | exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame()); |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 306 | exception_handler_->SetHandlerMethodHeader(GetCurrentOatQuickMethodHeader()); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 307 | if (!stacked_shadow_frame_pushed_) { |
| 308 | // In case there is no deoptimized shadow frame for this upcall, we still |
| 309 | // need to push a nullptr to the stack since there is always a matching pop after |
| 310 | // the long jump. |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 311 | GetThread()->PushStackedShadowFrame(nullptr, |
| 312 | StackedShadowFrameType::kDeoptimizationShadowFrame); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 313 | stacked_shadow_frame_pushed_ = true; |
| 314 | } |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 315 | return false; // End stack walk. |
| 316 | } else if (method->IsRuntimeMethod()) { |
| 317 | // Ignore callee save method. |
| 318 | DCHECK(method->IsCalleeSaveMethod()); |
| 319 | return true; |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 320 | } else if (method->IsNative()) { |
| 321 | // If we return from JNI with a pending exception and want to deoptimize, we need to skip |
| 322 | // the native method. |
| 323 | // The top method is a runtime method, the native method comes next. |
| 324 | CHECK_EQ(GetFrameDepth(), 1U); |
| 325 | return true; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 326 | } else { |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 327 | // Check if a shadow frame already exists for debugger's set-local-value purpose. |
| 328 | const size_t frame_id = GetFrameId(); |
| 329 | ShadowFrame* new_frame = GetThread()->FindDebuggerShadowFrame(frame_id); |
| 330 | const bool* updated_vregs; |
| 331 | const size_t num_regs = method->GetCodeItem()->registers_size_; |
| 332 | if (new_frame == nullptr) { |
| 333 | new_frame = ShadowFrame::CreateDeoptimizedFrame(num_regs, nullptr, method, GetDexPc()); |
| 334 | updated_vregs = nullptr; |
| 335 | } else { |
| 336 | updated_vregs = GetThread()->GetUpdatedVRegFlags(frame_id); |
| 337 | DCHECK(updated_vregs != nullptr); |
| 338 | } |
| 339 | if (GetCurrentOatQuickMethodHeader()->IsOptimized()) { |
| 340 | HandleOptimizingDeoptimization(method, new_frame, updated_vregs); |
| 341 | } else { |
| 342 | HandleQuickDeoptimization(method, new_frame, updated_vregs); |
| 343 | } |
| 344 | if (updated_vregs != nullptr) { |
| 345 | // Calling Thread::RemoveDebuggerShadowFrameMapping will also delete the updated_vregs |
| 346 | // array so this must come after we processed the frame. |
| 347 | GetThread()->RemoveDebuggerShadowFrameMapping(frame_id); |
| 348 | DCHECK(GetThread()->FindDebuggerShadowFrame(frame_id) == nullptr); |
| 349 | } |
| 350 | if (prev_shadow_frame_ != nullptr) { |
| 351 | prev_shadow_frame_->SetLink(new_frame); |
| 352 | } else { |
| 353 | // Will be popped after the long jump after DeoptimizeStack(), |
| 354 | // right before interpreter::EnterInterpreterFromDeoptimize(). |
| 355 | stacked_shadow_frame_pushed_ = true; |
| 356 | GetThread()->PushStackedShadowFrame( |
| 357 | new_frame, |
| 358 | single_frame_deopt_ |
| 359 | ? StackedShadowFrameType::kSingleFrameDeoptimizationShadowFrame |
| 360 | : StackedShadowFrameType::kDeoptimizationShadowFrame); |
| 361 | } |
| 362 | prev_shadow_frame_ = new_frame; |
| 363 | |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 364 | if (single_frame_deopt_ && !IsInInlinedFrame()) { |
| 365 | // Single-frame deopt ends at the first non-inlined frame and needs to store that method. |
| 366 | exception_handler_->SetHandlerQuickArg0(reinterpret_cast<uintptr_t>(method)); |
| 367 | single_frame_done_ = true; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 368 | single_frame_deopt_method_ = method; |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 369 | } |
| 370 | return true; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | |
| 374 | private: |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 375 | void HandleOptimizingDeoptimization(ArtMethod* m, |
| 376 | ShadowFrame* new_frame, |
| 377 | const bool* updated_vregs) |
| 378 | SHARED_REQUIRES(Locks::mutator_lock_) { |
| 379 | const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader(); |
| 380 | CodeInfo code_info = method_header->GetOptimizedCodeInfo(); |
| 381 | uintptr_t native_pc_offset = method_header->NativeQuickPcOffset(GetCurrentQuickFramePc()); |
| 382 | StackMapEncoding encoding = code_info.ExtractEncoding(); |
| 383 | StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding); |
| 384 | const size_t number_of_vregs = m->GetCodeItem()->registers_size_; |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 385 | MemoryRegion stack_mask = stack_map.GetStackMask(encoding); |
| 386 | uint32_t register_mask = stack_map.GetRegisterMask(encoding); |
David Brazdil | efc3f02 | 2015-10-28 12:19:06 -0500 | [diff] [blame] | 387 | DexRegisterMap vreg_map = IsInInlinedFrame() |
| 388 | ? code_info.GetDexRegisterMapAtDepth(GetCurrentInliningDepth() - 1, |
| 389 | code_info.GetInlineInfoOf(stack_map, encoding), |
| 390 | encoding, |
| 391 | number_of_vregs) |
| 392 | : code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_vregs); |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 393 | |
Nicolas Geoffray | 012fc4e | 2016-01-08 15:58:19 +0000 | [diff] [blame] | 394 | if (!vreg_map.IsValid()) { |
| 395 | return; |
| 396 | } |
| 397 | |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 398 | for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) { |
| 399 | if (updated_vregs != nullptr && updated_vregs[vreg]) { |
| 400 | // Keep the value set by debugger. |
| 401 | continue; |
| 402 | } |
| 403 | |
| 404 | DexRegisterLocation::Kind location = |
| 405 | vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding); |
| 406 | static constexpr uint32_t kDeadValue = 0xEBADDE09; |
| 407 | uint32_t value = kDeadValue; |
| 408 | bool is_reference = false; |
| 409 | |
| 410 | switch (location) { |
| 411 | case DexRegisterLocation::Kind::kInStack: { |
| 412 | const int32_t offset = vreg_map.GetStackOffsetInBytes(vreg, |
| 413 | number_of_vregs, |
| 414 | code_info, |
| 415 | encoding); |
| 416 | const uint8_t* addr = reinterpret_cast<const uint8_t*>(GetCurrentQuickFrame()) + offset; |
| 417 | value = *reinterpret_cast<const uint32_t*>(addr); |
| 418 | uint32_t bit = (offset >> 2); |
| 419 | if (stack_mask.size_in_bits() > bit && stack_mask.LoadBit(bit)) { |
| 420 | is_reference = true; |
| 421 | } |
| 422 | break; |
| 423 | } |
| 424 | case DexRegisterLocation::Kind::kInRegister: |
| 425 | case DexRegisterLocation::Kind::kInRegisterHigh: |
| 426 | case DexRegisterLocation::Kind::kInFpuRegister: |
| 427 | case DexRegisterLocation::Kind::kInFpuRegisterHigh: { |
| 428 | uint32_t reg = vreg_map.GetMachineRegister(vreg, number_of_vregs, code_info, encoding); |
| 429 | bool result = GetRegisterIfAccessible(reg, ToVRegKind(location), &value); |
| 430 | CHECK(result); |
| 431 | if (location == DexRegisterLocation::Kind::kInRegister) { |
| 432 | if (((1u << reg) & register_mask) != 0) { |
| 433 | is_reference = true; |
| 434 | } |
| 435 | } |
| 436 | break; |
| 437 | } |
| 438 | case DexRegisterLocation::Kind::kConstant: { |
| 439 | value = vreg_map.GetConstant(vreg, number_of_vregs, code_info, encoding); |
| 440 | if (value == 0) { |
| 441 | // Make it a reference for extra safety. |
| 442 | is_reference = true; |
| 443 | } |
| 444 | break; |
| 445 | } |
| 446 | case DexRegisterLocation::Kind::kNone: { |
| 447 | break; |
| 448 | } |
| 449 | default: { |
| 450 | LOG(FATAL) |
| 451 | << "Unexpected location kind" |
| 452 | << DexRegisterLocation::PrettyDescriptor( |
| 453 | vreg_map.GetLocationInternalKind(vreg, |
| 454 | number_of_vregs, |
| 455 | code_info, |
| 456 | encoding)); |
| 457 | UNREACHABLE(); |
| 458 | } |
| 459 | } |
| 460 | if (is_reference) { |
| 461 | new_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(value)); |
| 462 | } else { |
| 463 | new_frame->SetVReg(vreg, value); |
| 464 | } |
| 465 | } |
| 466 | } |
| 467 | |
Sebastien Hertz | c901dd7 | 2014-07-16 11:56:07 +0200 | [diff] [blame] | 468 | static VRegKind GetVRegKind(uint16_t reg, const std::vector<int32_t>& kinds) { |
| 469 | return static_cast<VRegKind>(kinds.at(reg * 2)); |
| 470 | } |
| 471 | |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 472 | void HandleQuickDeoptimization(ArtMethod* m, |
| 473 | ShadowFrame* new_frame, |
| 474 | const bool* updated_vregs) |
| 475 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 476 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 477 | CHECK(code_item != nullptr) << "No code item for " << PrettyMethod(m); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 478 | uint16_t num_regs = code_item->registers_size_; |
| 479 | uint32_t dex_pc = GetDexPc(); |
Nicolas Geoffray | 3385650 | 2015-10-20 15:52:58 +0100 | [diff] [blame] | 480 | StackHandleScope<2> hs(GetThread()); // Dex cache and class loader. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 481 | mirror::Class* declaring_class = m->GetDeclaringClass(); |
| 482 | Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(declaring_class->GetDexCache())); |
| 483 | Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(declaring_class->GetClassLoader())); |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 484 | verifier::MethodVerifier verifier(GetThread(), h_dex_cache->GetDexFile(), h_dex_cache, |
| 485 | h_class_loader, &m->GetClassDef(), code_item, |
| 486 | m->GetDexMethodIndex(), m, m->GetAccessFlags(), true, true, |
| 487 | true, true); |
Andreas Gampe | 2e04bb2 | 2015-02-10 15:37:27 -0800 | [diff] [blame] | 488 | bool verifier_success = verifier.Verify(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 489 | CHECK(verifier_success) << PrettyMethod(m); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 490 | { |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 491 | ScopedStackedShadowFramePusher pusher(GetThread(), new_frame, |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 492 | StackedShadowFrameType::kShadowFrameUnderConstruction); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 493 | const std::vector<int32_t> kinds(verifier.DescribeVRegs(dex_pc)); |
Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 494 | |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 495 | // Markers for dead values, used when the verifier knows a Dex register is undefined, |
| 496 | // or when the compiler knows the register has not been initialized, or is not used |
| 497 | // anymore in the method. |
| 498 | static constexpr uint32_t kDeadValue = 0xEBADDE09; |
| 499 | static constexpr uint64_t kLongDeadValue = 0xEBADDE09EBADDE09; |
| 500 | for (uint16_t reg = 0; reg < num_regs; ++reg) { |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 501 | if (updated_vregs != nullptr && updated_vregs[reg]) { |
| 502 | // Keep the value set by debugger. |
| 503 | continue; |
| 504 | } |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 505 | VRegKind kind = GetVRegKind(reg, kinds); |
| 506 | switch (kind) { |
| 507 | case kUndefined: |
Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 508 | new_frame->SetVReg(reg, kDeadValue); |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 509 | break; |
| 510 | case kConstant: |
| 511 | new_frame->SetVReg(reg, kinds.at((reg * 2) + 1)); |
| 512 | break; |
| 513 | case kReferenceVReg: { |
| 514 | uint32_t value = 0; |
| 515 | // Check IsReferenceVReg in case the compiled GC map doesn't agree with the verifier. |
| 516 | // We don't want to copy a stale reference into the shadow frame as a reference. |
| 517 | // b/20736048 |
| 518 | if (GetVReg(m, reg, kind, &value) && IsReferenceVReg(m, reg)) { |
| 519 | new_frame->SetVRegReference(reg, reinterpret_cast<mirror::Object*>(value)); |
| 520 | } else { |
| 521 | new_frame->SetVReg(reg, kDeadValue); |
| 522 | } |
| 523 | break; |
Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 524 | } |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 525 | case kLongLoVReg: |
| 526 | if (GetVRegKind(reg + 1, kinds) == kLongHiVReg) { |
| 527 | // Treat it as a "long" register pair. |
| 528 | uint64_t value = 0; |
| 529 | if (GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &value)) { |
| 530 | new_frame->SetVRegLong(reg, value); |
| 531 | } else { |
| 532 | new_frame->SetVRegLong(reg, kLongDeadValue); |
| 533 | } |
| 534 | } else { |
| 535 | uint32_t value = 0; |
| 536 | if (GetVReg(m, reg, kind, &value)) { |
| 537 | new_frame->SetVReg(reg, value); |
| 538 | } else { |
| 539 | new_frame->SetVReg(reg, kDeadValue); |
| 540 | } |
| 541 | } |
| 542 | break; |
| 543 | case kLongHiVReg: |
| 544 | if (GetVRegKind(reg - 1, kinds) == kLongLoVReg) { |
| 545 | // Nothing to do: we treated it as a "long" register pair. |
| 546 | } else { |
| 547 | uint32_t value = 0; |
| 548 | if (GetVReg(m, reg, kind, &value)) { |
| 549 | new_frame->SetVReg(reg, value); |
| 550 | } else { |
| 551 | new_frame->SetVReg(reg, kDeadValue); |
| 552 | } |
| 553 | } |
| 554 | break; |
| 555 | case kDoubleLoVReg: |
| 556 | if (GetVRegKind(reg + 1, kinds) == kDoubleHiVReg) { |
| 557 | uint64_t value = 0; |
| 558 | if (GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &value)) { |
| 559 | // Treat it as a "double" register pair. |
| 560 | new_frame->SetVRegLong(reg, value); |
| 561 | } else { |
| 562 | new_frame->SetVRegLong(reg, kLongDeadValue); |
| 563 | } |
| 564 | } else { |
| 565 | uint32_t value = 0; |
| 566 | if (GetVReg(m, reg, kind, &value)) { |
| 567 | new_frame->SetVReg(reg, value); |
| 568 | } else { |
| 569 | new_frame->SetVReg(reg, kDeadValue); |
| 570 | } |
| 571 | } |
| 572 | break; |
| 573 | case kDoubleHiVReg: |
| 574 | if (GetVRegKind(reg - 1, kinds) == kDoubleLoVReg) { |
| 575 | // Nothing to do: we treated it as a "double" register pair. |
| 576 | } else { |
| 577 | uint32_t value = 0; |
| 578 | if (GetVReg(m, reg, kind, &value)) { |
| 579 | new_frame->SetVReg(reg, value); |
| 580 | } else { |
| 581 | new_frame->SetVReg(reg, kDeadValue); |
| 582 | } |
| 583 | } |
| 584 | break; |
| 585 | default: |
| 586 | uint32_t value = 0; |
| 587 | if (GetVReg(m, reg, kind, &value)) { |
| 588 | new_frame->SetVReg(reg, value); |
| 589 | } else { |
| 590 | new_frame->SetVReg(reg, kDeadValue); |
| 591 | } |
| 592 | break; |
Nicolas Geoffray | 15b9d52 | 2015-03-12 15:05:13 +0000 | [diff] [blame] | 593 | } |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 594 | } |
| 595 | } |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 598 | QuickExceptionHandler* const exception_handler_; |
| 599 | ShadowFrame* prev_shadow_frame_; |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 600 | bool stacked_shadow_frame_pushed_; |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 601 | const bool single_frame_deopt_; |
| 602 | bool single_frame_done_; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 603 | ArtMethod* single_frame_deopt_method_; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 604 | |
| 605 | DISALLOW_COPY_AND_ASSIGN(DeoptimizeStackVisitor); |
| 606 | }; |
| 607 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 608 | void QuickExceptionHandler::DeoptimizeStack() { |
| 609 | DCHECK(is_deoptimization_); |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 610 | if (kDebugExceptionDelivery) { |
| 611 | self_->DumpStack(LOG(INFO) << "Deoptimizing: "); |
| 612 | } |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 613 | |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 614 | DeoptimizeStackVisitor visitor(self_, context_, this, false); |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 615 | visitor.WalkStack(true); |
| 616 | |
| 617 | // Restore deoptimization exception |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 618 | self_->SetException(Thread::GetDeoptimizationException()); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 619 | } |
| 620 | |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 621 | void QuickExceptionHandler::DeoptimizeSingleFrame() { |
| 622 | DCHECK(is_deoptimization_); |
| 623 | |
| 624 | if (VLOG_IS_ON(deopt) || kDebugExceptionDelivery) { |
| 625 | LOG(INFO) << "Single-frame deopting:"; |
| 626 | DumpFramesWithType(self_, true); |
| 627 | } |
| 628 | |
| 629 | DeoptimizeStackVisitor visitor(self_, context_, this, true); |
| 630 | visitor.WalkStack(true); |
| 631 | |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 632 | // Compiled code made an explicit deoptimization. Transfer the code |
| 633 | // to interpreter and clear the counter to JIT the method again. |
| 634 | ArtMethod* deopt_method = visitor.GetSingleFrameDeoptMethod(); |
| 635 | DCHECK(deopt_method != nullptr); |
| 636 | deopt_method->ClearCounter(); |
| 637 | Runtime::Current()->GetInstrumentation()->UpdateMethodsCode( |
| 638 | deopt_method, GetQuickToInterpreterBridge()); |
| 639 | |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 640 | // PC needs to be of the quick-to-interpreter bridge. |
| 641 | int32_t offset; |
| 642 | #ifdef __LP64__ |
| 643 | offset = GetThreadOffset<8>(kQuickQuickToInterpreterBridge).Int32Value(); |
| 644 | #else |
| 645 | offset = GetThreadOffset<4>(kQuickQuickToInterpreterBridge).Int32Value(); |
| 646 | #endif |
| 647 | handler_quick_frame_pc_ = *reinterpret_cast<uintptr_t*>( |
| 648 | reinterpret_cast<uint8_t*>(self_) + offset); |
| 649 | } |
| 650 | |
| 651 | void QuickExceptionHandler::DeoptimizeSingleFrameArchDependentFixup() { |
| 652 | // Architecture-dependent work. This is to get the LR right for x86 and x86-64. |
| 653 | |
| 654 | if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) { |
| 655 | // On x86, the return address is on the stack, so just reuse it. Otherwise we would have to |
| 656 | // change how longjump works. |
| 657 | handler_quick_frame_ = reinterpret_cast<ArtMethod**>( |
| 658 | reinterpret_cast<uintptr_t>(handler_quick_frame_) - sizeof(void*)); |
| 659 | } |
| 660 | } |
| 661 | |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 662 | // Unwinds all instrumentation stack frame prior to catch handler or upcall. |
| 663 | class InstrumentationStackVisitor : public StackVisitor { |
| 664 | public: |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 665 | InstrumentationStackVisitor(Thread* self, size_t frame_depth) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 666 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 667 | : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 668 | frame_depth_(frame_depth), |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 669 | instrumentation_frames_to_pop_(0) { |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 670 | CHECK_NE(frame_depth_, kInvalidFrameDepth); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 671 | } |
| 672 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 673 | bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) { |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 674 | size_t current_frame_depth = GetFrameDepth(); |
| 675 | if (current_frame_depth < frame_depth_) { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 676 | CHECK(GetMethod() != nullptr); |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 677 | if (UNLIKELY(reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == GetReturnPc())) { |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 678 | if (!IsInInlinedFrame()) { |
| 679 | // We do not count inlined frames, because we do not instrument them. The reason we |
| 680 | // include them in the stack walking is the check against `frame_depth_`, which is |
| 681 | // given to us by a visitor that visits inlined frames. |
| 682 | ++instrumentation_frames_to_pop_; |
| 683 | } |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 684 | } |
| 685 | return true; |
| 686 | } else { |
| 687 | // We reached the frame of the catch handler or the upcall. |
| 688 | return false; |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | size_t GetInstrumentationFramesToPop() const { |
| 693 | return instrumentation_frames_to_pop_; |
| 694 | } |
| 695 | |
| 696 | private: |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 697 | const size_t frame_depth_; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 698 | size_t instrumentation_frames_to_pop_; |
| 699 | |
| 700 | DISALLOW_COPY_AND_ASSIGN(InstrumentationStackVisitor); |
| 701 | }; |
| 702 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 703 | void QuickExceptionHandler::UpdateInstrumentationStack() { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 704 | if (method_tracing_active_) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 705 | InstrumentationStackVisitor visitor(self_, handler_frame_depth_); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 706 | visitor.WalkStack(true); |
| 707 | |
| 708 | size_t instrumentation_frames_to_pop = visitor.GetInstrumentationFramesToPop(); |
| 709 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 710 | for (size_t i = 0; i < instrumentation_frames_to_pop; ++i) { |
| 711 | instrumentation->PopMethodForUnwind(self_, is_deoptimization_); |
| 712 | } |
| 713 | } |
| 714 | } |
| 715 | |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 716 | void QuickExceptionHandler::DoLongJump(bool smash_caller_saves) { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 717 | // Place context back on thread so it will be available when we continue. |
| 718 | self_->ReleaseLongJumpContext(context_); |
| 719 | context_->SetSP(reinterpret_cast<uintptr_t>(handler_quick_frame_)); |
| 720 | CHECK_NE(handler_quick_frame_pc_, 0u); |
| 721 | context_->SetPC(handler_quick_frame_pc_); |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 722 | context_->SetArg0(handler_quick_arg0_); |
| 723 | if (smash_caller_saves) { |
| 724 | context_->SmashCallerSaves(); |
| 725 | } |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 726 | context_->DoLongJump(); |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 727 | UNREACHABLE(); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 728 | } |
| 729 | |
Andreas Gampe | 639bdd1 | 2015-06-03 11:22:45 -0700 | [diff] [blame] | 730 | // Prints out methods with their type of frame. |
| 731 | class DumpFramesWithTypeStackVisitor FINAL : public StackVisitor { |
| 732 | public: |
| 733 | DumpFramesWithTypeStackVisitor(Thread* self, bool show_details = false) |
| 734 | SHARED_REQUIRES(Locks::mutator_lock_) |
| 735 | : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 736 | show_details_(show_details) {} |
| 737 | |
| 738 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
| 739 | ArtMethod* method = GetMethod(); |
| 740 | if (show_details_) { |
| 741 | LOG(INFO) << "|> pc = " << std::hex << GetCurrentQuickFramePc(); |
| 742 | LOG(INFO) << "|> addr = " << std::hex << reinterpret_cast<uintptr_t>(GetCurrentQuickFrame()); |
| 743 | if (GetCurrentQuickFrame() != nullptr && method != nullptr) { |
| 744 | LOG(INFO) << "|> ret = " << std::hex << GetReturnPc(); |
| 745 | } |
| 746 | } |
| 747 | if (method == nullptr) { |
| 748 | // Transition, do go on, we want to unwind over bridges, all the way. |
| 749 | if (show_details_) { |
| 750 | LOG(INFO) << "N <transition>"; |
| 751 | } |
| 752 | return true; |
| 753 | } else if (method->IsRuntimeMethod()) { |
| 754 | if (show_details_) { |
| 755 | LOG(INFO) << "R " << PrettyMethod(method, true); |
| 756 | } |
| 757 | return true; |
| 758 | } else { |
| 759 | bool is_shadow = GetCurrentShadowFrame() != nullptr; |
| 760 | LOG(INFO) << (is_shadow ? "S" : "Q") |
| 761 | << ((!is_shadow && IsInInlinedFrame()) ? "i" : " ") |
| 762 | << " " |
| 763 | << PrettyMethod(method, true); |
| 764 | return true; // Go on. |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | private: |
| 769 | bool show_details_; |
| 770 | |
| 771 | DISALLOW_COPY_AND_ASSIGN(DumpFramesWithTypeStackVisitor); |
| 772 | }; |
| 773 | |
| 774 | void QuickExceptionHandler::DumpFramesWithType(Thread* self, bool details) { |
| 775 | DumpFramesWithTypeStackVisitor visitor(self, details); |
| 776 | visitor.WalkStack(true); |
| 777 | } |
| 778 | |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 779 | } // namespace art |