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" |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 39 | #include "lambda/art_lambda_method.h" |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 40 | #include "lambda/box_table.h" |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 41 | #include "lambda/closure.h" |
| 42 | #include "lambda/closure_builder-inl.h" |
| 43 | #include "lambda/leaking_allocator.h" |
| 44 | #include "lambda/shorty_field_type.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 45 | #include "mirror/class-inl.h" |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 46 | #include "mirror/method.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 47 | #include "mirror/object-inl.h" |
| 48 | #include "mirror/object_array-inl.h" |
Douglas Leung | 4965c02 | 2014-06-11 11:41:11 -0700 | [diff] [blame] | 49 | #include "mirror/string-inl.h" |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 50 | #include "stack.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 51 | #include "thread.h" |
| 52 | #include "well_known_classes.h" |
| 53 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 54 | using ::art::ArtMethod; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 55 | using ::art::mirror::Array; |
| 56 | using ::art::mirror::BooleanArray; |
| 57 | using ::art::mirror::ByteArray; |
| 58 | using ::art::mirror::CharArray; |
| 59 | using ::art::mirror::Class; |
| 60 | using ::art::mirror::ClassLoader; |
| 61 | using ::art::mirror::IntArray; |
| 62 | using ::art::mirror::LongArray; |
| 63 | using ::art::mirror::Object; |
| 64 | using ::art::mirror::ObjectArray; |
| 65 | using ::art::mirror::ShortArray; |
| 66 | using ::art::mirror::String; |
| 67 | using ::art::mirror::Throwable; |
| 68 | |
| 69 | namespace art { |
| 70 | namespace interpreter { |
| 71 | |
buzbee | 1452bee | 2015-03-06 14:43:04 -0800 | [diff] [blame] | 72 | // External references to all interpreter implementations. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 73 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 74 | template<bool do_access_check, bool transaction_active> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 75 | extern JValue ExecuteSwitchImpl(Thread* self, const DexFile::CodeItem* code_item, |
buzbee | 1452bee | 2015-03-06 14:43:04 -0800 | [diff] [blame] | 76 | ShadowFrame& shadow_frame, JValue result_register, |
| 77 | bool interpret_one_instruction); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 78 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 79 | template<bool do_access_check, bool transaction_active> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 80 | extern JValue ExecuteGotoImpl(Thread* self, const DexFile::CodeItem* code_item, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 81 | ShadowFrame& shadow_frame, JValue result_register); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 82 | |
buzbee | 1452bee | 2015-03-06 14:43:04 -0800 | [diff] [blame] | 83 | // Mterp does not support transactions or access check, thus no templated versions. |
| 84 | extern "C" bool ExecuteMterpImpl(Thread* self, const DexFile::CodeItem* code_item, |
| 85 | ShadowFrame* shadow_frame, JValue* result_register); |
| 86 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 87 | void ThrowNullPointerExceptionFromInterpreter() |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 88 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | da843e1 | 2014-05-28 19:28:31 +0200 | [diff] [blame] | 89 | |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 90 | template <bool kMonitorCounting> |
| 91 | static inline void DoMonitorEnter(Thread* self, |
| 92 | ShadowFrame* frame, |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 93 | Object* ref) |
| 94 | NO_THREAD_SAFETY_ANALYSIS |
| 95 | REQUIRES(!Roles::uninterruptible_) { |
| 96 | StackHandleScope<1> hs(self); |
| 97 | Handle<Object> h_ref(hs.NewHandle(ref)); |
| 98 | h_ref->MonitorEnter(self); |
Andreas Gampe | 56fdd0e | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 99 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 100 | frame->GetLockCountData().AddMonitor(self, h_ref.Get()); |
| 101 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 102 | } |
| 103 | |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 104 | template <bool kMonitorCounting> |
| 105 | static inline void DoMonitorExit(Thread* self, |
| 106 | ShadowFrame* frame, |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 107 | Object* ref) |
| 108 | NO_THREAD_SAFETY_ANALYSIS |
| 109 | REQUIRES(!Roles::uninterruptible_) { |
| 110 | StackHandleScope<1> hs(self); |
| 111 | Handle<Object> h_ref(hs.NewHandle(ref)); |
| 112 | h_ref->MonitorExit(self); |
Andreas Gampe | 56fdd0e | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 113 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 114 | frame->GetLockCountData().RemoveMonitorOrThrow(self, h_ref.Get()); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | template <bool kMonitorCounting> |
| 119 | static inline bool DoMonitorCheckOnExit(Thread* self, ShadowFrame* frame) |
| 120 | NO_THREAD_SAFETY_ANALYSIS |
| 121 | REQUIRES(!Roles::uninterruptible_) { |
| 122 | if (kMonitorCounting && frame->GetMethod()->MustCountLocks()) { |
| 123 | return frame->GetLockCountData().CheckAllMonitorsReleasedOrThrow(self); |
| 124 | } |
| 125 | return true; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 128 | void AbortTransactionF(Thread* self, const char* fmt, ...) |
| 129 | __attribute__((__format__(__printf__, 2, 3))) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 130 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 131 | |
| 132 | void AbortTransactionV(Thread* self, const char* fmt, va_list args) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 133 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | b2c7ead | 2014-04-29 11:13:16 -0700 | [diff] [blame] | 134 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 135 | void RecordArrayElementsInTransaction(mirror::Array* array, int32_t count) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 136 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 137 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 138 | // Invokes the given method. This is part of the invocation support and is used by DoInvoke and |
| 139 | // DoInvokeVirtualQuick functions. |
| 140 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 141 | template<bool is_range, bool do_assignability_check> |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 142 | bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 143 | const Instruction* inst, uint16_t inst_data, JValue* result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 144 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 145 | // Invokes the given lambda closure. This is part of the invocation support and is used by |
| 146 | // DoLambdaInvoke functions. |
| 147 | // Returns true on success, otherwise throws an exception and returns false. |
| 148 | template<bool is_range, bool do_assignability_check> |
| 149 | bool DoLambdaCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, |
| 150 | const Instruction* inst, uint16_t inst_data, JValue* result); |
| 151 | |
| 152 | // Validates that the art method corresponding to a lambda method target |
| 153 | // is semantically valid: |
| 154 | // |
| 155 | // Must be ACC_STATIC and ACC_LAMBDA. Must be a concrete managed implementation |
| 156 | // (i.e. not native, not proxy, not abstract, ...). |
| 157 | // |
| 158 | // If the validation fails, return false and raise an exception. |
| 159 | static inline bool IsValidLambdaTargetOrThrow(ArtMethod* called_method) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 160 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 161 | bool success = false; |
| 162 | |
| 163 | if (UNLIKELY(called_method == nullptr)) { |
| 164 | // The shadow frame should already be pushed, so we don't need to update it. |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 165 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 166 | called_method->ThrowInvocationTimeError(); |
| 167 | // We got an error. |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 168 | // TODO(iam): Also handle the case when the method is non-static, what error do we throw? |
| 169 | // TODO(iam): Also make sure that ACC_LAMBDA is set. |
| 170 | } else if (UNLIKELY(called_method->GetCodeItem() == nullptr)) { |
| 171 | // Method could be native, proxy method, etc. Lambda targets have to be concrete impls, |
| 172 | // so don't allow this. |
| 173 | } else { |
| 174 | success = true; |
| 175 | } |
| 176 | |
| 177 | return success; |
| 178 | } |
| 179 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 180 | // Write out the 'Closure*' into vreg and vreg+1, as if it was a jlong. |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 181 | static inline void WriteLambdaClosureIntoVRegs(ShadowFrame& shadow_frame, |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 182 | const lambda::Closure& lambda_closure, |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 183 | uint32_t vreg) { |
| 184 | // Split the method into a lo and hi 32 bits so we can encode them into 2 virtual registers. |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 185 | uint32_t closure_lo = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(&lambda_closure)); |
| 186 | uint32_t closure_hi = static_cast<uint32_t>(reinterpret_cast<uint64_t>(&lambda_closure) |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 187 | >> BitSizeOf<uint32_t>()); |
| 188 | // Use uint64_t instead of uintptr_t to allow shifting past the max on 32-bit. |
| 189 | static_assert(sizeof(uint64_t) >= sizeof(uintptr_t), "Impossible"); |
| 190 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 191 | DCHECK_NE(closure_lo | closure_hi, 0u); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 192 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 193 | shadow_frame.SetVReg(vreg, closure_lo); |
| 194 | shadow_frame.SetVReg(vreg + 1, closure_hi); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 197 | // Handles create-lambda instructions. |
| 198 | // Returns true on success, otherwise throws an exception and returns false. |
| 199 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) |
| 200 | // |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 201 | // The closure must be allocated big enough to hold the data, and should not be |
| 202 | // pre-initialized. It is initialized with the actual captured variables as a side-effect, |
| 203 | // although this should be unimportant to the caller since this function also handles storing it to |
| 204 | // the ShadowFrame. |
| 205 | // |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 206 | // As a work-in-progress implementation, this shoves the ArtMethod object corresponding |
| 207 | // to the target dex method index into the target register vA and vA + 1. |
| 208 | template<bool do_access_check> |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 209 | static inline bool DoCreateLambda(Thread* self, |
| 210 | const Instruction* inst, |
| 211 | /*inout*/ShadowFrame& shadow_frame, |
| 212 | /*inout*/lambda::ClosureBuilder* closure_builder, |
| 213 | /*inout*/lambda::Closure* uninitialized_closure) { |
| 214 | DCHECK(closure_builder != nullptr); |
| 215 | DCHECK(uninitialized_closure != nullptr); |
| 216 | DCHECK_ALIGNED(uninitialized_closure, alignof(lambda::Closure)); |
| 217 | |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 218 | using lambda::ArtLambdaMethod; |
| 219 | using lambda::LeakingAllocator; |
| 220 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 221 | /* |
| 222 | * create-lambda is opcode 0x21c |
| 223 | * - vA is the target register where the closure will be stored into |
| 224 | * (also stores into vA + 1) |
| 225 | * - vB is the method index which will be the target for a later invoke-lambda |
| 226 | */ |
| 227 | const uint32_t method_idx = inst->VRegB_21c(); |
| 228 | mirror::Object* receiver = nullptr; // Always static. (see 'kStatic') |
| 229 | ArtMethod* sf_method = shadow_frame.GetMethod(); |
| 230 | ArtMethod* const called_method = FindMethodFromCode<kStatic, do_access_check>( |
Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 231 | method_idx, &receiver, sf_method, self); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 232 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 233 | uint32_t vreg_dest_closure = inst->VRegA_21c(); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 234 | |
| 235 | if (UNLIKELY(!IsValidLambdaTargetOrThrow(called_method))) { |
| 236 | CHECK(self->IsExceptionPending()); |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 237 | shadow_frame.SetVReg(vreg_dest_closure, 0u); |
| 238 | shadow_frame.SetVReg(vreg_dest_closure + 1, 0u); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 239 | return false; |
| 240 | } |
| 241 | |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 242 | ArtLambdaMethod* initialized_lambda_method; |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 243 | // Initialize the ArtLambdaMethod with the right data. |
| 244 | { |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 245 | // Allocate enough memory to store a well-aligned ArtLambdaMethod. |
| 246 | // This is not the final type yet since the data starts out uninitialized. |
| 247 | LeakingAllocator::AlignedMemoryStorage<ArtLambdaMethod>* uninitialized_lambda_method = |
| 248 | LeakingAllocator::AllocateMemory<ArtLambdaMethod>(self); |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 249 | |
| 250 | std::string captured_variables_shorty = closure_builder->GetCapturedVariableShortyTypes(); |
| 251 | std::string captured_variables_long_type_desc; |
| 252 | |
| 253 | // Synthesize a long type descriptor from the short one. |
| 254 | for (char shorty : captured_variables_shorty) { |
| 255 | lambda::ShortyFieldType shorty_field_type(shorty); |
| 256 | if (shorty_field_type.IsObject()) { |
| 257 | // Not the true type, but good enough until we implement verifier support. |
| 258 | captured_variables_long_type_desc += "Ljava/lang/Object;"; |
| 259 | UNIMPLEMENTED(FATAL) << "create-lambda with an object captured variable"; |
| 260 | } else if (shorty_field_type.IsLambda()) { |
| 261 | // Not the true type, but good enough until we implement verifier support. |
| 262 | captured_variables_long_type_desc += "Ljava/lang/Runnable;"; |
| 263 | UNIMPLEMENTED(FATAL) << "create-lambda with a lambda captured variable"; |
| 264 | } else { |
| 265 | // The primitive types have the same length shorty or not, so this is always correct. |
| 266 | DCHECK(shorty_field_type.IsPrimitive()); |
| 267 | captured_variables_long_type_desc += shorty_field_type; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | // Copy strings to dynamically allocated storage. This leaks, but that's ok. Fix it later. |
| 272 | // TODO: Strings need to come from the DexFile, so they won't need their own allocations. |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 273 | char* captured_variables_type_desc = LeakingAllocator::MakeFlexibleInstance<char>( |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 274 | self, |
| 275 | captured_variables_long_type_desc.size() + 1); |
| 276 | strcpy(captured_variables_type_desc, captured_variables_long_type_desc.c_str()); |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 277 | char* captured_variables_shorty_copy = LeakingAllocator::MakeFlexibleInstance<char>( |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 278 | self, |
| 279 | captured_variables_shorty.size() + 1); |
| 280 | strcpy(captured_variables_shorty_copy, captured_variables_shorty.c_str()); |
| 281 | |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 282 | // After initialization, the object at the storage is well-typed. Use strong type going forward. |
| 283 | initialized_lambda_method = |
| 284 | new (uninitialized_lambda_method) ArtLambdaMethod(called_method, |
| 285 | captured_variables_type_desc, |
| 286 | captured_variables_shorty_copy, |
| 287 | true); // innate lambda |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | // Write all the closure captured variables and the closure header into the closure. |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 291 | lambda::Closure* initialized_closure = |
| 292 | closure_builder->CreateInPlace(uninitialized_closure, initialized_lambda_method); |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 293 | |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 294 | WriteLambdaClosureIntoVRegs(/*inout*/shadow_frame, *initialized_closure, vreg_dest_closure); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 295 | return true; |
| 296 | } |
| 297 | |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 298 | // Reads out the 'ArtMethod*' stored inside of vreg and vreg+1 |
| 299 | // |
| 300 | // Validates that the art method points to a valid lambda function, otherwise throws |
| 301 | // an exception and returns null. |
| 302 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 303 | static inline lambda::Closure* ReadLambdaClosureFromVRegsOrThrow(ShadowFrame& shadow_frame, |
| 304 | uint32_t vreg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 305 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 306 | // Lambda closures take up a consecutive pair of 2 virtual registers. |
| 307 | // On 32-bit the high bits are always 0. |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 308 | uint32_t vc_value_lo = shadow_frame.GetVReg(vreg); |
| 309 | uint32_t vc_value_hi = shadow_frame.GetVReg(vreg + 1); |
| 310 | |
| 311 | uint64_t vc_value_ptr = (static_cast<uint64_t>(vc_value_hi) << BitSizeOf<uint32_t>()) |
| 312 | | vc_value_lo; |
| 313 | |
| 314 | // Use uint64_t instead of uintptr_t to allow left-shifting past the max on 32-bit. |
| 315 | static_assert(sizeof(uint64_t) >= sizeof(uintptr_t), "Impossible"); |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 316 | lambda::Closure* const lambda_closure = reinterpret_cast<lambda::Closure*>(vc_value_ptr); |
| 317 | DCHECK_ALIGNED(lambda_closure, alignof(lambda::Closure)); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 318 | |
| 319 | // Guard against the user passing a null closure, which is odd but (sadly) semantically valid. |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 320 | if (UNLIKELY(lambda_closure == nullptr)) { |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 321 | ThrowNullPointerExceptionFromInterpreter(); |
| 322 | return nullptr; |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 323 | } else if (UNLIKELY(!IsValidLambdaTargetOrThrow(lambda_closure->GetTargetMethod()))) { |
| 324 | // Sanity check against data corruption. |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 325 | return nullptr; |
| 326 | } |
| 327 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 328 | return lambda_closure; |
| 329 | } |
| 330 | |
| 331 | // Forward declaration for lock annotations. See below for documentation. |
| 332 | template <bool do_access_check> |
| 333 | static inline const char* GetStringDataByDexStringIndexOrThrow(ShadowFrame& shadow_frame, |
| 334 | uint32_t string_idx) |
| 335 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 336 | |
| 337 | // Find the c-string data corresponding to a dex file's string index. |
| 338 | // Otherwise, returns null if not found and throws a VerifyError. |
| 339 | // |
| 340 | // Note that with do_access_check=false, we never return null because the verifier |
| 341 | // must guard against invalid string indices. |
| 342 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) |
| 343 | template <bool do_access_check> |
| 344 | static inline const char* GetStringDataByDexStringIndexOrThrow(ShadowFrame& shadow_frame, |
| 345 | uint32_t string_idx) { |
| 346 | ArtMethod* method = shadow_frame.GetMethod(); |
| 347 | const DexFile* dex_file = method->GetDexFile(); |
| 348 | |
| 349 | mirror::Class* declaring_class = method->GetDeclaringClass(); |
| 350 | if (!do_access_check) { |
| 351 | // MethodVerifier refuses methods with string_idx out of bounds. |
| 352 | DCHECK_LT(string_idx, declaring_class->GetDexCache()->NumStrings()); |
| 353 | } else { |
| 354 | // Access checks enabled: perform string index bounds ourselves. |
| 355 | if (string_idx >= dex_file->GetHeader().string_ids_size_) { |
| 356 | ThrowVerifyError(declaring_class, "String index '%" PRIu32 "' out of bounds", |
| 357 | string_idx); |
| 358 | return nullptr; |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | const char* type_string = dex_file->StringDataByIdx(string_idx); |
| 363 | |
| 364 | if (UNLIKELY(type_string == nullptr)) { |
| 365 | CHECK_EQ(false, do_access_check) |
| 366 | << " verifier should've caught invalid string index " << string_idx; |
| 367 | CHECK_EQ(true, do_access_check) |
| 368 | << " string idx size check should've caught invalid string index " << string_idx; |
| 369 | } |
| 370 | |
| 371 | return type_string; |
| 372 | } |
| 373 | |
| 374 | // Handles capture-variable instructions. |
| 375 | // Returns true on success, otherwise throws an exception and returns false. |
| 376 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) |
| 377 | template<bool do_access_check> |
| 378 | static inline bool DoCaptureVariable(Thread* self, |
| 379 | const Instruction* inst, |
| 380 | /*inout*/ShadowFrame& shadow_frame, |
| 381 | /*inout*/lambda::ClosureBuilder* closure_builder) { |
| 382 | DCHECK(closure_builder != nullptr); |
| 383 | using lambda::ShortyFieldType; |
| 384 | /* |
| 385 | * capture-variable is opcode 0xf6, fmt 0x21c |
| 386 | * - vA is the source register of the variable that will be captured |
| 387 | * - vB is the string ID of the variable's type that will be captured |
| 388 | */ |
| 389 | const uint32_t source_vreg = inst->VRegA_21c(); |
| 390 | const uint32_t string_idx = inst->VRegB_21c(); |
| 391 | // TODO: this should be a proper [type id] instead of a [string ID] pointing to a type. |
| 392 | |
| 393 | const char* type_string = GetStringDataByDexStringIndexOrThrow<do_access_check>(shadow_frame, |
| 394 | string_idx); |
| 395 | if (UNLIKELY(type_string == nullptr)) { |
| 396 | CHECK(self->IsExceptionPending()); |
| 397 | return false; |
| 398 | } |
| 399 | |
| 400 | char type_first_letter = type_string[0]; |
| 401 | ShortyFieldType shorty_type; |
| 402 | if (do_access_check && |
| 403 | UNLIKELY(!ShortyFieldType::MaybeCreate(type_first_letter, /*out*/&shorty_type))) { // NOLINT: [whitespace/comma] [3] |
| 404 | ThrowVerifyError(shadow_frame.GetMethod()->GetDeclaringClass(), |
| 405 | "capture-variable vB must be a valid type"); |
| 406 | return false; |
| 407 | } else { |
| 408 | // Already verified that the type is valid. |
| 409 | shorty_type = ShortyFieldType(type_first_letter); |
| 410 | } |
| 411 | |
| 412 | const size_t captured_variable_count = closure_builder->GetCaptureCount(); |
| 413 | |
| 414 | // Note: types are specified explicitly so that the closure is packed tightly. |
| 415 | switch (shorty_type) { |
| 416 | case ShortyFieldType::kBoolean: { |
| 417 | uint32_t primitive_narrow_value = shadow_frame.GetVReg(source_vreg); |
| 418 | closure_builder->CaptureVariablePrimitive<bool>(primitive_narrow_value); |
| 419 | break; |
| 420 | } |
| 421 | case ShortyFieldType::kByte: { |
| 422 | uint32_t primitive_narrow_value = shadow_frame.GetVReg(source_vreg); |
| 423 | closure_builder->CaptureVariablePrimitive<int8_t>(primitive_narrow_value); |
| 424 | break; |
| 425 | } |
| 426 | case ShortyFieldType::kChar: { |
| 427 | uint32_t primitive_narrow_value = shadow_frame.GetVReg(source_vreg); |
| 428 | closure_builder->CaptureVariablePrimitive<uint16_t>(primitive_narrow_value); |
| 429 | break; |
| 430 | } |
| 431 | case ShortyFieldType::kShort: { |
| 432 | uint32_t primitive_narrow_value = shadow_frame.GetVReg(source_vreg); |
| 433 | closure_builder->CaptureVariablePrimitive<int16_t>(primitive_narrow_value); |
| 434 | break; |
| 435 | } |
| 436 | case ShortyFieldType::kInt: { |
| 437 | uint32_t primitive_narrow_value = shadow_frame.GetVReg(source_vreg); |
| 438 | closure_builder->CaptureVariablePrimitive<int32_t>(primitive_narrow_value); |
| 439 | break; |
| 440 | } |
| 441 | case ShortyFieldType::kDouble: { |
| 442 | closure_builder->CaptureVariablePrimitive(shadow_frame.GetVRegDouble(source_vreg)); |
| 443 | break; |
| 444 | } |
| 445 | case ShortyFieldType::kFloat: { |
| 446 | closure_builder->CaptureVariablePrimitive(shadow_frame.GetVRegFloat(source_vreg)); |
| 447 | break; |
| 448 | } |
| 449 | case ShortyFieldType::kLambda: { |
| 450 | UNIMPLEMENTED(FATAL) << " capture-variable with type kLambda"; |
| 451 | // TODO: Capturing lambdas recursively will be done at a later time. |
| 452 | UNREACHABLE(); |
| 453 | } |
| 454 | case ShortyFieldType::kLong: { |
| 455 | closure_builder->CaptureVariablePrimitive(shadow_frame.GetVRegLong(source_vreg)); |
| 456 | break; |
| 457 | } |
| 458 | case ShortyFieldType::kObject: { |
| 459 | closure_builder->CaptureVariableObject(shadow_frame.GetVRegReference(source_vreg)); |
| 460 | UNIMPLEMENTED(FATAL) << " capture-variable with type kObject"; |
| 461 | // TODO: finish implementing this. disabled for now since we can't track lambda refs for GC. |
| 462 | UNREACHABLE(); |
| 463 | } |
| 464 | |
| 465 | default: |
| 466 | LOG(FATAL) << "Invalid shorty type value " << shorty_type; |
| 467 | UNREACHABLE(); |
| 468 | } |
| 469 | |
| 470 | DCHECK_EQ(captured_variable_count + 1, closure_builder->GetCaptureCount()); |
| 471 | |
| 472 | return true; |
| 473 | } |
| 474 | |
| 475 | // Handles capture-variable instructions. |
| 476 | // Returns true on success, otherwise throws an exception and returns false. |
| 477 | // (Exceptions are thrown by creating a new exception and then being put in the thread TLS) |
| 478 | template<bool do_access_check> |
| 479 | static inline bool DoLiberateVariable(Thread* self, |
| 480 | const Instruction* inst, |
| 481 | size_t captured_variable_index, |
| 482 | /*inout*/ShadowFrame& shadow_frame) { |
| 483 | using lambda::ShortyFieldType; |
| 484 | /* |
| 485 | * liberate-variable is opcode 0xf7, fmt 0x22c |
| 486 | * - vA is the destination register |
| 487 | * - vB is the register with the lambda closure in it |
| 488 | * - vC is the string ID which needs to be a valid field type descriptor |
| 489 | */ |
| 490 | |
| 491 | const uint32_t dest_vreg = inst->VRegA_22c(); |
| 492 | const uint32_t closure_vreg = inst->VRegB_22c(); |
| 493 | const uint32_t string_idx = inst->VRegC_22c(); |
| 494 | // TODO: this should be a proper [type id] instead of a [string ID] pointing to a type. |
| 495 | |
| 496 | |
| 497 | // Synthesize a long type descriptor from a shorty type descriptor list. |
| 498 | // TODO: Fix the dex encoding to contain the long and short type descriptors. |
| 499 | const char* type_string = GetStringDataByDexStringIndexOrThrow<do_access_check>(shadow_frame, |
| 500 | string_idx); |
| 501 | if (UNLIKELY(do_access_check && type_string == nullptr)) { |
| 502 | CHECK(self->IsExceptionPending()); |
| 503 | shadow_frame.SetVReg(dest_vreg, 0); |
| 504 | return false; |
| 505 | } |
| 506 | |
| 507 | char type_first_letter = type_string[0]; |
| 508 | ShortyFieldType shorty_type; |
| 509 | if (do_access_check && |
| 510 | UNLIKELY(!ShortyFieldType::MaybeCreate(type_first_letter, /*out*/&shorty_type))) { // NOLINT: [whitespace/comma] [3] |
| 511 | ThrowVerifyError(shadow_frame.GetMethod()->GetDeclaringClass(), |
| 512 | "liberate-variable vC must be a valid type"); |
| 513 | shadow_frame.SetVReg(dest_vreg, 0); |
| 514 | return false; |
| 515 | } else { |
| 516 | // Already verified that the type is valid. |
| 517 | shorty_type = ShortyFieldType(type_first_letter); |
| 518 | } |
| 519 | |
| 520 | // Check for closure being null *after* the type check. |
| 521 | // This way we can access the type info in case we fail later, to know how many vregs to clear. |
| 522 | const lambda::Closure* lambda_closure = |
| 523 | ReadLambdaClosureFromVRegsOrThrow(/*inout*/shadow_frame, closure_vreg); |
| 524 | |
| 525 | // Failed lambda target runtime check, an exception was raised. |
| 526 | if (UNLIKELY(lambda_closure == nullptr)) { |
| 527 | CHECK(self->IsExceptionPending()); |
| 528 | |
| 529 | // Clear the destination vreg(s) to be safe. |
| 530 | shadow_frame.SetVReg(dest_vreg, 0); |
| 531 | if (shorty_type.IsPrimitiveWide() || shorty_type.IsLambda()) { |
| 532 | shadow_frame.SetVReg(dest_vreg + 1, 0); |
| 533 | } |
| 534 | return false; |
| 535 | } |
| 536 | |
| 537 | if (do_access_check && |
| 538 | UNLIKELY(captured_variable_index >= lambda_closure->GetNumberOfCapturedVariables())) { |
| 539 | ThrowVerifyError(shadow_frame.GetMethod()->GetDeclaringClass(), |
| 540 | "liberate-variable captured variable index %zu out of bounds", |
| 541 | lambda_closure->GetNumberOfCapturedVariables()); |
| 542 | // Clear the destination vreg(s) to be safe. |
| 543 | shadow_frame.SetVReg(dest_vreg, 0); |
| 544 | if (shorty_type.IsPrimitiveWide() || shorty_type.IsLambda()) { |
| 545 | shadow_frame.SetVReg(dest_vreg + 1, 0); |
| 546 | } |
| 547 | return false; |
| 548 | } |
| 549 | |
| 550 | // Verify that the runtime type of the captured-variable matches the requested dex type. |
| 551 | if (do_access_check) { |
| 552 | ShortyFieldType actual_type = lambda_closure->GetCapturedShortyType(captured_variable_index); |
| 553 | if (actual_type != shorty_type) { |
| 554 | ThrowVerifyError(shadow_frame.GetMethod()->GetDeclaringClass(), |
| 555 | "cannot liberate-variable of runtime type '%c' to dex type '%c'", |
| 556 | static_cast<char>(actual_type), |
| 557 | static_cast<char>(shorty_type)); |
| 558 | |
| 559 | shadow_frame.SetVReg(dest_vreg, 0); |
| 560 | if (shorty_type.IsPrimitiveWide() || shorty_type.IsLambda()) { |
| 561 | shadow_frame.SetVReg(dest_vreg + 1, 0); |
| 562 | } |
| 563 | return false; |
| 564 | } |
| 565 | |
| 566 | if (actual_type.IsLambda() || actual_type.IsObject()) { |
| 567 | UNIMPLEMENTED(FATAL) << "liberate-variable type checks needs to " |
| 568 | << "parse full type descriptor for objects and lambdas"; |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | // Unpack the captured variable from the closure into the correct type, then save it to the vreg. |
| 573 | if (shorty_type.IsPrimitiveNarrow()) { |
| 574 | uint32_t primitive_narrow_value = |
| 575 | lambda_closure->GetCapturedPrimitiveNarrow(captured_variable_index); |
| 576 | shadow_frame.SetVReg(dest_vreg, primitive_narrow_value); |
| 577 | } else if (shorty_type.IsPrimitiveWide()) { |
| 578 | uint64_t primitive_wide_value = |
| 579 | lambda_closure->GetCapturedPrimitiveWide(captured_variable_index); |
| 580 | shadow_frame.SetVRegLong(dest_vreg, static_cast<int64_t>(primitive_wide_value)); |
| 581 | } else if (shorty_type.IsObject()) { |
| 582 | mirror::Object* unpacked_object = |
| 583 | lambda_closure->GetCapturedObject(captured_variable_index); |
| 584 | shadow_frame.SetVRegReference(dest_vreg, unpacked_object); |
| 585 | |
| 586 | UNIMPLEMENTED(FATAL) << "liberate-variable cannot unpack objects yet"; |
| 587 | } else if (shorty_type.IsLambda()) { |
| 588 | UNIMPLEMENTED(FATAL) << "liberate-variable cannot unpack lambdas yet"; |
| 589 | } else { |
| 590 | LOG(FATAL) << "unreachable"; |
| 591 | UNREACHABLE(); |
| 592 | } |
| 593 | |
| 594 | return true; |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 597 | template<bool do_access_check> |
| 598 | static inline bool DoInvokeLambda(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
| 599 | uint16_t inst_data, JValue* result) { |
| 600 | /* |
| 601 | * invoke-lambda is opcode 0x25 |
| 602 | * |
| 603 | * - vC is the closure register (both vC and vC + 1 will be used to store the closure). |
| 604 | * - vB is the number of additional registers up to |{vD,vE,vF,vG}| (4) |
| 605 | * - the rest of the registers are always var-args |
| 606 | * |
| 607 | * - reading var-args for 0x25 gets us vD,vE,vF,vG (but not vB) |
| 608 | */ |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 609 | uint32_t vreg_closure = inst->VRegC_25x(); |
| 610 | const lambda::Closure* lambda_closure = |
| 611 | ReadLambdaClosureFromVRegsOrThrow(shadow_frame, vreg_closure); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 612 | |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 613 | // Failed lambda target runtime check, an exception was raised. |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 614 | if (UNLIKELY(lambda_closure == nullptr)) { |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 615 | CHECK(self->IsExceptionPending()); |
| 616 | result->SetJ(0); |
| 617 | return false; |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 618 | } |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 619 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 620 | ArtMethod* const called_method = lambda_closure->GetTargetMethod(); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 621 | // Invoke a non-range lambda |
| 622 | return DoLambdaCall<false, do_access_check>(called_method, self, shadow_frame, inst, inst_data, |
| 623 | result); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 624 | } |
| 625 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 626 | // Handles invoke-XXX/range instructions (other than invoke-lambda[-range]). |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 627 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 628 | template<InvokeType type, bool is_range, bool do_access_check> |
| 629 | static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
| 630 | uint16_t inst_data, JValue* result) { |
| 631 | const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); |
| 632 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 633 | Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 634 | ArtMethod* sf_method = shadow_frame.GetMethod(); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 635 | ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>( |
Andreas Gampe | 3a35714 | 2015-08-07 17:20:11 -0700 | [diff] [blame] | 636 | method_idx, &receiver, sf_method, self); |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 637 | // 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] | 638 | if (UNLIKELY(called_method == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 639 | CHECK(self->IsExceptionPending()); |
| 640 | result->SetJ(0); |
| 641 | return false; |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 642 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 643 | called_method->ThrowInvocationTimeError(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 644 | result->SetJ(0); |
| 645 | return false; |
| 646 | } else { |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 647 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 648 | if (jit != nullptr) { |
| 649 | if (type == kVirtual || type == kInterface) { |
| 650 | jit->InvokeVirtualOrInterface( |
| 651 | self, receiver, sf_method, shadow_frame.GetDexPC(), called_method); |
| 652 | } |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 653 | jit->AddSamples(self, sf_method, 1, /*with_backedges*/false); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 654 | } |
| 655 | // 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] | 656 | if (type == kVirtual || type == kInterface) { |
| 657 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 658 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { |
| 659 | instrumentation->InvokeVirtualOrInterface( |
| 660 | self, receiver, sf_method, shadow_frame.GetDexPC(), called_method); |
| 661 | } |
| 662 | } |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 663 | return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data, |
| 664 | result); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 665 | } |
| 666 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 667 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 668 | // Handles invoke-virtual-quick and invoke-virtual-quick-range instructions. |
| 669 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 670 | template<bool is_range> |
| 671 | static inline bool DoInvokeVirtualQuick(Thread* self, ShadowFrame& shadow_frame, |
| 672 | const Instruction* inst, uint16_t inst_data, |
| 673 | JValue* result) { |
| 674 | const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); |
| 675 | Object* const receiver = shadow_frame.GetVRegReference(vregC); |
Sebastien Hertz | d4beb6b | 2013-10-02 17:07:20 +0200 | [diff] [blame] | 676 | if (UNLIKELY(receiver == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 677 | // We lost the reference to the method index so we cannot get a more |
| 678 | // precised exception message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 679 | ThrowNullPointerExceptionFromDexPC(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 680 | return false; |
| 681 | } |
| 682 | 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] | 683 | CHECK(receiver->GetClass()->ShouldHaveEmbeddedVTable()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 684 | ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame^] | 685 | vtable_idx, kRuntimePointerSize); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 686 | if (UNLIKELY(called_method == nullptr)) { |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 687 | CHECK(self->IsExceptionPending()); |
| 688 | result->SetJ(0); |
| 689 | return false; |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 690 | } else if (UNLIKELY(!called_method->IsInvokable())) { |
| 691 | called_method->ThrowInvocationTimeError(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 692 | result->SetJ(0); |
| 693 | return false; |
| 694 | } else { |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 695 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 696 | if (jit != nullptr) { |
| 697 | jit->InvokeVirtualOrInterface( |
| 698 | self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 699 | jit->AddSamples(self, shadow_frame.GetMethod(), 1, /*with_backedges*/false); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 700 | } |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 701 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Nicolas Geoffray | 274fe4a | 2016-04-12 16:33:24 +0100 | [diff] [blame] | 702 | // 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] | 703 | if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) { |
| 704 | instrumentation->InvokeVirtualOrInterface( |
| 705 | self, receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method); |
| 706 | } |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 707 | // No need to check since we've been quickened. |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 708 | 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] | 709 | } |
| 710 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 711 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 712 | // Handles iget-XXX and sget-XXX instructions. |
| 713 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 714 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 715 | bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 716 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 717 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 718 | // Handles iget-quick, iget-wide-quick and iget-object-quick instructions. |
| 719 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 720 | template<Primitive::Type field_type> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 721 | bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 722 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 479fc1e | 2014-04-04 17:51:34 +0200 | [diff] [blame] | 723 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 724 | // Handles iput-XXX and sput-XXX instructions. |
| 725 | // Returns true on success, otherwise throws an exception and returns false. |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 726 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check, |
| 727 | bool transaction_active> |
| 728 | bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst, |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 729 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 730 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 731 | // Handles iput-quick, iput-wide-quick and iput-object-quick instructions. |
| 732 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 733 | template<Primitive::Type field_type, bool transaction_active> |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 734 | 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] | 735 | SHARED_REQUIRES(Locks::mutator_lock_); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 736 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 737 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 738 | // Handles string resolution for const-string and const-string-jumbo instructions. Also ensures the |
| 739 | // java.lang.String class is initialized. |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 740 | 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] | 741 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 742 | Class* java_lang_string_class = String::GetJavaLangString(); |
| 743 | if (UNLIKELY(!java_lang_string_class->IsInitialized())) { |
| 744 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 745 | StackHandleScope<1> hs(self); |
| 746 | Handle<mirror::Class> h_class(hs.NewHandle(java_lang_string_class)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 747 | if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 748 | DCHECK(self->IsExceptionPending()); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 749 | return nullptr; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 750 | } |
| 751 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 752 | ArtMethod* method = shadow_frame.GetMethod(); |
Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 753 | mirror::Class* declaring_class = method->GetDeclaringClass(); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 754 | // MethodVerifier refuses methods with string_idx out of bounds. |
| 755 | DCHECK_LT(string_idx, declaring_class->GetDexCache()->NumStrings()); |
| 756 | mirror::String* s = declaring_class->GetDexCacheStrings()[string_idx].Read(); |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 757 | if (UNLIKELY(s == nullptr)) { |
| 758 | StackHandleScope<1> hs(self); |
Mathieu Chartier | eace458 | 2014-11-24 18:29:54 -0800 | [diff] [blame] | 759 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache())); |
Ian Rogers | 6786a58 | 2014-10-28 12:49:06 -0700 | [diff] [blame] | 760 | s = Runtime::Current()->GetClassLinker()->ResolveString(*method->GetDexFile(), string_idx, |
| 761 | dex_cache); |
| 762 | } |
| 763 | return s; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 764 | } |
| 765 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 766 | // Handles div-int, div-int/2addr, div-int/li16 and div-int/lit8 instructions. |
| 767 | // 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] | 768 | static inline bool DoIntDivide(ShadowFrame& shadow_frame, size_t result_reg, |
| 769 | int32_t dividend, int32_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 770 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 771 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 772 | if (UNLIKELY(divisor == 0)) { |
| 773 | ThrowArithmeticExceptionDivideByZero(); |
| 774 | return false; |
| 775 | } |
| 776 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { |
| 777 | shadow_frame.SetVReg(result_reg, kMinInt); |
| 778 | } else { |
| 779 | shadow_frame.SetVReg(result_reg, dividend / divisor); |
| 780 | } |
| 781 | return true; |
| 782 | } |
| 783 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 784 | // Handles rem-int, rem-int/2addr, rem-int/li16 and rem-int/lit8 instructions. |
| 785 | // 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] | 786 | static inline bool DoIntRemainder(ShadowFrame& shadow_frame, size_t result_reg, |
| 787 | int32_t dividend, int32_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 788 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | f72a11d | 2014-10-30 15:41:08 -0700 | [diff] [blame] | 789 | constexpr int32_t kMinInt = std::numeric_limits<int32_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 790 | if (UNLIKELY(divisor == 0)) { |
| 791 | ThrowArithmeticExceptionDivideByZero(); |
| 792 | return false; |
| 793 | } |
| 794 | if (UNLIKELY(dividend == kMinInt && divisor == -1)) { |
| 795 | shadow_frame.SetVReg(result_reg, 0); |
| 796 | } else { |
| 797 | shadow_frame.SetVReg(result_reg, dividend % divisor); |
| 798 | } |
| 799 | return true; |
| 800 | } |
| 801 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 802 | // Handles div-long and div-long-2addr instructions. |
| 803 | // 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] | 804 | static inline bool DoLongDivide(ShadowFrame& shadow_frame, size_t result_reg, |
| 805 | int64_t dividend, int64_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 806 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 807 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 808 | if (UNLIKELY(divisor == 0)) { |
| 809 | ThrowArithmeticExceptionDivideByZero(); |
| 810 | return false; |
| 811 | } |
| 812 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { |
| 813 | shadow_frame.SetVRegLong(result_reg, kMinLong); |
| 814 | } else { |
| 815 | shadow_frame.SetVRegLong(result_reg, dividend / divisor); |
| 816 | } |
| 817 | return true; |
| 818 | } |
| 819 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 820 | // Handles rem-long and rem-long-2addr instructions. |
| 821 | // 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] | 822 | static inline bool DoLongRemainder(ShadowFrame& shadow_frame, size_t result_reg, |
| 823 | int64_t dividend, int64_t divisor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 824 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 2e2deeb | 2013-09-23 11:58:57 -0700 | [diff] [blame] | 825 | const int64_t kMinLong = std::numeric_limits<int64_t>::min(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 826 | if (UNLIKELY(divisor == 0)) { |
| 827 | ThrowArithmeticExceptionDivideByZero(); |
| 828 | return false; |
| 829 | } |
| 830 | if (UNLIKELY(dividend == kMinLong && divisor == -1)) { |
| 831 | shadow_frame.SetVRegLong(result_reg, 0); |
| 832 | } else { |
| 833 | shadow_frame.SetVRegLong(result_reg, dividend % divisor); |
| 834 | } |
| 835 | return true; |
| 836 | } |
| 837 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 838 | // Handles filled-new-array and filled-new-array-range instructions. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 839 | // Returns true on success, otherwise throws an exception and returns false. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 840 | template <bool is_range, bool do_access_check, bool transaction_active> |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 841 | bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame, |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 842 | Thread* self, JValue* result); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 843 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 844 | // Handles packed-switch instruction. |
| 845 | // Returns the branch offset to the next instruction to execute. |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 846 | static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, |
| 847 | uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 848 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 849 | DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); |
| 850 | 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] | 851 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 852 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kPackedSwitchSignature)); |
| 853 | uint16_t size = switch_data[1]; |
David Brazdil | 2ef645b | 2015-06-17 18:20:52 +0100 | [diff] [blame] | 854 | if (size == 0) { |
| 855 | // Empty packed switch, move forward by 3 (size of PACKED_SWITCH). |
| 856 | return 3; |
| 857 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 858 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 859 | DCHECK_ALIGNED(keys, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 860 | int32_t first_key = keys[0]; |
| 861 | const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 862 | DCHECK_ALIGNED(targets, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 863 | int32_t index = test_val - first_key; |
| 864 | if (index >= 0 && index < size) { |
| 865 | return targets[index]; |
| 866 | } else { |
| 867 | // No corresponding value: move forward by 3 (size of PACKED_SWITCH). |
| 868 | return 3; |
| 869 | } |
| 870 | } |
| 871 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 872 | // Handles sparse-switch instruction. |
| 873 | // Returns the branch offset to the next instruction to execute. |
Sebastien Hertz | 3b588e0 | 2013-09-11 14:33:18 +0200 | [diff] [blame] | 874 | static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame, |
| 875 | uint16_t inst_data) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 876 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 877 | DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH); |
| 878 | 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] | 879 | int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 880 | DCHECK_EQ(switch_data[0], static_cast<uint16_t>(Instruction::kSparseSwitchSignature)); |
| 881 | uint16_t size = switch_data[1]; |
Jeff Hao | 935e01a | 2015-03-20 19:44:35 -0700 | [diff] [blame] | 882 | // Return length of SPARSE_SWITCH if size is 0. |
| 883 | if (size == 0) { |
| 884 | return 3; |
| 885 | } |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 886 | const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 887 | DCHECK_ALIGNED(keys, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 888 | const int32_t* entries = keys + size; |
Roland Levillain | 14d9057 | 2015-07-16 10:52:26 +0100 | [diff] [blame] | 889 | DCHECK_ALIGNED(entries, 4); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 890 | int lo = 0; |
| 891 | int hi = size - 1; |
| 892 | while (lo <= hi) { |
| 893 | int mid = (lo + hi) / 2; |
| 894 | int32_t foundVal = keys[mid]; |
| 895 | if (test_val < foundVal) { |
| 896 | hi = mid - 1; |
| 897 | } else if (test_val > foundVal) { |
| 898 | lo = mid + 1; |
| 899 | } else { |
| 900 | return entries[mid]; |
| 901 | } |
| 902 | } |
| 903 | // No corresponding value: move forward by 3 (size of SPARSE_SWITCH). |
| 904 | return 3; |
| 905 | } |
| 906 | |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 907 | template <bool _do_check> |
| 908 | static inline bool DoBoxLambda(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 909 | uint16_t inst_data) SHARED_REQUIRES(Locks::mutator_lock_) { |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 910 | /* |
| 911 | * box-lambda vA, vB /// opcode 0xf8, format 22x |
| 912 | * - vA is the target register where the Object representation of the closure will be stored into |
| 913 | * - vB is a closure (made by create-lambda) |
| 914 | * (also reads vB + 1) |
| 915 | */ |
| 916 | uint32_t vreg_target_object = inst->VRegA_22x(inst_data); |
| 917 | uint32_t vreg_source_closure = inst->VRegB_22x(); |
| 918 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 919 | lambda::Closure* lambda_closure = ReadLambdaClosureFromVRegsOrThrow(shadow_frame, |
| 920 | vreg_source_closure); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 921 | |
| 922 | // Failed lambda target runtime check, an exception was raised. |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 923 | if (UNLIKELY(lambda_closure == nullptr)) { |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 924 | CHECK(self->IsExceptionPending()); |
| 925 | return false; |
| 926 | } |
| 927 | |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 928 | mirror::Object* closure_as_object = |
Nicolas Geoffray | 3a09092 | 2015-11-24 09:17:30 +0000 | [diff] [blame] | 929 | Runtime::Current()->GetLambdaBoxTable()->BoxLambda(lambda_closure); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 930 | |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 931 | // Failed to box the lambda, an exception was raised. |
| 932 | if (UNLIKELY(closure_as_object == nullptr)) { |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 933 | CHECK(self->IsExceptionPending()); |
| 934 | return false; |
| 935 | } |
| 936 | |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 937 | shadow_frame.SetVRegReference(vreg_target_object, closure_as_object); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 938 | return true; |
| 939 | } |
| 940 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 941 | template <bool _do_check> SHARED_REQUIRES(Locks::mutator_lock_) |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 942 | static inline bool DoUnboxLambda(Thread* self, |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 943 | ShadowFrame& shadow_frame, |
| 944 | const Instruction* inst, |
| 945 | uint16_t inst_data) { |
| 946 | /* |
| 947 | * unbox-lambda vA, vB, [type id] /// opcode 0xf9, format 22c |
| 948 | * - vA is the target register where the closure will be written into |
| 949 | * (also writes vA + 1) |
| 950 | * - vB is the Object representation of the closure (made by box-lambda) |
| 951 | */ |
| 952 | uint32_t vreg_target_closure = inst->VRegA_22c(inst_data); |
| 953 | uint32_t vreg_source_object = inst->VRegB_22c(); |
| 954 | |
| 955 | // Raise NullPointerException if object is null |
| 956 | mirror::Object* boxed_closure_object = shadow_frame.GetVRegReference(vreg_source_object); |
| 957 | if (UNLIKELY(boxed_closure_object == nullptr)) { |
| 958 | ThrowNullPointerExceptionFromInterpreter(); |
| 959 | return false; |
| 960 | } |
| 961 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 962 | lambda::Closure* unboxed_closure = nullptr; |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 963 | // Raise an exception if unboxing fails. |
| 964 | if (!Runtime::Current()->GetLambdaBoxTable()->UnboxLambda(boxed_closure_object, |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 965 | /*out*/&unboxed_closure)) { |
Igor Murashkin | e2facc5 | 2015-07-10 13:49:08 -0700 | [diff] [blame] | 966 | CHECK(self->IsExceptionPending()); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 967 | return false; |
| 968 | } |
| 969 | |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 970 | DCHECK(unboxed_closure != nullptr); |
Igor Murashkin | 30c475a | 2015-10-06 13:59:43 -0700 | [diff] [blame] | 971 | WriteLambdaClosureIntoVRegs(/*inout*/shadow_frame, *unboxed_closure, vreg_target_closure); |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 972 | return true; |
| 973 | } |
| 974 | |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 975 | uint32_t FindNextInstructionFollowingException(Thread* self, ShadowFrame& shadow_frame, |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 976 | uint32_t dex_pc, const instrumentation::Instrumentation* instrumentation) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 977 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 978 | |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 979 | NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) |
| 980 | __attribute__((cold)) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 981 | SHARED_REQUIRES(Locks::mutator_lock_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 982 | |
Bill Buzbee | d47fd90 | 2016-07-07 14:42:43 +0000 | [diff] [blame] | 983 | // Set true if you want TraceExecution invocation before each bytecode execution. |
| 984 | constexpr bool kTraceExecutionEnabled = false; |
Serguei Katkov | 9fb0ac7 | 2016-02-20 12:55:24 +0600 | [diff] [blame] | 985 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 986 | static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst, |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 987 | const uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 988 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Bill Buzbee | d47fd90 | 2016-07-07 14:42:43 +0000 | [diff] [blame] | 989 | if (kTraceExecutionEnabled) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 990 | #define TRACE_LOG std::cerr |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 991 | std::ostringstream oss; |
| 992 | oss << PrettyMethod(shadow_frame.GetMethod()) |
| 993 | << StringPrintf("\n0x%x: ", dex_pc) |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 994 | << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 995 | for (uint32_t i = 0; i < shadow_frame.NumberOfVRegs(); ++i) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 996 | uint32_t raw_value = shadow_frame.GetVReg(i); |
| 997 | Object* ref_value = shadow_frame.GetVRegReference(i); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 998 | oss << StringPrintf(" vreg%u=0x%08X", i, raw_value); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 999 | if (ref_value != nullptr) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1000 | if (ref_value->GetClass()->IsStringClass() && |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1001 | ref_value->AsString()->GetValue() != nullptr) { |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 1002 | oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\""; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1003 | } else { |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 1004 | oss << "/" << PrettyTypeOf(ref_value); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1005 | } |
| 1006 | } |
| 1007 | } |
Mathieu Chartier | e861ebd | 2013-10-09 15:01:21 -0700 | [diff] [blame] | 1008 | TRACE_LOG << oss.str() << "\n"; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1009 | #undef TRACE_LOG |
| 1010 | } |
| 1011 | } |
| 1012 | |
Sebastien Hertz | 1eda226 | 2013-09-09 16:53:14 +0200 | [diff] [blame] | 1013 | static inline bool IsBackwardBranch(int32_t branch_offset) { |
| 1014 | return branch_offset <= 0; |
| 1015 | } |
| 1016 | |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 1017 | void ArtInterpreterToCompiledCodeBridge(Thread* self, |
| 1018 | ArtMethod* caller, |
| 1019 | const DexFile::CodeItem* code_item, |
| 1020 | ShadowFrame* shadow_frame, |
| 1021 | JValue* result); |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 1022 | |
Mingyao Yang | ffedec5 | 2016-05-19 10:48:40 -0700 | [diff] [blame] | 1023 | // Set string value created from StringFactory.newStringFromXXX() into all aliases of |
| 1024 | // StringFactory.newEmptyString(). |
| 1025 | void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame, |
| 1026 | uint16_t this_obj_vreg, |
| 1027 | JValue result); |
| 1028 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1029 | // Explicitly instantiate all DoInvoke functions. |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 1030 | #define EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, _is_range, _do_check) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1031 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 1032 | bool DoInvoke<_type, _is_range, _do_check>(Thread* self, ShadowFrame& shadow_frame, \ |
| 1033 | const Instruction* inst, uint16_t inst_data, \ |
| 1034 | JValue* result) |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1035 | |
| 1036 | #define EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(_type) \ |
| 1037 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, false); \ |
| 1038 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, false, true); \ |
| 1039 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, false); \ |
| 1040 | EXPLICIT_DO_INVOKE_TEMPLATE_DECL(_type, true, true); |
| 1041 | |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 1042 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kStatic) // invoke-static/range. |
| 1043 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kDirect) // invoke-direct/range. |
| 1044 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kVirtual) // invoke-virtual/range. |
| 1045 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kSuper) // invoke-super/range. |
| 1046 | EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL(kInterface) // invoke-interface/range. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1047 | #undef EXPLICIT_DO_INVOKE_ALL_TEMPLATE_DECL |
| 1048 | #undef EXPLICIT_DO_INVOKE_TEMPLATE_DECL |
| 1049 | |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1050 | // Explicitly instantiate all DoInvokeVirtualQuick functions. |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 1051 | #define EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(_is_range) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1052 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 1053 | bool DoInvokeVirtualQuick<_is_range>(Thread* self, ShadowFrame& shadow_frame, \ |
| 1054 | const Instruction* inst, uint16_t inst_data, \ |
| 1055 | JValue* result) |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1056 | |
| 1057 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(false); // invoke-virtual-quick. |
| 1058 | EXPLICIT_DO_INVOKE_VIRTUAL_QUICK_TEMPLATE_DECL(true); // invoke-virtual-quick-range. |
| 1059 | #undef EXPLICIT_INSTANTIATION_DO_INVOKE_VIRTUAL_QUICK |
| 1060 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1061 | // Explicitly instantiate all DoCreateLambda functions. |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 1062 | #define EXPLICIT_DO_CREATE_LAMBDA_DECL(_do_check) \ |
| 1063 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
| 1064 | bool DoCreateLambda<_do_check>(Thread* self, \ |
| 1065 | const Instruction* inst, \ |
| 1066 | /*inout*/ShadowFrame& shadow_frame, \ |
| 1067 | /*inout*/lambda::ClosureBuilder* closure_builder, \ |
| 1068 | /*inout*/lambda::Closure* uninitialized_closure); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1069 | |
| 1070 | EXPLICIT_DO_CREATE_LAMBDA_DECL(false); // create-lambda |
| 1071 | EXPLICIT_DO_CREATE_LAMBDA_DECL(true); // create-lambda |
| 1072 | #undef EXPLICIT_DO_CREATE_LAMBDA_DECL |
| 1073 | |
| 1074 | // Explicitly instantiate all DoInvokeLambda functions. |
| 1075 | #define EXPLICIT_DO_INVOKE_LAMBDA_DECL(_do_check) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1076 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1077 | bool DoInvokeLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ |
| 1078 | uint16_t inst_data, JValue* result); |
| 1079 | |
| 1080 | EXPLICIT_DO_INVOKE_LAMBDA_DECL(false); // invoke-lambda |
| 1081 | EXPLICIT_DO_INVOKE_LAMBDA_DECL(true); // invoke-lambda |
| 1082 | #undef EXPLICIT_DO_INVOKE_LAMBDA_DECL |
| 1083 | |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 1084 | // Explicitly instantiate all DoBoxLambda functions. |
| 1085 | #define EXPLICIT_DO_BOX_LAMBDA_DECL(_do_check) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1086 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 1087 | bool DoBoxLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ |
| 1088 | uint16_t inst_data); |
| 1089 | |
| 1090 | EXPLICIT_DO_BOX_LAMBDA_DECL(false); // box-lambda |
| 1091 | EXPLICIT_DO_BOX_LAMBDA_DECL(true); // box-lambda |
| 1092 | #undef EXPLICIT_DO_BOX_LAMBDA_DECL |
| 1093 | |
| 1094 | // Explicitly instantiate all DoUnBoxLambda functions. |
| 1095 | #define EXPLICIT_DO_UNBOX_LAMBDA_DECL(_do_check) \ |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1096 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
Igor Murashkin | 2ee54e2 | 2015-06-18 10:05:11 -0700 | [diff] [blame] | 1097 | bool DoUnboxLambda<_do_check>(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ |
| 1098 | uint16_t inst_data); |
| 1099 | |
| 1100 | EXPLICIT_DO_UNBOX_LAMBDA_DECL(false); // unbox-lambda |
| 1101 | EXPLICIT_DO_UNBOX_LAMBDA_DECL(true); // unbox-lambda |
| 1102 | #undef EXPLICIT_DO_BOX_LAMBDA_DECL |
| 1103 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 1104 | // Explicitly instantiate all DoCaptureVariable functions. |
| 1105 | #define EXPLICIT_DO_CAPTURE_VARIABLE_DECL(_do_check) \ |
| 1106 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
| 1107 | bool DoCaptureVariable<_do_check>(Thread* self, \ |
| 1108 | const Instruction* inst, \ |
| 1109 | ShadowFrame& shadow_frame, \ |
| 1110 | lambda::ClosureBuilder* closure_builder); |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1111 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 1112 | EXPLICIT_DO_CAPTURE_VARIABLE_DECL(false); // capture-variable |
| 1113 | EXPLICIT_DO_CAPTURE_VARIABLE_DECL(true); // capture-variable |
| 1114 | #undef EXPLICIT_DO_CREATE_LAMBDA_DECL |
| 1115 | |
| 1116 | // Explicitly instantiate all DoLiberateVariable functions. |
| 1117 | #define EXPLICIT_DO_LIBERATE_VARIABLE_DECL(_do_check) \ |
| 1118 | template SHARED_REQUIRES(Locks::mutator_lock_) \ |
| 1119 | bool DoLiberateVariable<_do_check>(Thread* self, \ |
| 1120 | const Instruction* inst, \ |
| 1121 | size_t captured_variable_index, \ |
| 1122 | ShadowFrame& shadow_frame); \ |
| 1123 | |
| 1124 | EXPLICIT_DO_LIBERATE_VARIABLE_DECL(false); // liberate-variable |
| 1125 | EXPLICIT_DO_LIBERATE_VARIABLE_DECL(true); // liberate-variable |
| 1126 | #undef EXPLICIT_DO_LIBERATE_LAMBDA_DECL |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1127 | } // namespace interpreter |
| 1128 | } // namespace art |
| 1129 | |
| 1130 | #endif // ART_RUNTIME_INTERPRETER_INTERPRETER_COMMON_H_ |