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" |
| 21 | |
| 22 | #include <math.h> |
| 23 | |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 24 | #include <iostream> |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 25 | #include <sstream> |
| 26 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 27 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 28 | #include "art_method-inl.h" |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 29 | #include "base/enums.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 30 | #include "base/logging.h" |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 31 | #include "base/macros.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 32 | #include "class_linker-inl.h" |
| 33 | #include "common_throws.h" |
| 34 | #include "dex_file-inl.h" |
| 35 | #include "dex_instruction-inl.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 36 | #include "entrypoints/entrypoint_utils-inl.h" |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 37 | #include "handle_scope-inl.h" |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 38 | #include "jit/jit.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 39 | #include "mirror/class-inl.h" |
| 40 | #include "mirror/object-inl.h" |
| 41 | #include "mirror/object_array-inl.h" |
Douglas Leung | 4965c02 | 2014-06-11 11:41:11 -0700 | [diff] [blame] | 42 | #include "mirror/string-inl.h" |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 43 | #include "stack.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 44 | #include "thread.h" |
| 45 | #include "well_known_classes.h" |
| 46 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 47 | using ::art::ArtMethod; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 48 | using ::art::mirror::Array; |
| 49 | using ::art::mirror::BooleanArray; |
| 50 | using ::art::mirror::ByteArray; |
| 51 | using ::art::mirror::CharArray; |
| 52 | using ::art::mirror::Class; |
| 53 | using ::art::mirror::ClassLoader; |
| 54 | using ::art::mirror::IntArray; |
| 55 | using ::art::mirror::LongArray; |
| 56 | using ::art::mirror::Object; |
| 57 | using ::art::mirror::ObjectArray; |
| 58 | using ::art::mirror::ShortArray; |
| 59 | using ::art::mirror::String; |
| 60 | using ::art::mirror::Throwable; |
| 61 | |
| 62 | namespace art { |
| 63 | namespace interpreter { |
| 64 | |
buzbee | 1452bee | 2015-03-06 14:43:04 -0800 | [diff] [blame] | 65 | // External references to all interpreter implementations. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 66 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 67 | template<bool do_access_check, bool transaction_active> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 68 | extern JValue ExecuteSwitchImpl(Thread* self, const DexFile::CodeItem* code_item, |
buzbee | 1452bee | 2015-03-06 14:43:04 -0800 | [diff] [blame] | 69 | ShadowFrame& shadow_frame, JValue result_register, |
| 70 | bool interpret_one_instruction); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 71 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 72 | template<bool do_access_check, bool transaction_active> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 73 | extern JValue ExecuteGotoImpl(Thread* self, const DexFile::CodeItem* code_item, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 74 | ShadowFrame& shadow_frame, JValue result_register); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 75 | |
buzbee | 1452bee | 2015-03-06 14:43:04 -0800 | [diff] [blame] | 76 | // Mterp does not support transactions or access check, thus no templated versions. |
| 77 | extern "C" bool ExecuteMterpImpl(Thread* self, const DexFile::CodeItem* code_item, |
| 78 | ShadowFrame* shadow_frame, JValue* result_register); |
| 79 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 80 | void ThrowNullPointerExceptionFromInterpreter() |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 81 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | da843e1 | 2014-05-28 19:28:31 +0200 | [diff] [blame] | 82 | |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 83 | template <bool kMonitorCounting> |
| 84 | static inline void DoMonitorEnter(Thread* self, |
| 85 | ShadowFrame* frame, |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 86 | Object* ref) |
| 87 | NO_THREAD_SAFETY_ANALYSIS |
| 88 | REQUIRES(!Roles::uninterruptible_) { |
| 89 | StackHandleScope<1> hs(self); |
| 90 | Handle<Object> h_ref(hs.NewHandle(ref)); |
| 91 | h_ref->MonitorEnter(self); |
Andreas Gampe | 56fdd0e | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 92 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 93 | frame->GetLockCountData().AddMonitor(self, h_ref.Get()); |
| 94 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 95 | } |
| 96 | |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 97 | template <bool kMonitorCounting> |
| 98 | static inline void DoMonitorExit(Thread* self, |
| 99 | ShadowFrame* frame, |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 100 | Object* ref) |
| 101 | NO_THREAD_SAFETY_ANALYSIS |
| 102 | REQUIRES(!Roles::uninterruptible_) { |
| 103 | StackHandleScope<1> hs(self); |
| 104 | Handle<Object> h_ref(hs.NewHandle(ref)); |
| 105 | h_ref->MonitorExit(self); |
Andreas Gampe | 56fdd0e | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 106 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 107 | frame->GetLockCountData().RemoveMonitorOrThrow(self, h_ref.Get()); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | template <bool kMonitorCounting> |
| 112 | static inline bool DoMonitorCheckOnExit(Thread* self, ShadowFrame* frame) |
| 113 | NO_THREAD_SAFETY_ANALYSIS |
| 114 | REQUIRES(!Roles::uninterruptible_) { |
| 115 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 116 | return frame->GetLockCountData().CheckAllMonitorsReleasedOrThrow(self); |
| 117 | } |
| 118 | return true; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 119 | } |
| 120 | |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 121 | void AbortTransactionF(Thread* self, const char* fmt, ...) |
| 122 | __attribute__((__format__(__printf__, 2, 3))) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 123 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 124 | |
| 125 | void AbortTransactionV(Thread* self, const char* fmt, va_list args) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 126 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | b2c7ead | 2014-04-29 11:13:16 -0700 | [diff] [blame] | 127 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 128 | void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 129 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 130 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 131 | // Invokes the given method. This is part of the invocation support and is used by DoInvoke and |
| 132 | // DoInvokeVirtualQuick functions. |
| 133 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 134 | template<bool is_range, bool do_assignability_check> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 135 | bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 136 | const Instruction* inst, uint16_t inst_data, JValue* result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 137 | |
Narayan Kamath | 14832ef | 2016-08-05 11:44:32 +0100 | [diff] [blame^] | 138 | // Handles invoke-XXX/range instructions. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 139 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 140 | template<InvokeType type, bool is_range, bool do_access_check> |
| 141 | static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
| 142 | uint16_t inst_data, JValue* result) { |
| 143 | const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); |
| 144 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 145 | Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 146 | ArtMethod* sf_method = shadow_frame.GetMethod(); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 147 | ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>( |
Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 148 | method_idx, &receiver, sf_method, self); |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 149 | // 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] | 150 | if (UNLIKELY(called_method == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 151 | CHECK(self->IsExceptionPending()); |
| 152 | result->SetJ(0); |
| 153 | return false; |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 154 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 155 | called_method->ThrowInvocationTimeError(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 156 | result->SetJ(0); |
| 157 | return false; |
| 158 | } else { |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 159 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 160 | if (jit != nullptr) { |
| 161 | if (type == kVirtual || type == kInterface) { |
| 162 | jit->InvokeVirtualOrInterface( |
| 163 | self, receiver, sf_method, shadow_frame.GetDexPC(), called_method); |
| 164 | } |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 165 | jit->AddSamples(self, sf_method, 1, /*with_backedges*/false); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 166 | } |
| 167 | // 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] | 168 | if (type == kVirtual || type == kInterface) { |
| 169 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 170 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { |
| 171 | instrumentation->InvokeVirtualOrInterface( |
| 172 | self, receiver, sf_method, shadow_frame.GetDexPC(), called_method); |
| 173 | } |
| 174 | } |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 175 | return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data, |
| 176 | result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 177 | } |
| 178 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 179 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 180 | // Handles invoke-virtual-quick and invoke-virtual-quick-range instructions. |
| 181 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 182 | template<bool is_range> |
| 183 | static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame, |
| 184 | const Instruction* inst, uint16_t inst_data, |
| 185 | JValue* result) { |
| 186 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); |
| 187 | Object* const receiver = shadow_frame.GetVRegReference(vregC); |
Sebastien Hertz | d4beb6b | 2013-10-02 17:07:20 +0200 | [diff] [blame] | 188 | if (UNLIKELY(receiver == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 189 | // We lost the reference to the method index so we cannot get a more |
| 190 | // precised exception message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 191 | ThrowNullPointerExceptionFromDexPC(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 192 | return false; |
| 193 | } |
| 194 | const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); |
Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 195 | CHECK(receiver->GetClass()->ShouldHaveEmbeddedVTable()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 196 | ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 197 | vtable_idx, kRuntimePointerSize); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 198 | if (UNLIKELY(called_method == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 199 | CHECK(self->IsExceptionPending()); |
| 200 | result->SetJ(0); |
| 201 | return false; |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 202 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 203 | called_method->ThrowInvocationTimeError(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 204 | result->SetJ(0); |
| 205 | return false; |
| 206 | } else { |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 207 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 208 | if (jit != nullptr) { |
| 209 | jit->InvokeVirtualOrInterface( |
| 210 | self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 211 | jit->AddSamples(self, shadow_frame.GetMethod(), 1, /*with_backedges*/false); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 212 | } |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 213 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 214 | // 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] | 215 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { |
| 216 | instrumentation->InvokeVirtualOrInterface( |
| 217 | self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); |
| 218 | } |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 219 | // No need to check since we've been quickened. |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 220 | 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] | 221 | } |
| 222 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 223 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 224 | // Handles iget-XXX and sget-XXX instructions. |
| 225 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 226 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 227 | bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 228 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 229 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 230 | // Handles iget-quick, iget-wide-quick and iget-object-quick instructions. |
| 231 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 232 | template<Primitive::Type field_type> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 233 | bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 234 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 479fc1e | 2014-04-04 17:51:34 +0200 | [diff] [blame] | 235 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 236 | // Handles iput-XXX and sput-XXX instructions. |
| 237 | // Returns true on success, otherwise throws an exception and returns false. |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 238 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check, |
| 239 | bool transaction_active> |
| 240 | bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst, |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 241 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 242 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 243 | // Handles iput-quick, iput-wide-quick and iput-object-quick instructions. |
| 244 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 245 | template<Primitive::Type field_type, bool transaction_active> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 246 | bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 247 | SHARED_REQUIRES(Locks::mutator_lock_); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 248 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 249 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 250 | // Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the |
| 251 | // java.lang.String class is initialized. |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 252 | static inline String* ResolveString(Thread* self, ShadowFrame& shadow_frame, uint32_t string_idx) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 253 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 254 | Class* java_lang_string_class = String::GetJavaLangString(); |
| 255 | if (UNLIKELY(!java_lang_string_class->IsInitialized())) { |
| 256 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 257 | StackHandleScope<1> hs(self); |
| 258 | Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 259 | if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 260 | DCHECK(self->IsExceptionPending()); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 261 | return nullptr; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 262 | } |
| 263 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 264 | ArtMethod* method = shadow_frame.GetMethod(); |
Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 265 | mirror::Class* declaring_class = method->GetDeclaringClass(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 266 | // MethodVerifier refuses methods with string_idx out of bounds. |
| 267 | DCHECK_LT(string_idx, declaring_class->GetDexCache()->NumStrings()); |
| 268 | mirror::String* s = declaring_class->GetDexCacheStrings()[string_idx].Read(); |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 269 | if (UNLIKELY(s == nullptr)) { |
| 270 | StackHandleScope<1> hs(self); |
Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 271 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache())); |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 272 | s = Runtime::Current()->GetClassLinker()->ResolveString(*method->GetDexFile(), string_idx, |
| 273 | dex_cache); |
| 274 | } |
| 275 | return s; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 278 | // Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions. |
| 279 | // 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] | 280 | static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg, |
| 281 | int32_t dividend, int32_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 282 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 283 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 284 | if (UNLIKELY(divisor == 0)) { |
| 285 | ThrowArithmeticExceptionDivideByZero(); |
| 286 | return false; |
| 287 | } |
| 288 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { |
| 289 | shadow_frame.SetVReg(result_reg, kMinInt); |
| 290 | } else { |
| 291 | shadow_frame.SetVReg(result_reg, dividend / divisor); |
| 292 | } |
| 293 | return true; |
| 294 | } |
| 295 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 296 | // Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions. |
| 297 | // 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] | 298 | static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg, |
| 299 | int32_t dividend, int32_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 300 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 301 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 302 | if (UNLIKELY(divisor == 0)) { |
| 303 | ThrowArithmeticExceptionDivideByZero(); |
| 304 | return false; |
| 305 | } |
| 306 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { |
| 307 | shadow_frame.SetVReg(result_reg, 0); |
| 308 | } else { |
| 309 | shadow_frame.SetVReg(result_reg, dividend % divisor); |
| 310 | } |
| 311 | return true; |
| 312 | } |
| 313 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 314 | // Handles div-long and div-long-2addr instructions. |
| 315 | // 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] | 316 | static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg, |
| 317 | int64_t dividend, int64_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 318 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 319 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 320 | if (UNLIKELY(divisor == 0)) { |
| 321 | ThrowArithmeticExceptionDivideByZero(); |
| 322 | return false; |
| 323 | } |
| 324 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { |
| 325 | shadow_frame.SetVRegLong(result_reg, kMinLong); |
| 326 | } else { |
| 327 | shadow_frame.SetVRegLong(result_reg, dividend / divisor); |
| 328 | } |
| 329 | return true; |
| 330 | } |
| 331 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 332 | // Handles rem-long and rem-long-2addr instructions. |
| 333 | // 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] | 334 | static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg, |
| 335 | int64_t dividend, int64_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 336 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 337 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 338 | if (UNLIKELY(divisor == 0)) { |
| 339 | ThrowArithmeticExceptionDivideByZero(); |
| 340 | return false; |
| 341 | } |
| 342 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { |
| 343 | shadow_frame.SetVRegLong(result_reg, 0); |
| 344 | } else { |
| 345 | shadow_frame.SetVRegLong(result_reg, dividend % divisor); |
| 346 | } |
| 347 | return true; |
| 348 | } |
| 349 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 350 | // Handles filled-new-array and filled-new-array-range instructions. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 351 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 352 | template <bool is_range, bool do_access_check, bool transaction_active> |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 353 | bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 354 | Thread* self, JValue* result); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 355 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 356 | // Handles packed-switch instruction. |
| 357 | // Returns the branch offset to the next instruction to execute. |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 358 | static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, |
| 359 | uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 360 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 361 | DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); |
| 362 | 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] | 363 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 364 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature)); |
| 365 | uint16_t size = switch_data[1]; |
David Brazdil | 2ef645b | 2015-06-17 18:20:52 +0100 | [diff] [blame] | 366 | if (size == 0) { |
| 367 | // Empty packed switch, move forward by 3 (size of PACKED_SWITCH). |
| 368 | return 3; |
| 369 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 370 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 371 | DCHECK_ALIGNED(keys, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 372 | int32_t first_key = keys[0]; |
| 373 | const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 374 | DCHECK_ALIGNED(targets, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 375 | int32_t index = test_val - first_key; |
| 376 | if (index >= 0 && index < size) { |
| 377 | return targets[index]; |
| 378 | } else { |
| 379 | // No corresponding value: move forward by 3 (size of PACKED_SWITCH). |
| 380 | return 3; |
| 381 | } |
| 382 | } |
| 383 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 384 | // Handles sparse-switch instruction. |
| 385 | // Returns the branch offset to the next instruction to execute. |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 386 | static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, |
| 387 | uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 388 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 389 | DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH); |
| 390 | 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] | 391 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 392 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature)); |
| 393 | uint16_t size = switch_data[1]; |
Jeff Hao | 935e01a | 2015-03-20 19:44:35 -0700 | [diff] [blame] | 394 | // Return length of SPARSE_SWITCH if size is 0. |
| 395 | if (size == 0) { |
| 396 | return 3; |
| 397 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 398 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 399 | DCHECK_ALIGNED(keys, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 400 | const int32_t* entries = keys + size; |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 401 | DCHECK_ALIGNED(entries, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 402 | int lo = 0; |
| 403 | int hi = size - 1; |
| 404 | while (lo <= hi) { |
| 405 | int mid = (lo + hi) / 2; |
| 406 | int32_t foundVal = keys[mid]; |
| 407 | if (test_val < foundVal) { |
| 408 | hi = mid - 1; |
| 409 | } else if (test_val > foundVal) { |
| 410 | lo = mid + 1; |
| 411 | } else { |
| 412 | return entries[mid]; |
| 413 | } |
| 414 | } |
| 415 | // No corresponding value: move forward by 3 (size of SPARSE_SWITCH). |
| 416 | return 3; |
| 417 | } |
| 418 | |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 419 | uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame, |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 420 | uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 421 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 422 | |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 423 | NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) |
| 424 | __attribute__((cold)) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 425 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 426 | |
Bill Buzbee | d47fd90 | 2016-07-07 14:42:43 +0000 | [diff] [blame] | 427 | // Set true if you want TraceExecution invocation before each bytecode execution. |
| 428 | constexpr bool kTraceExecutionEnabled = false; |
Serguei Katkov | 9fb0ac7 | 2016-02-20 12:55:24 +0600 | [diff] [blame] | 429 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 430 | static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst, |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 431 | const uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 432 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Bill Buzbee | d47fd90 | 2016-07-07 14:42:43 +0000 | [diff] [blame] | 433 | if (kTraceExecutionEnabled) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 434 | #define TRACE_LOG std::cerr |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 435 | std::ostringstream oss; |
| 436 | oss << PrettyMethod(shadow_frame.GetMethod()) |
| 437 | << StringPrintf("\n0x%x: ", dex_pc) |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 438 | << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 439 | for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 440 | uint32_t raw_value = shadow_frame.GetVReg(i); |
| 441 | Object* ref_value = shadow_frame.GetVRegReference(i); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 442 | oss << StringPrintf(" vreg%u=0x%08X", i, raw_value); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 443 | if (ref_value != nullptr) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 444 | if (ref_value->GetClass()->IsStringClass() && |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 445 | ref_value->AsString()->GetValue() != nullptr) { |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 446 | oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\""; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 447 | } else { |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 448 | oss << "/" << PrettyTypeOf(ref_value); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | } |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 452 | TRACE_LOG << oss.str() << "\n"; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 453 | #undef TRACE_LOG |
| 454 | } |
| 455 | } |
| 456 | |
Sebastien Hertz | 1eda226 | 2013-09-09 16:53:14 +0200 | [diff] [blame] | 457 | static inline bool IsBackwardBranch(int32_t branch_offset) { |
| 458 | return branch_offset <= 0; |
| 459 | } |
| 460 | |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 461 | void ArtInterpreterToCompiledCodeBridge(Thread* self, |
| 462 | ArtMethod* caller, |
| 463 | const DexFile::CodeItem* code_item, |
| 464 | ShadowFrame* shadow_frame, |
| 465 | JValue* result); |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 466 | |
Mingyao Yang | ffedec5 | 2016-05-19 10:48:40 -0700 | [diff] [blame] | 467 | // Set string value created from StringFactory.newStringFromXXX() into all aliases of |
| 468 | // StringFactory.newEmptyString(). |
| 469 | void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame, |
| 470 | uint16_t this_obj_vreg, |
| 471 | JValue result); |
| 472 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 473 | // Explicitly instantiate all DoInvoke functions. |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 474 | #define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 475 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 476 | bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \ |
| 477 | const Instruction* inst, uint16_t inst_data, \ |
| 478 | JValue* result) |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 479 | |
| 480 | #define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \ |
| 481 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \ |
| 482 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \ |
| 483 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \ |
| 484 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true); |
| 485 | |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 486 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range. |
| 487 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range. |
| 488 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range. |
| 489 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range. |
| 490 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 491 | #undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL |
| 492 | #undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL |
| 493 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 494 | // Explicitly instantiate all DoInvokeVirtualQuick functions. |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 495 | #define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 496 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 497 | bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \ |
| 498 | const Instruction* inst, uint16_t inst_data, \ |
| 499 | JValue* result) |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 500 | |
| 501 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick. |
| 502 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range. |
| 503 | #undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK |
| 504 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 505 | } // namespace interpreter |
| 506 | } // namespace art |
| 507 | |
| 508 | #endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_ |