blob: f1f7f421172530492359ccc49671898d5470524d [file] [log] [blame]
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001/*
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
Andreas Gampe3cfa4d02015-10-06 17:04:01 -070017#include "interpreter.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070018
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010019#include <limits>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020
Andreas Gampe103992b2016-01-04 15:32:43 -080021#include "common_throws.h"
Andreas Gampe3cfa4d02015-10-06 17:04:01 -070022#include "interpreter_common.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070023#include "mirror/string-inl.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070024#include "scoped_thread_state_change.h"
25#include "ScopedLocalRef.h"
Andreas Gampeb3025922015-09-01 14:45:00 -070026#include "stack.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070027#include "unstarted_runtime.h"
buzbee1452bee2015-03-06 14:43:04 -080028#include "mterp/mterp.h"
buzbee734f3aa2016-01-28 14:20:06 -080029#include "jit/jit.h"
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +000030#include "jit/jit_code_cache.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070031
Ian Rogers2fa6b2e2012-10-17 00:10:17 -070032namespace art {
33namespace interpreter {
34
Ian Rogersfc0e94b2013-09-23 23:51:32 -070035static void InterpreterJni(Thread* self, ArtMethod* method, const StringPiece& shorty,
Jeff Hao5d917302013-02-27 17:57:33 -080036 Object* receiver, uint32_t* args, JValue* result)
Mathieu Chartier90443472015-07-16 20:32:27 -070037 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers64b6d142012-10-29 16:34:15 -070038 // TODO: The following enters JNI code using a typedef-ed function rather than the JNI compiler,
39 // it should be removed and JNI compiled stubs used instead.
40 ScopedObjectAccessUnchecked soa(self);
41 if (method->IsStatic()) {
42 if (shorty == "L") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010043 typedef jobject (fntype)(JNIEnv*, jclass);
Mathieu Chartier2d721012014-11-10 11:08:06 -080044 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070045 ScopedLocalRef<jclass> klass(soa.Env(),
46 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
Ian Rogers556d6372012-11-20 12:19:36 -080047 jobject jresult;
48 {
49 ScopedThreadStateChange tsc(self, kNative);
50 jresult = fn(soa.Env(), klass.get());
51 }
52 result->SetL(soa.Decode<Object*>(jresult));
Ian Rogers64b6d142012-10-29 16:34:15 -070053 } else if (shorty == "V") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010054 typedef void (fntype)(JNIEnv*, jclass);
Mathieu Chartier2d721012014-11-10 11:08:06 -080055 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070056 ScopedLocalRef<jclass> klass(soa.Env(),
57 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
58 ScopedThreadStateChange tsc(self, kNative);
59 fn(soa.Env(), klass.get());
60 } else if (shorty == "Z") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010061 typedef jboolean (fntype)(JNIEnv*, jclass);
Mathieu Chartier2d721012014-11-10 11:08:06 -080062 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070063 ScopedLocalRef<jclass> klass(soa.Env(),
64 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
65 ScopedThreadStateChange tsc(self, kNative);
66 result->SetZ(fn(soa.Env(), klass.get()));
67 } else if (shorty == "BI") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010068 typedef jbyte (fntype)(JNIEnv*, jclass, jint);
Mathieu Chartier2d721012014-11-10 11:08:06 -080069 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070070 ScopedLocalRef<jclass> klass(soa.Env(),
71 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
72 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -080073 result->SetB(fn(soa.Env(), klass.get(), args[0]));
Ian Rogers64b6d142012-10-29 16:34:15 -070074 } else if (shorty == "II") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010075 typedef jint (fntype)(JNIEnv*, jclass, jint);
Mathieu Chartier2d721012014-11-10 11:08:06 -080076 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070077 ScopedLocalRef<jclass> klass(soa.Env(),
78 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
79 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -080080 result->SetI(fn(soa.Env(), klass.get(), args[0]));
Ian Rogers64b6d142012-10-29 16:34:15 -070081 } else if (shorty == "LL") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010082 typedef jobject (fntype)(JNIEnv*, jclass, jobject);
Mathieu Chartier2d721012014-11-10 11:08:06 -080083 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070084 ScopedLocalRef<jclass> klass(soa.Env(),
85 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
86 ScopedLocalRef<jobject> arg0(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -070087 soa.AddLocalReference<jobject>(
88 reinterpret_cast<Object*>(args[0])));
Ian Rogers556d6372012-11-20 12:19:36 -080089 jobject jresult;
90 {
91 ScopedThreadStateChange tsc(self, kNative);
92 jresult = fn(soa.Env(), klass.get(), arg0.get());
93 }
94 result->SetL(soa.Decode<Object*>(jresult));
Ian Rogers64b6d142012-10-29 16:34:15 -070095 } else if (shorty == "IIZ") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +010096 typedef jint (fntype)(JNIEnv*, jclass, jint, jboolean);
Mathieu Chartier2d721012014-11-10 11:08:06 -080097 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -070098 ScopedLocalRef<jclass> klass(soa.Env(),
99 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
100 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800101 result->SetI(fn(soa.Env(), klass.get(), args[0], args[1]));
Ian Rogers64b6d142012-10-29 16:34:15 -0700102 } else if (shorty == "ILI") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100103 typedef jint (fntype)(JNIEnv*, jclass, jobject, jint);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800104 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>(
105 method->GetEntryPointFromJni()));
Ian Rogers64b6d142012-10-29 16:34:15 -0700106 ScopedLocalRef<jclass> klass(soa.Env(),
107 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
108 ScopedLocalRef<jobject> arg0(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700109 soa.AddLocalReference<jobject>(
110 reinterpret_cast<Object*>(args[0])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700111 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800112 result->SetI(fn(soa.Env(), klass.get(), arg0.get(), args[1]));
Ian Rogers64b6d142012-10-29 16:34:15 -0700113 } else if (shorty == "SIZ") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100114 typedef jshort (fntype)(JNIEnv*, jclass, jint, jboolean);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700115 fntype* const fn =
116 reinterpret_cast<fntype*>(const_cast<void*>(method->GetEntryPointFromJni()));
Ian Rogers64b6d142012-10-29 16:34:15 -0700117 ScopedLocalRef<jclass> klass(soa.Env(),
118 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
119 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800120 result->SetS(fn(soa.Env(), klass.get(), args[0], args[1]));
Ian Rogers64b6d142012-10-29 16:34:15 -0700121 } else if (shorty == "VIZ") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100122 typedef void (fntype)(JNIEnv*, jclass, jint, jboolean);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800123 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700124 ScopedLocalRef<jclass> klass(soa.Env(),
125 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
126 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800127 fn(soa.Env(), klass.get(), args[0], args[1]);
Ian Rogers64b6d142012-10-29 16:34:15 -0700128 } else if (shorty == "ZLL") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100129 typedef jboolean (fntype)(JNIEnv*, jclass, jobject, jobject);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800130 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700131 ScopedLocalRef<jclass> klass(soa.Env(),
132 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
133 ScopedLocalRef<jobject> arg0(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700134 soa.AddLocalReference<jobject>(
135 reinterpret_cast<Object*>(args[0])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700136 ScopedLocalRef<jobject> arg1(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700137 soa.AddLocalReference<jobject>(
138 reinterpret_cast<Object*>(args[1])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700139 ScopedThreadStateChange tsc(self, kNative);
140 result->SetZ(fn(soa.Env(), klass.get(), arg0.get(), arg1.get()));
141 } else if (shorty == "ZILL") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100142 typedef jboolean (fntype)(JNIEnv*, jclass, jint, jobject, jobject);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800143 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700144 ScopedLocalRef<jclass> klass(soa.Env(),
145 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
146 ScopedLocalRef<jobject> arg1(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700147 soa.AddLocalReference<jobject>(
148 reinterpret_cast<Object*>(args[1])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700149 ScopedLocalRef<jobject> arg2(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700150 soa.AddLocalReference<jobject>(
151 reinterpret_cast<Object*>(args[2])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700152 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800153 result->SetZ(fn(soa.Env(), klass.get(), args[0], arg1.get(), arg2.get()));
Ian Rogers64b6d142012-10-29 16:34:15 -0700154 } else if (shorty == "VILII") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100155 typedef void (fntype)(JNIEnv*, jclass, jint, jobject, jint, jint);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800156 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700157 ScopedLocalRef<jclass> klass(soa.Env(),
158 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
159 ScopedLocalRef<jobject> arg1(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700160 soa.AddLocalReference<jobject>(
161 reinterpret_cast<Object*>(args[1])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700162 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800163 fn(soa.Env(), klass.get(), args[0], arg1.get(), args[2], args[3]);
Ian Rogers64b6d142012-10-29 16:34:15 -0700164 } else if (shorty == "VLILII") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100165 typedef void (fntype)(JNIEnv*, jclass, jobject, jint, jobject, jint, jint);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800166 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700167 ScopedLocalRef<jclass> klass(soa.Env(),
168 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
169 ScopedLocalRef<jobject> arg0(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700170 soa.AddLocalReference<jobject>(
171 reinterpret_cast<Object*>(args[0])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700172 ScopedLocalRef<jobject> arg2(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700173 soa.AddLocalReference<jobject>(
174 reinterpret_cast<Object*>(args[2])));
Ian Rogers64b6d142012-10-29 16:34:15 -0700175 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800176 fn(soa.Env(), klass.get(), arg0.get(), args[1], arg2.get(), args[3], args[4]);
Ian Rogers64b6d142012-10-29 16:34:15 -0700177 } else {
178 LOG(FATAL) << "Do something with static native method: " << PrettyMethod(method)
179 << " shorty: " << shorty;
180 }
181 } else {
182 if (shorty == "L") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100183 typedef jobject (fntype)(JNIEnv*, jobject);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800184 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700185 ScopedLocalRef<jobject> rcvr(soa.Env(),
186 soa.AddLocalReference<jobject>(receiver));
Ian Rogers556d6372012-11-20 12:19:36 -0800187 jobject jresult;
188 {
189 ScopedThreadStateChange tsc(self, kNative);
190 jresult = fn(soa.Env(), rcvr.get());
191 }
192 result->SetL(soa.Decode<Object*>(jresult));
Jeff Hao3dd9f762013-07-08 13:09:25 -0700193 } else if (shorty == "V") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100194 typedef void (fntype)(JNIEnv*, jobject);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800195 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Jeff Hao3dd9f762013-07-08 13:09:25 -0700196 ScopedLocalRef<jobject> rcvr(soa.Env(),
197 soa.AddLocalReference<jobject>(receiver));
198 ScopedThreadStateChange tsc(self, kNative);
199 fn(soa.Env(), rcvr.get());
Ian Rogers64b6d142012-10-29 16:34:15 -0700200 } else if (shorty == "LL") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100201 typedef jobject (fntype)(JNIEnv*, jobject, jobject);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800202 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700203 ScopedLocalRef<jobject> rcvr(soa.Env(),
204 soa.AddLocalReference<jobject>(receiver));
205 ScopedLocalRef<jobject> arg0(soa.Env(),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700206 soa.AddLocalReference<jobject>(
207 reinterpret_cast<Object*>(args[0])));
Ian Rogers556d6372012-11-20 12:19:36 -0800208 jobject jresult;
209 {
210 ScopedThreadStateChange tsc(self, kNative);
211 jresult = fn(soa.Env(), rcvr.get(), arg0.get());
Ian Rogers556d6372012-11-20 12:19:36 -0800212 }
213 result->SetL(soa.Decode<Object*>(jresult));
Ian Rogers64b6d142012-10-29 16:34:15 -0700214 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers64b6d142012-10-29 16:34:15 -0700215 } else if (shorty == "III") {
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +0100216 typedef jint (fntype)(JNIEnv*, jobject, jint, jint);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800217 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni());
Ian Rogers64b6d142012-10-29 16:34:15 -0700218 ScopedLocalRef<jobject> rcvr(soa.Env(),
219 soa.AddLocalReference<jobject>(receiver));
220 ScopedThreadStateChange tsc(self, kNative);
Jeff Hao5d917302013-02-27 17:57:33 -0800221 result->SetI(fn(soa.Env(), rcvr.get(), args[0], args[1]));
Ian Rogers64b6d142012-10-29 16:34:15 -0700222 } else {
223 LOG(FATAL) << "Do something with native method: " << PrettyMethod(method)
224 << " shorty: " << shorty;
225 }
226 }
227}
228
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200229enum InterpreterImplKind {
buzbee1452bee2015-03-06 14:43:04 -0800230 kSwitchImplKind, // Switch-based interpreter implementation.
231 kComputedGotoImplKind, // Computed-goto-based interpreter implementation.
232 kMterpImplKind // Assembly interpreter
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200233};
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800234static std::ostream& operator<<(std::ostream& os, const InterpreterImplKind& rhs) {
buzbee1452bee2015-03-06 14:43:04 -0800235 os << ((rhs == kSwitchImplKind)
236 ? "Switch-based interpreter"
237 : (rhs == kComputedGotoImplKind)
238 ? "Computed-goto-based interpreter"
239 : "Asm interpreter");
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700240 return os;
241}
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700242
buzbee1452bee2015-03-06 14:43:04 -0800243static constexpr InterpreterImplKind kInterpreterImplKind = kMterpImplKind;
Alexey Frunze00b53b72016-02-02 20:25:45 -0800244
245#if defined(__clang__)
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200246// Clang 3.4 fails to build the goto interpreter implementation.
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200247template<bool do_access_check, bool transaction_active>
Ian Rogerse94652f2014-12-02 11:13:19 -0800248JValue ExecuteGotoImpl(Thread*, const DexFile::CodeItem*, ShadowFrame&, JValue) {
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200249 LOG(FATAL) << "UNREACHABLE";
Ian Rogers2c4257b2014-10-24 14:20:06 -0700250 UNREACHABLE();
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200251}
252// Explicit definitions of ExecuteGotoImpl.
Mathieu Chartier90443472015-07-16 20:32:27 -0700253template<> SHARED_REQUIRES(Locks::mutator_lock_)
Ian Rogerse94652f2014-12-02 11:13:19 -0800254JValue ExecuteGotoImpl<true, false>(Thread* self, const DexFile::CodeItem* code_item,
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200255 ShadowFrame& shadow_frame, JValue result_register);
Mathieu Chartier90443472015-07-16 20:32:27 -0700256template<> SHARED_REQUIRES(Locks::mutator_lock_)
Ian Rogerse94652f2014-12-02 11:13:19 -0800257JValue ExecuteGotoImpl<false, false>(Thread* self, const DexFile::CodeItem* code_item,
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200258 ShadowFrame& shadow_frame, JValue result_register);
Mathieu Chartier90443472015-07-16 20:32:27 -0700259template<> SHARED_REQUIRES(Locks::mutator_lock_)
Ian Rogerse94652f2014-12-02 11:13:19 -0800260JValue ExecuteGotoImpl<true, true>(Thread* self, const DexFile::CodeItem* code_item,
261 ShadowFrame& shadow_frame, JValue result_register);
Mathieu Chartier90443472015-07-16 20:32:27 -0700262template<> SHARED_REQUIRES(Locks::mutator_lock_)
Ian Rogerse94652f2014-12-02 11:13:19 -0800263JValue ExecuteGotoImpl<false, true>(Thread* self, const DexFile::CodeItem* code_item,
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200264 ShadowFrame& shadow_frame, JValue result_register);
Sebastien Hertzfa888d02014-09-30 12:00:11 +0200265#endif
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700266
Aart Bik01223202016-05-05 15:10:42 -0700267static inline JValue Execute(
268 Thread* self,
269 const DexFile::CodeItem* code_item,
270 ShadowFrame& shadow_frame,
271 JValue result_register,
272 bool stay_in_interpreter = false) SHARED_REQUIRES(Locks::mutator_lock_) {
buzbee1452bee2015-03-06 14:43:04 -0800273 DCHECK(!shadow_frame.GetMethod()->IsAbstract());
Ian Rogers848871b2013-08-05 10:56:33 -0700274 DCHECK(!shadow_frame.GetMethod()->IsNative());
buzbee734f3aa2016-01-28 14:20:06 -0800275 if (LIKELY(shadow_frame.GetDexPC() == 0)) { // Entering the method, but not via deoptimization.
276 if (kIsDebugBuild) {
277 self->AssertNoPendingException();
278 }
279 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
280 ArtMethod *method = shadow_frame.GetMethod();
281
282 if (UNLIKELY(instrumentation->HasMethodEntryListeners())) {
283 instrumentation->MethodEnterEvent(self, shadow_frame.GetThisObject(code_item->ins_size_),
284 method, 0);
285 }
286
Aart Bik01223202016-05-05 15:10:42 -0700287 if (!stay_in_interpreter) {
288 jit::Jit* jit = Runtime::Current()->GetJit();
289 if (jit != nullptr) {
290 jit->MethodEntered(self, shadow_frame.GetMethod());
291 if (jit->CanInvokeCompiledCode(method)) {
292 JValue result;
buzbee734f3aa2016-01-28 14:20:06 -0800293
Aart Bik01223202016-05-05 15:10:42 -0700294 // Pop the shadow frame before calling into compiled code.
295 self->PopShadowFrame();
296 ArtInterpreterToCompiledCodeBridge(self, nullptr, code_item, &shadow_frame, &result);
297 // Push the shadow frame back as the caller will expect it.
298 self->PushShadowFrame(&shadow_frame);
buzbee734f3aa2016-01-28 14:20:06 -0800299
Aart Bik01223202016-05-05 15:10:42 -0700300 return result;
301 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100302 }
buzbee734f3aa2016-01-28 14:20:06 -0800303 }
304 }
305
Sebastien Hertz4e99b3d2014-06-24 14:35:40 +0200306 shadow_frame.GetMethod()->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200307
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700308 // Lock counting is a special version of accessibility checks, and for simplicity and
309 // reduction of template parameters, we gate it behind access-checks mode.
310 ArtMethod* method = shadow_frame.GetMethod();
311 DCHECK(!method->SkipAccessChecks() || !method->MustCountLocks());
312
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100313 bool transaction_active = Runtime::Current()->IsActiveTransaction();
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700314 if (LIKELY(method->SkipAccessChecks())) {
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200315 // Enter the "without access check" interpreter.
buzbee1452bee2015-03-06 14:43:04 -0800316 if (kInterpreterImplKind == kMterpImplKind) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100317 if (transaction_active) {
buzbee1452bee2015-03-06 14:43:04 -0800318 // No Mterp variant - just use the switch interpreter.
319 return ExecuteSwitchImpl<false, true>(self, code_item, shadow_frame, result_register,
320 false);
Bill Buzbeefd522f92016-02-11 22:37:42 +0000321 } else if (UNLIKELY(!Runtime::Current()->IsStarted())) {
322 return ExecuteSwitchImpl<false, false>(self, code_item, shadow_frame, result_register,
323 false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100324 } else {
buzbee1452bee2015-03-06 14:43:04 -0800325 while (true) {
Bill Buzbeefd522f92016-02-11 22:37:42 +0000326 // Mterp does not support all instrumentation/debugging.
Andreas Gampe67409972016-07-19 22:34:53 -0700327 if (MterpShouldSwitchInterpreters() != 0) {
buzbee1452bee2015-03-06 14:43:04 -0800328 return ExecuteSwitchImpl<false, false>(self, code_item, shadow_frame, result_register,
329 false);
buzbee1452bee2015-03-06 14:43:04 -0800330 }
331 bool returned = ExecuteMterpImpl(self, code_item, &shadow_frame, &result_register);
332 if (returned) {
333 return result_register;
334 } else {
335 // Mterp didn't like that instruction. Single-step it with the reference interpreter.
buzbeed6b48db2016-01-28 15:48:55 -0800336 result_register = ExecuteSwitchImpl<false, false>(self, code_item, shadow_frame,
buzbee1452bee2015-03-06 14:43:04 -0800337 result_register, true);
338 if (shadow_frame.GetDexPC() == DexFile::kDexNoIndex) {
339 // Single-stepped a return or an exception not handled locally. Return to caller.
buzbeed6b48db2016-01-28 15:48:55 -0800340 return result_register;
buzbee1452bee2015-03-06 14:43:04 -0800341 }
342 }
343 }
344 }
345 } else if (kInterpreterImplKind == kSwitchImplKind) {
346 if (transaction_active) {
347 return ExecuteSwitchImpl<false, true>(self, code_item, shadow_frame, result_register,
348 false);
349 } else {
350 return ExecuteSwitchImpl<false, false>(self, code_item, shadow_frame, result_register,
351 false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100352 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200353 } else {
354 DCHECK_EQ(kInterpreterImplKind, kComputedGotoImplKind);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100355 if (transaction_active) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800356 return ExecuteGotoImpl<false, true>(self, code_item, shadow_frame, result_register);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100357 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800358 return ExecuteGotoImpl<false, false>(self, code_item, shadow_frame, result_register);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100359 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200360 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200361 } else {
362 // Enter the "with access check" interpreter.
buzbee1452bee2015-03-06 14:43:04 -0800363 if (kInterpreterImplKind == kMterpImplKind) {
364 // No access check variants for Mterp. Just use the switch version.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100365 if (transaction_active) {
buzbee1452bee2015-03-06 14:43:04 -0800366 return ExecuteSwitchImpl<true, true>(self, code_item, shadow_frame, result_register,
367 false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100368 } else {
buzbee1452bee2015-03-06 14:43:04 -0800369 return ExecuteSwitchImpl<true, false>(self, code_item, shadow_frame, result_register,
370 false);
371 }
372 } else if (kInterpreterImplKind == kSwitchImplKind) {
373 if (transaction_active) {
374 return ExecuteSwitchImpl<true, true>(self, code_item, shadow_frame, result_register,
375 false);
376 } else {
377 return ExecuteSwitchImpl<true, false>(self, code_item, shadow_frame, result_register,
378 false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100379 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200380 } else {
381 DCHECK_EQ(kInterpreterImplKind, kComputedGotoImplKind);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100382 if (transaction_active) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800383 return ExecuteGotoImpl<true, true>(self, code_item, shadow_frame, result_register);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100384 } else {
Ian Rogerse94652f2014-12-02 11:13:19 -0800385 return ExecuteGotoImpl<true, false>(self, code_item, shadow_frame, result_register);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100386 }
Sebastien Hertz8ece0502013-08-07 11:26:41 +0200387 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200388 }
389}
390
Brian Carlstromea46f952013-07-30 01:26:50 -0700391void EnterInterpreterFromInvoke(Thread* self, ArtMethod* method, Object* receiver,
Aart Bik01223202016-05-05 15:10:42 -0700392 uint32_t* args, JValue* result,
393 bool stay_in_interpreter) {
Ian Rogers64b6d142012-10-29 16:34:15 -0700394 DCHECK_EQ(self, Thread::Current());
Nicolas Geoffray535a3fb2014-07-22 15:17:38 +0100395 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks();
396 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) {
jeffhaod7521322012-11-21 15:38:24 -0800397 ThrowStackOverflowError(self);
398 return;
399 }
400
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700401 const char* old_cause = self->StartAssertNoThreadSuspension("EnterInterpreterFromInvoke");
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700402 const DexFile::CodeItem* code_item = method->GetCodeItem();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700403 uint16_t num_regs;
404 uint16_t num_ins;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700405 if (code_item != nullptr) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700406 num_regs = code_item->registers_size_;
407 num_ins = code_item->ins_size_;
Alex Light9139e002015-10-09 15:59:48 -0700408 } else if (!method->IsInvokable()) {
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700409 self->EndAssertNoThreadSuspension(old_cause);
Alex Light9139e002015-10-09 15:59:48 -0700410 method->ThrowInvocationTimeError();
jeffhao0a9bb732012-11-26 12:28:49 -0800411 return;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700412 } else {
413 DCHECK(method->IsNative());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700414 num_regs = num_ins = ArtMethod::NumArgRegisters(method->GetShorty());
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700415 if (!method->IsStatic()) {
416 num_regs++;
417 num_ins++;
418 }
419 }
420 // Set up shadow frame with matching number of reference slots to vregs.
421 ShadowFrame* last_shadow_frame = self->GetManagedStack()->GetTopShadowFrame();
Andreas Gampeb3025922015-09-01 14:45:00 -0700422 ShadowFrameAllocaUniquePtr shadow_frame_unique_ptr =
Andreas Gampe03ec9302015-08-27 17:41:47 -0700423 CREATE_SHADOW_FRAME(num_regs, last_shadow_frame, method, /* dex pc */ 0);
Andreas Gampeb3025922015-09-01 14:45:00 -0700424 ShadowFrame* shadow_frame = shadow_frame_unique_ptr.get();
Jeff Hao66135192013-05-14 11:02:41 -0700425 self->PushShadowFrame(shadow_frame);
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700426
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700427 size_t cur_reg = num_regs - num_ins;
428 if (!method->IsStatic()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700429 CHECK(receiver != nullptr);
TDYa127ce4cc0d2012-11-18 16:59:53 -0800430 shadow_frame->SetVRegReference(cur_reg, receiver);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700431 ++cur_reg;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700432 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700433 uint32_t shorty_len = 0;
434 const char* shorty = method->GetShorty(&shorty_len);
Jeff Hao5d917302013-02-27 17:57:33 -0800435 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700436 DCHECK_LT(shorty_pos + 1, shorty_len);
Jeff Hao5d917302013-02-27 17:57:33 -0800437 switch (shorty[shorty_pos + 1]) {
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700438 case 'L': {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800439 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr();
TDYa127ce4cc0d2012-11-18 16:59:53 -0800440 shadow_frame->SetVRegReference(cur_reg, o);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700441 break;
442 }
Jeff Hao5d917302013-02-27 17:57:33 -0800443 case 'J': case 'D': {
444 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
445 shadow_frame->SetVRegLong(cur_reg, wide_value);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700446 cur_reg++;
Jeff Hao5d917302013-02-27 17:57:33 -0800447 arg_pos++;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700448 break;
Jeff Hao5d917302013-02-27 17:57:33 -0800449 }
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700450 default:
Jeff Hao5d917302013-02-27 17:57:33 -0800451 shadow_frame->SetVReg(cur_reg, args[arg_pos]);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700452 break;
453 }
454 }
Mathieu Chartier92246bb2014-02-25 18:22:39 -0800455 self->EndAssertNoThreadSuspension(old_cause);
456 // Do this after populating the shadow frame in case EnsureInitialized causes a GC.
Ian Rogers6c5cb212014-06-18 16:07:20 -0700457 if (method->IsStatic() && UNLIKELY(!method->GetDeclaringClass()->IsInitialized())) {
Mathieu Chartier92246bb2014-02-25 18:22:39 -0800458 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700459 StackHandleScope<1> hs(self);
460 Handle<mirror::Class> h_class(hs.NewHandle(method->GetDeclaringClass()));
Ian Rogers7b078e82014-09-10 14:44:24 -0700461 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
Mathieu Chartier92246bb2014-02-25 18:22:39 -0800462 CHECK(self->IsExceptionPending());
463 self->PopShadowFrame();
464 return;
465 }
466 }
Ian Rogers64b6d142012-10-29 16:34:15 -0700467 if (LIKELY(!method->IsNative())) {
Aart Bik01223202016-05-05 15:10:42 -0700468 JValue r = Execute(self, code_item, *shadow_frame, JValue(), stay_in_interpreter);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700469 if (result != nullptr) {
Jeff Hao6474d192013-03-26 14:08:09 -0700470 *result = r;
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700471 }
472 } else {
Ian Rogers64b6d142012-10-29 16:34:15 -0700473 // We don't expect to be asked to interpret native code (which is entered via a JNI compiler
474 // generated stub) except during testing and image writing.
Mathieu Chartier92246bb2014-02-25 18:22:39 -0800475 // Update args to be the args in the shadow frame since the input ones could hold stale
476 // references pointers due to moving GC.
477 args = shadow_frame->GetVRegArgs(method->IsStatic() ? 0 : 1);
Ian Rogers64b6d142012-10-29 16:34:15 -0700478 if (!Runtime::Current()->IsStarted()) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700479 UnstartedRuntime::Jni(self, method, receiver, args, result);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700480 } else {
Jeff Hao6474d192013-03-26 14:08:09 -0700481 InterpreterJni(self, method, shorty, receiver, args, result);
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700482 }
483 }
484 self->PopShadowFrame();
485}
486
Mingyao Yangffedec52016-05-19 10:48:40 -0700487static bool IsStringInit(const Instruction* instr, ArtMethod* caller)
488 SHARED_REQUIRES(Locks::mutator_lock_) {
489 if (instr->Opcode() == Instruction::INVOKE_DIRECT ||
490 instr->Opcode() == Instruction::INVOKE_DIRECT_RANGE) {
491 // Instead of calling ResolveMethod() which has suspend point and can trigger
492 // GC, look up the callee method symbolically.
493 uint16_t callee_method_idx = (instr->Opcode() == Instruction::INVOKE_DIRECT_RANGE) ?
494 instr->VRegB_3rc() : instr->VRegB_35c();
495 const DexFile* dex_file = caller->GetDexFile();
496 const DexFile::MethodId& method_id = dex_file->GetMethodId(callee_method_idx);
497 const char* class_name = dex_file->StringByTypeIdx(method_id.class_idx_);
498 const char* method_name = dex_file->GetMethodName(method_id);
499 // Compare method's class name and method name against string init.
500 // It's ok since it's not allowed to create your own java/lang/String.
501 // TODO: verify that assumption.
502 if ((strcmp(class_name, "Ljava/lang/String;") == 0) &&
503 (strcmp(method_name, "<init>") == 0)) {
504 return true;
505 }
506 }
507 return false;
508}
509
510static int16_t GetReceiverRegisterForStringInit(const Instruction* instr) {
511 DCHECK(instr->Opcode() == Instruction::INVOKE_DIRECT_RANGE ||
512 instr->Opcode() == Instruction::INVOKE_DIRECT);
513 return (instr->Opcode() == Instruction::INVOKE_DIRECT_RANGE) ?
514 instr->VRegC_3rc() : instr->VRegC_35c();
515}
516
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100517void EnterInterpreterFromDeoptimize(Thread* self,
518 ShadowFrame* shadow_frame,
519 bool from_code,
520 JValue* ret_val)
Mathieu Chartier90443472015-07-16 20:32:27 -0700521 SHARED_REQUIRES(Locks::mutator_lock_) {
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800522 JValue value;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700523 // Set value to last known result in case the shadow frame chain is empty.
524 value.SetJ(ret_val->GetJ());
Sebastien Hertz520633b2015-09-08 17:03:36 +0200525 // Are we executing the first shadow frame?
526 bool first = true;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700527 while (shadow_frame != nullptr) {
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700528 // We do not want to recover lock state for lock counting when deoptimizing. Currently,
529 // the compiler should not have compiled a method that failed structured-locking checks.
530 DCHECK(!shadow_frame->GetMethod()->MustCountLocks());
531
Ian Rogers62d6c772013-02-27 08:32:07 -0800532 self->SetTopOfShadowStack(shadow_frame);
Ian Rogerse94652f2014-12-02 11:13:19 -0800533 const DexFile::CodeItem* code_item = shadow_frame->GetMethod()->GetCodeItem();
Sebastien Hertz270a0e12015-01-16 19:49:09 +0100534 const uint32_t dex_pc = shadow_frame->GetDexPC();
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100535 uint32_t new_dex_pc = dex_pc;
Sebastien Hertz270a0e12015-01-16 19:49:09 +0100536 if (UNLIKELY(self->IsExceptionPending())) {
Sebastien Hertz520633b2015-09-08 17:03:36 +0200537 // If we deoptimize from the QuickExceptionHandler, we already reported the exception to
538 // the instrumentation. To prevent from reporting it a second time, we simply pass a
539 // null Instrumentation*.
Sebastien Hertz270a0e12015-01-16 19:49:09 +0100540 const instrumentation::Instrumentation* const instrumentation =
Sebastien Hertz520633b2015-09-08 17:03:36 +0200541 first ? nullptr : Runtime::Current()->GetInstrumentation();
Sebastien Hertz270a0e12015-01-16 19:49:09 +0100542 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc,
543 instrumentation);
544 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler
545 // or DexFile::kDexNoIndex if there is none.
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100546 } else if (!from_code) {
547 // For the debugger and full deoptimization stack, we must go past the invoke
548 // instruction, as it already executed.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700549 // TODO: should be tested more once b/17586779 is fixed.
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100550 const Instruction* instr = Instruction::At(&code_item->insns_[dex_pc]);
Mingyao Yang504a6902016-04-28 16:23:01 -0700551 if (instr->IsInvoke()) {
Mingyao Yangffedec52016-05-19 10:48:40 -0700552 if (IsStringInit(instr, shadow_frame->GetMethod())) {
553 uint16_t this_obj_vreg = GetReceiverRegisterForStringInit(instr);
554 // Move the StringFactory.newStringFromChars() result into the register representing
555 // "this object" when invoking the string constructor in the original dex instruction.
556 // Also move the result into all aliases.
557 DCHECK(value.GetL()->IsString());
558 SetStringInitValueToAllAliases(shadow_frame, this_obj_vreg, value);
559 // Calling string constructor in the original dex code doesn't generate a result value.
560 value.SetJ(0);
561 }
Mingyao Yang504a6902016-04-28 16:23:01 -0700562 new_dex_pc = dex_pc + instr->SizeInCodeUnits();
563 } else if (instr->Opcode() == Instruction::NEW_INSTANCE) {
564 // It's possible to deoptimize at a NEW_INSTANCE dex instruciton that's for a
565 // java string, which is turned into a call into StringFactory.newEmptyString();
Mingyao Yangffedec52016-05-19 10:48:40 -0700566 // Move the StringFactory.newEmptyString() result into the destination register.
567 DCHECK(value.GetL()->IsString());
568 shadow_frame->SetVRegReference(instr->VRegA_21c(), value.GetL());
569 // new-instance doesn't generate a result value.
570 value.SetJ(0);
571 // Skip the dex instruction since we essentially come back from an invocation.
572 new_dex_pc = dex_pc + instr->SizeInCodeUnits();
Mingyao Yang504a6902016-04-28 16:23:01 -0700573 if (kIsDebugBuild) {
574 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mingyao Yangffedec52016-05-19 10:48:40 -0700575 // This is a suspend point. But it's ok since value has been set into shadow_frame.
Mingyao Yang504a6902016-04-28 16:23:01 -0700576 mirror::Class* klass = class_linker->ResolveType(
577 instr->VRegB_21c(), shadow_frame->GetMethod());
578 DCHECK(klass->IsStringClass());
579 }
Mingyao Yang504a6902016-04-28 16:23:01 -0700580 } else {
Mingyao Yangffedec52016-05-19 10:48:40 -0700581 CHECK(false) << "Unexpected instruction opcode " << instr->Opcode()
582 << " at dex_pc " << dex_pc
583 << " of method: " << PrettyMethod(shadow_frame->GetMethod(), false);
Mingyao Yang504a6902016-04-28 16:23:01 -0700584 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100585 } else {
586 // Nothing to do, the dex_pc is the one at which the code requested
587 // the deoptimization.
Sebastien Hertz270a0e12015-01-16 19:49:09 +0100588 }
589 if (new_dex_pc != DexFile::kDexNoIndex) {
590 shadow_frame->SetDexPC(new_dex_pc);
591 value = Execute(self, code_item, *shadow_frame, value);
592 }
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800593 ShadowFrame* old_frame = shadow_frame;
594 shadow_frame = shadow_frame->GetLink();
Christopher Ferris241a9582015-04-27 15:19:41 -0700595 ShadowFrame::DeleteDeoptimizedFrame(old_frame);
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100596 // Following deoptimizations of shadow frames must pass the invoke instruction.
597 from_code = false;
Sebastien Hertz520633b2015-09-08 17:03:36 +0200598 first = false;
Jeff Hao11ffc2d2013-02-01 11:52:17 -0800599 }
600 ret_val->SetJ(value.GetJ());
601}
602
Ian Rogerse94652f2014-12-02 11:13:19 -0800603JValue EnterInterpreterFromEntryPoint(Thread* self, const DexFile::CodeItem* code_item,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700604 ShadowFrame* shadow_frame) {
Ian Rogersf3e98552013-03-20 15:49:49 -0700605 DCHECK_EQ(self, Thread::Current());
Nicolas Geoffray535a3fb2014-07-22 15:17:38 +0100606 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks();
607 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) {
Ian Rogersf3e98552013-03-20 15:49:49 -0700608 ThrowStackOverflowError(self);
609 return JValue();
610 }
611
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100612 jit::Jit* jit = Runtime::Current()->GetJit();
613 if (jit != nullptr) {
614 jit->NotifyCompiledCodeToInterpreterTransition(self, shadow_frame->GetMethod());
615 }
Ian Rogerse94652f2014-12-02 11:13:19 -0800616 return Execute(self, code_item, *shadow_frame, JValue());
Ian Rogers7db619b2013-01-16 18:35:48 -0800617}
618
Andreas Gampe3cfa4d02015-10-06 17:04:01 -0700619void ArtInterpreterToInterpreterBridge(Thread* self, const DexFile::CodeItem* code_item,
620 ShadowFrame* shadow_frame, JValue* result) {
Nicolas Geoffray535a3fb2014-07-22 15:17:38 +0100621 bool implicit_check = !Runtime::Current()->ExplicitStackOverflowChecks();
622 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEndForInterpreter(implicit_check))) {
Jeff Hao16743632013-05-08 10:59:04 -0700623 ThrowStackOverflowError(self);
Jeff Hao69510672013-05-21 17:34:55 -0700624 return;
Jeff Hao16743632013-05-08 10:59:04 -0700625 }
626
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700627 self->PushShadowFrame(shadow_frame);
Alex Lighteb7c1442015-08-31 13:17:42 -0700628 ArtMethod* method = shadow_frame->GetMethod();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200629 // Ensure static methods are initialized.
Alex Lighteb7c1442015-08-31 13:17:42 -0700630 const bool is_static = method->IsStatic();
Ian Rogerse94652f2014-12-02 11:13:19 -0800631 if (is_static) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700632 mirror::Class* declaring_class = method->GetDeclaringClass();
Ian Rogers6c5cb212014-06-18 16:07:20 -0700633 if (UNLIKELY(!declaring_class->IsInitialized())) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700634 StackHandleScope<1> hs(self);
635 HandleWrapper<Class> h_declaring_class(hs.NewHandleWrapper(&declaring_class));
636 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(
Ian Rogers7b078e82014-09-10 14:44:24 -0700637 self, h_declaring_class, true, true))) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700638 DCHECK(self->IsExceptionPending());
Mathieu Chartiere861ebd2013-10-09 15:01:21 -0700639 self->PopShadowFrame();
Sebastien Hertzc61124b2013-09-10 11:44:19 +0200640 return;
641 }
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700642 CHECK(h_declaring_class->IsInitializing());
Jeff Hao16743632013-05-08 10:59:04 -0700643 }
Jeff Hao16743632013-05-08 10:59:04 -0700644 }
Jeff Hao16743632013-05-08 10:59:04 -0700645
Ian Rogerse94652f2014-12-02 11:13:19 -0800646 if (LIKELY(!shadow_frame->GetMethod()->IsNative())) {
647 result->SetJ(Execute(self, code_item, *shadow_frame, JValue()).GetJ());
Jeff Hao16743632013-05-08 10:59:04 -0700648 } else {
649 // We don't expect to be asked to interpret native code (which is entered via a JNI compiler
650 // generated stub) except during testing and image writing.
651 CHECK(!Runtime::Current()->IsStarted());
Ian Rogerse94652f2014-12-02 11:13:19 -0800652 Object* receiver = is_static ? nullptr : shadow_frame->GetVRegReference(0);
653 uint32_t* args = shadow_frame->GetVRegArgs(is_static ? 0 : 1);
Andreas Gampe799681b2015-05-15 19:24:12 -0700654 UnstartedRuntime::Jni(self, shadow_frame->GetMethod(), receiver, args, result);
Jeff Hao16743632013-05-08 10:59:04 -0700655 }
656
657 self->PopShadowFrame();
Jeff Hao16743632013-05-08 10:59:04 -0700658}
659
buzbee1452bee2015-03-06 14:43:04 -0800660void CheckInterpreterAsmConstants() {
661 CheckMterpAsmConstants();
662}
663
664void InitInterpreterTls(Thread* self) {
665 InitMterpTls(self);
666}
667
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700668} // namespace interpreter
669} // namespace art