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 | #include "interpreter_common.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 18 | |
Andreas Gampe | f0e128a | 2015-02-27 20:08:34 -0800 | [diff] [blame] | 19 | #include <cmath> |
| 20 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 21 | #include "base/enums.h" |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 22 | #include "debugger.h" |
Nicolas Geoffray | 7bf2b4f | 2015-07-08 10:11:59 +0000 | [diff] [blame] | 23 | #include "entrypoints/runtime_asm_entrypoints.h" |
Tamas Berghammer | dd5e5e9 | 2016-02-12 16:29:00 +0000 | [diff] [blame] | 24 | #include "jit/jit.h" |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 25 | #include "jvalue.h" |
| 26 | #include "method_handles.h" |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 27 | #include "method_handles-inl.h" |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 28 | #include "mirror/array-inl.h" |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 29 | #include "mirror/class.h" |
Narayan Kamath | 000e188 | 2016-10-24 17:14:25 +0100 | [diff] [blame] | 30 | #include "mirror/emulated_stack_frame.h" |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 31 | #include "mirror/method_handle_impl.h" |
| 32 | #include "reflection.h" |
| 33 | #include "reflection-inl.h" |
Andreas Gampe | b302592 | 2015-09-01 14:45:00 -0700 | [diff] [blame] | 34 | #include "stack.h" |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 35 | #include "verifier/method_verifier.h" |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 36 | #include "well_known_classes.h" |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 37 | |
| 38 | namespace art { |
| 39 | namespace interpreter { |
| 40 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 41 | void ThrowNullPointerExceptionFromInterpreter() { |
| 42 | ThrowNullPointerExceptionFromDexPC(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check> |
| 46 | bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, |
| 47 | uint16_t inst_data) { |
| 48 | const bool is_static = (find_type == StaticObjectRead) || (find_type == StaticPrimitiveRead); |
| 49 | const uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c(); |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 50 | ArtField* f = |
| 51 | FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self, |
| 52 | Primitive::ComponentSize(field_type)); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 53 | if (UNLIKELY(f == nullptr)) { |
| 54 | CHECK(self->IsExceptionPending()); |
| 55 | return false; |
| 56 | } |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 57 | ObjPtr<mirror::Object> obj; |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 58 | if (is_static) { |
| 59 | obj = f->GetDeclaringClass(); |
| 60 | } else { |
| 61 | obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); |
| 62 | if (UNLIKELY(obj == nullptr)) { |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 63 | ThrowNullPointerExceptionForFieldAccess(f, true); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 64 | return false; |
| 65 | } |
| 66 | } |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 67 | |
| 68 | JValue result; |
| 69 | DoFieldGetCommon<field_type>(self, shadow_frame, obj, f, &result); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 70 | uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); |
| 71 | switch (field_type) { |
| 72 | case Primitive::kPrimBoolean: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 73 | shadow_frame.SetVReg(vregA, result.GetZ()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 74 | break; |
| 75 | case Primitive::kPrimByte: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 76 | shadow_frame.SetVReg(vregA, result.GetB()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 77 | break; |
| 78 | case Primitive::kPrimChar: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 79 | shadow_frame.SetVReg(vregA, result.GetC()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 80 | break; |
| 81 | case Primitive::kPrimShort: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 82 | shadow_frame.SetVReg(vregA, result.GetS()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 83 | break; |
| 84 | case Primitive::kPrimInt: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 85 | shadow_frame.SetVReg(vregA, result.GetI()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 86 | break; |
| 87 | case Primitive::kPrimLong: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 88 | shadow_frame.SetVRegLong(vregA, result.GetJ()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 89 | break; |
| 90 | case Primitive::kPrimNot: |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 91 | shadow_frame.SetVRegReference(vregA, result.GetL()); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 92 | break; |
| 93 | default: |
| 94 | LOG(FATAL) << "Unreachable: " << field_type; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 95 | UNREACHABLE(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 96 | } |
| 97 | return true; |
| 98 | } |
| 99 | |
| 100 | // Explicitly instantiate all DoFieldGet functions. |
| 101 | #define EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, _do_check) \ |
| 102 | template bool DoFieldGet<_find_type, _field_type, _do_check>(Thread* self, \ |
| 103 | ShadowFrame& shadow_frame, \ |
| 104 | const Instruction* inst, \ |
| 105 | uint16_t inst_data) |
| 106 | |
| 107 | #define EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(_find_type, _field_type) \ |
| 108 | EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, false); \ |
| 109 | EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL(_find_type, _field_type, true); |
| 110 | |
| 111 | // iget-XXX |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 112 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimBoolean) |
| 113 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimByte) |
| 114 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimChar) |
| 115 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimShort) |
| 116 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimInt) |
| 117 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimLong) |
| 118 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstanceObjectRead, Primitive::kPrimNot) |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 119 | |
| 120 | // sget-XXX |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 121 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimBoolean) |
| 122 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimByte) |
| 123 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimChar) |
| 124 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimShort) |
| 125 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimInt) |
| 126 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticPrimitiveRead, Primitive::kPrimLong) |
| 127 | EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(StaticObjectRead, Primitive::kPrimNot) |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 128 | |
| 129 | #undef EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL |
| 130 | #undef EXPLICIT_DO_FIELD_GET_TEMPLATE_DECL |
| 131 | |
| 132 | // Handles iget-quick, iget-wide-quick and iget-object-quick instructions. |
| 133 | // Returns true on success, otherwise throws an exception and returns false. |
| 134 | template<Primitive::Type field_type> |
| 135 | bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 136 | ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 137 | if (UNLIKELY(obj == nullptr)) { |
| 138 | // We lost the reference to the field index so we cannot get a more |
| 139 | // precised exception message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 140 | ThrowNullPointerExceptionFromDexPC(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 141 | return false; |
| 142 | } |
| 143 | MemberOffset field_offset(inst->VRegC_22c()); |
| 144 | // Report this field access to instrumentation if needed. Since we only have the offset of |
| 145 | // the field from the base of the object, we need to look for it first. |
| 146 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 147 | if (UNLIKELY(instrumentation->HasFieldReadListeners())) { |
| 148 | ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(), |
| 149 | field_offset.Uint32Value()); |
| 150 | DCHECK(f != nullptr); |
| 151 | DCHECK(!f->IsStatic()); |
Mathieu Chartier | a314773 | 2016-10-26 22:57:02 -0700 | [diff] [blame] | 152 | StackHandleScope<1> hs(Thread::Current()); |
| 153 | // Save obj in case the instrumentation event has thread suspension. |
| 154 | HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 155 | instrumentation->FieldReadEvent(Thread::Current(), |
| 156 | obj.Ptr(), |
| 157 | shadow_frame.GetMethod(), |
| 158 | shadow_frame.GetDexPC(), |
| 159 | f); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 160 | } |
| 161 | // Note: iget-x-quick instructions are only for non-volatile fields. |
| 162 | const uint32_t vregA = inst->VRegA_22c(inst_data); |
| 163 | switch (field_type) { |
| 164 | case Primitive::kPrimInt: |
| 165 | shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset))); |
| 166 | break; |
Mathieu Chartier | ffc605c | 2014-12-10 10:35:44 -0800 | [diff] [blame] | 167 | case Primitive::kPrimBoolean: |
| 168 | shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset))); |
| 169 | break; |
| 170 | case Primitive::kPrimByte: |
| 171 | shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset))); |
| 172 | break; |
| 173 | case Primitive::kPrimChar: |
| 174 | shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset))); |
| 175 | break; |
| 176 | case Primitive::kPrimShort: |
| 177 | shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset))); |
| 178 | break; |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 179 | case Primitive::kPrimLong: |
| 180 | shadow_frame.SetVRegLong(vregA, static_cast<int64_t>(obj->GetField64(field_offset))); |
| 181 | break; |
| 182 | case Primitive::kPrimNot: |
| 183 | shadow_frame.SetVRegReference(vregA, obj->GetFieldObject<mirror::Object>(field_offset)); |
| 184 | break; |
| 185 | default: |
| 186 | LOG(FATAL) << "Unreachable: " << field_type; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 187 | UNREACHABLE(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 188 | } |
| 189 | return true; |
| 190 | } |
| 191 | |
| 192 | // Explicitly instantiate all DoIGetQuick functions. |
| 193 | #define EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(_field_type) \ |
| 194 | template bool DoIGetQuick<_field_type>(ShadowFrame& shadow_frame, const Instruction* inst, \ |
| 195 | uint16_t inst_data) |
| 196 | |
Mathieu Chartier | ffc605c | 2014-12-10 10:35:44 -0800 | [diff] [blame] | 197 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimInt); // iget-quick. |
| 198 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimBoolean); // iget-boolean-quick. |
| 199 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimByte); // iget-byte-quick. |
| 200 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimChar); // iget-char-quick. |
| 201 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimShort); // iget-short-quick. |
| 202 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimLong); // iget-wide-quick. |
| 203 | EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL(Primitive::kPrimNot); // iget-object-quick. |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 204 | #undef EXPLICIT_DO_IGET_QUICK_TEMPLATE_DECL |
| 205 | |
| 206 | template<Primitive::Type field_type> |
| 207 | static JValue GetFieldValue(const ShadowFrame& shadow_frame, uint32_t vreg) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 208 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 209 | JValue field_value; |
| 210 | switch (field_type) { |
| 211 | case Primitive::kPrimBoolean: |
| 212 | field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg))); |
| 213 | break; |
| 214 | case Primitive::kPrimByte: |
| 215 | field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg))); |
| 216 | break; |
| 217 | case Primitive::kPrimChar: |
| 218 | field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg))); |
| 219 | break; |
| 220 | case Primitive::kPrimShort: |
| 221 | field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg))); |
| 222 | break; |
| 223 | case Primitive::kPrimInt: |
| 224 | field_value.SetI(shadow_frame.GetVReg(vreg)); |
| 225 | break; |
| 226 | case Primitive::kPrimLong: |
| 227 | field_value.SetJ(shadow_frame.GetVRegLong(vreg)); |
| 228 | break; |
| 229 | case Primitive::kPrimNot: |
| 230 | field_value.SetL(shadow_frame.GetVRegReference(vreg)); |
| 231 | break; |
| 232 | default: |
| 233 | LOG(FATAL) << "Unreachable: " << field_type; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 234 | UNREACHABLE(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 235 | } |
| 236 | return field_value; |
| 237 | } |
| 238 | |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 239 | template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check, |
| 240 | bool transaction_active> |
| 241 | bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst, |
| 242 | uint16_t inst_data) { |
| 243 | const bool do_assignability_check = do_access_check; |
| 244 | bool is_static = (find_type == StaticObjectWrite) || (find_type == StaticPrimitiveWrite); |
| 245 | uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c(); |
| 246 | ArtField* f = |
| 247 | FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self, |
| 248 | Primitive::ComponentSize(field_type)); |
| 249 | if (UNLIKELY(f == nullptr)) { |
| 250 | CHECK(self->IsExceptionPending()); |
| 251 | return false; |
| 252 | } |
| 253 | ObjPtr<mirror::Object> obj; |
| 254 | if (is_static) { |
| 255 | obj = f->GetDeclaringClass(); |
| 256 | } else { |
| 257 | obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); |
| 258 | if (UNLIKELY(obj == nullptr)) { |
| 259 | ThrowNullPointerExceptionForFieldAccess(f, false); |
| 260 | return false; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); |
Orion Hodson | ba28f9f | 2016-10-26 10:56:25 +0100 | [diff] [blame] | 265 | JValue value = GetFieldValue<field_type>(shadow_frame, vregA); |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 266 | return DoFieldPutCommon<field_type, do_assignability_check, transaction_active>(self, |
| 267 | shadow_frame, |
| 268 | obj, |
| 269 | f, |
Orion Hodson | ba28f9f | 2016-10-26 10:56:25 +0100 | [diff] [blame] | 270 | value); |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 271 | } |
| 272 | |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 273 | // Explicitly instantiate all DoFieldPut functions. |
| 274 | #define EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, _do_check, _transaction_active) \ |
| 275 | template bool DoFieldPut<_find_type, _field_type, _do_check, _transaction_active>(Thread* self, \ |
| 276 | const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) |
| 277 | |
| 278 | #define EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(_find_type, _field_type) \ |
| 279 | EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, false); \ |
| 280 | EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, false); \ |
| 281 | EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, false, true); \ |
| 282 | EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL(_find_type, _field_type, true, true); |
| 283 | |
| 284 | // iput-XXX |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 285 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimBoolean) |
| 286 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimByte) |
| 287 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimChar) |
| 288 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimShort) |
| 289 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimInt) |
| 290 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstancePrimitiveWrite, Primitive::kPrimLong) |
| 291 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(InstanceObjectWrite, Primitive::kPrimNot) |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 292 | |
| 293 | // sput-XXX |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 294 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimBoolean) |
| 295 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimByte) |
| 296 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimChar) |
| 297 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimShort) |
| 298 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimInt) |
| 299 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticPrimitiveWrite, Primitive::kPrimLong) |
| 300 | EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL(StaticObjectWrite, Primitive::kPrimNot) |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 301 | |
| 302 | #undef EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL |
| 303 | #undef EXPLICIT_DO_FIELD_PUT_TEMPLATE_DECL |
| 304 | |
| 305 | template<Primitive::Type field_type, bool transaction_active> |
| 306 | bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data) { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 307 | ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegB_22c(inst_data)); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 308 | if (UNLIKELY(obj == nullptr)) { |
| 309 | // We lost the reference to the field index so we cannot get a more |
| 310 | // precised exception message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 311 | ThrowNullPointerExceptionFromDexPC(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 312 | return false; |
| 313 | } |
| 314 | MemberOffset field_offset(inst->VRegC_22c()); |
| 315 | const uint32_t vregA = inst->VRegA_22c(inst_data); |
| 316 | // Report this field modification to instrumentation if needed. Since we only have the offset of |
| 317 | // the field from the base of the object, we need to look for it first. |
| 318 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 319 | if (UNLIKELY(instrumentation->HasFieldWriteListeners())) { |
| 320 | ArtField* f = ArtField::FindInstanceFieldWithOffset(obj->GetClass(), |
| 321 | field_offset.Uint32Value()); |
| 322 | DCHECK(f != nullptr); |
| 323 | DCHECK(!f->IsStatic()); |
| 324 | JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA); |
Mathieu Chartier | a314773 | 2016-10-26 22:57:02 -0700 | [diff] [blame] | 325 | StackHandleScope<1> hs(Thread::Current()); |
| 326 | // Save obj in case the instrumentation event has thread suspension. |
| 327 | HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 328 | instrumentation->FieldWriteEvent(Thread::Current(), |
| 329 | obj.Ptr(), |
| 330 | shadow_frame.GetMethod(), |
| 331 | shadow_frame.GetDexPC(), |
| 332 | f, |
| 333 | field_value); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 334 | } |
| 335 | // Note: iput-x-quick instructions are only for non-volatile fields. |
| 336 | switch (field_type) { |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 337 | case Primitive::kPrimBoolean: |
| 338 | obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); |
| 339 | break; |
| 340 | case Primitive::kPrimByte: |
| 341 | obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); |
| 342 | break; |
| 343 | case Primitive::kPrimChar: |
| 344 | obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); |
| 345 | break; |
| 346 | case Primitive::kPrimShort: |
| 347 | obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); |
| 348 | break; |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 349 | case Primitive::kPrimInt: |
| 350 | obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); |
| 351 | break; |
| 352 | case Primitive::kPrimLong: |
| 353 | obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA)); |
| 354 | break; |
| 355 | case Primitive::kPrimNot: |
| 356 | obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA)); |
| 357 | break; |
| 358 | default: |
| 359 | LOG(FATAL) << "Unreachable: " << field_type; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 360 | UNREACHABLE(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 361 | } |
| 362 | return true; |
| 363 | } |
| 364 | |
| 365 | // Explicitly instantiate all DoIPutQuick functions. |
| 366 | #define EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, _transaction_active) \ |
| 367 | template bool DoIPutQuick<_field_type, _transaction_active>(const ShadowFrame& shadow_frame, \ |
| 368 | const Instruction* inst, \ |
| 369 | uint16_t inst_data) |
| 370 | |
| 371 | #define EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(_field_type) \ |
| 372 | EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, false); \ |
| 373 | EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL(_field_type, true); |
| 374 | |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 375 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimInt) // iput-quick. |
| 376 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimBoolean) // iput-boolean-quick. |
| 377 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimByte) // iput-byte-quick. |
| 378 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimChar) // iput-char-quick. |
| 379 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimShort) // iput-short-quick. |
| 380 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimLong) // iput-wide-quick. |
| 381 | EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL(Primitive::kPrimNot) // iput-object-quick. |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 382 | #undef EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL |
| 383 | #undef EXPLICIT_DO_IPUT_QUICK_TEMPLATE_DECL |
| 384 | |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 385 | // We accept a null Instrumentation* meaning we must not report anything to the instrumentation. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 386 | uint32_t FindNextInstructionFollowingException( |
| 387 | Thread* self, ShadowFrame& shadow_frame, uint32_t dex_pc, |
| 388 | const instrumentation::Instrumentation* instrumentation) { |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 389 | self->VerifyStack(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 390 | StackHandleScope<2> hs(self); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 391 | Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 392 | if (instrumentation != nullptr && instrumentation->HasExceptionCaughtListeners() |
Nicolas Geoffray | 7642cfc | 2015-02-26 10:56:09 +0000 | [diff] [blame] | 393 | && self->IsExceptionThrownByCurrentMethod(exception.Get())) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 394 | instrumentation->ExceptionCaughtEvent(self, exception.Get()); |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 395 | } |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 396 | bool clear_exception = false; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 397 | uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock( |
| 398 | hs.NewHandle(exception->GetClass()), dex_pc, &clear_exception); |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 399 | if (found_dex_pc == DexFile::kDexNoIndex && instrumentation != nullptr) { |
Nicolas Geoffray | 7642cfc | 2015-02-26 10:56:09 +0000 | [diff] [blame] | 400 | // Exception is not caught by the current method. We will unwind to the |
| 401 | // caller. Notify any instrumentation listener. |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 402 | instrumentation->MethodUnwindEvent(self, shadow_frame.GetThisObject(), |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 403 | shadow_frame.GetMethod(), dex_pc); |
| 404 | } else { |
Nicolas Geoffray | 7642cfc | 2015-02-26 10:56:09 +0000 | [diff] [blame] | 405 | // Exception is caught in the current method. We will jump to the found_dex_pc. |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 406 | if (clear_exception) { |
| 407 | self->ClearException(); |
| 408 | } |
| 409 | } |
| 410 | return found_dex_pc; |
| 411 | } |
| 412 | |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 413 | void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame) { |
| 414 | LOG(FATAL) << "Unexpected instruction: " |
| 415 | << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()); |
| 416 | UNREACHABLE(); |
Ian Rogers | 5487494 | 2014-06-10 16:31:03 -0700 | [diff] [blame] | 417 | } |
| 418 | |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 419 | void AbortTransactionF(Thread* self, const char* fmt, ...) { |
Mathieu Chartier | b2c7ead | 2014-04-29 11:13:16 -0700 | [diff] [blame] | 420 | va_list args; |
| 421 | va_start(args, fmt); |
Sebastien Hertz | 45b1597 | 2015-04-03 16:07:05 +0200 | [diff] [blame] | 422 | AbortTransactionV(self, fmt, args); |
| 423 | va_end(args); |
| 424 | } |
| 425 | |
| 426 | void AbortTransactionV(Thread* self, const char* fmt, va_list args) { |
| 427 | CHECK(Runtime::Current()->IsActiveTransaction()); |
| 428 | // Constructs abort message. |
Sebastien Hertz | 1c80bec | 2015-02-03 11:58:06 +0100 | [diff] [blame] | 429 | std::string abort_msg; |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 430 | android::base::StringAppendV(&abort_msg, fmt, args); |
Sebastien Hertz | 1c80bec | 2015-02-03 11:58:06 +0100 | [diff] [blame] | 431 | // Throws an exception so we can abort the transaction and rollback every change. |
Sebastien Hertz | 2fd7e69 | 2015-04-02 11:11:19 +0200 | [diff] [blame] | 432 | Runtime::Current()->AbortTransactionAndThrowAbortError(self, abort_msg); |
Mathieu Chartier | b2c7ead | 2014-04-29 11:13:16 -0700 | [diff] [blame] | 433 | } |
| 434 | |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 435 | // START DECLARATIONS : |
| 436 | // |
| 437 | // These additional declarations are required because clang complains |
| 438 | // about ALWAYS_INLINE (-Werror, -Wgcc-compat) in definitions. |
| 439 | // |
| 440 | |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 441 | template <bool is_range, bool do_assignability_check> |
Vladimir Marko | d16363a | 2017-02-01 14:09:13 +0000 | [diff] [blame] | 442 | static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method, |
| 443 | Thread* self, |
| 444 | ShadowFrame& shadow_frame, |
| 445 | JValue* result, |
| 446 | uint16_t number_of_inputs, |
| 447 | uint32_t (&arg)[Instruction::kMaxVarArgRegs], |
| 448 | uint32_t vregC) REQUIRES_SHARED(Locks::mutator_lock_); |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 449 | |
| 450 | template <bool is_range> |
Narayan Kamath | 2cb856c | 2016-11-02 12:01:26 +0000 | [diff] [blame] | 451 | ALWAYS_INLINE void CopyRegisters(ShadowFrame& caller_frame, |
| 452 | ShadowFrame* callee_frame, |
| 453 | const uint32_t (&arg)[Instruction::kMaxVarArgRegs], |
| 454 | const size_t first_src_reg, |
| 455 | const size_t first_dest_reg, |
| 456 | const size_t num_regs) REQUIRES_SHARED(Locks::mutator_lock_); |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 457 | |
| 458 | // END DECLARATIONS. |
| 459 | |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 460 | void ArtInterpreterToCompiledCodeBridge(Thread* self, |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 461 | ArtMethod* caller, |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 462 | const DexFile::CodeItem* code_item, |
| 463 | ShadowFrame* shadow_frame, |
| 464 | JValue* result) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 465 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 3cfa4d0 | 2015-10-06 17:04:01 -0700 | [diff] [blame] | 466 | ArtMethod* method = shadow_frame->GetMethod(); |
| 467 | // Ensure static methods are initialized. |
| 468 | if (method->IsStatic()) { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 469 | ObjPtr<mirror::Class> declaringClass = method->GetDeclaringClass(); |
Andreas Gampe | 3cfa4d0 | 2015-10-06 17:04:01 -0700 | [diff] [blame] | 470 | if (UNLIKELY(!declaringClass->IsInitialized())) { |
| 471 | self->PushShadowFrame(shadow_frame); |
| 472 | StackHandleScope<1> hs(self); |
| 473 | Handle<mirror::Class> h_class(hs.NewHandle(declaringClass)); |
| 474 | if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, |
| 475 | true))) { |
| 476 | self->PopShadowFrame(); |
| 477 | DCHECK(self->IsExceptionPending()); |
| 478 | return; |
| 479 | } |
| 480 | self->PopShadowFrame(); |
| 481 | CHECK(h_class->IsInitializing()); |
| 482 | // Reload from shadow frame in case the method moved, this is faster than adding a handle. |
| 483 | method = shadow_frame->GetMethod(); |
| 484 | } |
| 485 | } |
| 486 | uint16_t arg_offset = (code_item == nullptr) |
| 487 | ? 0 |
| 488 | : code_item->registers_size_ - code_item->ins_size_; |
Nicolas Geoffray | 71cd50f | 2016-04-14 15:00:33 +0100 | [diff] [blame] | 489 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 490 | if (jit != nullptr && caller != nullptr) { |
| 491 | jit->NotifyInterpreterToCompiledCodeTransition(self, caller); |
| 492 | } |
Andreas Gampe | 3cfa4d0 | 2015-10-06 17:04:01 -0700 | [diff] [blame] | 493 | method->Invoke(self, shadow_frame->GetVRegArgs(arg_offset), |
| 494 | (shadow_frame->NumberOfVRegs() - arg_offset) * sizeof(uint32_t), |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 495 | result, method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty()); |
Andreas Gampe | 3cfa4d0 | 2015-10-06 17:04:01 -0700 | [diff] [blame] | 496 | } |
| 497 | |
Mingyao Yang | ffedec5 | 2016-05-19 10:48:40 -0700 | [diff] [blame] | 498 | void SetStringInitValueToAllAliases(ShadowFrame* shadow_frame, |
| 499 | uint16_t this_obj_vreg, |
| 500 | JValue result) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 501 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 502 | ObjPtr<mirror::Object> existing = shadow_frame->GetVRegReference(this_obj_vreg); |
Mingyao Yang | ffedec5 | 2016-05-19 10:48:40 -0700 | [diff] [blame] | 503 | if (existing == nullptr) { |
| 504 | // If it's null, we come from compiled code that was deoptimized. Nothing to do, |
| 505 | // as the compiler verified there was no alias. |
| 506 | // Set the new string result of the StringFactory. |
| 507 | shadow_frame->SetVRegReference(this_obj_vreg, result.GetL()); |
| 508 | return; |
| 509 | } |
| 510 | // Set the string init result into all aliases. |
| 511 | for (uint32_t i = 0, e = shadow_frame->NumberOfVRegs(); i < e; ++i) { |
| 512 | if (shadow_frame->GetVRegReference(i) == existing) { |
| 513 | DCHECK_EQ(shadow_frame->GetVRegReference(i), |
| 514 | reinterpret_cast<mirror::Object*>(shadow_frame->GetVReg(i))); |
| 515 | shadow_frame->SetVRegReference(i, result.GetL()); |
| 516 | DCHECK_EQ(shadow_frame->GetVRegReference(i), |
| 517 | reinterpret_cast<mirror::Object*>(shadow_frame->GetVReg(i))); |
| 518 | } |
| 519 | } |
| 520 | } |
| 521 | |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 522 | template<bool is_range> |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 523 | bool DoInvokePolymorphic(Thread* self, |
| 524 | ShadowFrame& shadow_frame, |
| 525 | const Instruction* inst, |
| 526 | uint16_t inst_data, |
| 527 | JValue* result) |
Orion Hodson | ba28f9f | 2016-10-26 10:56:25 +0100 | [diff] [blame] | 528 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 529 | // Invoke-polymorphic instructions always take a receiver. i.e, they are never static. |
| 530 | const uint32_t vRegC = (is_range) ? inst->VRegC_4rcc() : inst->VRegC_45cc(); |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 531 | const int invoke_method_idx = (is_range) ? inst->VRegB_4rcc() : inst->VRegB_45cc(); |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 532 | |
Orion Hodson | 1a06f9f | 2016-11-09 08:32:42 +0000 | [diff] [blame] | 533 | // Initialize |result| to 0 as this is the default return value for |
| 534 | // polymorphic invocations of method handle types with void return |
| 535 | // and provides sane return result in error cases. |
| 536 | result->SetJ(0); |
| 537 | |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 538 | // The invoke_method_idx here is the name of the signature polymorphic method that |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 539 | // was symbolically invoked in bytecode (say MethodHandle.invoke or MethodHandle.invokeExact) |
| 540 | // and not the method that we'll dispatch to in the end. |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 541 | StackHandleScope<5> hs(self); |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 542 | Handle<mirror::MethodHandle> method_handle(hs.NewHandle( |
| 543 | ObjPtr<mirror::MethodHandle>::DownCast( |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 544 | MakeObjPtr(shadow_frame.GetVRegReference(vRegC))))); |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 545 | if (UNLIKELY(method_handle.Get() == nullptr)) { |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 546 | // Note that the invoke type is kVirtual here because a call to a signature |
| 547 | // polymorphic method is shaped like a virtual call at the bytecode level. |
Orion Hodson | 3d617ac | 2016-10-19 14:00:46 +0100 | [diff] [blame] | 548 | ThrowNullPointerExceptionForMethodAccess(invoke_method_idx, InvokeType::kVirtual); |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 549 | return false; |
| 550 | } |
| 551 | |
| 552 | // The vRegH value gives the index of the proto_id associated with this |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 553 | // signature polymorphic call site. |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 554 | const uint32_t callsite_proto_id = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc(); |
| 555 | |
| 556 | // Call through to the classlinker and ask it to resolve the static type associated |
| 557 | // with the callsite. This information is stored in the dex cache so it's |
| 558 | // guaranteed to be fast after the first resolution. |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 559 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 560 | Handle<mirror::Class> caller_class(hs.NewHandle(shadow_frame.GetMethod()->GetDeclaringClass())); |
| 561 | Handle<mirror::MethodType> callsite_type(hs.NewHandle(class_linker->ResolveMethodType( |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 562 | caller_class->GetDexFile(), callsite_proto_id, |
| 563 | hs.NewHandle<mirror::DexCache>(caller_class->GetDexCache()), |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 564 | hs.NewHandle<mirror::ClassLoader>(caller_class->GetClassLoader())))); |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 565 | |
| 566 | // This implies we couldn't resolve one or more types in this method handle. |
Narayan Kamath | 208f857 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 567 | if (UNLIKELY(callsite_type.Get() == nullptr)) { |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 568 | CHECK(self->IsExceptionPending()); |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 569 | return false; |
| 570 | } |
| 571 | |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 572 | ArtMethod* invoke_method = |
| 573 | class_linker->ResolveMethod<ClassLinker::kForceICCECheck>(self, |
| 574 | invoke_method_idx, |
| 575 | shadow_frame.GetMethod(), |
| 576 | kVirtual); |
Narayan Kamath | 0a8485e | 2016-11-02 18:47:11 +0000 | [diff] [blame] | 577 | |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 578 | // There is a common dispatch method for method handles that takes |
| 579 | // arguments either from a range or an array of arguments depending |
| 580 | // on whether the DEX instruction is invoke-polymorphic/range or |
| 581 | // invoke-polymorphic. The array here is for the latter. |
| 582 | uint32_t args[Instruction::kMaxVarArgRegs] = {}; |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 583 | if (is_range) { |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 584 | // VRegC is the register holding the method handle. Arguments passed |
| 585 | // to the method handle's target do not include the method handle. |
| 586 | uint32_t first_arg = inst->VRegC_4rcc() + 1; |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 587 | return DoInvokePolymorphic<is_range>(self, |
| 588 | invoke_method, |
| 589 | shadow_frame, |
| 590 | method_handle, |
| 591 | callsite_type, |
| 592 | args /* unused */, |
| 593 | first_arg, |
| 594 | result); |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 595 | } else { |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 596 | // Get the register arguments for the invoke. |
| 597 | inst->GetVarArgs(args, inst_data); |
| 598 | // Drop the first register which is the method handle performing the invoke. |
Alexey Frunze | 8631a46 | 2017-01-19 19:07:37 -0800 | [diff] [blame] | 599 | memmove(args, args + 1, sizeof(args[0]) * (Instruction::kMaxVarArgRegs - 1)); |
Orion Hodson | 811bd5f | 2016-12-07 11:35:37 +0000 | [diff] [blame] | 600 | args[Instruction::kMaxVarArgRegs - 1] = 0; |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 601 | return DoInvokePolymorphic<is_range>(self, |
| 602 | invoke_method, |
| 603 | shadow_frame, |
| 604 | method_handle, |
| 605 | callsite_type, |
| 606 | args, |
| 607 | args[0], |
| 608 | result); |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 612 | static ObjPtr<mirror::CallSite> InvokeBootstrapMethod(Thread* self, |
| 613 | ShadowFrame& shadow_frame, |
| 614 | uint32_t call_site_idx) |
| 615 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 616 | ArtMethod* referrer = shadow_frame.GetMethod(); |
| 617 | const DexFile* dex_file = referrer->GetDexFile(); |
| 618 | const DexFile::CallSiteIdItem& csi = dex_file->GetCallSiteId(call_site_idx); |
| 619 | |
| 620 | StackHandleScope<9> hs(self); |
| 621 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader())); |
| 622 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache())); |
| 623 | |
| 624 | CallSiteArrayValueIterator it(*dex_file, csi); |
| 625 | uint32_t method_handle_idx = static_cast<uint32_t>(it.GetJavaValue().i); |
| 626 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 627 | Handle<mirror::MethodHandle> |
| 628 | bootstrap(hs.NewHandle(class_linker->ResolveMethodHandle(method_handle_idx, referrer))); |
| 629 | if (bootstrap.IsNull()) { |
| 630 | DCHECK(self->IsExceptionPending()); |
| 631 | return nullptr; |
| 632 | } |
| 633 | Handle<mirror::MethodType> bootstrap_method_type = hs.NewHandle(bootstrap->GetMethodType()); |
| 634 | it.Next(); |
| 635 | |
| 636 | DCHECK_EQ(static_cast<size_t>(bootstrap->GetMethodType()->GetPTypes()->GetLength()), it.Size()); |
| 637 | const size_t num_bootstrap_vregs = bootstrap->GetMethodType()->NumberOfVRegs(); |
| 638 | |
| 639 | // Set-up a shadow frame for invoking the bootstrap method handle. |
| 640 | ShadowFrameAllocaUniquePtr bootstrap_frame = |
| 641 | CREATE_SHADOW_FRAME(num_bootstrap_vregs, nullptr, referrer, shadow_frame.GetDexPC()); |
| 642 | ScopedStackedShadowFramePusher pusher( |
| 643 | self, bootstrap_frame.get(), StackedShadowFrameType::kShadowFrameUnderConstruction); |
| 644 | size_t vreg = 0; |
| 645 | |
| 646 | // The first parameter is a MethodHandles lookup instance. |
| 647 | { |
| 648 | Handle<mirror::Class> lookup_class(hs.NewHandle(bootstrap->GetTargetClass())); |
| 649 | ObjPtr<mirror::MethodHandlesLookup> lookup = |
| 650 | mirror::MethodHandlesLookup::Create(self, lookup_class); |
| 651 | if (lookup.IsNull()) { |
| 652 | DCHECK(self->IsExceptionPending()); |
| 653 | return nullptr; |
| 654 | } |
| 655 | bootstrap_frame->SetVRegReference(vreg++, lookup.Ptr()); |
| 656 | } |
| 657 | |
| 658 | // The second parameter is the name to lookup. |
| 659 | { |
| 660 | dex::StringIndex name_idx(static_cast<uint32_t>(it.GetJavaValue().i)); |
| 661 | ObjPtr<mirror::String> name = class_linker->ResolveString(*dex_file, name_idx, dex_cache); |
| 662 | if (name.IsNull()) { |
| 663 | DCHECK(self->IsExceptionPending()); |
| 664 | return nullptr; |
| 665 | } |
| 666 | bootstrap_frame->SetVRegReference(vreg++, name.Ptr()); |
| 667 | } |
| 668 | it.Next(); |
| 669 | |
| 670 | // The third parameter is the method type associated with the name. |
| 671 | uint32_t method_type_idx = static_cast<uint32_t>(it.GetJavaValue().i); |
| 672 | Handle<mirror::MethodType> |
| 673 | method_type(hs.NewHandle(class_linker->ResolveMethodType(*dex_file, |
| 674 | method_type_idx, |
| 675 | dex_cache, |
| 676 | class_loader))); |
| 677 | if (method_type.IsNull()) { |
| 678 | DCHECK(self->IsExceptionPending()); |
| 679 | return nullptr; |
| 680 | } |
| 681 | bootstrap_frame->SetVRegReference(vreg++, method_type.Get()); |
| 682 | it.Next(); |
| 683 | |
| 684 | // Append remaining arguments (if any). |
| 685 | while (it.HasNext()) { |
| 686 | const jvalue& jvalue = it.GetJavaValue(); |
| 687 | switch (it.GetValueType()) { |
| 688 | case EncodedArrayValueIterator::ValueType::kBoolean: |
| 689 | case EncodedArrayValueIterator::ValueType::kByte: |
| 690 | case EncodedArrayValueIterator::ValueType::kChar: |
| 691 | case EncodedArrayValueIterator::ValueType::kShort: |
| 692 | case EncodedArrayValueIterator::ValueType::kInt: |
| 693 | bootstrap_frame->SetVReg(vreg, jvalue.i); |
| 694 | vreg += 1; |
| 695 | break; |
| 696 | case EncodedArrayValueIterator::ValueType::kLong: |
| 697 | bootstrap_frame->SetVRegLong(vreg, jvalue.j); |
| 698 | vreg += 2; |
| 699 | break; |
| 700 | case EncodedArrayValueIterator::ValueType::kFloat: |
| 701 | bootstrap_frame->SetVRegFloat(vreg, jvalue.f); |
| 702 | vreg += 1; |
| 703 | break; |
| 704 | case EncodedArrayValueIterator::ValueType::kDouble: |
| 705 | bootstrap_frame->SetVRegDouble(vreg, jvalue.d); |
| 706 | vreg += 2; |
| 707 | break; |
| 708 | case EncodedArrayValueIterator::ValueType::kMethodType: { |
| 709 | uint32_t idx = static_cast<uint32_t>(jvalue.i); |
| 710 | ObjPtr<mirror::MethodType> ref = |
| 711 | class_linker->ResolveMethodType(*dex_file, idx, dex_cache, class_loader); |
| 712 | if (ref.IsNull()) { |
| 713 | DCHECK(self->IsExceptionPending()); |
| 714 | return nullptr; |
| 715 | } |
| 716 | bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); |
| 717 | vreg += 1; |
| 718 | break; |
| 719 | } |
| 720 | case EncodedArrayValueIterator::ValueType::kMethodHandle: { |
| 721 | uint32_t idx = static_cast<uint32_t>(jvalue.i); |
| 722 | ObjPtr<mirror::MethodHandle> ref = |
| 723 | class_linker->ResolveMethodHandle(idx, referrer); |
| 724 | if (ref.IsNull()) { |
| 725 | DCHECK(self->IsExceptionPending()); |
| 726 | return nullptr; |
| 727 | } |
| 728 | bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); |
| 729 | vreg += 1; |
| 730 | break; |
| 731 | } |
| 732 | case EncodedArrayValueIterator::ValueType::kString: { |
| 733 | dex::StringIndex idx(static_cast<uint32_t>(jvalue.i)); |
| 734 | ObjPtr<mirror::String> ref = class_linker->ResolveString(*dex_file, idx, dex_cache); |
| 735 | if (ref.IsNull()) { |
| 736 | DCHECK(self->IsExceptionPending()); |
| 737 | return nullptr; |
| 738 | } |
| 739 | bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); |
| 740 | vreg += 1; |
| 741 | break; |
| 742 | } |
| 743 | case EncodedArrayValueIterator::ValueType::kType: { |
| 744 | dex::TypeIndex idx(static_cast<uint32_t>(jvalue.i)); |
| 745 | ObjPtr<mirror::Class> ref = |
| 746 | class_linker->ResolveType(*dex_file, idx, dex_cache, class_loader); |
| 747 | if (ref.IsNull()) { |
| 748 | DCHECK(self->IsExceptionPending()); |
| 749 | return nullptr; |
| 750 | } |
| 751 | bootstrap_frame->SetVRegReference(vreg, ref.Ptr()); |
| 752 | vreg += 1; |
| 753 | break; |
| 754 | } |
| 755 | case EncodedArrayValueIterator::ValueType::kNull: |
| 756 | bootstrap_frame->SetVRegReference(vreg, nullptr); |
| 757 | vreg += 1; |
| 758 | break; |
| 759 | case EncodedArrayValueIterator::ValueType::kField: |
| 760 | case EncodedArrayValueIterator::ValueType::kMethod: |
| 761 | case EncodedArrayValueIterator::ValueType::kEnum: |
| 762 | case EncodedArrayValueIterator::ValueType::kArray: |
| 763 | case EncodedArrayValueIterator::ValueType::kAnnotation: |
| 764 | // Unreachable based on current EncodedArrayValueIterator::Next(). |
| 765 | UNREACHABLE(); |
| 766 | } |
| 767 | |
| 768 | it.Next(); |
| 769 | } |
| 770 | |
| 771 | // Invoke the bootstrap method handle. |
| 772 | JValue result; |
| 773 | |
| 774 | // This array of arguments is unused. DoInvokePolymorphic() operates on either a |
| 775 | // an argument array or a range, but always takes an array argument. |
| 776 | uint32_t args_unused[Instruction::kMaxVarArgRegs]; |
| 777 | ArtMethod* invoke_exact = |
| 778 | jni::DecodeArtMethod(WellKnownClasses::java_lang_invoke_MethodHandle_invokeExact); |
| 779 | bool invoke_success = DoInvokePolymorphic<true /* is_range */>(self, |
| 780 | invoke_exact, |
| 781 | *bootstrap_frame, |
| 782 | bootstrap, |
| 783 | bootstrap_method_type, |
| 784 | args_unused, |
| 785 | 0, |
| 786 | &result); |
| 787 | if (!invoke_success) { |
| 788 | DCHECK(self->IsExceptionPending()); |
| 789 | return nullptr; |
| 790 | } |
| 791 | |
| 792 | Handle<mirror::Object> object(hs.NewHandle(result.GetL())); |
| 793 | |
| 794 | // Check the result is not null. |
| 795 | if (UNLIKELY(object.IsNull())) { |
| 796 | ThrowNullPointerException("CallSite == null"); |
| 797 | return nullptr; |
| 798 | } |
| 799 | |
| 800 | // Check the result type is a subclass of CallSite. |
| 801 | if (UNLIKELY(!object->InstanceOf(mirror::CallSite::StaticClass()))) { |
| 802 | ThrowClassCastException(object->GetClass(), mirror::CallSite::StaticClass()); |
| 803 | return nullptr; |
| 804 | } |
| 805 | |
| 806 | Handle<mirror::CallSite> call_site = |
| 807 | hs.NewHandle(ObjPtr<mirror::CallSite>::DownCast(ObjPtr<mirror::Object>(result.GetL()))); |
| 808 | |
| 809 | // Check the call site target is not null as we're going to invoke it. |
| 810 | Handle<mirror::MethodHandle> target = hs.NewHandle(call_site->GetTarget()); |
| 811 | if (UNLIKELY(target.IsNull())) { |
| 812 | ThrowNullPointerException("CallSite target == null"); |
| 813 | return nullptr; |
| 814 | } |
| 815 | |
| 816 | // Check the target method type matches the method type requested. |
| 817 | if (UNLIKELY(!target->GetMethodType()->IsExactMatch(method_type.Get()))) { |
| 818 | ThrowWrongMethodTypeException(target->GetMethodType(), method_type.Get()); |
| 819 | return nullptr; |
| 820 | } |
| 821 | |
| 822 | return call_site.Get(); |
| 823 | } |
| 824 | |
| 825 | template<bool is_range> |
| 826 | bool DoInvokeCustom(Thread* self, |
| 827 | ShadowFrame& shadow_frame, |
| 828 | const Instruction* inst, |
| 829 | uint16_t inst_data, |
| 830 | JValue* result) |
| 831 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 832 | // invoke-custom is not supported in transactions. In transactions |
| 833 | // there is a limited set of types supported. invoke-custom allows |
| 834 | // running arbitrary code and instantiating arbitrary types. |
| 835 | CHECK(!Runtime::Current()->IsActiveTransaction()); |
| 836 | StackHandleScope<4> hs(self); |
| 837 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(shadow_frame.GetMethod()->GetDexCache())); |
| 838 | const uint32_t call_site_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); |
| 839 | MutableHandle<mirror::CallSite> |
| 840 | call_site(hs.NewHandle(dex_cache->GetResolvedCallSite(call_site_idx))); |
| 841 | if (call_site.IsNull()) { |
| 842 | call_site.Assign(InvokeBootstrapMethod(self, shadow_frame, call_site_idx)); |
| 843 | if (UNLIKELY(call_site.IsNull())) { |
| 844 | CHECK(self->IsExceptionPending()); |
| 845 | ThrowWrappedBootstrapMethodError("Exception from call site #%u bootstrap method", |
| 846 | call_site_idx); |
| 847 | result->SetJ(0); |
| 848 | return false; |
| 849 | } |
| 850 | mirror::CallSite* winning_call_site = |
| 851 | dex_cache->SetResolvedCallSite(call_site_idx, call_site.Get()); |
| 852 | call_site.Assign(winning_call_site); |
| 853 | } |
| 854 | |
| 855 | // CallSite.java checks the re-assignment of the call site target |
| 856 | // when mutating call site targets. We only check the target is |
| 857 | // non-null and has the right type during bootstrap method execution. |
| 858 | Handle<mirror::MethodHandle> target = hs.NewHandle(call_site->GetTarget()); |
| 859 | Handle<mirror::MethodType> target_method_type = hs.NewHandle(target->GetMethodType()); |
| 860 | DCHECK_EQ(static_cast<size_t>(inst->VRegA()), target_method_type->NumberOfVRegs()); |
| 861 | |
| 862 | uint32_t args[Instruction::kMaxVarArgRegs]; |
| 863 | if (is_range) { |
| 864 | args[0] = inst->VRegC_3rc(); |
| 865 | } else { |
| 866 | inst->GetVarArgs(args, inst_data); |
| 867 | } |
| 868 | |
| 869 | ArtMethod* invoke_exact = |
| 870 | jni::DecodeArtMethod(WellKnownClasses::java_lang_invoke_MethodHandle_invokeExact); |
| 871 | return DoInvokePolymorphic<is_range>(self, |
| 872 | invoke_exact, |
| 873 | shadow_frame, |
| 874 | target, |
| 875 | target_method_type, |
| 876 | args, |
| 877 | args[0], |
| 878 | result); |
| 879 | } |
| 880 | |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 881 | template <bool is_range> |
| 882 | inline void CopyRegisters(ShadowFrame& caller_frame, |
| 883 | ShadowFrame* callee_frame, |
| 884 | const uint32_t (&arg)[Instruction::kMaxVarArgRegs], |
| 885 | const size_t first_src_reg, |
| 886 | const size_t first_dest_reg, |
| 887 | const size_t num_regs) { |
| 888 | if (is_range) { |
| 889 | const size_t dest_reg_bound = first_dest_reg + num_regs; |
| 890 | for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < dest_reg_bound; |
| 891 | ++dest_reg, ++src_reg) { |
| 892 | AssignRegister(callee_frame, caller_frame, dest_reg, src_reg); |
| 893 | } |
| 894 | } else { |
| 895 | DCHECK_LE(num_regs, arraysize(arg)); |
| 896 | |
| 897 | for (size_t arg_index = 0; arg_index < num_regs; ++arg_index) { |
| 898 | AssignRegister(callee_frame, caller_frame, first_dest_reg + arg_index, arg[arg_index]); |
| 899 | } |
| 900 | } |
| 901 | } |
| 902 | |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 903 | template <bool is_range, |
Narayan Kamath | 370423d | 2016-10-03 16:51:22 +0100 | [diff] [blame] | 904 | bool do_assignability_check> |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 905 | static inline bool DoCallCommon(ArtMethod* called_method, |
| 906 | Thread* self, |
| 907 | ShadowFrame& shadow_frame, |
| 908 | JValue* result, |
| 909 | uint16_t number_of_inputs, |
Narayan Kamath | 370423d | 2016-10-03 16:51:22 +0100 | [diff] [blame] | 910 | uint32_t (&arg)[Instruction::kMaxVarArgRegs], |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 911 | uint32_t vregC) { |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 912 | bool string_init = false; |
| 913 | // Replace calls to String.<init> with equivalent StringFactory call. |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 914 | if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass() |
| 915 | && called_method->IsConstructor())) { |
Nicolas Geoffray | da079bb | 2016-09-26 17:56:07 +0100 | [diff] [blame] | 916 | called_method = WellKnownClasses::StringInitToStringFactory(called_method); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 917 | string_init = true; |
| 918 | } |
| 919 | |
Alex Light | daf58c8 | 2016-03-16 23:00:49 +0000 | [diff] [blame] | 920 | // Compute method information. |
| 921 | const DexFile::CodeItem* code_item = called_method->GetCodeItem(); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 922 | |
| 923 | // Number of registers for the callee's call frame. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 924 | uint16_t num_regs; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 925 | if (LIKELY(code_item != nullptr)) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 926 | num_regs = code_item->registers_size_; |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 927 | DCHECK_EQ(string_init ? number_of_inputs - 1 : number_of_inputs, code_item->ins_size_); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 928 | } else { |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 929 | DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 930 | num_regs = number_of_inputs; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 931 | } |
| 932 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 933 | // Hack for String init: |
| 934 | // |
| 935 | // Rewrite invoke-x java.lang.String.<init>(this, a, b, c, ...) into: |
| 936 | // invoke-x StringFactory(a, b, c, ...) |
| 937 | // by effectively dropping the first virtual register from the invoke. |
| 938 | // |
| 939 | // (at this point the ArtMethod has already been replaced, |
| 940 | // so we just need to fix-up the arguments) |
David Brazdil | 65902e8 | 2016-01-15 09:35:13 +0000 | [diff] [blame] | 941 | // |
| 942 | // Note that FindMethodFromCode in entrypoint_utils-inl.h was also special-cased |
| 943 | // to handle the compiler optimization of replacing `this` with null without |
| 944 | // throwing NullPointerException. |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 945 | uint32_t string_init_vreg_this = is_range ? vregC : arg[0]; |
Igor Murashkin | a06b49b | 2015-06-25 15:18:12 -0700 | [diff] [blame] | 946 | if (UNLIKELY(string_init)) { |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 947 | DCHECK_GT(num_regs, 0u); // As the method is an instance method, there should be at least 1. |
Igor Murashkin | a06b49b | 2015-06-25 15:18:12 -0700 | [diff] [blame] | 948 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 949 | // The new StringFactory call is static and has one fewer argument. |
Igor Murashkin | a06b49b | 2015-06-25 15:18:12 -0700 | [diff] [blame] | 950 | if (code_item == nullptr) { |
| 951 | DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); |
| 952 | num_regs--; |
| 953 | } // else ... don't need to change num_regs since it comes up from the string_init's code item |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 954 | number_of_inputs--; |
| 955 | |
| 956 | // Rewrite the var-args, dropping the 0th argument ("this") |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 957 | for (uint32_t i = 1; i < arraysize(arg); ++i) { |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 958 | arg[i - 1] = arg[i]; |
| 959 | } |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 960 | arg[arraysize(arg) - 1] = 0; |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 961 | |
| 962 | // Rewrite the non-var-arg case |
| 963 | vregC++; // Skips the 0th vreg in the range ("this"). |
| 964 | } |
| 965 | |
| 966 | // Parameter registers go at the end of the shadow frame. |
| 967 | DCHECK_GE(num_regs, number_of_inputs); |
| 968 | size_t first_dest_reg = num_regs - number_of_inputs; |
| 969 | DCHECK_NE(first_dest_reg, (size_t)-1); |
| 970 | |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 971 | // Allocate shadow frame on the stack. |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 972 | const char* old_cause = self->StartAssertNoThreadSuspension("DoCallCommon"); |
Andreas Gampe | b302592 | 2015-09-01 14:45:00 -0700 | [diff] [blame] | 973 | ShadowFrameAllocaUniquePtr shadow_frame_unique_ptr = |
Andreas Gampe | 03ec930 | 2015-08-27 17:41:47 -0700 | [diff] [blame] | 974 | CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0); |
Andreas Gampe | b302592 | 2015-09-01 14:45:00 -0700 | [diff] [blame] | 975 | ShadowFrame* new_shadow_frame = shadow_frame_unique_ptr.get(); |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 976 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 977 | // Initialize new shadow frame by copying the registers from the callee shadow frame. |
Jeff Hao | a3faaf4 | 2013-09-03 19:07:00 -0700 | [diff] [blame] | 978 | if (do_assignability_check) { |
Andreas Gampe | 2a0d4ec | 2014-06-02 22:05:22 -0700 | [diff] [blame] | 979 | // Slow path. |
| 980 | // We might need to do class loading, which incurs a thread state change to kNative. So |
| 981 | // register the shadow frame as under construction and allow suspension again. |
Mingyao Yang | 1f2d3ba | 2015-05-18 12:12:50 -0700 | [diff] [blame] | 982 | ScopedStackedShadowFramePusher pusher( |
Sebastien Hertz | f795869 | 2015-06-09 14:09:14 +0200 | [diff] [blame] | 983 | self, new_shadow_frame, StackedShadowFrameType::kShadowFrameUnderConstruction); |
Andreas Gampe | 2a0d4ec | 2014-06-02 22:05:22 -0700 | [diff] [blame] | 984 | self->EndAssertNoThreadSuspension(old_cause); |
| 985 | |
Igor Murashkin | 9f95ba7 | 2016-02-01 14:21:25 -0800 | [diff] [blame] | 986 | // ArtMethod here is needed to check type information of the call site against the callee. |
| 987 | // Type information is retrieved from a DexFile/DexCache for that respective declared method. |
| 988 | // |
| 989 | // As a special case for proxy methods, which are not dex-backed, |
| 990 | // we have to retrieve type information from the proxy's method |
| 991 | // interface method instead (which is dex backed since proxies are never interfaces). |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 992 | ArtMethod* method = |
| 993 | new_shadow_frame->GetMethod()->GetInterfaceMethodIfProxy(kRuntimePointerSize); |
Igor Murashkin | 9f95ba7 | 2016-02-01 14:21:25 -0800 | [diff] [blame] | 994 | |
Andreas Gampe | 2a0d4ec | 2014-06-02 22:05:22 -0700 | [diff] [blame] | 995 | // We need to do runtime check on reference assignment. We need to load the shorty |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 996 | // to get the exact type of each reference argument. |
Igor Murashkin | 9f95ba7 | 2016-02-01 14:21:25 -0800 | [diff] [blame] | 997 | const DexFile::TypeList* params = method->GetParameterTypeList(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 998 | uint32_t shorty_len = 0; |
Igor Murashkin | 9f95ba7 | 2016-02-01 14:21:25 -0800 | [diff] [blame] | 999 | const char* shorty = method->GetShorty(&shorty_len); |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1000 | |
Sebastien Hertz | 9119c5f | 2013-12-16 11:31:45 +0100 | [diff] [blame] | 1001 | // Handle receiver apart since it's not part of the shorty. |
| 1002 | size_t dest_reg = first_dest_reg; |
| 1003 | size_t arg_offset = 0; |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1004 | |
Igor Murashkin | 9f95ba7 | 2016-02-01 14:21:25 -0800 | [diff] [blame] | 1005 | if (!method->IsStatic()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1006 | size_t receiver_reg = is_range ? vregC : arg[0]; |
Sebastien Hertz | 9119c5f | 2013-12-16 11:31:45 +0100 | [diff] [blame] | 1007 | new_shadow_frame->SetVRegReference(dest_reg, shadow_frame.GetVRegReference(receiver_reg)); |
| 1008 | ++dest_reg; |
| 1009 | ++arg_offset; |
Igor Murashkin | a06b49b | 2015-06-25 15:18:12 -0700 | [diff] [blame] | 1010 | DCHECK(!string_init); // All StringFactory methods are static. |
Sebastien Hertz | 9119c5f | 2013-12-16 11:31:45 +0100 | [diff] [blame] | 1011 | } |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1012 | |
| 1013 | // Copy the caller's invoke-* arguments into the callee's parameter registers. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1014 | for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) { |
Igor Murashkin | a06b49b | 2015-06-25 15:18:12 -0700 | [diff] [blame] | 1015 | // Skip the 0th 'shorty' type since it represents the return type. |
| 1016 | DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'"; |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1017 | const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset]; |
| 1018 | switch (shorty[shorty_pos + 1]) { |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1019 | // Handle Object references. 1 virtual register slot. |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1020 | case 'L': { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1021 | ObjPtr<mirror::Object> o = shadow_frame.GetVRegReference(src_reg); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1022 | if (do_assignability_check && o != nullptr) { |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1023 | const dex::TypeIndex type_idx = params->GetTypeItem(shorty_pos).type_idx_; |
Vladimir Marko | 942fd31 | 2017-01-16 20:52:19 +0000 | [diff] [blame] | 1024 | ObjPtr<mirror::Class> arg_type = method->GetDexCache()->GetResolvedType(type_idx); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1025 | if (arg_type == nullptr) { |
Mathieu Chartier | e22305b | 2016-10-26 21:04:58 -0700 | [diff] [blame] | 1026 | StackHandleScope<1> hs(self); |
| 1027 | // Preserve o since it is used below and GetClassFromTypeIndex may cause thread |
| 1028 | // suspension. |
| 1029 | HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&o); |
Vladimir Marko | 942fd31 | 2017-01-16 20:52:19 +0000 | [diff] [blame] | 1030 | arg_type = method->GetClassFromTypeIndex(type_idx, true /* resolve */); |
Mathieu Chartier | e22305b | 2016-10-26 21:04:58 -0700 | [diff] [blame] | 1031 | if (arg_type == nullptr) { |
| 1032 | CHECK(self->IsExceptionPending()); |
| 1033 | return false; |
| 1034 | } |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1035 | } |
| 1036 | if (!o->VerifierInstanceOf(arg_type)) { |
| 1037 | // This should never happen. |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1038 | std::string temp1, temp2; |
Orion Hodson | fef0664 | 2016-11-25 16:07:11 +0000 | [diff] [blame] | 1039 | self->ThrowNewExceptionF("Ljava/lang/InternalError;", |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1040 | "Invoking %s with bad arg %d, type '%s' not instance of '%s'", |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 1041 | new_shadow_frame->GetMethod()->GetName(), shorty_pos, |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1042 | o->GetClass()->GetDescriptor(&temp1), |
| 1043 | arg_type->GetDescriptor(&temp2)); |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1044 | return false; |
| 1045 | } |
Jeff Hao | a3faaf4 | 2013-09-03 19:07:00 -0700 | [diff] [blame] | 1046 | } |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1047 | new_shadow_frame->SetVRegReference(dest_reg, o.Ptr()); |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1048 | break; |
Jeff Hao | a3faaf4 | 2013-09-03 19:07:00 -0700 | [diff] [blame] | 1049 | } |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1050 | // Handle doubles and longs. 2 consecutive virtual register slots. |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1051 | case 'J': case 'D': { |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1052 | uint64_t wide_value = |
| 1053 | (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << BitSizeOf<uint32_t>()) | |
| 1054 | static_cast<uint32_t>(shadow_frame.GetVReg(src_reg)); |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1055 | new_shadow_frame->SetVRegLong(dest_reg, wide_value); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1056 | // Skip the next virtual register slot since we already used it. |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1057 | ++dest_reg; |
| 1058 | ++arg_offset; |
| 1059 | break; |
| 1060 | } |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1061 | // Handle all other primitives that are always 1 virtual register slot. |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1062 | default: |
| 1063 | new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg)); |
| 1064 | break; |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1065 | } |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1066 | } |
| 1067 | } else { |
Sebastien Hertz | 9ace87b | 2013-09-27 11:48:09 +0200 | [diff] [blame] | 1068 | if (is_range) { |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 1069 | DCHECK_EQ(num_regs, first_dest_reg + number_of_inputs); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1070 | } |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 1071 | |
| 1072 | CopyRegisters<is_range>(shadow_frame, |
| 1073 | new_shadow_frame, |
| 1074 | arg, |
| 1075 | vregC, |
| 1076 | first_dest_reg, |
| 1077 | number_of_inputs); |
Andreas Gampe | 2a0d4ec | 2014-06-02 22:05:22 -0700 | [diff] [blame] | 1078 | self->EndAssertNoThreadSuspension(old_cause); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1079 | } |
| 1080 | |
Narayan Kamath | c3b7f1a | 2016-10-19 11:05:04 +0100 | [diff] [blame] | 1081 | PerformCall(self, code_item, shadow_frame.GetMethod(), first_dest_reg, new_shadow_frame, result); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1082 | |
| 1083 | if (string_init && !self->IsExceptionPending()) { |
Mingyao Yang | ffedec5 | 2016-05-19 10:48:40 -0700 | [diff] [blame] | 1084 | SetStringInitValueToAllAliases(&shadow_frame, string_init_vreg_this, *result); |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 1085 | } |
| 1086 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1087 | return !self->IsExceptionPending(); |
| 1088 | } |
| 1089 | |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1090 | template<bool is_range, bool do_assignability_check> |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1091 | bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, |
| 1092 | const Instruction* inst, uint16_t inst_data, JValue* result) { |
| 1093 | // Argument word count. |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 1094 | const uint16_t number_of_inputs = |
| 1095 | (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data); |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1096 | |
| 1097 | // TODO: find a cleaner way to separate non-range and range information without duplicating |
| 1098 | // code. |
Igor Murashkin | 6918bf1 | 2015-09-27 19:19:06 -0700 | [diff] [blame] | 1099 | uint32_t arg[Instruction::kMaxVarArgRegs] = {}; // only used in invoke-XXX. |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1100 | uint32_t vregC = 0; |
| 1101 | if (is_range) { |
| 1102 | vregC = inst->VRegC_3rc(); |
| 1103 | } else { |
| 1104 | vregC = inst->VRegC_35c(); |
| 1105 | inst->GetVarArgs(arg, inst_data); |
| 1106 | } |
| 1107 | |
| 1108 | return DoCallCommon<is_range, do_assignability_check>( |
| 1109 | called_method, self, shadow_frame, |
| 1110 | result, number_of_inputs, arg, vregC); |
| 1111 | } |
| 1112 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1113 | template <bool is_range, bool do_access_check, bool transaction_active> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1114 | bool DoFilledNewArray(const Instruction* inst, |
| 1115 | const ShadowFrame& shadow_frame, |
| 1116 | Thread* self, |
| 1117 | JValue* result) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1118 | DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY || |
| 1119 | inst->Opcode() == Instruction::FILLED_NEW_ARRAY_RANGE); |
| 1120 | const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c(); |
| 1121 | if (!is_range) { |
| 1122 | // Checks FILLED_NEW_ARRAY's length does not exceed 5 arguments. |
| 1123 | CHECK_LE(length, 5); |
| 1124 | } |
| 1125 | if (UNLIKELY(length < 0)) { |
| 1126 | ThrowNegativeArraySizeException(length); |
| 1127 | return false; |
| 1128 | } |
| 1129 | uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); |
Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1130 | ObjPtr<mirror::Class> array_class = ResolveVerifyAndClinit(dex::TypeIndex(type_idx), |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1131 | shadow_frame.GetMethod(), |
| 1132 | self, |
| 1133 | false, |
| 1134 | do_access_check); |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1135 | if (UNLIKELY(array_class == nullptr)) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1136 | DCHECK(self->IsExceptionPending()); |
| 1137 | return false; |
| 1138 | } |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1139 | CHECK(array_class->IsArrayClass()); |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1140 | ObjPtr<mirror::Class> component_class = array_class->GetComponentType(); |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1141 | const bool is_primitive_int_component = component_class->IsPrimitiveInt(); |
| 1142 | if (UNLIKELY(component_class->IsPrimitive() && !is_primitive_int_component)) { |
| 1143 | if (component_class->IsPrimitiveLong() || component_class->IsPrimitiveDouble()) { |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1144 | ThrowRuntimeException("Bad filled array request for type %s", |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1145 | component_class->PrettyDescriptor().c_str()); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1146 | } else { |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 1147 | self->ThrowNewExceptionF("Ljava/lang/InternalError;", |
Brian Carlstrom | 4fa0bcd | 2013-12-10 11:24:21 -0800 | [diff] [blame] | 1148 | "Found type %s; filled-new-array not implemented for anything but 'int'", |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1149 | component_class->PrettyDescriptor().c_str()); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1150 | } |
| 1151 | return false; |
| 1152 | } |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1153 | ObjPtr<mirror::Object> new_array = mirror::Array::Alloc<true>( |
| 1154 | self, |
| 1155 | array_class, |
| 1156 | length, |
| 1157 | array_class->GetComponentSizeShift(), |
| 1158 | Runtime::Current()->GetHeap()->GetCurrentAllocator()); |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1159 | if (UNLIKELY(new_array == nullptr)) { |
| 1160 | self->AssertPendingOOMException(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1161 | return false; |
| 1162 | } |
Igor Murashkin | 158f35c | 2015-06-10 15:55:30 -0700 | [diff] [blame] | 1163 | uint32_t arg[Instruction::kMaxVarArgRegs]; // only used in filled-new-array. |
| 1164 | uint32_t vregC = 0; // only used in filled-new-array-range. |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1165 | if (is_range) { |
Sebastien Hertz | abff643 | 2014-01-27 18:01:39 +0100 | [diff] [blame] | 1166 | vregC = inst->VRegC_3rc(); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1167 | } else { |
Ian Rogers | 29a2648 | 2014-05-02 15:27:29 -0700 | [diff] [blame] | 1168 | inst->GetVarArgs(arg); |
Sebastien Hertz | abff643 | 2014-01-27 18:01:39 +0100 | [diff] [blame] | 1169 | } |
Sebastien Hertz | abff643 | 2014-01-27 18:01:39 +0100 | [diff] [blame] | 1170 | for (int32_t i = 0; i < length; ++i) { |
| 1171 | size_t src_reg = is_range ? vregC + i : arg[i]; |
| 1172 | if (is_primitive_int_component) { |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1173 | new_array->AsIntArray()->SetWithoutChecks<transaction_active>( |
| 1174 | i, shadow_frame.GetVReg(src_reg)); |
Sebastien Hertz | abff643 | 2014-01-27 18:01:39 +0100 | [diff] [blame] | 1175 | } else { |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1176 | new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks<transaction_active>( |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1177 | i, shadow_frame.GetVRegReference(src_reg)); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1178 | } |
| 1179 | } |
| 1180 | |
Mathieu Chartier | 52ea33b | 2015-06-18 16:48:52 -0700 | [diff] [blame] | 1181 | result->SetL(new_array); |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1182 | return true; |
| 1183 | } |
| 1184 | |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1185 | // TODO: Use ObjPtr here. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1186 | template<typename T> |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1187 | static void RecordArrayElementsInTransactionImpl(mirror::PrimitiveArray<T>* array, |
| 1188 | int32_t count) |
| 1189 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1190 | Runtime* runtime = Runtime::Current(); |
| 1191 | for (int32_t i = 0; i < count; ++i) { |
| 1192 | runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i)); |
| 1193 | } |
| 1194 | } |
| 1195 | |
Mathieu Chartier | ef41db7 | 2016-10-25 15:08:01 -0700 | [diff] [blame] | 1196 | void RecordArrayElementsInTransaction(ObjPtr<mirror::Array> array, int32_t count) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1197 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1198 | DCHECK(Runtime::Current()->IsActiveTransaction()); |
| 1199 | DCHECK(array != nullptr); |
| 1200 | DCHECK_LE(count, array->GetLength()); |
| 1201 | Primitive::Type primitive_component_type = array->GetClass()->GetComponentType()->GetPrimitiveType(); |
| 1202 | switch (primitive_component_type) { |
| 1203 | case Primitive::kPrimBoolean: |
| 1204 | RecordArrayElementsInTransactionImpl(array->AsBooleanArray(), count); |
| 1205 | break; |
| 1206 | case Primitive::kPrimByte: |
| 1207 | RecordArrayElementsInTransactionImpl(array->AsByteArray(), count); |
| 1208 | break; |
| 1209 | case Primitive::kPrimChar: |
| 1210 | RecordArrayElementsInTransactionImpl(array->AsCharArray(), count); |
| 1211 | break; |
| 1212 | case Primitive::kPrimShort: |
| 1213 | RecordArrayElementsInTransactionImpl(array->AsShortArray(), count); |
| 1214 | break; |
| 1215 | case Primitive::kPrimInt: |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1216 | RecordArrayElementsInTransactionImpl(array->AsIntArray(), count); |
| 1217 | break; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1218 | case Primitive::kPrimFloat: |
| 1219 | RecordArrayElementsInTransactionImpl(array->AsFloatArray(), count); |
| 1220 | break; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1221 | case Primitive::kPrimLong: |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1222 | RecordArrayElementsInTransactionImpl(array->AsLongArray(), count); |
| 1223 | break; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1224 | case Primitive::kPrimDouble: |
| 1225 | RecordArrayElementsInTransactionImpl(array->AsDoubleArray(), count); |
| 1226 | break; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1227 | default: |
| 1228 | LOG(FATAL) << "Unsupported primitive type " << primitive_component_type |
| 1229 | << " in fill-array-data"; |
| 1230 | break; |
| 1231 | } |
| 1232 | } |
| 1233 | |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 1234 | // Explicit DoCall template function declarations. |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1235 | #define EXPLICIT_DO_CALL_TEMPLATE_DECL(_is_range, _do_assignability_check) \ |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1236 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
Sebastien Hertz | 9119c5f | 2013-12-16 11:31:45 +0100 | [diff] [blame] | 1237 | bool DoCall<_is_range, _do_assignability_check>(ArtMethod* method, Thread* self, \ |
| 1238 | ShadowFrame& shadow_frame, \ |
Sebastien Hertz | c671485 | 2013-09-30 16:42:32 +0200 | [diff] [blame] | 1239 | const Instruction* inst, uint16_t inst_data, \ |
| 1240 | JValue* result) |
Sebastien Hertz | c61124b | 2013-09-10 11:44:19 +0200 | [diff] [blame] | 1241 | EXPLICIT_DO_CALL_TEMPLATE_DECL(false, false); |
| 1242 | EXPLICIT_DO_CALL_TEMPLATE_DECL(false, true); |
| 1243 | EXPLICIT_DO_CALL_TEMPLATE_DECL(true, false); |
| 1244 | EXPLICIT_DO_CALL_TEMPLATE_DECL(true, true); |
| 1245 | #undef EXPLICIT_DO_CALL_TEMPLATE_DECL |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1246 | |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 1247 | // Explicit DoInvokeCustom template function declarations. |
| 1248 | #define EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(_is_range) \ |
| 1249 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
| 1250 | bool DoInvokeCustom<_is_range>( \ |
| 1251 | Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 1252 | uint16_t inst_data, JValue* result) |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 1253 | EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(false); |
| 1254 | EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL(true); |
| 1255 | #undef EXPLICIT_DO_INVOKE_CUSTOM_TEMPLATE_DECL |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 1256 | |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame^] | 1257 | // Explicit DoInvokePolymorphic template function declarations. |
| 1258 | #define EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(_is_range) \ |
| 1259 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
| 1260 | bool DoInvokePolymorphic<_is_range>( \ |
| 1261 | Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, \ |
| 1262 | uint16_t inst_data, JValue* result) |
| 1263 | EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(false); |
| 1264 | EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL(true); |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 1265 | #undef EXPLICIT_DO_INVOKE_POLYMORPHIC_TEMPLATE_DECL |
| 1266 | |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1267 | // Explicit DoFilledNewArray template function declarations. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1268 | #define EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(_is_range_, _check, _transaction_active) \ |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1269 | template REQUIRES_SHARED(Locks::mutator_lock_) \ |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1270 | bool DoFilledNewArray<_is_range_, _check, _transaction_active>(const Instruction* inst, \ |
| 1271 | const ShadowFrame& shadow_frame, \ |
| 1272 | Thread* self, JValue* result) |
| 1273 | #define EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(_transaction_active) \ |
| 1274 | EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, false, _transaction_active); \ |
| 1275 | EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(false, true, _transaction_active); \ |
| 1276 | EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, false, _transaction_active); \ |
| 1277 | EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL(true, true, _transaction_active) |
| 1278 | EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(false); |
| 1279 | EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL(true); |
| 1280 | #undef EXPLICIT_DO_FILLED_NEW_ARRAY_ALL_TEMPLATE_DECL |
Sebastien Hertz | 8ece050 | 2013-08-07 11:26:41 +0200 | [diff] [blame] | 1281 | #undef EXPLICIT_DO_FILLED_NEW_ARRAY_TEMPLATE_DECL |
| 1282 | |
| 1283 | } // namespace interpreter |
| 1284 | } // namespace art |