blob: a7771abc2688a425785c31f3332587b689e155f7 [file] [log] [blame]
Sebastien Hertzd45a1f52014-01-09 14:56:54 +01001/*
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 Hertzfd3077e2014-04-23 10:32:43 +020017#include "quick_exception_handler.h"
18
Ian Rogerse63db272014-07-15 15:36:11 -070019#include "arch/context.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080022#include "base/logging.h" // For VLOG_IS_ON.
Andreas Gampee2abbc62017-09-15 11:59:26 -070023#include "dex_file_types.h"
Ian Rogers5cf98192014-05-29 21:31:50 -070024#include "dex_instruction.h"
Sebastien Hertzfd3077e2014-04-23 10:32:43 +020025#include "entrypoints/entrypoint_utils.h"
Andreas Gampe639bdd12015-06-03 11:22:45 -070026#include "entrypoints/quick/quick_entrypoints_enum.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070027#include "entrypoints/runtime_asm_entrypoints.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070028#include "handle_scope-inl.h"
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +000029#include "jit/jit.h"
30#include "jit/jit_code_cache.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070031#include "mirror/class-inl.h"
32#include "mirror/class_loader.h"
33#include "mirror/throwable.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010034#include "oat_quick_method_header.h"
Vladimir Marko3a21e382016-09-02 12:38:38 +010035#include "stack.h"
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010036#include "stack_map.h"
Sebastien Hertzd45a1f52014-01-09 14:56:54 +010037
38namespace art {
39
Ian Rogers5cf98192014-05-29 21:31:50 -070040static constexpr bool kDebugExceptionDelivery = false;
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -070041static constexpr size_t kInvalidFrameDepth = 0xffffffff;
Ian Rogers5cf98192014-05-29 21:31:50 -070042
Sebastien Hertzfd3077e2014-04-23 10:32:43 +020043QuickExceptionHandler::QuickExceptionHandler(Thread* self, bool is_deoptimization)
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010044 : self_(self),
45 context_(self->GetLongJumpContext()),
46 is_deoptimization_(is_deoptimization),
47 method_tracing_active_(is_deoptimization ||
48 Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled()),
49 handler_quick_frame_(nullptr),
50 handler_quick_frame_pc_(0),
51 handler_method_header_(nullptr),
52 handler_quick_arg0_(0),
53 handler_method_(nullptr),
54 handler_dex_pc_(0),
55 clear_exception_(false),
Mingyao Yangf711f2c2016-05-23 12:29:39 -070056 handler_frame_depth_(kInvalidFrameDepth),
57 full_fragment_done_(false) {}
Sebastien Hertzd45a1f52014-01-09 14:56:54 +010058
Sebastien Hertz520633b2015-09-08 17:03:36 +020059// Finds catch handler.
Ian Rogers5cf98192014-05-29 21:31:50 -070060class CatchBlockStackVisitor FINAL : public StackVisitor {
61 public:
62 CatchBlockStackVisitor(Thread* self, Context* context, Handle<mirror::Throwable>* exception,
63 QuickExceptionHandler* exception_handler)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070064 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010065 : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010066 exception_(exception),
Ian Rogers5cf98192014-05-29 21:31:50 -070067 exception_handler_(exception_handler) {
68 }
69
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070070 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070071 ArtMethod* method = GetMethod();
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -070072 exception_handler_->SetHandlerFrameDepth(GetFrameDepth());
Ian Rogers5cf98192014-05-29 21:31:50 -070073 if (method == nullptr) {
74 // This is the upcall, we remember the frame and last pc so that we may long jump to them.
75 exception_handler_->SetHandlerQuickFramePc(GetCurrentQuickFramePc());
76 exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010077 exception_handler_->SetHandlerMethodHeader(GetCurrentOatQuickMethodHeader());
Ian Rogers5cf98192014-05-29 21:31:50 -070078 uint32_t next_dex_pc;
Mathieu Chartiere401d142015-04-22 13:56:20 -070079 ArtMethod* next_art_method;
Ian Rogers5cf98192014-05-29 21:31:50 -070080 bool has_next = GetNextMethodAndDexPc(&next_art_method, &next_dex_pc);
81 // Report the method that did the down call as the handler.
82 exception_handler_->SetHandlerDexPc(next_dex_pc);
83 exception_handler_->SetHandlerMethod(next_art_method);
84 if (!has_next) {
85 // No next method? Check exception handler is set up for the unhandled exception handler
86 // case.
87 DCHECK_EQ(0U, exception_handler_->GetHandlerDexPc());
88 DCHECK(nullptr == exception_handler_->GetHandlerMethod());
89 }
90 return false; // End stack walk.
91 }
92 if (method->IsRuntimeMethod()) {
93 // Ignore callee save method.
94 DCHECK(method->IsCalleeSaveMethod());
95 return true;
96 }
Mathieu Chartiere401d142015-04-22 13:56:20 -070097 return HandleTryItems(method);
Ian Rogers5cf98192014-05-29 21:31:50 -070098 }
99
100 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700101 bool HandleTryItems(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700102 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampee2abbc62017-09-15 11:59:26 -0700103 uint32_t dex_pc = dex::kDexNoIndex;
Ian Rogers5cf98192014-05-29 21:31:50 -0700104 if (!method->IsNative()) {
105 dex_pc = GetDexPc();
106 }
Andreas Gampee2abbc62017-09-15 11:59:26 -0700107 if (dex_pc != dex::kDexNoIndex) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700108 bool clear_exception = false;
Sebastien Hertz26f72862015-09-15 09:52:07 +0200109 StackHandleScope<1> hs(GetThread());
Ian Rogers5cf98192014-05-29 21:31:50 -0700110 Handle<mirror::Class> to_find(hs.NewHandle((*exception_)->GetClass()));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700111 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception);
Ian Rogers5cf98192014-05-29 21:31:50 -0700112 exception_handler_->SetClearException(clear_exception);
Andreas Gampee2abbc62017-09-15 11:59:26 -0700113 if (found_dex_pc != dex::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700114 exception_handler_->SetHandlerMethod(method);
Ian Rogers5cf98192014-05-29 21:31:50 -0700115 exception_handler_->SetHandlerDexPc(found_dex_pc);
David Brazdil72f7b882015-09-15 17:00:52 +0100116 exception_handler_->SetHandlerQuickFramePc(
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100117 GetCurrentOatQuickMethodHeader()->ToNativeQuickPc(
118 method, found_dex_pc, /* is_catch_handler */ true));
Ian Rogers5cf98192014-05-29 21:31:50 -0700119 exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame());
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100120 exception_handler_->SetHandlerMethodHeader(GetCurrentOatQuickMethodHeader());
Ian Rogers5cf98192014-05-29 21:31:50 -0700121 return false; // End stack walk.
Mingyao Yang99170c62015-07-06 11:10:37 -0700122 } else if (UNLIKELY(GetThread()->HasDebuggerShadowFrames())) {
123 // We are going to unwind this frame. Did we prepare a shadow frame for debugging?
124 size_t frame_id = GetFrameId();
125 ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(frame_id);
126 if (frame != nullptr) {
127 // We will not execute this shadow frame so we can safely deallocate it.
128 GetThread()->RemoveDebuggerShadowFrameMapping(frame_id);
129 ShadowFrame::DeleteDeoptimizedFrame(frame);
130 }
Ian Rogers5cf98192014-05-29 21:31:50 -0700131 }
132 }
133 return true; // Continue stack walk.
134 }
135
Ian Rogers5cf98192014-05-29 21:31:50 -0700136 // The exception we're looking for the catch block of.
137 Handle<mirror::Throwable>* exception_;
138 // The quick exception handler we're visiting for.
139 QuickExceptionHandler* const exception_handler_;
140
141 DISALLOW_COPY_AND_ASSIGN(CatchBlockStackVisitor);
142};
143
Mathieu Chartierf5769e12017-01-10 15:54:41 -0800144void QuickExceptionHandler::FindCatch(ObjPtr<mirror::Throwable> exception) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200145 DCHECK(!is_deoptimization_);
Ian Rogers5cf98192014-05-29 21:31:50 -0700146 if (kDebugExceptionDelivery) {
147 mirror::String* msg = exception->GetDetailMessage();
148 std::string str_msg(msg != nullptr ? msg->ToModifiedUtf8() : "");
David Sehr709b0702016-10-13 09:12:37 -0700149 self_->DumpStack(LOG_STREAM(INFO) << "Delivering exception: " << exception->PrettyTypeOf()
Ian Rogers5cf98192014-05-29 21:31:50 -0700150 << ": " << str_msg << "\n");
151 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700152 StackHandleScope<1> hs(self_);
153 Handle<mirror::Throwable> exception_ref(hs.NewHandle(exception));
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200154
Sebastien Hertz520633b2015-09-08 17:03:36 +0200155 // Walk the stack to find catch handler.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700156 CatchBlockStackVisitor visitor(self_, context_, &exception_ref, this);
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100157 visitor.WalkStack(true);
158
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200159 if (kDebugExceptionDelivery) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700160 if (*handler_quick_frame_ == nullptr) {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100161 LOG(INFO) << "Handler is upcall";
Ian Rogers5cf98192014-05-29 21:31:50 -0700162 }
163 if (handler_method_ != nullptr) {
David Sehr9323e6e2016-09-13 08:58:35 -0700164 const DexFile* dex_file = handler_method_->GetDeclaringClass()->GetDexCache()->GetDexFile();
165 int line_number = annotations::GetLineNumFromPC(dex_file, handler_method_, handler_dex_pc_);
David Sehr709b0702016-10-13 09:12:37 -0700166 LOG(INFO) << "Handler: " << handler_method_->PrettyMethod() << " (line: "
167 << line_number << ")";
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100168 }
169 }
Roland Levillainb77b6982017-06-08 18:03:48 +0100170 // Exception was cleared as part of delivery.
171 DCHECK(!self_->IsExceptionPending());
172 if (!clear_exception_) {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100173 // Put exception back in root set with clear throw location.
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000174 self_->SetException(exception_ref.Get());
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100175 }
David Brazdil77a48ae2015-09-15 12:34:04 +0000176 // If the handler is in optimized code, we need to set the catch environment.
177 if (*handler_quick_frame_ != nullptr &&
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100178 handler_method_header_ != nullptr &&
179 handler_method_header_->IsOptimized()) {
David Brazdil77a48ae2015-09-15 12:34:04 +0000180 SetCatchEnvironmentForOptimizedHandler(&visitor);
181 }
182}
183
184static VRegKind ToVRegKind(DexRegisterLocation::Kind kind) {
185 // Slightly hacky since we cannot map DexRegisterLocationKind and VRegKind
186 // one to one. However, StackVisitor::GetVRegFromOptimizedCode only needs to
187 // distinguish between core/FPU registers and low/high bits on 64-bit.
188 switch (kind) {
189 case DexRegisterLocation::Kind::kConstant:
190 case DexRegisterLocation::Kind::kInStack:
191 // VRegKind is ignored.
192 return VRegKind::kUndefined;
193
194 case DexRegisterLocation::Kind::kInRegister:
195 // Selects core register. For 64-bit registers, selects low 32 bits.
196 return VRegKind::kLongLoVReg;
197
198 case DexRegisterLocation::Kind::kInRegisterHigh:
199 // Selects core register. For 64-bit registers, selects high 32 bits.
200 return VRegKind::kLongHiVReg;
201
202 case DexRegisterLocation::Kind::kInFpuRegister:
203 // Selects FPU register. For 64-bit registers, selects low 32 bits.
204 return VRegKind::kDoubleLoVReg;
205
206 case DexRegisterLocation::Kind::kInFpuRegisterHigh:
207 // Selects FPU register. For 64-bit registers, selects high 32 bits.
208 return VRegKind::kDoubleHiVReg;
209
210 default:
David Srbecky7dc11782016-02-25 13:23:56 +0000211 LOG(FATAL) << "Unexpected vreg location " << kind;
David Brazdil77a48ae2015-09-15 12:34:04 +0000212 UNREACHABLE();
213 }
214}
215
216void QuickExceptionHandler::SetCatchEnvironmentForOptimizedHandler(StackVisitor* stack_visitor) {
217 DCHECK(!is_deoptimization_);
218 DCHECK(*handler_quick_frame_ != nullptr) << "Method should not be called on upcall exceptions";
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100219 DCHECK(handler_method_ != nullptr && handler_method_header_->IsOptimized());
David Brazdil77a48ae2015-09-15 12:34:04 +0000220
221 if (kDebugExceptionDelivery) {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700222 self_->DumpStack(LOG_STREAM(INFO) << "Setting catch phis: ");
David Brazdil77a48ae2015-09-15 12:34:04 +0000223 }
224
225 const size_t number_of_vregs = handler_method_->GetCodeItem()->registers_size_;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100226 CodeInfo code_info = handler_method_header_->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000227 CodeInfoEncoding encoding = code_info.ExtractEncoding();
David Brazdil77a48ae2015-09-15 12:34:04 +0000228
Nicolas Geoffray012fc4e2016-01-08 15:58:19 +0000229 // Find stack map of the catch block.
230 StackMap catch_stack_map = code_info.GetCatchStackMapForDexPc(GetHandlerDexPc(), encoding);
231 DCHECK(catch_stack_map.IsValid());
232 DexRegisterMap catch_vreg_map =
233 code_info.GetDexRegisterMapOf(catch_stack_map, encoding, number_of_vregs);
234 if (!catch_vreg_map.IsValid()) {
235 return;
236 }
237
David Brazdil77a48ae2015-09-15 12:34:04 +0000238 // Find stack map of the throwing instruction.
239 StackMap throw_stack_map =
240 code_info.GetStackMapForNativePcOffset(stack_visitor->GetNativePcOffset(), encoding);
241 DCHECK(throw_stack_map.IsValid());
242 DexRegisterMap throw_vreg_map =
243 code_info.GetDexRegisterMapOf(throw_stack_map, encoding, number_of_vregs);
Nicolas Geoffray012fc4e2016-01-08 15:58:19 +0000244 DCHECK(throw_vreg_map.IsValid());
David Brazdil77a48ae2015-09-15 12:34:04 +0000245
246 // Copy values between them.
247 for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) {
248 DexRegisterLocation::Kind catch_location =
249 catch_vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding);
250 if (catch_location == DexRegisterLocation::Kind::kNone) {
251 continue;
252 }
253 DCHECK(catch_location == DexRegisterLocation::Kind::kInStack);
254
255 // Get vreg value from its current location.
256 uint32_t vreg_value;
257 VRegKind vreg_kind = ToVRegKind(throw_vreg_map.GetLocationKind(vreg,
258 number_of_vregs,
259 code_info,
260 encoding));
261 bool get_vreg_success = stack_visitor->GetVReg(stack_visitor->GetMethod(),
262 vreg,
263 vreg_kind,
264 &vreg_value);
265 CHECK(get_vreg_success) << "VReg " << vreg << " was optimized out ("
David Sehr709b0702016-10-13 09:12:37 -0700266 << "method=" << ArtMethod::PrettyMethod(stack_visitor->GetMethod())
267 << ", dex_pc=" << stack_visitor->GetDexPc() << ", "
David Brazdil77a48ae2015-09-15 12:34:04 +0000268 << "native_pc_offset=" << stack_visitor->GetNativePcOffset() << ")";
269
270 // Copy value to the catch phi's stack slot.
271 int32_t slot_offset = catch_vreg_map.GetStackOffsetInBytes(vreg,
272 number_of_vregs,
273 code_info,
274 encoding);
275 ArtMethod** frame_top = stack_visitor->GetCurrentQuickFrame();
276 uint8_t* slot_address = reinterpret_cast<uint8_t*>(frame_top) + slot_offset;
277 uint32_t* slot_ptr = reinterpret_cast<uint32_t*>(slot_address);
278 *slot_ptr = vreg_value;
279 }
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200280}
281
Ian Rogers5cf98192014-05-29 21:31:50 -0700282// Prepares deoptimization.
283class DeoptimizeStackVisitor FINAL : public StackVisitor {
284 public:
Andreas Gampe639bdd12015-06-03 11:22:45 -0700285 DeoptimizeStackVisitor(Thread* self,
286 Context* context,
287 QuickExceptionHandler* exception_handler,
288 bool single_frame)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700289 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100290 : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100291 exception_handler_(exception_handler),
Mingyao Yang1f2d3ba2015-05-18 12:12:50 -0700292 prev_shadow_frame_(nullptr),
Andreas Gampe639bdd12015-06-03 11:22:45 -0700293 stacked_shadow_frame_pushed_(false),
294 single_frame_deopt_(single_frame),
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100295 single_frame_done_(false),
Nicolas Geoffrayb52de242016-02-19 12:43:12 +0000296 single_frame_deopt_method_(nullptr),
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700297 single_frame_deopt_quick_method_header_(nullptr),
298 callee_method_(nullptr) {
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100299 }
300
301 ArtMethod* GetSingleFrameDeoptMethod() const {
302 return single_frame_deopt_method_;
Ian Rogers5cf98192014-05-29 21:31:50 -0700303 }
304
Nicolas Geoffrayb52de242016-02-19 12:43:12 +0000305 const OatQuickMethodHeader* GetSingleFrameDeoptQuickMethodHeader() const {
306 return single_frame_deopt_quick_method_header_;
307 }
308
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700309 void FinishStackWalk() REQUIRES_SHARED(Locks::mutator_lock_) {
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700310 // This is the upcall, or the next full frame in single-frame deopt, or the
311 // code isn't deoptimizeable. We remember the frame and last pc so that we
312 // may long jump to them.
313 exception_handler_->SetHandlerQuickFramePc(GetCurrentQuickFramePc());
314 exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame());
315 exception_handler_->SetHandlerMethodHeader(GetCurrentOatQuickMethodHeader());
316 if (!stacked_shadow_frame_pushed_) {
317 // In case there is no deoptimized shadow frame for this upcall, we still
318 // need to push a nullptr to the stack since there is always a matching pop after
319 // the long jump.
320 GetThread()->PushStackedShadowFrame(nullptr,
321 StackedShadowFrameType::kDeoptimizationShadowFrame);
322 stacked_shadow_frame_pushed_ = true;
323 }
324 if (GetMethod() == nullptr) {
325 exception_handler_->SetFullFragmentDone(true);
326 } else {
David Sehr709b0702016-10-13 09:12:37 -0700327 CHECK(callee_method_ != nullptr) << GetMethod()->PrettyMethod(false);
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700328 exception_handler_->SetHandlerQuickArg0(reinterpret_cast<uintptr_t>(callee_method_));
329 }
330 }
331
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700332 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700333 exception_handler_->SetHandlerFrameDepth(GetFrameDepth());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700334 ArtMethod* method = GetMethod();
Andreas Gampe639bdd12015-06-03 11:22:45 -0700335 if (method == nullptr || single_frame_done_) {
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700336 FinishStackWalk();
Ian Rogers5cf98192014-05-29 21:31:50 -0700337 return false; // End stack walk.
338 } else if (method->IsRuntimeMethod()) {
339 // Ignore callee save method.
340 DCHECK(method->IsCalleeSaveMethod());
341 return true;
Sebastien Hertz520633b2015-09-08 17:03:36 +0200342 } else if (method->IsNative()) {
343 // If we return from JNI with a pending exception and want to deoptimize, we need to skip
344 // the native method.
345 // The top method is a runtime method, the native method comes next.
346 CHECK_EQ(GetFrameDepth(), 1U);
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700347 callee_method_ = method;
Sebastien Hertz520633b2015-09-08 17:03:36 +0200348 return true;
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700349 } else if (!single_frame_deopt_ &&
Nicolas Geoffray433b79a2017-01-30 20:54:45 +0000350 !Runtime::Current()->IsAsyncDeoptimizeable(GetCurrentQuickFramePc())) {
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700351 // We hit some code that's not deoptimizeable. However, Single-frame deoptimization triggered
352 // from compiled code is always allowed since HDeoptimize always saves the full environment.
Nicolas Geoffray433b79a2017-01-30 20:54:45 +0000353 LOG(WARNING) << "Got request to deoptimize un-deoptimizable method "
354 << method->PrettyMethod();
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700355 FinishStackWalk();
356 return false; // End stack walk.
Ian Rogers5cf98192014-05-29 21:31:50 -0700357 } else {
Nicolas Geoffray33856502015-10-20 15:52:58 +0100358 // Check if a shadow frame already exists for debugger's set-local-value purpose.
359 const size_t frame_id = GetFrameId();
360 ShadowFrame* new_frame = GetThread()->FindDebuggerShadowFrame(frame_id);
361 const bool* updated_vregs;
362 const size_t num_regs = method->GetCodeItem()->registers_size_;
363 if (new_frame == nullptr) {
364 new_frame = ShadowFrame::CreateDeoptimizedFrame(num_regs, nullptr, method, GetDexPc());
365 updated_vregs = nullptr;
366 } else {
367 updated_vregs = GetThread()->GetUpdatedVRegFlags(frame_id);
368 DCHECK(updated_vregs != nullptr);
369 }
Andreas Gampebf9611f2016-03-25 16:58:00 -0700370 HandleOptimizingDeoptimization(method, new_frame, updated_vregs);
Nicolas Geoffray33856502015-10-20 15:52:58 +0100371 if (updated_vregs != nullptr) {
372 // Calling Thread::RemoveDebuggerShadowFrameMapping will also delete the updated_vregs
373 // array so this must come after we processed the frame.
374 GetThread()->RemoveDebuggerShadowFrameMapping(frame_id);
375 DCHECK(GetThread()->FindDebuggerShadowFrame(frame_id) == nullptr);
376 }
377 if (prev_shadow_frame_ != nullptr) {
378 prev_shadow_frame_->SetLink(new_frame);
379 } else {
380 // Will be popped after the long jump after DeoptimizeStack(),
381 // right before interpreter::EnterInterpreterFromDeoptimize().
382 stacked_shadow_frame_pushed_ = true;
383 GetThread()->PushStackedShadowFrame(
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700384 new_frame, StackedShadowFrameType::kDeoptimizationShadowFrame);
Nicolas Geoffray33856502015-10-20 15:52:58 +0100385 }
386 prev_shadow_frame_ = new_frame;
387
Andreas Gampe639bdd12015-06-03 11:22:45 -0700388 if (single_frame_deopt_ && !IsInInlinedFrame()) {
389 // Single-frame deopt ends at the first non-inlined frame and needs to store that method.
Andreas Gampe639bdd12015-06-03 11:22:45 -0700390 single_frame_done_ = true;
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100391 single_frame_deopt_method_ = method;
Nicolas Geoffrayb52de242016-02-19 12:43:12 +0000392 single_frame_deopt_quick_method_header_ = GetCurrentOatQuickMethodHeader();
Andreas Gampe639bdd12015-06-03 11:22:45 -0700393 }
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700394 callee_method_ = method;
Andreas Gampe639bdd12015-06-03 11:22:45 -0700395 return true;
Ian Rogers5cf98192014-05-29 21:31:50 -0700396 }
397 }
398
399 private:
Nicolas Geoffray33856502015-10-20 15:52:58 +0100400 void HandleOptimizingDeoptimization(ArtMethod* m,
401 ShadowFrame* new_frame,
402 const bool* updated_vregs)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700403 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray33856502015-10-20 15:52:58 +0100404 const OatQuickMethodHeader* method_header = GetCurrentOatQuickMethodHeader();
405 CodeInfo code_info = method_header->GetOptimizedCodeInfo();
406 uintptr_t native_pc_offset = method_header->NativeQuickPcOffset(GetCurrentQuickFramePc());
David Srbecky09ed0982016-02-12 21:58:43 +0000407 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffray33856502015-10-20 15:52:58 +0100408 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
409 const size_t number_of_vregs = m->GetCodeItem()->registers_size_;
Mathieu Chartier1a20b682017-01-31 14:25:16 -0800410 uint32_t register_mask = code_info.GetRegisterMaskOf(encoding, stack_map);
David Srbecky45aa5982016-03-18 02:15:09 +0000411 BitMemoryRegion stack_mask = code_info.GetStackMaskOf(encoding, stack_map);
David Brazdilefc3f022015-10-28 12:19:06 -0500412 DexRegisterMap vreg_map = IsInInlinedFrame()
413 ? code_info.GetDexRegisterMapAtDepth(GetCurrentInliningDepth() - 1,
414 code_info.GetInlineInfoOf(stack_map, encoding),
415 encoding,
416 number_of_vregs)
417 : code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_vregs);
Nicolas Geoffray33856502015-10-20 15:52:58 +0100418
Nicolas Geoffray012fc4e2016-01-08 15:58:19 +0000419 if (!vreg_map.IsValid()) {
420 return;
421 }
422
Nicolas Geoffray33856502015-10-20 15:52:58 +0100423 for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) {
424 if (updated_vregs != nullptr && updated_vregs[vreg]) {
425 // Keep the value set by debugger.
426 continue;
427 }
428
429 DexRegisterLocation::Kind location =
430 vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding);
431 static constexpr uint32_t kDeadValue = 0xEBADDE09;
432 uint32_t value = kDeadValue;
433 bool is_reference = false;
434
435 switch (location) {
436 case DexRegisterLocation::Kind::kInStack: {
437 const int32_t offset = vreg_map.GetStackOffsetInBytes(vreg,
438 number_of_vregs,
439 code_info,
440 encoding);
441 const uint8_t* addr = reinterpret_cast<const uint8_t*>(GetCurrentQuickFrame()) + offset;
442 value = *reinterpret_cast<const uint32_t*>(addr);
443 uint32_t bit = (offset >> 2);
Mathieu Chartier575d3e62017-02-06 11:00:40 -0800444 if (bit < encoding.stack_mask.encoding.BitSize() && stack_mask.LoadBit(bit)) {
Nicolas Geoffray33856502015-10-20 15:52:58 +0100445 is_reference = true;
446 }
447 break;
448 }
449 case DexRegisterLocation::Kind::kInRegister:
450 case DexRegisterLocation::Kind::kInRegisterHigh:
451 case DexRegisterLocation::Kind::kInFpuRegister:
452 case DexRegisterLocation::Kind::kInFpuRegisterHigh: {
453 uint32_t reg = vreg_map.GetMachineRegister(vreg, number_of_vregs, code_info, encoding);
454 bool result = GetRegisterIfAccessible(reg, ToVRegKind(location), &value);
455 CHECK(result);
456 if (location == DexRegisterLocation::Kind::kInRegister) {
457 if (((1u << reg) & register_mask) != 0) {
458 is_reference = true;
459 }
460 }
461 break;
462 }
463 case DexRegisterLocation::Kind::kConstant: {
464 value = vreg_map.GetConstant(vreg, number_of_vregs, code_info, encoding);
465 if (value == 0) {
466 // Make it a reference for extra safety.
467 is_reference = true;
468 }
469 break;
470 }
471 case DexRegisterLocation::Kind::kNone: {
472 break;
473 }
474 default: {
475 LOG(FATAL)
David Srbecky7dc11782016-02-25 13:23:56 +0000476 << "Unexpected location kind "
477 << vreg_map.GetLocationInternalKind(vreg,
478 number_of_vregs,
479 code_info,
480 encoding);
Nicolas Geoffray33856502015-10-20 15:52:58 +0100481 UNREACHABLE();
482 }
483 }
484 if (is_reference) {
485 new_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(value));
486 } else {
487 new_frame->SetVReg(vreg, value);
488 }
489 }
490 }
491
Sebastien Hertzc901dd72014-07-16 11:56:07 +0200492 static VRegKind GetVRegKind(uint16_t reg, const std::vector<int32_t>& kinds) {
493 return static_cast<VRegKind>(kinds.at(reg * 2));
494 }
495
Ian Rogers5cf98192014-05-29 21:31:50 -0700496 QuickExceptionHandler* const exception_handler_;
497 ShadowFrame* prev_shadow_frame_;
Mingyao Yang1f2d3ba2015-05-18 12:12:50 -0700498 bool stacked_shadow_frame_pushed_;
Andreas Gampe639bdd12015-06-03 11:22:45 -0700499 const bool single_frame_deopt_;
500 bool single_frame_done_;
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100501 ArtMethod* single_frame_deopt_method_;
Nicolas Geoffrayb52de242016-02-19 12:43:12 +0000502 const OatQuickMethodHeader* single_frame_deopt_quick_method_header_;
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700503 ArtMethod* callee_method_;
Ian Rogers5cf98192014-05-29 21:31:50 -0700504
505 DISALLOW_COPY_AND_ASSIGN(DeoptimizeStackVisitor);
506};
507
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700508void QuickExceptionHandler::PrepareForLongJumpToInvokeStubOrInterpreterBridge() {
509 if (full_fragment_done_) {
510 // Restore deoptimization exception. When returning from the invoke stub,
511 // ArtMethod::Invoke() will see the special exception to know deoptimization
512 // is needed.
513 self_->SetException(Thread::GetDeoptimizationException());
514 } else {
515 // PC needs to be of the quick-to-interpreter bridge.
516 int32_t offset;
Andreas Gampe542451c2016-07-26 09:02:02 -0700517 offset = GetThreadOffset<kRuntimePointerSize>(kQuickQuickToInterpreterBridge).Int32Value();
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700518 handler_quick_frame_pc_ = *reinterpret_cast<uintptr_t*>(
519 reinterpret_cast<uint8_t*>(self_) + offset);
520 }
521}
522
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200523void QuickExceptionHandler::DeoptimizeStack() {
524 DCHECK(is_deoptimization_);
Ian Rogers5cf98192014-05-29 21:31:50 -0700525 if (kDebugExceptionDelivery) {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700526 self_->DumpStack(LOG_STREAM(INFO) << "Deoptimizing: ");
Ian Rogers5cf98192014-05-29 21:31:50 -0700527 }
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200528
Andreas Gampe639bdd12015-06-03 11:22:45 -0700529 DeoptimizeStackVisitor visitor(self_, context_, this, false);
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200530 visitor.WalkStack(true);
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700531 PrepareForLongJumpToInvokeStubOrInterpreterBridge();
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100532}
533
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100534void QuickExceptionHandler::DeoptimizeSingleFrame(DeoptimizationKind kind) {
Andreas Gampe639bdd12015-06-03 11:22:45 -0700535 DCHECK(is_deoptimization_);
536
Andreas Gampe639bdd12015-06-03 11:22:45 -0700537 DeoptimizeStackVisitor visitor(self_, context_, this, true);
538 visitor.WalkStack(true);
539
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +0000540 // Compiled code made an explicit deoptimization.
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100541 ArtMethod* deopt_method = visitor.GetSingleFrameDeoptMethod();
542 DCHECK(deopt_method != nullptr);
Nicolas Geoffray646d6382017-08-09 10:50:00 +0100543 if (VLOG_IS_ON(deopt) || kDebugExceptionDelivery) {
544 LOG(INFO) << "Single-frame deopting: "
545 << deopt_method->PrettyMethod()
546 << " due to "
547 << GetDeoptimizationKindName(kind);
548 DumpFramesWithType(self_, /* details */ true);
549 }
Calin Juravleffc87072016-04-20 14:22:09 +0100550 if (Runtime::Current()->UseJitCompilation()) {
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +0000551 Runtime::Current()->GetJit()->GetCodeCache()->InvalidateCompiledCodeFor(
Nicolas Geoffrayb52de242016-02-19 12:43:12 +0000552 deopt_method, visitor.GetSingleFrameDeoptQuickMethodHeader());
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +0000553 } else {
554 // Transfer the code to interpreter.
555 Runtime::Current()->GetInstrumentation()->UpdateMethodsCode(
556 deopt_method, GetQuickToInterpreterBridge());
557 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100558
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700559 PrepareForLongJumpToInvokeStubOrInterpreterBridge();
Andreas Gampe639bdd12015-06-03 11:22:45 -0700560}
561
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700562void QuickExceptionHandler::DeoptimizePartialFragmentFixup(uintptr_t return_pc) {
563 // At this point, the instrumentation stack has been updated. We need to install
564 // the real return pc on stack, in case instrumentation stub is stored there,
565 // so that the interpreter bridge code can return to the right place.
566 if (return_pc != 0) {
567 uintptr_t* pc_addr = reinterpret_cast<uintptr_t*>(handler_quick_frame_);
568 CHECK(pc_addr != nullptr);
569 pc_addr--;
570 *reinterpret_cast<uintptr_t*>(pc_addr) = return_pc;
571 }
Andreas Gampe639bdd12015-06-03 11:22:45 -0700572
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700573 // Architecture-dependent work. This is to get the LR right for x86 and x86-64.
Andreas Gampe639bdd12015-06-03 11:22:45 -0700574 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
575 // On x86, the return address is on the stack, so just reuse it. Otherwise we would have to
576 // change how longjump works.
577 handler_quick_frame_ = reinterpret_cast<ArtMethod**>(
578 reinterpret_cast<uintptr_t>(handler_quick_frame_) - sizeof(void*));
579 }
580}
581
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100582// Unwinds all instrumentation stack frame prior to catch handler or upcall.
583class InstrumentationStackVisitor : public StackVisitor {
584 public:
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700585 InstrumentationStackVisitor(Thread* self, size_t frame_depth)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700586 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100587 : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700588 frame_depth_(frame_depth),
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100589 instrumentation_frames_to_pop_(0) {
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700590 CHECK_NE(frame_depth_, kInvalidFrameDepth);
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100591 }
592
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700593 bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) {
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700594 size_t current_frame_depth = GetFrameDepth();
595 if (current_frame_depth < frame_depth_) {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100596 CHECK(GetMethod() != nullptr);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700597 if (UNLIKELY(reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == GetReturnPc())) {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100598 if (!IsInInlinedFrame()) {
599 // We do not count inlined frames, because we do not instrument them. The reason we
600 // include them in the stack walking is the check against `frame_depth_`, which is
601 // given to us by a visitor that visits inlined frames.
602 ++instrumentation_frames_to_pop_;
603 }
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100604 }
605 return true;
606 } else {
607 // We reached the frame of the catch handler or the upcall.
608 return false;
609 }
610 }
611
612 size_t GetInstrumentationFramesToPop() const {
613 return instrumentation_frames_to_pop_;
614 }
615
616 private:
Hiroshi Yamauchi649278c2014-08-13 11:12:22 -0700617 const size_t frame_depth_;
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100618 size_t instrumentation_frames_to_pop_;
619
620 DISALLOW_COPY_AND_ASSIGN(InstrumentationStackVisitor);
621};
622
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700623uintptr_t QuickExceptionHandler::UpdateInstrumentationStack() {
624 uintptr_t return_pc = 0;
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100625 if (method_tracing_active_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700626 InstrumentationStackVisitor visitor(self_, handler_frame_depth_);
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100627 visitor.WalkStack(true);
628
629 size_t instrumentation_frames_to_pop = visitor.GetInstrumentationFramesToPop();
630 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
631 for (size_t i = 0; i < instrumentation_frames_to_pop; ++i) {
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700632 return_pc = instrumentation->PopMethodForUnwind(self_, is_deoptimization_);
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100633 }
634 }
Mingyao Yangf711f2c2016-05-23 12:29:39 -0700635 return return_pc;
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100636}
637
Andreas Gampe639bdd12015-06-03 11:22:45 -0700638void QuickExceptionHandler::DoLongJump(bool smash_caller_saves) {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100639 // Place context back on thread so it will be available when we continue.
640 self_->ReleaseLongJumpContext(context_);
641 context_->SetSP(reinterpret_cast<uintptr_t>(handler_quick_frame_));
642 CHECK_NE(handler_quick_frame_pc_, 0u);
643 context_->SetPC(handler_quick_frame_pc_);
Andreas Gampe639bdd12015-06-03 11:22:45 -0700644 context_->SetArg0(handler_quick_arg0_);
645 if (smash_caller_saves) {
646 context_->SmashCallerSaves();
647 }
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100648 context_->DoLongJump();
Andreas Gampe794ad762015-02-23 08:12:24 -0800649 UNREACHABLE();
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100650}
651
Andreas Gampe639bdd12015-06-03 11:22:45 -0700652// Prints out methods with their type of frame.
653class DumpFramesWithTypeStackVisitor FINAL : public StackVisitor {
654 public:
Chih-Hung Hsieh471118e2016-04-29 14:27:41 -0700655 explicit DumpFramesWithTypeStackVisitor(Thread* self, bool show_details = false)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700656 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe639bdd12015-06-03 11:22:45 -0700657 : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
658 show_details_(show_details) {}
659
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700660 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe639bdd12015-06-03 11:22:45 -0700661 ArtMethod* method = GetMethod();
662 if (show_details_) {
663 LOG(INFO) << "|> pc = " << std::hex << GetCurrentQuickFramePc();
664 LOG(INFO) << "|> addr = " << std::hex << reinterpret_cast<uintptr_t>(GetCurrentQuickFrame());
665 if (GetCurrentQuickFrame() != nullptr && method != nullptr) {
666 LOG(INFO) << "|> ret = " << std::hex << GetReturnPc();
667 }
668 }
669 if (method == nullptr) {
670 // Transition, do go on, we want to unwind over bridges, all the way.
671 if (show_details_) {
672 LOG(INFO) << "N <transition>";
673 }
674 return true;
675 } else if (method->IsRuntimeMethod()) {
676 if (show_details_) {
David Sehr709b0702016-10-13 09:12:37 -0700677 LOG(INFO) << "R " << method->PrettyMethod(true);
Andreas Gampe639bdd12015-06-03 11:22:45 -0700678 }
679 return true;
680 } else {
681 bool is_shadow = GetCurrentShadowFrame() != nullptr;
682 LOG(INFO) << (is_shadow ? "S" : "Q")
683 << ((!is_shadow && IsInInlinedFrame()) ? "i" : " ")
684 << " "
David Sehr709b0702016-10-13 09:12:37 -0700685 << method->PrettyMethod(true);
Andreas Gampe639bdd12015-06-03 11:22:45 -0700686 return true; // Go on.
687 }
688 }
689
690 private:
691 bool show_details_;
692
693 DISALLOW_COPY_AND_ASSIGN(DumpFramesWithTypeStackVisitor);
694};
695
696void QuickExceptionHandler::DumpFramesWithType(Thread* self, bool details) {
697 DumpFramesWithTypeStackVisitor visitor(self, details);
698 visitor.WalkStack(true);
699}
700
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100701} // namespace art