blob: 6581f9b627965007cbd7493af1b2da3b11730a17 [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"
Ian Rogers5cf98192014-05-29 21:31:50 -070020#include "dex_instruction.h"
Sebastien Hertzfd3077e2014-04-23 10:32:43 +020021#include "entrypoints/entrypoint_utils.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070022#include "handle_scope-inl.h"
Ian Rogers5cf98192014-05-29 21:31:50 -070023#include "mirror/art_method-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070024#include "mirror/class-inl.h"
25#include "mirror/class_loader.h"
26#include "mirror/throwable.h"
Ian Rogers5cf98192014-05-29 21:31:50 -070027#include "verifier/method_verifier.h"
Sebastien Hertzd45a1f52014-01-09 14:56:54 +010028
29namespace art {
30
Ian Rogers5cf98192014-05-29 21:31:50 -070031static constexpr bool kDebugExceptionDelivery = false;
32static constexpr size_t kInvalidFrameId = 0xffffffff;
33
Sebastien Hertzfd3077e2014-04-23 10:32:43 +020034QuickExceptionHandler::QuickExceptionHandler(Thread* self, bool is_deoptimization)
35 : self_(self), context_(self->GetLongJumpContext()), is_deoptimization_(is_deoptimization),
Sebastien Hertzd45a1f52014-01-09 14:56:54 +010036 method_tracing_active_(is_deoptimization ||
37 Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled()),
Ian Rogers5cf98192014-05-29 21:31:50 -070038 handler_quick_frame_(nullptr), handler_quick_frame_pc_(0), handler_method_(nullptr),
39 handler_dex_pc_(0), clear_exception_(false), handler_frame_id_(kInvalidFrameId) {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +010040}
41
Ian Rogers5cf98192014-05-29 21:31:50 -070042// Finds catch handler or prepares for deoptimization.
43class CatchBlockStackVisitor FINAL : public StackVisitor {
44 public:
45 CatchBlockStackVisitor(Thread* self, Context* context, Handle<mirror::Throwable>* exception,
46 QuickExceptionHandler* exception_handler)
47 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
48 : StackVisitor(self, context), self_(self), exception_(exception),
49 exception_handler_(exception_handler) {
50 }
51
52 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
53 mirror::ArtMethod* method = GetMethod();
54 exception_handler_->SetHandlerFrameId(GetFrameId());
55 if (method == nullptr) {
56 // This is the upcall, we remember the frame and last pc so that we may long jump to them.
57 exception_handler_->SetHandlerQuickFramePc(GetCurrentQuickFramePc());
58 exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame());
59 uint32_t next_dex_pc;
60 mirror::ArtMethod* next_art_method;
61 bool has_next = GetNextMethodAndDexPc(&next_art_method, &next_dex_pc);
62 // Report the method that did the down call as the handler.
63 exception_handler_->SetHandlerDexPc(next_dex_pc);
64 exception_handler_->SetHandlerMethod(next_art_method);
65 if (!has_next) {
66 // No next method? Check exception handler is set up for the unhandled exception handler
67 // case.
68 DCHECK_EQ(0U, exception_handler_->GetHandlerDexPc());
69 DCHECK(nullptr == exception_handler_->GetHandlerMethod());
70 }
71 return false; // End stack walk.
72 }
73 if (method->IsRuntimeMethod()) {
74 // Ignore callee save method.
75 DCHECK(method->IsCalleeSaveMethod());
76 return true;
77 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070078 StackHandleScope<1> hs(self_);
79 return HandleTryItems(hs.NewHandle(method));
Ian Rogers5cf98192014-05-29 21:31:50 -070080 }
81
82 private:
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070083 bool HandleTryItems(Handle<mirror::ArtMethod> method)
84 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers5cf98192014-05-29 21:31:50 -070085 uint32_t dex_pc = DexFile::kDexNoIndex;
86 if (!method->IsNative()) {
87 dex_pc = GetDexPc();
88 }
89 if (dex_pc != DexFile::kDexNoIndex) {
90 bool clear_exception = false;
91 StackHandleScope<1> hs(Thread::Current());
92 Handle<mirror::Class> to_find(hs.NewHandle((*exception_)->GetClass()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070093 uint32_t found_dex_pc = mirror::ArtMethod::FindCatchBlock(method, to_find, dex_pc,
94 &clear_exception);
Ian Rogers5cf98192014-05-29 21:31:50 -070095 exception_handler_->SetClearException(clear_exception);
96 if (found_dex_pc != DexFile::kDexNoIndex) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -070097 exception_handler_->SetHandlerMethod(method.Get());
Ian Rogers5cf98192014-05-29 21:31:50 -070098 exception_handler_->SetHandlerDexPc(found_dex_pc);
99 exception_handler_->SetHandlerQuickFramePc(method->ToNativePc(found_dex_pc));
100 exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame());
101 return false; // End stack walk.
102 }
103 }
104 return true; // Continue stack walk.
105 }
106
107 Thread* const self_;
108 // The exception we're looking for the catch block of.
109 Handle<mirror::Throwable>* exception_;
110 // The quick exception handler we're visiting for.
111 QuickExceptionHandler* const exception_handler_;
112
113 DISALLOW_COPY_AND_ASSIGN(CatchBlockStackVisitor);
114};
115
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200116void QuickExceptionHandler::FindCatch(const ThrowLocation& throw_location,
Sebastien Hertz9f102032014-05-23 08:59:42 +0200117 mirror::Throwable* exception,
118 bool is_exception_reported) {
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200119 DCHECK(!is_deoptimization_);
Ian Rogers5cf98192014-05-29 21:31:50 -0700120 if (kDebugExceptionDelivery) {
121 mirror::String* msg = exception->GetDetailMessage();
122 std::string str_msg(msg != nullptr ? msg->ToModifiedUtf8() : "");
123 self_->DumpStack(LOG(INFO) << "Delivering exception: " << PrettyTypeOf(exception)
124 << ": " << str_msg << "\n");
125 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700126 StackHandleScope<1> hs(self_);
127 Handle<mirror::Throwable> exception_ref(hs.NewHandle(exception));
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200128
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100129 // Walk the stack to find catch handler or prepare for deoptimization.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700130 CatchBlockStackVisitor visitor(self_, context_, &exception_ref, this);
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100131 visitor.WalkStack(true);
132
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200133 if (kDebugExceptionDelivery) {
Ian Rogers5cf98192014-05-29 21:31:50 -0700134 if (handler_quick_frame_->AsMirrorPtr() == nullptr) {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100135 LOG(INFO) << "Handler is upcall";
Ian Rogers5cf98192014-05-29 21:31:50 -0700136 }
137 if (handler_method_ != nullptr) {
138 const DexFile& dex_file = *handler_method_->GetDeclaringClass()->GetDexCache()->GetDexFile();
139 int line_number = dex_file.GetLineNumFromPC(handler_method_, handler_dex_pc_);
140 LOG(INFO) << "Handler: " << PrettyMethod(handler_method_) << " (line: " << line_number << ")";
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100141 }
142 }
143 if (clear_exception_) {
144 // Exception was cleared as part of delivery.
145 DCHECK(!self_->IsExceptionPending());
146 } else {
147 // Put exception back in root set with clear throw location.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700148 self_->SetException(ThrowLocation(), exception_ref.Get());
Sebastien Hertz9f102032014-05-23 08:59:42 +0200149 self_->SetExceptionReportedToInstrumentation(is_exception_reported);
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100150 }
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200151 // The debugger may suspend this thread and walk its stack. Let's do this before popping
152 // instrumentation frames.
Sebastien Hertz9f102032014-05-23 08:59:42 +0200153 if (!is_exception_reported) {
154 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
155 instrumentation->ExceptionCaughtEvent(self_, throw_location, handler_method_, handler_dex_pc_,
156 exception_ref.Get());
157 // We're not catching this exception but let's remind we already reported the exception above
158 // to avoid reporting it twice.
159 self_->SetExceptionReportedToInstrumentation(true);
160 }
161 bool caught_exception = (handler_method_ != nullptr && handler_dex_pc_ != DexFile::kDexNoIndex);
162 if (caught_exception) {
163 // We're catching this exception so we finish reporting it. We do it here to avoid doing it
164 // in the compiled code.
165 self_->SetExceptionReportedToInstrumentation(false);
166 }
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200167}
168
Ian Rogers5cf98192014-05-29 21:31:50 -0700169// Prepares deoptimization.
170class DeoptimizeStackVisitor FINAL : public StackVisitor {
171 public:
172 DeoptimizeStackVisitor(Thread* self, Context* context, QuickExceptionHandler* exception_handler)
173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
174 : StackVisitor(self, context), self_(self), exception_handler_(exception_handler),
175 prev_shadow_frame_(nullptr) {
176 CHECK(!self_->HasDeoptimizationShadowFrame());
177 }
178
179 bool VisitFrame() OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
180 exception_handler_->SetHandlerFrameId(GetFrameId());
181 mirror::ArtMethod* method = GetMethod();
182 if (method == nullptr) {
183 // This is the upcall, we remember the frame and last pc so that we may long jump to them.
184 exception_handler_->SetHandlerQuickFramePc(GetCurrentQuickFramePc());
185 exception_handler_->SetHandlerQuickFrame(GetCurrentQuickFrame());
186 return false; // End stack walk.
187 } else if (method->IsRuntimeMethod()) {
188 // Ignore callee save method.
189 DCHECK(method->IsCalleeSaveMethod());
190 return true;
191 } else {
192 return HandleDeoptimization(method);
193 }
194 }
195
196 private:
197 bool HandleDeoptimization(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700198 const DexFile::CodeItem* code_item = m->GetCodeItem();
Ian Rogers5cf98192014-05-29 21:31:50 -0700199 CHECK(code_item != nullptr);
200 uint16_t num_regs = code_item->registers_size_;
201 uint32_t dex_pc = GetDexPc();
202 const Instruction* inst = Instruction::At(code_item->insns_ + dex_pc);
203 uint32_t new_dex_pc = dex_pc + inst->SizeInCodeUnits();
204 ShadowFrame* new_frame = ShadowFrame::Create(num_regs, nullptr, m, new_dex_pc);
205 StackHandleScope<2> hs(self_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700206 mirror::Class* declaring_class = m->GetDeclaringClass();
207 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
208 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
209 verifier::MethodVerifier verifier(h_dex_cache->GetDexFile(), &h_dex_cache, &h_class_loader,
210 &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m,
Ian Rogers5cf98192014-05-29 21:31:50 -0700211 m->GetAccessFlags(), false, true, true);
212 verifier.Verify();
213 std::vector<int32_t> kinds = verifier.DescribeVRegs(dex_pc);
214 for (uint16_t reg = 0; reg < num_regs; ++reg) {
215 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
216 switch (kind) {
217 case kUndefined:
218 new_frame->SetVReg(reg, 0xEBADDE09);
219 break;
220 case kConstant:
221 new_frame->SetVReg(reg, kinds.at((reg * 2) + 1));
222 break;
223 case kReferenceVReg:
224 new_frame->SetVRegReference(reg,
225 reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kind)));
226 break;
227 default:
228 new_frame->SetVReg(reg, GetVReg(m, reg, kind));
229 break;
230 }
231 }
232 if (prev_shadow_frame_ != nullptr) {
233 prev_shadow_frame_->SetLink(new_frame);
234 } else {
235 self_->SetDeoptimizationShadowFrame(new_frame);
236 }
237 prev_shadow_frame_ = new_frame;
238 return true;
239 }
240
241 Thread* const self_;
242 QuickExceptionHandler* const exception_handler_;
243 ShadowFrame* prev_shadow_frame_;
244
245 DISALLOW_COPY_AND_ASSIGN(DeoptimizeStackVisitor);
246};
247
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200248void QuickExceptionHandler::DeoptimizeStack() {
249 DCHECK(is_deoptimization_);
Ian Rogers5cf98192014-05-29 21:31:50 -0700250 if (kDebugExceptionDelivery) {
251 self_->DumpStack(LOG(INFO) << "Deoptimizing: ");
252 }
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200253
254 DeoptimizeStackVisitor visitor(self_, context_, this);
255 visitor.WalkStack(true);
256
257 // Restore deoptimization exception
258 self_->SetException(ThrowLocation(), Thread::GetDeoptimizationException());
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100259}
260
261// Unwinds all instrumentation stack frame prior to catch handler or upcall.
262class InstrumentationStackVisitor : public StackVisitor {
263 public:
264 InstrumentationStackVisitor(Thread* self, bool is_deoptimization, size_t frame_id)
265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
266 : StackVisitor(self, nullptr),
267 self_(self), frame_id_(frame_id),
268 instrumentation_frames_to_pop_(0) {
269 CHECK_NE(frame_id_, kInvalidFrameId);
270 }
271
272 bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
273 size_t current_frame_id = GetFrameId();
274 if (current_frame_id > frame_id_) {
275 CHECK(GetMethod() != nullptr);
276 if (UNLIKELY(GetQuickInstrumentationExitPc() == GetReturnPc())) {
277 ++instrumentation_frames_to_pop_;
278 }
279 return true;
280 } else {
281 // We reached the frame of the catch handler or the upcall.
282 return false;
283 }
284 }
285
286 size_t GetInstrumentationFramesToPop() const {
287 return instrumentation_frames_to_pop_;
288 }
289
290 private:
291 Thread* const self_;
292 const size_t frame_id_;
293 size_t instrumentation_frames_to_pop_;
294
295 DISALLOW_COPY_AND_ASSIGN(InstrumentationStackVisitor);
296};
297
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200298void QuickExceptionHandler::UpdateInstrumentationStack() {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100299 if (method_tracing_active_) {
300 InstrumentationStackVisitor visitor(self_, is_deoptimization_, handler_frame_id_);
301 visitor.WalkStack(true);
302
303 size_t instrumentation_frames_to_pop = visitor.GetInstrumentationFramesToPop();
304 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
305 for (size_t i = 0; i < instrumentation_frames_to_pop; ++i) {
306 instrumentation->PopMethodForUnwind(self_, is_deoptimization_);
307 }
308 }
309}
310
Sebastien Hertzfd3077e2014-04-23 10:32:43 +0200311void QuickExceptionHandler::DoLongJump() {
Sebastien Hertzd45a1f52014-01-09 14:56:54 +0100312 // Place context back on thread so it will be available when we continue.
313 self_->ReleaseLongJumpContext(context_);
314 context_->SetSP(reinterpret_cast<uintptr_t>(handler_quick_frame_));
315 CHECK_NE(handler_quick_frame_pc_, 0u);
316 context_->SetPC(handler_quick_frame_pc_);
317 context_->SmashCallerSaves();
318 context_->DoLongJump();
319}
320
321} // namespace art