Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_ |
| 18 | #define ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_ |
| 19 | |
| 20 | #include "interpreter.h" |
buzbee | 78f1bdc | 2017-03-01 10:55:57 -0800 | [diff] [blame] | 21 | #include "interpreter_intrinsics.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 22 | |
| 23 | #include <math.h> |
| 24 | |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 25 | #include <iostream> |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 26 | #include <sstream> |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 27 | #include <atomic> |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 28 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 29 | #include "android-base/stringprintf.h" |
| 30 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 31 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 32 | #include "art_method-inl.h" |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 33 | #include "base/enums.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 34 | #include "base/logging.h" |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 35 | #include "base/macros.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 36 | #include "class_linker-inl.h" |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 37 | #include "common_dex_operations.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 38 | #include "common_throws.h" |
| 39 | #include "dex_file-inl.h" |
| 40 | #include "dex_instruction-inl.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 41 | #include "entrypoints/entrypoint_utils-inl.h" |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 42 | #include "handle_scope-inl.h" |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 43 | #include "jit/jit.h" |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 44 | #include "mirror/call_site.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 45 | #include "mirror/class-inl.h" |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 46 | #include "mirror/dex_cache.h" |
| 47 | #include "mirror/method.h" |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 48 | #include "mirror/method_handles_lookup.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 49 | #include "mirror/object-inl.h" |
| 50 | #include "mirror/object_array-inl.h" |
Douglas Leung | 4965c02 | 2014-06-11 11:41:11 -0700 | [diff] [blame] | 51 | #include "mirror/string-inl.h" |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 52 | #include "obj_ptr.h" |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 53 | #include "stack.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 54 | #include "thread.h" |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 55 | #include "unstarted_runtime.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 56 | #include "well_known_classes.h" |
| 57 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 58 | namespace art { |
| 59 | namespace interpreter { |
| 60 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 61 | void ThrowNullPointerExceptionFromInterpreter() |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 62 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | da843e1 | 2014-05-28 19:28:31 +0200 | [diff] [blame] | 63 | |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 64 | template <bool kMonitorCounting> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 65 | static inline void DoMonitorEnter(Thread* self, ShadowFrame* frame, ObjPtr<mirror::Object> ref) |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 66 | NO_THREAD_SAFETY_ANALYSIS |
| 67 | REQUIRES(!Roles::uninterruptible_) { |
| 68 | StackHandleScope<1> hs(self); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 69 | Handle<mirror::Object> h_ref(hs.NewHandle(ref)); |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 70 | h_ref->MonitorEnter(self); |
Andreas Gampe | 56fdd0e | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 71 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 72 | frame->GetLockCountData().AddMonitor(self, h_ref.Get()); |
| 73 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 74 | } |
| 75 | |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 76 | template <bool kMonitorCounting> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 77 | static inline void DoMonitorExit(Thread* self, ShadowFrame* frame, ObjPtr<mirror::Object> ref) |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 78 | NO_THREAD_SAFETY_ANALYSIS |
| 79 | REQUIRES(!Roles::uninterruptible_) { |
| 80 | StackHandleScope<1> hs(self); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 81 | Handle<mirror::Object> h_ref(hs.NewHandle(ref)); |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 82 | h_ref->MonitorExit(self); |
Andreas Gampe | 56fdd0e | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 83 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 84 | frame->GetLockCountData().RemoveMonitorOrThrow(self, h_ref.Get()); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | template <bool kMonitorCounting> |
| 89 | static inline bool DoMonitorCheckOnExit(Thread* self, ShadowFrame* frame) |
| 90 | NO_THREAD_SAFETY_ANALYSIS |
| 91 | REQUIRES(!Roles::uninterruptible_) { |
| 92 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 93 | return frame->GetLockCountData().CheckAllMonitorsReleasedOrThrow(self); |
| 94 | } |
| 95 | return true; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 96 | } |
| 97 | |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 98 | void AbortTransactionF(Thread* self, const char* fmt, ...) |
| 99 | __attribute__((__format__(__printf__, 2, 3))) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 100 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 101 | |
| 102 | void AbortTransactionV(Thread* self, const char* fmt, va_list args) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 103 | REQUIRES_SHARED(Locks::mutator_lock_); |
Mathieu Chartier | b2c7ead | 2014-04-29 11:13:16 -0700 | [diff] [blame] | 104 | |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 105 | void RecordArrayElementsInTransaction(ObjPtr<mirror::Array> array, int32_t count) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 106 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 107 | |
buzbee | 78f1bdc | 2017-03-01 10:55:57 -0800 | [diff] [blame] | 108 | // Invokes the given method. This is part of the invocation support and is used by DoInvoke, |
| 109 | // DoFastInvoke and DoInvokeVirtualQuick functions. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 110 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 111 | template<bool is_range, bool do_assignability_check> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 112 | bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 113 | const Instruction* inst, uint16_t inst_data, JValue* result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 114 | |
buzbee | 78f1bdc | 2017-03-01 10:55:57 -0800 | [diff] [blame] | 115 | // Handles streamlined non-range invoke static, direct and virtual instructions originating in |
| 116 | // mterp. Access checks and instrumentation other than jit profiling are not supported, but does |
| 117 | // support interpreter intrinsics if applicable. |
| 118 | // Returns true on success, otherwise throws an exception and returns false. |
| 119 | template<InvokeType type> |
| 120 | static inline bool DoFastInvoke(Thread* self, |
| 121 | ShadowFrame& shadow_frame, |
| 122 | const Instruction* inst, |
| 123 | uint16_t inst_data, |
| 124 | JValue* result) { |
| 125 | const uint32_t method_idx = inst->VRegB_35c(); |
| 126 | const uint32_t vregC = inst->VRegC_35c(); |
| 127 | ObjPtr<mirror::Object> receiver = (type == kStatic) |
| 128 | ? nullptr |
| 129 | : shadow_frame.GetVRegReference(vregC); |
| 130 | ArtMethod* sf_method = shadow_frame.GetMethod(); |
| 131 | ArtMethod* const called_method = FindMethodFromCode<type, false>( |
| 132 | method_idx, &receiver, sf_method, self); |
| 133 | // The shadow frame should already be pushed, so we don't need to update it. |
| 134 | if (UNLIKELY(called_method == nullptr)) { |
| 135 | CHECK(self->IsExceptionPending()); |
| 136 | result->SetJ(0); |
| 137 | return false; |
| 138 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 139 | called_method->ThrowInvocationTimeError(); |
| 140 | result->SetJ(0); |
| 141 | return false; |
| 142 | } else { |
| 143 | if (called_method->IsIntrinsic()) { |
| 144 | if (MterpHandleIntrinsic(&shadow_frame, called_method, inst, inst_data, |
| 145 | shadow_frame.GetResultRegister())) { |
| 146 | return !self->IsExceptionPending(); |
| 147 | } |
| 148 | } |
| 149 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 150 | if (jit != nullptr) { |
| 151 | if (type == kVirtual) { |
| 152 | jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method); |
| 153 | } |
| 154 | jit->AddSamples(self, sf_method, 1, /*with_backedges*/false); |
| 155 | } |
| 156 | return DoCall<false, false>(called_method, self, shadow_frame, inst, inst_data, result); |
| 157 | } |
| 158 | } |
| 159 | |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 160 | // Handles all invoke-XXX/range instructions except for invoke-polymorphic[/range]. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 161 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 162 | template<InvokeType type, bool is_range, bool do_access_check> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 163 | static inline bool DoInvoke(Thread* self, |
| 164 | ShadowFrame& shadow_frame, |
| 165 | const Instruction* inst, |
| 166 | uint16_t inst_data, |
| 167 | JValue* result) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 168 | const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); |
| 169 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 170 | ObjPtr<mirror::Object> receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 171 | ArtMethod* sf_method = shadow_frame.GetMethod(); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 172 | ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>( |
Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 173 | method_idx, &receiver, sf_method, self); |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 174 | // The shadow frame should already be pushed, so we don't need to update it. |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 175 | if (UNLIKELY(called_method == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 176 | CHECK(self->IsExceptionPending()); |
| 177 | result->SetJ(0); |
| 178 | return false; |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 179 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 180 | called_method->ThrowInvocationTimeError(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 181 | result->SetJ(0); |
| 182 | return false; |
| 183 | } else { |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 184 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 185 | if (jit != nullptr) { |
| 186 | if (type == kVirtual || type == kInterface) { |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 187 | jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 188 | } |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 189 | jit->AddSamples(self, sf_method, 1, /*with_backedges*/false); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 190 | } |
| 191 | // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT. |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 192 | if (type == kVirtual || type == kInterface) { |
| 193 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 194 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { |
| 195 | instrumentation->InvokeVirtualOrInterface( |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 196 | self, receiver.Ptr(), sf_method, shadow_frame.GetDexPC(), called_method); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 197 | } |
| 198 | } |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 199 | return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data, |
| 200 | result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 201 | } |
| 202 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 203 | |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 204 | // Performs a signature polymorphic invoke (invoke-polymorphic/invoke-polymorphic-range). |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 205 | template<bool is_range> |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 206 | bool DoInvokePolymorphic(Thread* self, |
| 207 | ShadowFrame& shadow_frame, |
| 208 | const Instruction* inst, |
| 209 | uint16_t inst_data, |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 210 | JValue* result); |
| 211 | |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 212 | // Performs a custom invoke (invoke-custom/invoke-custom-range). |
| 213 | template<bool is_range> |
| 214 | bool DoInvokeCustom(Thread* self, |
| 215 | ShadowFrame& shadow_frame, |
| 216 | const Instruction* inst, |
| 217 | uint16_t inst_data, |
| 218 | JValue* result); |
| 219 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 220 | // Handles invoke-virtual-quick and invoke-virtual-quick-range instructions. |
| 221 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 222 | template<bool is_range> |
| 223 | static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame, |
| 224 | const Instruction* inst, uint16_t inst_data, |
| 225 | JValue* result) { |
| 226 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 227 | ObjPtr<mirror::Object> const receiver = shadow_frame.GetVRegReference(vregC); |
Sebastien Hertz | d4beb6b | 2013-10-02 17:07:20 +0200 | [diff] [blame] | 228 | if (UNLIKELY(receiver == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 229 | // We lost the reference to the method index so we cannot get a more |
| 230 | // precised exception message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 231 | ThrowNullPointerExceptionFromDexPC(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 232 | return false; |
| 233 | } |
| 234 | const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); |
Hiroshi Yamauchi | a10ae78 | 2016-10-05 18:13:23 -0700 | [diff] [blame] | 235 | // Debug code for b/31357497. To be removed. |
| 236 | if (kUseReadBarrier) { |
| 237 | CHECK(receiver->GetClass() != nullptr) |
| 238 | << "Null class found in object " << receiver << " in region type " |
| 239 | << Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()-> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 240 | RegionSpace()->GetRegionType(receiver.Ptr()); |
Hiroshi Yamauchi | a10ae78 | 2016-10-05 18:13:23 -0700 | [diff] [blame] | 241 | } |
Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 242 | CHECK(receiver->GetClass()->ShouldHaveEmbeddedVTable()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 243 | ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 244 | vtable_idx, kRuntimePointerSize); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 245 | if (UNLIKELY(called_method == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 246 | CHECK(self->IsExceptionPending()); |
| 247 | result->SetJ(0); |
| 248 | return false; |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 249 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 250 | called_method->ThrowInvocationTimeError(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 251 | result->SetJ(0); |
| 252 | return false; |
| 253 | } else { |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 254 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 255 | if (jit != nullptr) { |
| 256 | jit->InvokeVirtualOrInterface( |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 257 | receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 258 | jit->AddSamples(self, shadow_frame.GetMethod(), 1, /*with_backedges*/false); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 259 | } |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 260 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 261 | // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT. |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 262 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { |
| 263 | instrumentation->InvokeVirtualOrInterface( |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 264 | self, receiver.Ptr(), shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 265 | } |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 266 | // No need to check since we've been quickened. |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 267 | return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 268 | } |
| 269 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 270 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 271 | // Handles iget-XXX and sget-XXX instructions. |
| 272 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 273 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 274 | bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 275 | uint16_t inst_data) REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 276 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 277 | // Handles iget-quick, iget-wide-quick and iget-object-quick instructions. |
| 278 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 279 | template<Primitive::Type field_type> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 280 | bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 281 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 479fc1e | 2014-04-04 17:51:34 +0200 | [diff] [blame] | 282 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 283 | // Handles iput-XXX and sput-XXX instructions. |
| 284 | // Returns true on success, otherwise throws an exception and returns false. |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 285 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check, |
| 286 | bool transaction_active> |
| 287 | bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst, |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 288 | uint16_t inst_data) REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 289 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 290 | // Handles iput-quick, iput-wide-quick and iput-object-quick instructions. |
| 291 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 292 | template<Primitive::Type field_type, bool transaction_active> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 293 | bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 294 | REQUIRES_SHARED(Locks::mutator_lock_); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 295 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 296 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 297 | // Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the |
| 298 | // java.lang.String class is initialized. |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 299 | static inline ObjPtr<mirror::String> ResolveString(Thread* self, |
| 300 | ShadowFrame& shadow_frame, |
Andreas Gampe | 8a0128a | 2016-11-28 07:38:35 -0800 | [diff] [blame] | 301 | dex::StringIndex string_idx) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 302 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 303 | ObjPtr<mirror::Class> java_lang_string_class = mirror::String::GetJavaLangString(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 304 | if (UNLIKELY(!java_lang_string_class->IsInitialized())) { |
| 305 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 306 | StackHandleScope<1> hs(self); |
| 307 | Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 308 | if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 309 | DCHECK(self->IsExceptionPending()); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 310 | return nullptr; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 311 | } |
| 312 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 313 | ArtMethod* method = shadow_frame.GetMethod(); |
Vladimir Marko | ec78622 | 2016-12-20 16:24:13 +0000 | [diff] [blame] | 314 | ObjPtr<mirror::String> string_ptr = method->GetDexCache()->GetResolvedString(string_idx); |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 315 | if (UNLIKELY(string_ptr == nullptr)) { |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 316 | StackHandleScope<1> hs(self); |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 317 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache())); |
Vladimir Marko | ec78622 | 2016-12-20 16:24:13 +0000 | [diff] [blame] | 318 | string_ptr = Runtime::Current()->GetClassLinker()->ResolveString(*dex_cache->GetDexFile(), |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 319 | string_idx, |
| 320 | dex_cache); |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 321 | } |
Christina Wadsworth | bf44e0e | 2016-08-18 10:37:42 -0700 | [diff] [blame] | 322 | return string_ptr; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 323 | } |
| 324 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 325 | // Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions. |
| 326 | // Returns true on success, otherwise throws a java.lang.ArithmeticException and return false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 327 | static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg, |
| 328 | int32_t dividend, int32_t divisor) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 329 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 330 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 331 | if (UNLIKELY(divisor == 0)) { |
| 332 | ThrowArithmeticExceptionDivideByZero(); |
| 333 | return false; |
| 334 | } |
| 335 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { |
| 336 | shadow_frame.SetVReg(result_reg, kMinInt); |
| 337 | } else { |
| 338 | shadow_frame.SetVReg(result_reg, dividend / divisor); |
| 339 | } |
| 340 | return true; |
| 341 | } |
| 342 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 343 | // Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions. |
| 344 | // Returns true on success, otherwise throws a java.lang.ArithmeticException and return false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 345 | static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg, |
| 346 | int32_t dividend, int32_t divisor) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 347 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 348 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 349 | if (UNLIKELY(divisor == 0)) { |
| 350 | ThrowArithmeticExceptionDivideByZero(); |
| 351 | return false; |
| 352 | } |
| 353 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { |
| 354 | shadow_frame.SetVReg(result_reg, 0); |
| 355 | } else { |
| 356 | shadow_frame.SetVReg(result_reg, dividend % divisor); |
| 357 | } |
| 358 | return true; |
| 359 | } |
| 360 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 361 | // Handles div-long and div-long-2addr instructions. |
| 362 | // Returns true on success, otherwise throws a java.lang.ArithmeticException and return false. |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 363 | static inline bool DoLongDivide(ShadowFrame& shadow_frame, |
| 364 | size_t result_reg, |
| 365 | int64_t dividend, |
| 366 | int64_t divisor) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 367 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 368 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 369 | if (UNLIKELY(divisor == 0)) { |
| 370 | ThrowArithmeticExceptionDivideByZero(); |
| 371 | return false; |
| 372 | } |
| 373 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { |
| 374 | shadow_frame.SetVRegLong(result_reg, kMinLong); |
| 375 | } else { |
| 376 | shadow_frame.SetVRegLong(result_reg, dividend / divisor); |
| 377 | } |
| 378 | return true; |
| 379 | } |
| 380 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 381 | // Handles rem-long and rem-long-2addr instructions. |
| 382 | // Returns true on success, otherwise throws a java.lang.ArithmeticException and return false. |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 383 | static inline bool DoLongRemainder(ShadowFrame& shadow_frame, |
| 384 | size_t result_reg, |
| 385 | int64_t dividend, |
| 386 | int64_t divisor) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 387 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 388 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 389 | if (UNLIKELY(divisor == 0)) { |
| 390 | ThrowArithmeticExceptionDivideByZero(); |
| 391 | return false; |
| 392 | } |
| 393 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { |
| 394 | shadow_frame.SetVRegLong(result_reg, 0); |
| 395 | } else { |
| 396 | shadow_frame.SetVRegLong(result_reg, dividend % divisor); |
| 397 | } |
| 398 | return true; |
| 399 | } |
| 400 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 401 | // Handles filled-new-array and filled-new-array-range instructions. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 402 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 403 | template <bool is_range, bool do_access_check, bool transaction_active> |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 404 | bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 405 | Thread* self, JValue* result); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 406 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 407 | // Handles packed-switch instruction. |
| 408 | // Returns the branch offset to the next instruction to execute. |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 409 | static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, |
| 410 | uint16_t inst_data) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 411 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 412 | DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); |
| 413 | const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t(); |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 414 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 415 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature)); |
| 416 | uint16_t size = switch_data[1]; |
David Brazdil | 2ef645b | 2015-06-17 18:20:52 +0100 | [diff] [blame] | 417 | if (size == 0) { |
| 418 | // Empty packed switch, move forward by 3 (size of PACKED_SWITCH). |
| 419 | return 3; |
| 420 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 421 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 422 | DCHECK_ALIGNED(keys, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 423 | int32_t first_key = keys[0]; |
| 424 | const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 425 | DCHECK_ALIGNED(targets, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 426 | int32_t index = test_val - first_key; |
| 427 | if (index >= 0 && index < size) { |
| 428 | return targets[index]; |
| 429 | } else { |
| 430 | // No corresponding value: move forward by 3 (size of PACKED_SWITCH). |
| 431 | return 3; |
| 432 | } |
| 433 | } |
| 434 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 435 | // Handles sparse-switch instruction. |
| 436 | // Returns the branch offset to the next instruction to execute. |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 437 | static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, |
| 438 | uint16_t inst_data) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 439 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 440 | DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH); |
| 441 | const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t(); |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 442 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 443 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature)); |
| 444 | uint16_t size = switch_data[1]; |
Jeff Hao | 935e01a | 2015-03-20 19:44:35 -0700 | [diff] [blame] | 445 | // Return length of SPARSE_SWITCH if size is 0. |
| 446 | if (size == 0) { |
| 447 | return 3; |
| 448 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 449 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 450 | DCHECK_ALIGNED(keys, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 451 | const int32_t* entries = keys + size; |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 452 | DCHECK_ALIGNED(entries, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 453 | int lo = 0; |
| 454 | int hi = size - 1; |
| 455 | while (lo <= hi) { |
| 456 | int mid = (lo + hi) / 2; |
| 457 | int32_t foundVal = keys[mid]; |
| 458 | if (test_val < foundVal) { |
| 459 | hi = mid - 1; |
| 460 | } else if (test_val > foundVal) { |
| 461 | lo = mid + 1; |
| 462 | } else { |
| 463 | return entries[mid]; |
| 464 | } |
| 465 | } |
| 466 | // No corresponding value: move forward by 3 (size of SPARSE_SWITCH). |
| 467 | return 3; |
| 468 | } |
| 469 | |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 470 | uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame, |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 471 | uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 472 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 473 | |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 474 | NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) |
| 475 | __attribute__((cold)) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 476 | REQUIRES_SHARED(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 477 | |
Bill Buzbee | d47fd90 | 2016-07-07 14:42:43 +0000 | [diff] [blame] | 478 | // Set true if you want TraceExecution invocation before each bytecode execution. |
| 479 | constexpr bool kTraceExecutionEnabled = false; |
Serguei Katkov | 9fb0ac7 | 2016-02-20 12:55:24 +0600 | [diff] [blame] | 480 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 481 | static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst, |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 482 | const uint32_t dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 483 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Bill Buzbee | d47fd90 | 2016-07-07 14:42:43 +0000 | [diff] [blame] | 484 | if (kTraceExecutionEnabled) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 485 | #define TRACE_LOG std::cerr |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 486 | std::ostringstream oss; |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 487 | oss << shadow_frame.GetMethod()->PrettyMethod() |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 488 | << android::base::StringPrintf("\n0x%x: ", dex_pc) |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 489 | << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 490 | for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 491 | uint32_t raw_value = shadow_frame.GetVReg(i); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 492 | ObjPtr<mirror::Object> ref_value = shadow_frame.GetVRegReference(i); |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 493 | oss << android::base::StringPrintf(" vreg%u=0x%08X", i, raw_value); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 494 | if (ref_value != nullptr) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 495 | if (ref_value->GetClass()->IsStringClass() && |
jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 496 | !ref_value->AsString()->IsValueNull()) { |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 497 | oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\""; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 498 | } else { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 499 | oss << "/" << ref_value->PrettyTypeOf(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 500 | } |
| 501 | } |
| 502 | } |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 503 | TRACE_LOG << oss.str() << "\n"; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 504 | #undef TRACE_LOG |
| 505 | } |
| 506 | } |
| 507 | |
Sebastien Hertz | 1eda226 | 2013-09-09 16:53:14 +0200 | [diff] [blame] | 508 | static inline bool IsBackwardBranch(int32_t branch_offset) { |
| 509 | return branch_offset <= 0; |
| 510 | } |
| 511 | |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 512 | // Assign register 'src_reg' from shadow_frame to register 'dest_reg' into new_shadow_frame. |
| 513 | static inline void AssignRegister(ShadowFrame* new_shadow_frame, const ShadowFrame& shadow_frame, |
| 514 | size_t dest_reg, size_t src_reg) |
| 515 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 516 | // Uint required, so that sign extension does not make this wrong on 64b systems |
| 517 | uint32_t src_value = shadow_frame.GetVReg(src_reg); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 518 | ObjPtr<mirror::Object> o = shadow_frame.GetVRegReference<kVerifyNone>(src_reg); |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 519 | |
| 520 | // If both register locations contains the same value, the register probably holds a reference. |
| 521 | // Note: As an optimization, non-moving collectors leave a stale reference value |
| 522 | // in the references array even after the original vreg was overwritten to a non-reference. |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 523 | if (src_value == reinterpret_cast<uintptr_t>(o.Ptr())) { |
| 524 | new_shadow_frame->SetVRegReference(dest_reg, o.Ptr()); |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 525 | } else { |
| 526 | new_shadow_frame->SetVReg(dest_reg, src_value); |
| 527 | } |
| 528 | } |
| 529 | |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 530 | void ArtInterpreterToCompiledCodeBridge(Thread* self, |
| 531 | ArtMethod* caller, |
Nicolas Geoffray | 0182229 | 2017-03-09 09:03:19 +0000 | [diff] [blame] | 532 | const DexFile::CodeItem* code_item, |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 533 | ShadowFrame* shadow_frame, |
| 534 | JValue* result); |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 535 | |
Mingyao Yang | ffedec5 | 2016-05-19 10:48:40 -0700 | [diff] [blame] | 536 | // Set string value created from StringFactory.newStringFromXXX() into all aliases of |
| 537 | // StringFactory.newEmptyString(). |
| 538 | void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame, |
| 539 | uint16_t this_obj_vreg, |
| 540 | JValue result); |
| 541 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 542 | // Explicitly instantiate all DoInvoke functions. |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 543 | #define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \ |
buzbee | 78f1bdc | 2017-03-01 10:55:57 -0800 | [diff] [blame] | 544 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
| 545 | bool DoInvoke<_type, _is_range, _do_check>(Thread* self, \ |
| 546 | ShadowFrame& shadow_frame, \ |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 547 | const Instruction* inst, uint16_t inst_data, \ |
| 548 | JValue* result) |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 549 | |
| 550 | #define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \ |
| 551 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \ |
| 552 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \ |
| 553 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \ |
| 554 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true); |
| 555 | |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 556 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range. |
| 557 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range. |
| 558 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range. |
| 559 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range. |
| 560 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 561 | #undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL |
| 562 | #undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL |
| 563 | |
buzbee | 78f1bdc | 2017-03-01 10:55:57 -0800 | [diff] [blame] | 564 | // Explicitly instantiate all DoFastInvoke functions. |
| 565 | #define EXPLICIT_DO_FAST_INVOKE_TEMPLATE_DECL(_type) \ |
| 566 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
| 567 | bool DoFastInvoke<_type>(Thread* self, \ |
| 568 | ShadowFrame& shadow_frame, \ |
| 569 | const Instruction* inst, uint16_t inst_data, \ |
| 570 | JValue* result) |
| 571 | |
| 572 | EXPLICIT_DO_FAST_INVOKE_TEMPLATE_DECL(kStatic); // invoke-static |
| 573 | EXPLICIT_DO_FAST_INVOKE_TEMPLATE_DECL(kDirect); // invoke-direct |
| 574 | EXPLICIT_DO_FAST_INVOKE_TEMPLATE_DECL(kVirtual); // invoke-virtual |
| 575 | #undef EXPLICIT_DO_FAST_INVOKE_TEMPLATE_DECL |
| 576 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 577 | // Explicitly instantiate all DoInvokeVirtualQuick functions. |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 578 | #define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \ |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 579 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 580 | bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \ |
| 581 | const Instruction* inst, uint16_t inst_data, \ |
| 582 | JValue* result) |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 583 | |
| 584 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick. |
| 585 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range. |
| 586 | #undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK |
| 587 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 588 | } // namespace interpreter |
| 589 | } // namespace art |
| 590 | |
| 591 | #endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_ |