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 | #ifndef ART_RUNTIME_QUICK_EXCEPTION_HANDLER_H_ |
| 18 | #define ART_RUNTIME_QUICK_EXCEPTION_HANDLER_H_ |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 19 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 20 | #include "base/logging.h" |
| 21 | #include "base/mutex.h" |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 22 | #include "stack.h" // StackReference |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 23 | |
| 24 | namespace art { |
| 25 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 26 | namespace mirror { |
| 27 | class ArtMethod; |
| 28 | class Throwable; |
| 29 | } // namespace mirror |
| 30 | class Context; |
| 31 | class Thread; |
| 32 | class ThrowLocation; |
| 33 | class ShadowFrame; |
| 34 | |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame^] | 35 | // Manages exception delivery for Quick backend. |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 36 | class QuickExceptionHandler { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 37 | public: |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 38 | QuickExceptionHandler(Thread* self, bool is_deoptimization) |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 39 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 40 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 41 | ~QuickExceptionHandler() { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 42 | LOG(FATAL) << "UNREACHABLE"; // Expected to take long jump. |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 43 | UNREACHABLE(); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 44 | } |
| 45 | |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 46 | void FindCatch(const ThrowLocation& throw_location, mirror::Throwable* exception, |
| 47 | bool is_exception_reported) |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 48 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 49 | void DeoptimizeStack() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 50 | void UpdateInstrumentationStack() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 51 | void DoLongJump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 52 | |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 53 | void SetHandlerQuickFrame(StackReference<mirror::ArtMethod>* handler_quick_frame) { |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 54 | handler_quick_frame_ = handler_quick_frame; |
| 55 | } |
| 56 | |
| 57 | void SetHandlerQuickFramePc(uintptr_t handler_quick_frame_pc) { |
| 58 | handler_quick_frame_pc_ = handler_quick_frame_pc; |
| 59 | } |
| 60 | |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 61 | mirror::ArtMethod* GetHandlerMethod() const { |
| 62 | return handler_method_; |
| 63 | } |
| 64 | |
| 65 | void SetHandlerMethod(mirror::ArtMethod* handler_quick_method) { |
| 66 | handler_method_ = handler_quick_method; |
| 67 | } |
| 68 | |
| 69 | uint32_t GetHandlerDexPc() const { |
| 70 | return handler_dex_pc_; |
| 71 | } |
| 72 | |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 73 | void SetHandlerDexPc(uint32_t dex_pc) { |
| 74 | handler_dex_pc_ = dex_pc; |
| 75 | } |
| 76 | |
| 77 | void SetClearException(bool clear_exception) { |
| 78 | clear_exception_ = clear_exception; |
| 79 | } |
| 80 | |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 81 | void SetHandlerFrameDepth(size_t frame_depth) { |
| 82 | handler_frame_depth_ = frame_depth; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | private: |
| 86 | Thread* const self_; |
| 87 | Context* const context_; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 88 | const bool is_deoptimization_; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 89 | // Is method tracing active? |
| 90 | const bool method_tracing_active_; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 91 | // Quick frame with found handler or last frame if no handler found. |
Andreas Gampe | cf4035a | 2014-05-28 22:43:01 -0700 | [diff] [blame] | 92 | StackReference<mirror::ArtMethod>* handler_quick_frame_; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 93 | // PC to branch to for the handler. |
| 94 | uintptr_t handler_quick_frame_pc_; |
Ian Rogers | 5cf9819 | 2014-05-29 21:31:50 -0700 | [diff] [blame] | 95 | // The handler method to report to the debugger. |
| 96 | mirror::ArtMethod* handler_method_; |
| 97 | // The handler's dex PC, zero implies an uncaught exception. |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 98 | uint32_t handler_dex_pc_; |
| 99 | // Should the exception be cleared as the catch block has no move-exception? |
| 100 | bool clear_exception_; |
Hiroshi Yamauchi | 649278c | 2014-08-13 11:12:22 -0700 | [diff] [blame] | 101 | // Frame depth of the catch handler or the upcall. |
| 102 | size_t handler_frame_depth_; |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 103 | |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 104 | DISALLOW_COPY_AND_ASSIGN(QuickExceptionHandler); |
Sebastien Hertz | d45a1f5 | 2014-01-09 14:56:54 +0100 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | } // namespace art |
Sebastien Hertz | fd3077e | 2014-04-23 10:32:43 +0200 | [diff] [blame] | 108 | #endif // ART_RUNTIME_QUICK_EXCEPTION_HANDLER_H_ |