| 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" | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 29 | #include "base/logging.h" | 
| Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 30 | #include "base/macros.h" | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 31 | #include "class_linker-inl.h" | 
|  | 32 | #include "common_throws.h" | 
|  | 33 | #include "dex_file-inl.h" | 
|  | 34 | #include "dex_instruction-inl.h" | 
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 35 | #include "entrypoints/entrypoint_utils-inl.h" | 
| Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 36 | #include "handle_scope-inl.h" | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 37 | #include "lambda/box_table.h" | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 38 | #include "mirror/class-inl.h" | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 39 | #include "mirror/method.h" | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 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" | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 43 | #include "thread.h" | 
|  | 44 | #include "well_known_classes.h" | 
|  | 45 |  | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 46 | using ::art::ArtMethod; | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 47 | using ::art::mirror::Array; | 
|  | 48 | using ::art::mirror::BooleanArray; | 
|  | 49 | using ::art::mirror::ByteArray; | 
|  | 50 | using ::art::mirror::CharArray; | 
|  | 51 | using ::art::mirror::Class; | 
|  | 52 | using ::art::mirror::ClassLoader; | 
|  | 53 | using ::art::mirror::IntArray; | 
|  | 54 | using ::art::mirror::LongArray; | 
|  | 55 | using ::art::mirror::Object; | 
|  | 56 | using ::art::mirror::ObjectArray; | 
|  | 57 | using ::art::mirror::ShortArray; | 
|  | 58 | using ::art::mirror::String; | 
|  | 59 | using ::art::mirror::Throwable; | 
|  | 60 |  | 
|  | 61 | namespace art { | 
|  | 62 | namespace interpreter { | 
|  | 63 |  | 
|  | 64 | // External references to both interpreter implementations. | 
|  | 65 |  | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 66 | template<bool do_access_check, bool transaction_active> | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 67 | extern JValue ExecuteSwitchImpl(Thread* self, const DexFile::CodeItem* code_item, | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 68 | ShadowFrame& shadow_frame, JValue result_register); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 69 |  | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 70 | template<bool do_access_check, bool transaction_active> | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 71 | extern JValue ExecuteGotoImpl(Thread* self, const DexFile::CodeItem* code_item, | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 72 | ShadowFrame& shadow_frame, JValue result_register); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 73 |  | 
| Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 74 | void ThrowNullPointerExceptionFromInterpreter() | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 75 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | da843e1 | 2014-05-28 19:28:31 +0200 | [diff] [blame] | 76 |  | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 77 | static inline void DoMonitorEnter(Thread* self, Object* ref) NO_THREAD_SAFETY_ANALYSIS { | 
|  | 78 | ref->MonitorEnter(self); | 
|  | 79 | } | 
|  | 80 |  | 
|  | 81 | static inline void DoMonitorExit(Thread* self, Object* ref) NO_THREAD_SAFETY_ANALYSIS { | 
|  | 82 | ref->MonitorExit(self); | 
|  | 83 | } | 
|  | 84 |  | 
| Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 85 | void AbortTransactionF(Thread* self, const char* fmt, ...) | 
|  | 86 | __attribute__((__format__(__printf__, 2, 3))) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 87 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 88 |  | 
|  | 89 | void AbortTransactionV(Thread* self, const char* fmt, va_list args) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 90 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Mathieu Chartier | b2c7ead | 2014-04-29 11:13:16 -0700 | [diff] [blame] | 91 |  | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 92 | void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 93 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 94 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 95 | // Invokes the given method. This is part of the invocation support and is used by DoInvoke and | 
|  | 96 | // DoInvokeVirtualQuick functions. | 
|  | 97 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 98 | template<bool is_range, bool do_assignability_check> | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 99 | bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 100 | const Instruction* inst, uint16_t inst_data, JValue* result); | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 101 |  | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 102 | // Invokes the given lambda closure. This is part of the invocation support and is used by | 
|  | 103 | // DoLambdaInvoke functions. | 
|  | 104 | // Returns true on success, otherwise throws an exception and returns false. | 
|  | 105 | template<bool is_range, bool do_assignability_check> | 
|  | 106 | bool DoLambdaCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, | 
|  | 107 | const Instruction* inst, uint16_t inst_data, JValue* result); | 
|  | 108 |  | 
|  | 109 | // Validates that the art method corresponding to a lambda method target | 
|  | 110 | // is semantically valid: | 
|  | 111 | // | 
|  | 112 | // Must be ACC_STATIC and ACC_LAMBDA. Must be a concrete managed implementation | 
|  | 113 | // (i.e. not native, not proxy, not abstract, ...). | 
|  | 114 | // | 
|  | 115 | // If the validation fails, return false and raise an exception. | 
|  | 116 | static inline bool IsValidLambdaTargetOrThrow(ArtMethod* called_method) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 117 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 118 | bool success = false; | 
|  | 119 |  | 
|  | 120 | if (UNLIKELY(called_method == nullptr)) { | 
|  | 121 | // The shadow frame should already be pushed, so we don't need to update it. | 
|  | 122 | } else if (UNLIKELY(called_method->IsAbstract())) { | 
|  | 123 | ThrowAbstractMethodError(called_method); | 
|  | 124 | // TODO(iam): Also handle the case when the method is non-static, what error do we throw? | 
|  | 125 | // TODO(iam): Also make sure that ACC_LAMBDA is set. | 
|  | 126 | } else if (UNLIKELY(called_method->GetCodeItem() == nullptr)) { | 
|  | 127 | // Method could be native, proxy method, etc. Lambda targets have to be concrete impls, | 
|  | 128 | // so don't allow this. | 
|  | 129 | } else { | 
|  | 130 | success = true; | 
|  | 131 | } | 
|  | 132 |  | 
|  | 133 | return success; | 
|  | 134 | } | 
|  | 135 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 136 | // Write out the 'ArtMethod*' into vreg and vreg+1 | 
|  | 137 | static inline void WriteLambdaClosureIntoVRegs(ShadowFrame& shadow_frame, | 
|  | 138 | const ArtMethod& called_method, | 
|  | 139 | uint32_t vreg) { | 
|  | 140 | // Split the method into a lo and hi 32 bits so we can encode them into 2 virtual registers. | 
|  | 141 | uint32_t called_method_lo = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(&called_method)); | 
|  | 142 | uint32_t called_method_hi = static_cast<uint32_t>(reinterpret_cast<uint64_t>(&called_method) | 
|  | 143 | >> BitSizeOf<uint32_t>()); | 
|  | 144 | // Use uint64_t instead of uintptr_t to allow shifting past the max on 32-bit. | 
|  | 145 | static_assert(sizeof(uint64_t) >= sizeof(uintptr_t), "Impossible"); | 
|  | 146 |  | 
|  | 147 | DCHECK_NE(called_method_lo | called_method_hi, 0u); | 
|  | 148 |  | 
|  | 149 | shadow_frame.SetVReg(vreg, called_method_lo); | 
|  | 150 | shadow_frame.SetVReg(vreg + 1, called_method_hi); | 
|  | 151 | } | 
|  | 152 |  | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 153 | // Handles create-lambda instructions. | 
|  | 154 | // Returns true on success, otherwise throws an exception and returns false. | 
|  | 155 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) | 
|  | 156 | // | 
|  | 157 | // As a work-in-progress implementation, this shoves the ArtMethod object corresponding | 
|  | 158 | // to the target dex method index into the target register vA and vA + 1. | 
|  | 159 | template<bool do_access_check> | 
|  | 160 | static inline bool DoCreateLambda(Thread* self, ShadowFrame& shadow_frame, | 
|  | 161 | const Instruction* inst) { | 
|  | 162 | /* | 
|  | 163 | * create-lambda is opcode 0x21c | 
|  | 164 | * - vA is the target register where the closure will be stored into | 
|  | 165 | *   (also stores into vA + 1) | 
|  | 166 | * - vB is the method index which will be the target for a later invoke-lambda | 
|  | 167 | */ | 
|  | 168 | const uint32_t method_idx = inst->VRegB_21c(); | 
|  | 169 | mirror::Object* receiver = nullptr;  // Always static. (see 'kStatic') | 
|  | 170 | ArtMethod* sf_method = shadow_frame.GetMethod(); | 
|  | 171 | ArtMethod* const called_method = FindMethodFromCode<kStatic, do_access_check>( | 
| Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 172 | method_idx, &receiver, sf_method, self); | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 173 |  | 
|  | 174 | uint32_t vregA = inst->VRegA_21c(); | 
|  | 175 |  | 
|  | 176 | if (UNLIKELY(!IsValidLambdaTargetOrThrow(called_method))) { | 
|  | 177 | CHECK(self->IsExceptionPending()); | 
|  | 178 | shadow_frame.SetVReg(vregA, 0u); | 
|  | 179 | shadow_frame.SetVReg(vregA + 1, 0u); | 
|  | 180 | return false; | 
|  | 181 | } | 
|  | 182 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 183 | WriteLambdaClosureIntoVRegs(shadow_frame, *called_method, vregA); | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 184 | return true; | 
|  | 185 | } | 
|  | 186 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 187 | // Reads out the 'ArtMethod*' stored inside of vreg and vreg+1 | 
|  | 188 | // | 
|  | 189 | // Validates that the art method points to a valid lambda function, otherwise throws | 
|  | 190 | // an exception and returns null. | 
|  | 191 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) | 
|  | 192 | static inline ArtMethod* ReadLambdaClosureFromVRegsOrThrow(ShadowFrame& shadow_frame, | 
|  | 193 | uint32_t vreg) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 194 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 195 | // TODO(iam): Introduce a closure abstraction that will contain the captured variables | 
|  | 196 | // instead of just an ArtMethod. | 
|  | 197 | // This is temporarily using 2 vregs because a native ArtMethod can be up to 64-bit, | 
|  | 198 | // but once proper variable capture is implemented it will only use 1 vreg. | 
|  | 199 | uint32_t vc_value_lo = shadow_frame.GetVReg(vreg); | 
|  | 200 | uint32_t vc_value_hi = shadow_frame.GetVReg(vreg + 1); | 
|  | 201 |  | 
|  | 202 | uint64_t vc_value_ptr = (static_cast<uint64_t>(vc_value_hi) << BitSizeOf<uint32_t>()) | 
|  | 203 | | vc_value_lo; | 
|  | 204 |  | 
|  | 205 | // Use uint64_t instead of uintptr_t to allow left-shifting past the max on 32-bit. | 
|  | 206 | static_assert(sizeof(uint64_t) >= sizeof(uintptr_t), "Impossible"); | 
|  | 207 | ArtMethod* const called_method = reinterpret_cast<ArtMethod* const>(vc_value_ptr); | 
|  | 208 |  | 
|  | 209 | // Guard against the user passing a null closure, which is odd but (sadly) semantically valid. | 
|  | 210 | if (UNLIKELY(called_method == nullptr)) { | 
|  | 211 | ThrowNullPointerExceptionFromInterpreter(); | 
|  | 212 | return nullptr; | 
|  | 213 | } else if (UNLIKELY(!IsValidLambdaTargetOrThrow(called_method))) { | 
|  | 214 | return nullptr; | 
|  | 215 | } | 
|  | 216 |  | 
|  | 217 | return called_method; | 
|  | 218 | } | 
|  | 219 |  | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 220 | template<bool do_access_check> | 
|  | 221 | static inline bool DoInvokeLambda(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, | 
|  | 222 | uint16_t inst_data, JValue* result) { | 
|  | 223 | /* | 
|  | 224 | * invoke-lambda is opcode 0x25 | 
|  | 225 | * | 
|  | 226 | * - vC is the closure register (both vC and vC + 1 will be used to store the closure). | 
|  | 227 | * - vB is the number of additional registers up to |{vD,vE,vF,vG}| (4) | 
|  | 228 | * - the rest of the registers are always var-args | 
|  | 229 | * | 
|  | 230 | * - reading var-args for 0x25 gets us vD,vE,vF,vG (but not vB) | 
|  | 231 | */ | 
|  | 232 | uint32_t vC = inst->VRegC_25x(); | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 233 | ArtMethod* const called_method = ReadLambdaClosureFromVRegsOrThrow(shadow_frame, vC); | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 234 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 235 | // Failed lambda target runtime check, an exception was raised. | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 236 | if (UNLIKELY(called_method == nullptr)) { | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 237 | CHECK(self->IsExceptionPending()); | 
|  | 238 | result->SetJ(0); | 
|  | 239 | return false; | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 240 | } | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 241 |  | 
|  | 242 | // Invoke a non-range lambda | 
|  | 243 | return DoLambdaCall<false, do_access_check>(called_method, self, shadow_frame, inst, inst_data, | 
|  | 244 | result); | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 247 | // Handles invoke-XXX/range instructions. | 
|  | 248 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 249 | template<InvokeType type, bool is_range, bool do_access_check> | 
|  | 250 | static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, | 
|  | 251 | uint16_t inst_data, JValue* result) { | 
|  | 252 | const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); | 
|  | 253 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); | 
| Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 254 | Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC); | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 255 | ArtMethod* sf_method = shadow_frame.GetMethod(); | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 256 | ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>( | 
| Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 257 | method_idx, &receiver, sf_method, self); | 
| Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 258 | // 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] | 259 | if (UNLIKELY(called_method == nullptr)) { | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 260 | CHECK(self->IsExceptionPending()); | 
|  | 261 | result->SetJ(0); | 
|  | 262 | return false; | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 263 | } else if (UNLIKELY(called_method->IsAbstract())) { | 
|  | 264 | ThrowAbstractMethodError(called_method); | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 265 | result->SetJ(0); | 
|  | 266 | return false; | 
|  | 267 | } else { | 
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame^] | 268 | if (type == kVirtual || type == kInterface) { | 
|  | 269 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); | 
|  | 270 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { | 
|  | 271 | instrumentation->InvokeVirtualOrInterface( | 
|  | 272 | self, receiver, sf_method, shadow_frame.GetDexPC(), called_method); | 
|  | 273 | } | 
|  | 274 | } | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 275 | return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data, | 
|  | 276 | result); | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 277 | } | 
|  | 278 | } | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 279 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 280 | // Handles invoke-virtual-quick and invoke-virtual-quick-range instructions. | 
|  | 281 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 282 | template<bool is_range> | 
|  | 283 | static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame, | 
|  | 284 | const Instruction* inst, uint16_t inst_data, | 
|  | 285 | JValue* result) { | 
|  | 286 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); | 
|  | 287 | Object* const receiver = shadow_frame.GetVRegReference(vregC); | 
| Sebastien Hertz | d4beb6b | 2013-10-02 17:07:20 +0200 | [diff] [blame] | 288 | if (UNLIKELY(receiver == nullptr)) { | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 289 | // We lost the reference to the method index so we cannot get a more | 
|  | 290 | // precised exception message. | 
| Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 291 | ThrowNullPointerExceptionFromDexPC(); | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 292 | return false; | 
|  | 293 | } | 
|  | 294 | const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); | 
| Mingyao Yang | 2cdbad7 | 2014-07-16 10:44:41 -0700 | [diff] [blame] | 295 | CHECK(receiver->GetClass()->ShouldHaveEmbeddedImtAndVTable()); | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 296 | ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( | 
|  | 297 | vtable_idx, sizeof(void*)); | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 298 | if (UNLIKELY(called_method == nullptr)) { | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 299 | CHECK(self->IsExceptionPending()); | 
|  | 300 | result->SetJ(0); | 
|  | 301 | return false; | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 302 | } else if (UNLIKELY(called_method->IsAbstract())) { | 
|  | 303 | ThrowAbstractMethodError(called_method); | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 304 | result->SetJ(0); | 
|  | 305 | return false; | 
|  | 306 | } else { | 
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame^] | 307 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); | 
|  | 308 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { | 
|  | 309 | instrumentation->InvokeVirtualOrInterface( | 
|  | 310 | self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); | 
|  | 311 | } | 
| Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 312 | // No need to check since we've been quickened. | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 313 | 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] | 314 | } | 
|  | 315 | } | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 316 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 317 | // Handles iget-XXX and sget-XXX instructions. | 
|  | 318 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 319 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check> | 
| Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 320 | bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 321 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 322 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 323 | // Handles iget-quick, iget-wide-quick and iget-object-quick instructions. | 
|  | 324 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 325 | template<Primitive::Type field_type> | 
| Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 326 | bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 327 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | 479fc1e | 2014-04-04 17:51:34 +0200 | [diff] [blame] | 328 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 329 | // Handles iput-XXX and sput-XXX instructions. | 
|  | 330 | // Returns true on success, otherwise throws an exception and returns false. | 
| Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 331 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check, | 
|  | 332 | bool transaction_active> | 
|  | 333 | bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst, | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 334 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 335 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 336 | // Handles iput-quick, iput-wide-quick and iput-object-quick instructions. | 
|  | 337 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 338 | template<Primitive::Type field_type, bool transaction_active> | 
| Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 339 | 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] | 340 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 341 |  | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 342 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 343 | // Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the | 
|  | 344 | // java.lang.String class is initialized. | 
| Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 345 | 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] | 346 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 347 | Class* java_lang_string_class = String::GetJavaLangString(); | 
|  | 348 | if (UNLIKELY(!java_lang_string_class->IsInitialized())) { | 
|  | 349 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 350 | StackHandleScope<1> hs(self); | 
|  | 351 | Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class)); | 
| Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 352 | if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) { | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 353 | DCHECK(self->IsExceptionPending()); | 
| Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 354 | return nullptr; | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 355 | } | 
|  | 356 | } | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 357 | ArtMethod* method = shadow_frame.GetMethod(); | 
| Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 358 | mirror::Class* declaring_class = method->GetDeclaringClass(); | 
| Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 359 | // MethodVerifier refuses methods with string_idx out of bounds. | 
|  | 360 | DCHECK_LT(string_idx, declaring_class->GetDexCache()->NumStrings()); | 
|  | 361 | mirror::String* s = declaring_class->GetDexCacheStrings()[string_idx].Read(); | 
| Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 362 | if (UNLIKELY(s == nullptr)) { | 
|  | 363 | StackHandleScope<1> hs(self); | 
| Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 364 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache())); | 
| Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 365 | s = Runtime::Current()->GetClassLinker()->ResolveString(*method->GetDexFile(), string_idx, | 
|  | 366 | dex_cache); | 
|  | 367 | } | 
|  | 368 | return s; | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 369 | } | 
|  | 370 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 371 | // Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions. | 
|  | 372 | // 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] | 373 | static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg, | 
|  | 374 | int32_t dividend, int32_t divisor) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 375 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 376 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 377 | if (UNLIKELY(divisor == 0)) { | 
|  | 378 | ThrowArithmeticExceptionDivideByZero(); | 
|  | 379 | return false; | 
|  | 380 | } | 
|  | 381 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { | 
|  | 382 | shadow_frame.SetVReg(result_reg, kMinInt); | 
|  | 383 | } else { | 
|  | 384 | shadow_frame.SetVReg(result_reg, dividend / divisor); | 
|  | 385 | } | 
|  | 386 | return true; | 
|  | 387 | } | 
|  | 388 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 389 | // Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions. | 
|  | 390 | // 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] | 391 | static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg, | 
|  | 392 | int32_t dividend, int32_t divisor) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 393 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 394 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 395 | if (UNLIKELY(divisor == 0)) { | 
|  | 396 | ThrowArithmeticExceptionDivideByZero(); | 
|  | 397 | return false; | 
|  | 398 | } | 
|  | 399 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { | 
|  | 400 | shadow_frame.SetVReg(result_reg, 0); | 
|  | 401 | } else { | 
|  | 402 | shadow_frame.SetVReg(result_reg, dividend % divisor); | 
|  | 403 | } | 
|  | 404 | return true; | 
|  | 405 | } | 
|  | 406 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 407 | // Handles div-long and div-long-2addr instructions. | 
|  | 408 | // 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] | 409 | static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg, | 
|  | 410 | int64_t dividend, int64_t divisor) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 411 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 412 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 413 | if (UNLIKELY(divisor == 0)) { | 
|  | 414 | ThrowArithmeticExceptionDivideByZero(); | 
|  | 415 | return false; | 
|  | 416 | } | 
|  | 417 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { | 
|  | 418 | shadow_frame.SetVRegLong(result_reg, kMinLong); | 
|  | 419 | } else { | 
|  | 420 | shadow_frame.SetVRegLong(result_reg, dividend / divisor); | 
|  | 421 | } | 
|  | 422 | return true; | 
|  | 423 | } | 
|  | 424 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 425 | // Handles rem-long and rem-long-2addr instructions. | 
|  | 426 | // 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] | 427 | static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg, | 
|  | 428 | int64_t dividend, int64_t divisor) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 429 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 430 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 431 | if (UNLIKELY(divisor == 0)) { | 
|  | 432 | ThrowArithmeticExceptionDivideByZero(); | 
|  | 433 | return false; | 
|  | 434 | } | 
|  | 435 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { | 
|  | 436 | shadow_frame.SetVRegLong(result_reg, 0); | 
|  | 437 | } else { | 
|  | 438 | shadow_frame.SetVRegLong(result_reg, dividend % divisor); | 
|  | 439 | } | 
|  | 440 | return true; | 
|  | 441 | } | 
|  | 442 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 443 | // Handles filled-new-array and filled-new-array-range instructions. | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 444 | // Returns true on success, otherwise throws an exception and returns false. | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 445 | template <bool is_range, bool do_access_check, bool transaction_active> | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 446 | bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame, | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 447 | Thread* self, JValue* result); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 448 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 449 | // Handles packed-switch instruction. | 
|  | 450 | // Returns the branch offset to the next instruction to execute. | 
| Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 451 | static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, | 
|  | 452 | uint16_t inst_data) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 453 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 454 | DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); | 
|  | 455 | 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] | 456 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 457 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature)); | 
|  | 458 | uint16_t size = switch_data[1]; | 
| David Brazdil | 2ef645b | 2015-06-17 18:20:52 +0100 | [diff] [blame] | 459 | if (size == 0) { | 
|  | 460 | // Empty packed switch, move forward by 3 (size of PACKED_SWITCH). | 
|  | 461 | return 3; | 
|  | 462 | } | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 463 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); | 
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 464 | DCHECK_ALIGNED(keys, 4); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 465 | int32_t first_key = keys[0]; | 
|  | 466 | const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]); | 
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 467 | DCHECK_ALIGNED(targets, 4); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 468 | int32_t index = test_val - first_key; | 
|  | 469 | if (index >= 0 && index < size) { | 
|  | 470 | return targets[index]; | 
|  | 471 | } else { | 
|  | 472 | // No corresponding value: move forward by 3 (size of PACKED_SWITCH). | 
|  | 473 | return 3; | 
|  | 474 | } | 
|  | 475 | } | 
|  | 476 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 477 | // Handles sparse-switch instruction. | 
|  | 478 | // Returns the branch offset to the next instruction to execute. | 
| Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 479 | static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, | 
|  | 480 | uint16_t inst_data) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 481 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 482 | DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH); | 
|  | 483 | 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] | 484 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 485 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature)); | 
|  | 486 | uint16_t size = switch_data[1]; | 
| Jeff Hao | 935e01a | 2015-03-20 19:44:35 -0700 | [diff] [blame] | 487 | // Return length of SPARSE_SWITCH if size is 0. | 
|  | 488 | if (size == 0) { | 
|  | 489 | return 3; | 
|  | 490 | } | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 491 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); | 
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 492 | DCHECK_ALIGNED(keys, 4); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 493 | const int32_t* entries = keys + size; | 
| Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 494 | DCHECK_ALIGNED(entries, 4); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 495 | int lo = 0; | 
|  | 496 | int hi = size - 1; | 
|  | 497 | while (lo <= hi) { | 
|  | 498 | int mid = (lo + hi) / 2; | 
|  | 499 | int32_t foundVal = keys[mid]; | 
|  | 500 | if (test_val < foundVal) { | 
|  | 501 | hi = mid - 1; | 
|  | 502 | } else if (test_val > foundVal) { | 
|  | 503 | lo = mid + 1; | 
|  | 504 | } else { | 
|  | 505 | return entries[mid]; | 
|  | 506 | } | 
|  | 507 | } | 
|  | 508 | // No corresponding value: move forward by 3 (size of SPARSE_SWITCH). | 
|  | 509 | return 3; | 
|  | 510 | } | 
|  | 511 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 512 | template <bool _do_check> | 
|  | 513 | static inline bool DoBoxLambda(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 514 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 515 | /* | 
|  | 516 | * box-lambda vA, vB /// opcode 0xf8, format 22x | 
|  | 517 | * - vA is the target register where the Object representation of the closure will be stored into | 
|  | 518 | * - vB is a closure (made by create-lambda) | 
|  | 519 | *   (also reads vB + 1) | 
|  | 520 | */ | 
|  | 521 | uint32_t vreg_target_object = inst->VRegA_22x(inst_data); | 
|  | 522 | uint32_t vreg_source_closure = inst->VRegB_22x(); | 
|  | 523 |  | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 524 | ArtMethod* closure_method = ReadLambdaClosureFromVRegsOrThrow(shadow_frame, | 
|  | 525 | vreg_source_closure); | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 526 |  | 
|  | 527 | // Failed lambda target runtime check, an exception was raised. | 
|  | 528 | if (UNLIKELY(closure_method == nullptr)) { | 
|  | 529 | CHECK(self->IsExceptionPending()); | 
|  | 530 | return false; | 
|  | 531 | } | 
|  | 532 |  | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 533 | mirror::Object* closure_as_object = | 
|  | 534 | Runtime::Current()->GetLambdaBoxTable()->BoxLambda(closure_method); | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 535 |  | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 536 | // Failed to box the lambda, an exception was raised. | 
|  | 537 | if (UNLIKELY(closure_as_object == nullptr)) { | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 538 | CHECK(self->IsExceptionPending()); | 
|  | 539 | return false; | 
|  | 540 | } | 
|  | 541 |  | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 542 | shadow_frame.SetVRegReference(vreg_target_object, closure_as_object); | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 543 | return true; | 
|  | 544 | } | 
|  | 545 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 546 | template <bool _do_check> SHARED_REQUIRES(Locks::mutator_lock_) | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 547 | static inline bool DoUnboxLambda(Thread* self, | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 548 | ShadowFrame& shadow_frame, | 
|  | 549 | const Instruction* inst, | 
|  | 550 | uint16_t inst_data) { | 
|  | 551 | /* | 
|  | 552 | * unbox-lambda vA, vB, [type id] /// opcode 0xf9, format 22c | 
|  | 553 | * - vA is the target register where the closure will be written into | 
|  | 554 | *   (also writes vA + 1) | 
|  | 555 | * - vB is the Object representation of the closure (made by box-lambda) | 
|  | 556 | */ | 
|  | 557 | uint32_t vreg_target_closure = inst->VRegA_22c(inst_data); | 
|  | 558 | uint32_t vreg_source_object = inst->VRegB_22c(); | 
|  | 559 |  | 
|  | 560 | // Raise NullPointerException if object is null | 
|  | 561 | mirror::Object* boxed_closure_object = shadow_frame.GetVRegReference(vreg_source_object); | 
|  | 562 | if (UNLIKELY(boxed_closure_object == nullptr)) { | 
|  | 563 | ThrowNullPointerExceptionFromInterpreter(); | 
|  | 564 | return false; | 
|  | 565 | } | 
|  | 566 |  | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 567 | ArtMethod* unboxed_closure = nullptr; | 
|  | 568 | // Raise an exception if unboxing fails. | 
|  | 569 | if (!Runtime::Current()->GetLambdaBoxTable()->UnboxLambda(boxed_closure_object, | 
| Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 570 | &unboxed_closure)) { | 
| Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 571 | CHECK(self->IsExceptionPending()); | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 572 | return false; | 
|  | 573 | } | 
|  | 574 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 575 | DCHECK(unboxed_closure != nullptr); | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 576 | WriteLambdaClosureIntoVRegs(shadow_frame, *unboxed_closure, vreg_target_closure); | 
|  | 577 | return true; | 
|  | 578 | } | 
|  | 579 |  | 
| Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 580 | uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame, | 
| Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 581 | uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 582 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 583 |  | 
| Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 584 | NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) | 
|  | 585 | __attribute__((cold)) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 586 | SHARED_REQUIRES(Locks::mutator_lock_); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 587 |  | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 588 | static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst, | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 589 | const uint32_t dex_pc) | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 590 | SHARED_REQUIRES(Locks::mutator_lock_) { | 
| Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 591 | constexpr bool kTracing = false; | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 592 | if (kTracing) { | 
|  | 593 | #define TRACE_LOG std::cerr | 
| Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 594 | std::ostringstream oss; | 
|  | 595 | oss << PrettyMethod(shadow_frame.GetMethod()) | 
|  | 596 | << StringPrintf("\n0x%x: ", dex_pc) | 
| Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 597 | << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; | 
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 598 | for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) { | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 599 | uint32_t raw_value = shadow_frame.GetVReg(i); | 
|  | 600 | Object* ref_value = shadow_frame.GetVRegReference(i); | 
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 601 | oss << StringPrintf(" vreg%u=0x%08X", i, raw_value); | 
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 602 | if (ref_value != nullptr) { | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 603 | if (ref_value->GetClass()->IsStringClass() && | 
| Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 604 | ref_value->AsString()->GetValue() != nullptr) { | 
| Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 605 | oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\""; | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 606 | } else { | 
| Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 607 | oss << "/" << PrettyTypeOf(ref_value); | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 608 | } | 
|  | 609 | } | 
|  | 610 | } | 
| Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 611 | TRACE_LOG << oss.str() << "\n"; | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 612 | #undef TRACE_LOG | 
|  | 613 | } | 
|  | 614 | } | 
|  | 615 |  | 
| Sebastien Hertz | 1eda226 | 2013-09-09 16:53:14 +0200 | [diff] [blame] | 616 | static inline bool IsBackwardBranch(int32_t branch_offset) { | 
|  | 617 | return branch_offset <= 0; | 
|  | 618 | } | 
|  | 619 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 620 | // Explicitly instantiate all DoInvoke functions. | 
| Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 621 | #define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check)                      \ | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 622 | template SHARED_REQUIRES(Locks::mutator_lock_)                                     \ | 
| Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 623 | bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame,      \ | 
|  | 624 | const Instruction* inst, uint16_t inst_data,  \ | 
|  | 625 | JValue* result) | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 626 |  | 
|  | 627 | #define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type)       \ | 
|  | 628 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false);  \ | 
|  | 629 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true);   \ | 
|  | 630 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false);   \ | 
|  | 631 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true); | 
|  | 632 |  | 
| Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 633 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic)      // invoke-static/range. | 
|  | 634 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect)      // invoke-direct/range. | 
|  | 635 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual)     // invoke-virtual/range. | 
|  | 636 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper)       // invoke-super/range. | 
|  | 637 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface)   // invoke-interface/range. | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 638 | #undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL | 
|  | 639 | #undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL | 
|  | 640 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 641 | // Explicitly instantiate all DoInvokeVirtualQuick functions. | 
| Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 642 | #define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range)                    \ | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 643 | template SHARED_REQUIRES(Locks::mutator_lock_)                               \ | 
| Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 644 | bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame,      \ | 
|  | 645 | const Instruction* inst, uint16_t inst_data,  \ | 
|  | 646 | JValue* result) | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 647 |  | 
|  | 648 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false);  // invoke-virtual-quick. | 
|  | 649 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true);   // invoke-virtual-quick-range. | 
|  | 650 | #undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK | 
|  | 651 |  | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 652 | // Explicitly instantiate all DoCreateLambda functions. | 
|  | 653 | #define EXPLICIT_DO_CREATE_LAMBDA_DECL(_do_check)                                    \ | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 654 | template SHARED_REQUIRES(Locks::mutator_lock_)                                 \ | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 655 | bool DoCreateLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame,              \ | 
|  | 656 | const Instruction* inst) | 
|  | 657 |  | 
|  | 658 | EXPLICIT_DO_CREATE_LAMBDA_DECL(false);  // create-lambda | 
|  | 659 | EXPLICIT_DO_CREATE_LAMBDA_DECL(true);   // create-lambda | 
|  | 660 | #undef EXPLICIT_DO_CREATE_LAMBDA_DECL | 
|  | 661 |  | 
|  | 662 | // Explicitly instantiate all DoInvokeLambda functions. | 
|  | 663 | #define EXPLICIT_DO_INVOKE_LAMBDA_DECL(_do_check)                                    \ | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 664 | template SHARED_REQUIRES(Locks::mutator_lock_)                                 \ | 
| Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 665 | bool DoInvokeLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ | 
|  | 666 | uint16_t inst_data, JValue* result); | 
|  | 667 |  | 
|  | 668 | EXPLICIT_DO_INVOKE_LAMBDA_DECL(false);  // invoke-lambda | 
|  | 669 | EXPLICIT_DO_INVOKE_LAMBDA_DECL(true);   // invoke-lambda | 
|  | 670 | #undef EXPLICIT_DO_INVOKE_LAMBDA_DECL | 
|  | 671 |  | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 672 | // Explicitly instantiate all DoBoxLambda functions. | 
|  | 673 | #define EXPLICIT_DO_BOX_LAMBDA_DECL(_do_check)                                                \ | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 674 | template SHARED_REQUIRES(Locks::mutator_lock_)                                          \ | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 675 | bool DoBoxLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ | 
|  | 676 | uint16_t inst_data); | 
|  | 677 |  | 
|  | 678 | EXPLICIT_DO_BOX_LAMBDA_DECL(false);  // box-lambda | 
|  | 679 | EXPLICIT_DO_BOX_LAMBDA_DECL(true);   // box-lambda | 
|  | 680 | #undef EXPLICIT_DO_BOX_LAMBDA_DECL | 
|  | 681 |  | 
|  | 682 | // Explicitly instantiate all DoUnBoxLambda functions. | 
|  | 683 | #define EXPLICIT_DO_UNBOX_LAMBDA_DECL(_do_check)                                                \ | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 684 | template SHARED_REQUIRES(Locks::mutator_lock_)                                            \ | 
| Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 685 | bool DoUnboxLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ | 
|  | 686 | uint16_t inst_data); | 
|  | 687 |  | 
|  | 688 | EXPLICIT_DO_UNBOX_LAMBDA_DECL(false);  // unbox-lambda | 
|  | 689 | EXPLICIT_DO_UNBOX_LAMBDA_DECL(true);   // unbox-lambda | 
|  | 690 | #undef EXPLICIT_DO_BOX_LAMBDA_DECL | 
|  | 691 |  | 
| Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 692 |  | 
| Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 693 | }  // namespace interpreter | 
|  | 694 | }  // namespace art | 
|  | 695 |  | 
|  | 696 | #endif  // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_ |