blob: fe388cd16dce2b835b2c48bb3afa5cf68ac0aa5f [file] [log] [blame]
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001/*
2 * Copyright (C) 2015 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 "unstarted_runtime.h"
18
Andreas Gampe13fc1be2016-04-05 20:14:30 -070019#include <errno.h>
20#include <stdlib.h>
21
Andreas Gampe2969bcd2015-03-09 12:57:41 -070022#include <cmath>
Andreas Gampe13fc1be2016-04-05 20:14:30 -070023#include <limits>
Andreas Gampe2969bcd2015-03-09 12:57:41 -070024#include <unordered_map>
25
Andreas Gampeaacc25d2015-04-01 14:49:06 -070026#include "ScopedLocalRef.h"
27
Mathieu Chartiere401d142015-04-22 13:56:20 -070028#include "art_method-inl.h"
Andreas Gampebc4d2182016-02-22 10:03:12 -080029#include "base/casts.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070030#include "base/logging.h"
31#include "base/macros.h"
32#include "class_linker.h"
33#include "common_throws.h"
34#include "entrypoints/entrypoint_utils-inl.h"
Andreas Gampebc4d2182016-02-22 10:03:12 -080035#include "gc/reference_processor.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070036#include "handle_scope-inl.h"
37#include "interpreter/interpreter_common.h"
38#include "mirror/array-inl.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070039#include "mirror/class.h"
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070040#include "mirror/field-inl.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070041#include "mirror/object-inl.h"
42#include "mirror/object_array-inl.h"
43#include "mirror/string-inl.h"
44#include "nth_caller_visitor.h"
45#include "thread.h"
Sebastien Hertz2fd7e692015-04-02 11:11:19 +020046#include "transaction.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070047#include "well_known_classes.h"
Andreas Gampef778eb22015-04-13 14:17:09 -070048#include "zip_archive.h"
Andreas Gampe2969bcd2015-03-09 12:57:41 -070049
50namespace art {
51namespace interpreter {
52
Andreas Gampe068b0c02015-03-11 12:44:47 -070053static void AbortTransactionOrFail(Thread* self, const char* fmt, ...)
Sebastien Hertz45b15972015-04-03 16:07:05 +020054 __attribute__((__format__(__printf__, 2, 3)))
Mathieu Chartier90443472015-07-16 20:32:27 -070055 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz45b15972015-04-03 16:07:05 +020056
57static void AbortTransactionOrFail(Thread* self, const char* fmt, ...) {
Andreas Gampe068b0c02015-03-11 12:44:47 -070058 va_list args;
Andreas Gampe068b0c02015-03-11 12:44:47 -070059 if (Runtime::Current()->IsActiveTransaction()) {
Sebastien Hertz45b15972015-04-03 16:07:05 +020060 va_start(args, fmt);
61 AbortTransactionV(self, fmt, args);
Andreas Gampe068b0c02015-03-11 12:44:47 -070062 va_end(args);
63 } else {
Sebastien Hertz45b15972015-04-03 16:07:05 +020064 va_start(args, fmt);
65 std::string msg;
66 StringAppendV(&msg, fmt, args);
67 va_end(args);
68 LOG(FATAL) << "Trying to abort, but not in transaction mode: " << msg;
Andreas Gampe068b0c02015-03-11 12:44:47 -070069 UNREACHABLE();
70 }
71}
72
Andreas Gampe2969bcd2015-03-09 12:57:41 -070073// Helper function to deal with class loading in an unstarted runtime.
74static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className,
75 Handle<mirror::ClassLoader> class_loader, JValue* result,
76 const std::string& method_name, bool initialize_class,
77 bool abort_if_not_found)
Mathieu Chartier90443472015-07-16 20:32:27 -070078 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -070079 CHECK(className.Get() != nullptr);
80 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str()));
81 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
82
83 mirror::Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader);
84 if (found == nullptr && abort_if_not_found) {
85 if (!self->IsExceptionPending()) {
Andreas Gampe068b0c02015-03-11 12:44:47 -070086 AbortTransactionOrFail(self, "%s failed in un-started runtime for class: %s",
87 method_name.c_str(), PrettyDescriptor(descriptor.c_str()).c_str());
Andreas Gampe2969bcd2015-03-09 12:57:41 -070088 }
89 return;
90 }
91 if (found != nullptr && initialize_class) {
92 StackHandleScope<1> hs(self);
93 Handle<mirror::Class> h_class(hs.NewHandle(found));
94 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
95 CHECK(self->IsExceptionPending());
96 return;
97 }
98 }
99 result->SetL(found);
100}
101
102// Common helper for class-loading cutouts in an unstarted runtime. We call Runtime methods that
103// rely on Java code to wrap errors in the correct exception class (i.e., NoClassDefFoundError into
104// ClassNotFoundException), so need to do the same. The only exception is if the exception is
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200105// actually the transaction abort exception. This must not be wrapped, as it signals an
106// initialization abort.
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700107static void CheckExceptionGenerateClassNotFound(Thread* self)
Mathieu Chartier90443472015-07-16 20:32:27 -0700108 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700109 if (self->IsExceptionPending()) {
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200110 // If it is not the transaction abort exception, wrap it.
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700111 std::string type(PrettyTypeOf(self->GetException()));
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200112 if (type != Transaction::kAbortExceptionDescriptor) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700113 self->ThrowNewWrappedException("Ljava/lang/ClassNotFoundException;",
114 "ClassNotFoundException");
115 }
116 }
117}
118
Andreas Gampe5d4bb1d2015-04-14 22:16:14 -0700119static mirror::String* GetClassName(Thread* self, ShadowFrame* shadow_frame, size_t arg_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -0700120 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe5d4bb1d2015-04-14 22:16:14 -0700121 mirror::Object* param = shadow_frame->GetVRegReference(arg_offset);
122 if (param == nullptr) {
123 AbortTransactionOrFail(self, "Null-pointer in Class.forName.");
124 return nullptr;
125 }
126 return param->AsString();
127}
128
Andreas Gampe799681b2015-05-15 19:24:12 -0700129void UnstartedRuntime::UnstartedClassForName(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700130 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe5d4bb1d2015-04-14 22:16:14 -0700131 mirror::String* class_name = GetClassName(self, shadow_frame, arg_offset);
132 if (class_name == nullptr) {
133 return;
134 }
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700135 StackHandleScope<1> hs(self);
136 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
Mathieu Chartier9865bde2015-12-21 09:58:16 -0800137 UnstartedRuntimeFindClass(self,
138 h_class_name,
139 ScopedNullHandle<mirror::ClassLoader>(),
140 result,
141 "Class.forName",
142 true,
143 false);
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700144 CheckExceptionGenerateClassNotFound(self);
145}
146
Andreas Gampe799681b2015-05-15 19:24:12 -0700147void UnstartedRuntime::UnstartedClassForNameLong(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700148 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe5d4bb1d2015-04-14 22:16:14 -0700149 mirror::String* class_name = GetClassName(self, shadow_frame, arg_offset);
150 if (class_name == nullptr) {
Andreas Gampebf4d3af2015-04-14 10:10:33 -0700151 return;
152 }
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700153 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
154 mirror::ClassLoader* class_loader =
155 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset + 2));
156 StackHandleScope<2> hs(self);
157 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
158 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
159 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, "Class.forName",
160 initialize_class, false);
161 CheckExceptionGenerateClassNotFound(self);
162}
163
Andreas Gampe799681b2015-05-15 19:24:12 -0700164void UnstartedRuntime::UnstartedClassClassForName(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700165 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe5d4bb1d2015-04-14 22:16:14 -0700166 mirror::String* class_name = GetClassName(self, shadow_frame, arg_offset);
167 if (class_name == nullptr) {
168 return;
169 }
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700170 bool initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0;
171 mirror::ClassLoader* class_loader =
172 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset + 2));
173 StackHandleScope<2> hs(self);
174 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
175 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
176 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result, "Class.classForName",
177 initialize_class, false);
178 CheckExceptionGenerateClassNotFound(self);
179}
180
Andreas Gampe799681b2015-05-15 19:24:12 -0700181void UnstartedRuntime::UnstartedClassNewInstance(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700182 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
183 StackHandleScope<2> hs(self); // Class, constructor, object.
Andreas Gampe5d4bb1d2015-04-14 22:16:14 -0700184 mirror::Object* param = shadow_frame->GetVRegReference(arg_offset);
185 if (param == nullptr) {
186 AbortTransactionOrFail(self, "Null-pointer in Class.newInstance.");
187 return;
188 }
189 mirror::Class* klass = param->AsClass();
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700190 Handle<mirror::Class> h_klass(hs.NewHandle(klass));
Andreas Gampe0f7e3d62015-03-11 13:24:35 -0700191
192 // Check that it's not null.
193 if (h_klass.Get() == nullptr) {
194 AbortTransactionOrFail(self, "Class reference is null for newInstance");
195 return;
196 }
197
198 // If we're in a transaction, class must not be finalizable (it or a superclass has a finalizer).
199 if (Runtime::Current()->IsActiveTransaction()) {
200 if (h_klass.Get()->IsFinalizable()) {
Sebastien Hertz45b15972015-04-03 16:07:05 +0200201 AbortTransactionF(self, "Class for newInstance is finalizable: '%s'",
202 PrettyClass(h_klass.Get()).c_str());
Andreas Gampe0f7e3d62015-03-11 13:24:35 -0700203 return;
204 }
205 }
206
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700207 // There are two situations in which we'll abort this run.
208 // 1) If the class isn't yet initialized and initialization fails.
209 // 2) If we can't find the default constructor. We'll postpone the exception to runtime.
210 // Note that 2) could likely be handled here, but for safety abort the transaction.
211 bool ok = false;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700212 auto* cl = Runtime::Current()->GetClassLinker();
213 if (cl->EnsureInitialized(self, h_klass, true, true)) {
214 auto* cons = h_klass->FindDeclaredDirectMethod("<init>", "()V", cl->GetImagePointerSize());
215 if (cons != nullptr) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700216 Handle<mirror::Object> h_obj(hs.NewHandle(klass->AllocObject(self)));
217 CHECK(h_obj.Get() != nullptr); // We don't expect OOM at compile-time.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700218 EnterInterpreterFromInvoke(self, cons, h_obj.Get(), nullptr, nullptr);
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700219 if (!self->IsExceptionPending()) {
220 result->SetL(h_obj.Get());
221 ok = true;
222 }
223 } else {
224 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
225 "Could not find default constructor for '%s'",
226 PrettyClass(h_klass.Get()).c_str());
227 }
228 }
229 if (!ok) {
Andreas Gampe068b0c02015-03-11 12:44:47 -0700230 AbortTransactionOrFail(self, "Failed in Class.newInstance for '%s' with %s",
231 PrettyClass(h_klass.Get()).c_str(),
232 PrettyTypeOf(self->GetException()).c_str());
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700233 }
234}
235
Andreas Gampe799681b2015-05-15 19:24:12 -0700236void UnstartedRuntime::UnstartedClassGetDeclaredField(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700237 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700238 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fail
239 // going the reflective Dex way.
240 mirror::Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
241 mirror::String* name2 = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
Mathieu Chartierc7853442015-03-27 14:35:38 -0700242 ArtField* found = nullptr;
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700243 for (ArtField& field : klass->GetIFields()) {
244 if (name2->Equals(field.GetName())) {
245 found = &field;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700246 break;
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700247 }
248 }
249 if (found == nullptr) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700250 for (ArtField& field : klass->GetSFields()) {
251 if (name2->Equals(field.GetName())) {
252 found = &field;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700253 break;
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700254 }
255 }
256 }
Andreas Gampe068b0c02015-03-11 12:44:47 -0700257 if (found == nullptr) {
258 AbortTransactionOrFail(self, "Failed to find field in Class.getDeclaredField in un-started "
259 " runtime. name=%s class=%s", name2->ToModifiedUtf8().c_str(),
260 PrettyDescriptor(klass).c_str());
261 return;
262 }
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700263 if (Runtime::Current()->IsActiveTransaction()) {
264 result->SetL(mirror::Field::CreateFromArtField<true>(self, found, true));
265 } else {
266 result->SetL(mirror::Field::CreateFromArtField<false>(self, found, true));
267 }
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700268}
269
Andreas Gampebc4d2182016-02-22 10:03:12 -0800270// This is required for Enum(Set) code, as that uses reflection to inspect enum classes.
271void UnstartedRuntime::UnstartedClassGetDeclaredMethod(
272 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
273 // Special managed code cut-out to allow method lookup in a un-started runtime.
274 mirror::Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
275 if (klass == nullptr) {
276 ThrowNullPointerExceptionForMethodAccess(shadow_frame->GetMethod(), InvokeType::kVirtual);
277 return;
278 }
279 mirror::String* name = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
280 mirror::ObjectArray<mirror::Class>* args =
281 shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<mirror::Class>();
282 if (Runtime::Current()->IsActiveTransaction()) {
283 result->SetL(mirror::Class::GetDeclaredMethodInternal<true>(self, klass, name, args));
284 } else {
285 result->SetL(mirror::Class::GetDeclaredMethodInternal<false>(self, klass, name, args));
286 }
287}
288
Andreas Gampe6039e562016-04-05 18:18:43 -0700289// Special managed code cut-out to allow constructor lookup in a un-started runtime.
290void UnstartedRuntime::UnstartedClassGetDeclaredConstructor(
291 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
292 mirror::Class* klass = shadow_frame->GetVRegReference(arg_offset)->AsClass();
293 if (klass == nullptr) {
294 ThrowNullPointerExceptionForMethodAccess(shadow_frame->GetMethod(), InvokeType::kVirtual);
295 return;
296 }
297 mirror::ObjectArray<mirror::Class>* args =
298 shadow_frame->GetVRegReference(arg_offset + 1)->AsObjectArray<mirror::Class>();
299 if (Runtime::Current()->IsActiveTransaction()) {
300 result->SetL(mirror::Class::GetDeclaredConstructorInternal<true>(self, klass, args));
301 } else {
302 result->SetL(mirror::Class::GetDeclaredConstructorInternal<false>(self, klass, args));
303 }
304}
305
Andreas Gampe633750c2016-02-19 10:49:50 -0800306void UnstartedRuntime::UnstartedClassGetEnclosingClass(
307 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
308 StackHandleScope<1> hs(self);
309 Handle<mirror::Class> klass(hs.NewHandle(shadow_frame->GetVRegReference(arg_offset)->AsClass()));
310 if (klass->IsProxyClass() || klass->GetDexCache() == nullptr) {
311 result->SetL(nullptr);
312 }
313 result->SetL(klass->GetDexFile().GetEnclosingClass(klass));
314}
315
Andreas Gampe799681b2015-05-15 19:24:12 -0700316void UnstartedRuntime::UnstartedVmClassLoaderFindLoadedClass(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700317 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700318 mirror::String* class_name = shadow_frame->GetVRegReference(arg_offset + 1)->AsString();
319 mirror::ClassLoader* class_loader =
320 down_cast<mirror::ClassLoader*>(shadow_frame->GetVRegReference(arg_offset));
321 StackHandleScope<2> hs(self);
322 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
323 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
324 UnstartedRuntimeFindClass(self, h_class_name, h_class_loader, result,
325 "VMClassLoader.findLoadedClass", false, false);
326 // This might have an error pending. But semantics are to just return null.
327 if (self->IsExceptionPending()) {
328 // If it is an InternalError, keep it. See CheckExceptionGenerateClassNotFound.
329 std::string type(PrettyTypeOf(self->GetException()));
330 if (type != "java.lang.InternalError") {
331 self->ClearException();
332 }
333 }
334}
335
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336void UnstartedRuntime::UnstartedVoidLookupType(
337 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame ATTRIBUTE_UNUSED, JValue* result,
338 size_t arg_offset ATTRIBUTE_UNUSED) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700339 result->SetL(Runtime::Current()->GetClassLinker()->FindPrimitiveClass('V'));
340}
341
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700342// Arraycopy emulation.
343// Note: we can't use any fast copy functions, as they are not available under transaction.
344
345template <typename T>
346static void PrimitiveArrayCopy(Thread* self,
347 mirror::Array* src_array, int32_t src_pos,
348 mirror::Array* dst_array, int32_t dst_pos,
349 int32_t length)
Mathieu Chartier90443472015-07-16 20:32:27 -0700350 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700351 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) {
352 AbortTransactionOrFail(self, "Types mismatched in arraycopy: %s vs %s.",
353 PrettyDescriptor(src_array->GetClass()->GetComponentType()).c_str(),
354 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str());
355 return;
356 }
357 mirror::PrimitiveArray<T>* src = down_cast<mirror::PrimitiveArray<T>*>(src_array);
358 mirror::PrimitiveArray<T>* dst = down_cast<mirror::PrimitiveArray<T>*>(dst_array);
359 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length);
360 if (copy_forward) {
361 for (int32_t i = 0; i < length; ++i) {
362 dst->Set(dst_pos + i, src->Get(src_pos + i));
363 }
364 } else {
365 for (int32_t i = 1; i <= length; ++i) {
366 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i));
367 }
368 }
369}
370
Andreas Gampe799681b2015-05-15 19:24:12 -0700371void UnstartedRuntime::UnstartedSystemArraycopy(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700372 Thread* self, ShadowFrame* shadow_frame, JValue* result ATTRIBUTE_UNUSED, size_t arg_offset) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700373 // Special case array copying without initializing System.
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700374 jint src_pos = shadow_frame->GetVReg(arg_offset + 1);
375 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3);
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700376 jint length = shadow_frame->GetVReg(arg_offset + 4);
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700377
Andreas Gampe85a098a2016-03-31 13:30:53 -0700378 mirror::Object* src_obj = shadow_frame->GetVRegReference(arg_offset);
379 mirror::Object* dst_obj = shadow_frame->GetVRegReference(arg_offset + 2);
380 // Null checking. For simplicity, abort transaction.
381 if (src_obj == nullptr) {
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700382 AbortTransactionOrFail(self, "src is null in arraycopy.");
383 return;
384 }
Andreas Gampe85a098a2016-03-31 13:30:53 -0700385 if (dst_obj == nullptr) {
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700386 AbortTransactionOrFail(self, "dst is null in arraycopy.");
387 return;
388 }
Andreas Gampe85a098a2016-03-31 13:30:53 -0700389 // Test for arrayness. Throw ArrayStoreException.
390 if (!src_obj->IsArrayInstance() || !dst_obj->IsArrayInstance()) {
391 self->ThrowNewException("Ljava/lang/ArrayStoreException;", "src or trg is not an array");
392 return;
393 }
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700394
Andreas Gampe85a098a2016-03-31 13:30:53 -0700395 mirror::Array* src_array = src_obj->AsArray();
396 mirror::Array* dst_array = dst_obj->AsArray();
397
398 // Bounds checking. Throw IndexOutOfBoundsException.
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700399 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) ||
400 UNLIKELY(src_pos > src_array->GetLength() - length) ||
401 UNLIKELY(dst_pos > dst_array->GetLength() - length)) {
Andreas Gampe85a098a2016-03-31 13:30:53 -0700402 self->ThrowNewExceptionF("Ljava/lang/IndexOutOfBoundsException;",
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700403 "src.length=%d srcPos=%d dst.length=%d dstPos=%d length=%d",
404 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
405 length);
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700406 return;
407 }
408
409 // Type checking.
410 mirror::Class* src_type = shadow_frame->GetVRegReference(arg_offset)->GetClass()->
411 GetComponentType();
412
413 if (!src_type->IsPrimitive()) {
414 // Check that the second type is not primitive.
415 mirror::Class* trg_type = shadow_frame->GetVRegReference(arg_offset + 2)->GetClass()->
416 GetComponentType();
417 if (trg_type->IsPrimitiveInt()) {
418 AbortTransactionOrFail(self, "Type mismatch in arraycopy: %s vs %s",
419 PrettyDescriptor(src_array->GetClass()->GetComponentType()).c_str(),
420 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str());
421 return;
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700422 }
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700423
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700424 mirror::ObjectArray<mirror::Object>* src = src_array->AsObjectArray<mirror::Object>();
425 mirror::ObjectArray<mirror::Object>* dst = dst_array->AsObjectArray<mirror::Object>();
426 if (src == dst) {
427 // Can overlap, but not have type mismatches.
Andreas Gampe85a098a2016-03-31 13:30:53 -0700428 // We cannot use ObjectArray::MemMove here, as it doesn't support transactions.
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700429 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length);
430 if (copy_forward) {
431 for (int32_t i = 0; i < length; ++i) {
432 dst->Set(dst_pos + i, src->Get(src_pos + i));
433 }
434 } else {
435 for (int32_t i = 1; i <= length; ++i) {
436 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i));
437 }
438 }
439 } else {
Andreas Gampe85a098a2016-03-31 13:30:53 -0700440 // We're being lazy here. Optimally this could be a memcpy (if component types are
441 // assignable), but the ObjectArray implementation doesn't support transactions. The
442 // checking version, however, does.
443 if (Runtime::Current()->IsActiveTransaction()) {
444 dst->AssignableCheckingMemcpy<true>(
445 dst_pos, src, src_pos, length, true /* throw_exception */);
446 } else {
447 dst->AssignableCheckingMemcpy<false>(
448 dst_pos, src, src_pos, length, true /* throw_exception */);
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700449 }
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700450 }
Andreas Gampe5c9af612016-04-05 14:16:10 -0700451 } else if (src_type->IsPrimitiveByte()) {
452 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length);
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700453 } else if (src_type->IsPrimitiveChar()) {
454 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length);
455 } else if (src_type->IsPrimitiveInt()) {
456 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length);
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700457 } else {
Andreas Gampe068b0c02015-03-11 12:44:47 -0700458 AbortTransactionOrFail(self, "Unimplemented System.arraycopy for type '%s'",
Andreas Gampe8e6c3fd2015-03-11 18:34:44 -0700459 PrettyDescriptor(src_type).c_str());
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700460 }
461}
462
Andreas Gampe5c9af612016-04-05 14:16:10 -0700463void UnstartedRuntime::UnstartedSystemArraycopyByte(
464 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
465 // Just forward.
466 UnstartedRuntime::UnstartedSystemArraycopy(self, shadow_frame, result, arg_offset);
467}
468
Andreas Gampe799681b2015-05-15 19:24:12 -0700469void UnstartedRuntime::UnstartedSystemArraycopyChar(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700470 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700471 // Just forward.
472 UnstartedRuntime::UnstartedSystemArraycopy(self, shadow_frame, result, arg_offset);
473}
474
475void UnstartedRuntime::UnstartedSystemArraycopyInt(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700476 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700477 // Just forward.
478 UnstartedRuntime::UnstartedSystemArraycopy(self, shadow_frame, result, arg_offset);
479}
480
Narayan Kamath34a316f2016-03-30 13:11:18 +0100481void UnstartedRuntime::UnstartedSystemGetSecurityManager(
482 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame ATTRIBUTE_UNUSED,
483 JValue* result, size_t arg_offset ATTRIBUTE_UNUSED) {
484 result->SetL(nullptr);
485}
486
Andreas Gamped4fa9f42016-04-13 14:53:23 -0700487static constexpr const char* kAndroidHardcodedSystemPropertiesFieldName = "STATIC_PROPERTIES";
488
489static void GetSystemProperty(Thread* self,
490 ShadowFrame* shadow_frame,
491 JValue* result,
492 size_t arg_offset,
493 bool is_default_version)
494 SHARED_REQUIRES(Locks::mutator_lock_) {
495 StackHandleScope<4> hs(self);
496 Handle<mirror::String> h_key(
497 hs.NewHandle(reinterpret_cast<mirror::String*>(shadow_frame->GetVRegReference(arg_offset))));
498 if (h_key.Get() == nullptr) {
499 AbortTransactionOrFail(self, "getProperty key was null");
500 return;
501 }
502
503 // This is overall inefficient, but reflecting the values here is not great, either. So
504 // for simplicity, and with the assumption that the number of getProperty calls is not
505 // too great, just iterate each time.
506
507 // Get the storage class.
508 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
509 Handle<mirror::Class> h_props_class(hs.NewHandle(
510 class_linker->FindClass(self,
511 "Ljava/lang/AndroidHardcodedSystemProperties;",
512 ScopedNullHandle<mirror::ClassLoader>())));
513 if (h_props_class.Get() == nullptr) {
514 AbortTransactionOrFail(self, "Could not find AndroidHardcodedSystemProperties");
515 return;
516 }
517 if (!class_linker->EnsureInitialized(self, h_props_class, true, true)) {
518 AbortTransactionOrFail(self, "Could not initialize AndroidHardcodedSystemProperties");
519 return;
520 }
521
522 // Get the storage array.
523 ArtField* static_properties =
524 h_props_class->FindDeclaredStaticField(kAndroidHardcodedSystemPropertiesFieldName,
525 "[[Ljava/lang/String;");
526 if (static_properties == nullptr) {
527 AbortTransactionOrFail(self,
528 "Could not find %s field",
529 kAndroidHardcodedSystemPropertiesFieldName);
530 return;
531 }
532 Handle<mirror::ObjectArray<mirror::ObjectArray<mirror::String>>> h_2string_array(
533 hs.NewHandle(reinterpret_cast<mirror::ObjectArray<mirror::ObjectArray<mirror::String>>*>(
534 static_properties->GetObject(h_props_class.Get()))));
535 if (h_2string_array.Get() == nullptr) {
536 AbortTransactionOrFail(self, "Field %s is null", kAndroidHardcodedSystemPropertiesFieldName);
537 return;
538 }
539
540 // Iterate over it.
541 const int32_t prop_count = h_2string_array->GetLength();
542 // Use the third handle as mutable.
543 MutableHandle<mirror::ObjectArray<mirror::String>> h_string_array(
544 hs.NewHandle<mirror::ObjectArray<mirror::String>>(nullptr));
545 for (int32_t i = 0; i < prop_count; ++i) {
546 h_string_array.Assign(h_2string_array->Get(i));
547 if (h_string_array.Get() == nullptr ||
548 h_string_array->GetLength() != 2 ||
549 h_string_array->Get(0) == nullptr) {
550 AbortTransactionOrFail(self,
551 "Unexpected content of %s",
552 kAndroidHardcodedSystemPropertiesFieldName);
553 return;
554 }
555 if (h_key->Equals(h_string_array->Get(0))) {
556 // Found a value.
557 if (h_string_array->Get(1) == nullptr && is_default_version) {
558 // Null is being delegated to the default map, and then resolved to the given default value.
559 // As there's no default map, return the given value.
560 result->SetL(shadow_frame->GetVRegReference(arg_offset + 1));
561 } else {
562 result->SetL(h_string_array->Get(1));
563 }
564 return;
565 }
566 }
567
568 // Key is not supported.
569 AbortTransactionOrFail(self, "getProperty key %s not supported", h_key->ToModifiedUtf8().c_str());
570}
571
572void UnstartedRuntime::UnstartedSystemGetProperty(
573 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
574 GetSystemProperty(self, shadow_frame, result, arg_offset, false);
575}
576
577void UnstartedRuntime::UnstartedSystemGetPropertyWithDefault(
578 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
579 GetSystemProperty(self, shadow_frame, result, arg_offset, true);
580}
581
Andreas Gampe799681b2015-05-15 19:24:12 -0700582void UnstartedRuntime::UnstartedThreadLocalGet(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700583 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset ATTRIBUTE_UNUSED) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700584 std::string caller(PrettyMethod(shadow_frame->GetLink()->GetMethod()));
585 bool ok = false;
Narayan Kamatha1e93122016-03-30 15:41:54 +0100586 if (caller == "void java.lang.FloatingDecimal.developLongDigits(int, long, long)" ||
587 caller == "java.lang.String java.lang.FloatingDecimal.toJavaFormatString()") {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700588 // Allocate non-threadlocal buffer.
Narayan Kamatha1e93122016-03-30 15:41:54 +0100589 result->SetL(mirror::CharArray::Alloc(self, 26));
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700590 ok = true;
Narayan Kamatha1e93122016-03-30 15:41:54 +0100591 } else if (caller ==
592 "java.lang.FloatingDecimal java.lang.FloatingDecimal.getThreadLocalInstance()") {
593 // Allocate new object.
594 StackHandleScope<2> hs(self);
595 Handle<mirror::Class> h_real_to_string_class(hs.NewHandle(
596 shadow_frame->GetLink()->GetMethod()->GetDeclaringClass()));
597 Handle<mirror::Object> h_real_to_string_obj(hs.NewHandle(
598 h_real_to_string_class->AllocObject(self)));
599 if (h_real_to_string_obj.Get() != nullptr) {
600 auto* cl = Runtime::Current()->GetClassLinker();
601 ArtMethod* init_method = h_real_to_string_class->FindDirectMethod(
602 "<init>", "()V", cl->GetImagePointerSize());
603 if (init_method == nullptr) {
604 h_real_to_string_class->DumpClass(LOG(FATAL), mirror::Class::kDumpClassFullDetail);
605 } else {
606 JValue invoke_result;
607 EnterInterpreterFromInvoke(self, init_method, h_real_to_string_obj.Get(), nullptr,
608 nullptr);
609 if (!self->IsExceptionPending()) {
610 result->SetL(h_real_to_string_obj.Get());
611 ok = true;
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700612 }
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700613 }
614 }
615 }
616
617 if (!ok) {
Andreas Gampe068b0c02015-03-11 12:44:47 -0700618 AbortTransactionOrFail(self, "Could not create RealToString object");
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700619 }
620}
621
Sergio Giro83261202016-04-11 20:49:20 +0100622void UnstartedRuntime::UnstartedMathCeil(
623 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe89e3b482016-04-12 18:07:36 -0700624 result->SetD(ceil(shadow_frame->GetVRegDouble(arg_offset)));
Sergio Giro83261202016-04-11 20:49:20 +0100625}
626
627void UnstartedRuntime::UnstartedMathFloor(
628 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe89e3b482016-04-12 18:07:36 -0700629 result->SetD(floor(shadow_frame->GetVRegDouble(arg_offset)));
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700630}
631
Andreas Gampe799681b2015-05-15 19:24:12 -0700632void UnstartedRuntime::UnstartedObjectHashCode(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700633 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700634 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset);
635 result->SetI(obj->IdentityHashCode());
636}
637
Andreas Gampe799681b2015-05-15 19:24:12 -0700638void UnstartedRuntime::UnstartedDoubleDoubleToRawLongBits(
Andreas Gampedd9d0552015-03-09 12:57:41 -0700639 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700640 double in = shadow_frame->GetVRegDouble(arg_offset);
Roland Levillainda4d79b2015-03-24 14:36:11 +0000641 result->SetJ(bit_cast<int64_t, double>(in));
Andreas Gampe2969bcd2015-03-09 12:57:41 -0700642}
643
Andreas Gampedd9d0552015-03-09 12:57:41 -0700644static mirror::Object* GetDexFromDexCache(Thread* self, mirror::DexCache* dex_cache)
Mathieu Chartier90443472015-07-16 20:32:27 -0700645 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampedd9d0552015-03-09 12:57:41 -0700646 const DexFile* dex_file = dex_cache->GetDexFile();
647 if (dex_file == nullptr) {
648 return nullptr;
649 }
650
651 // Create the direct byte buffer.
652 JNIEnv* env = self->GetJniEnv();
653 DCHECK(env != nullptr);
654 void* address = const_cast<void*>(reinterpret_cast<const void*>(dex_file->Begin()));
Andreas Gampeaacc25d2015-04-01 14:49:06 -0700655 ScopedLocalRef<jobject> byte_buffer(env, env->NewDirectByteBuffer(address, dex_file->Size()));
656 if (byte_buffer.get() == nullptr) {
Andreas Gampedd9d0552015-03-09 12:57:41 -0700657 DCHECK(self->IsExceptionPending());
658 return nullptr;
659 }
660
661 jvalue args[1];
Andreas Gampeaacc25d2015-04-01 14:49:06 -0700662 args[0].l = byte_buffer.get();
663
664 ScopedLocalRef<jobject> dex(env, env->CallStaticObjectMethodA(
665 WellKnownClasses::com_android_dex_Dex,
666 WellKnownClasses::com_android_dex_Dex_create,
667 args));
668
669 return self->DecodeJObject(dex.get());
Andreas Gampedd9d0552015-03-09 12:57:41 -0700670}
671
Andreas Gampe799681b2015-05-15 19:24:12 -0700672void UnstartedRuntime::UnstartedDexCacheGetDexNative(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700673 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampedd9d0552015-03-09 12:57:41 -0700674 // We will create the Dex object, but the image writer will release it before creating the
675 // art file.
676 mirror::Object* src = shadow_frame->GetVRegReference(arg_offset);
677 bool have_dex = false;
678 if (src != nullptr) {
679 mirror::Object* dex = GetDexFromDexCache(self, reinterpret_cast<mirror::DexCache*>(src));
680 if (dex != nullptr) {
681 have_dex = true;
682 result->SetL(dex);
683 }
684 }
685 if (!have_dex) {
686 self->ClearException();
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200687 Runtime::Current()->AbortTransactionAndThrowAbortError(self, "Could not create Dex object");
Andreas Gampedd9d0552015-03-09 12:57:41 -0700688 }
689}
690
691static void UnstartedMemoryPeek(
692 Primitive::Type type, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
693 int64_t address = shadow_frame->GetVRegLong(arg_offset);
694 // TODO: Check that this is in the heap somewhere. Otherwise we will segfault instead of
695 // aborting the transaction.
696
697 switch (type) {
698 case Primitive::kPrimByte: {
699 result->SetB(*reinterpret_cast<int8_t*>(static_cast<intptr_t>(address)));
700 return;
701 }
702
703 case Primitive::kPrimShort: {
Andreas Gampe799681b2015-05-15 19:24:12 -0700704 typedef int16_t unaligned_short __attribute__ ((aligned (1)));
705 result->SetS(*reinterpret_cast<unaligned_short*>(static_cast<intptr_t>(address)));
Andreas Gampedd9d0552015-03-09 12:57:41 -0700706 return;
707 }
708
709 case Primitive::kPrimInt: {
Andreas Gampe799681b2015-05-15 19:24:12 -0700710 typedef int32_t unaligned_int __attribute__ ((aligned (1)));
711 result->SetI(*reinterpret_cast<unaligned_int*>(static_cast<intptr_t>(address)));
Andreas Gampedd9d0552015-03-09 12:57:41 -0700712 return;
713 }
714
715 case Primitive::kPrimLong: {
Andreas Gampe799681b2015-05-15 19:24:12 -0700716 typedef int64_t unaligned_long __attribute__ ((aligned (1)));
717 result->SetJ(*reinterpret_cast<unaligned_long*>(static_cast<intptr_t>(address)));
Andreas Gampedd9d0552015-03-09 12:57:41 -0700718 return;
719 }
720
721 case Primitive::kPrimBoolean:
722 case Primitive::kPrimChar:
723 case Primitive::kPrimFloat:
724 case Primitive::kPrimDouble:
725 case Primitive::kPrimVoid:
726 case Primitive::kPrimNot:
727 LOG(FATAL) << "Not in the Memory API: " << type;
728 UNREACHABLE();
729 }
730 LOG(FATAL) << "Should not reach here";
731 UNREACHABLE();
732}
733
Andreas Gampe799681b2015-05-15 19:24:12 -0700734void UnstartedRuntime::UnstartedMemoryPeekByte(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700735 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700736 UnstartedMemoryPeek(Primitive::kPrimByte, shadow_frame, result, arg_offset);
737}
738
739void UnstartedRuntime::UnstartedMemoryPeekShort(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700740 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700741 UnstartedMemoryPeek(Primitive::kPrimShort, shadow_frame, result, arg_offset);
742}
743
744void UnstartedRuntime::UnstartedMemoryPeekInt(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700745 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700746 UnstartedMemoryPeek(Primitive::kPrimInt, shadow_frame, result, arg_offset);
747}
748
749void UnstartedRuntime::UnstartedMemoryPeekLong(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700750 Thread* self ATTRIBUTE_UNUSED, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700751 UnstartedMemoryPeek(Primitive::kPrimLong, shadow_frame, result, arg_offset);
Andreas Gampedd9d0552015-03-09 12:57:41 -0700752}
753
754static void UnstartedMemoryPeekArray(
755 Primitive::Type type, Thread* self, ShadowFrame* shadow_frame, size_t arg_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -0700756 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampedd9d0552015-03-09 12:57:41 -0700757 int64_t address_long = shadow_frame->GetVRegLong(arg_offset);
758 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset + 2);
759 if (obj == nullptr) {
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200760 Runtime::Current()->AbortTransactionAndThrowAbortError(self, "Null pointer in peekArray");
Andreas Gampedd9d0552015-03-09 12:57:41 -0700761 return;
762 }
763 mirror::Array* array = obj->AsArray();
764
765 int offset = shadow_frame->GetVReg(arg_offset + 3);
766 int count = shadow_frame->GetVReg(arg_offset + 4);
767 if (offset < 0 || offset + count > array->GetLength()) {
768 std::string error_msg(StringPrintf("Array out of bounds in peekArray: %d/%d vs %d",
769 offset, count, array->GetLength()));
Sebastien Hertz2fd7e692015-04-02 11:11:19 +0200770 Runtime::Current()->AbortTransactionAndThrowAbortError(self, error_msg.c_str());
Andreas Gampedd9d0552015-03-09 12:57:41 -0700771 return;
772 }
773
774 switch (type) {
775 case Primitive::kPrimByte: {
776 int8_t* address = reinterpret_cast<int8_t*>(static_cast<intptr_t>(address_long));
777 mirror::ByteArray* byte_array = array->AsByteArray();
778 for (int32_t i = 0; i < count; ++i, ++address) {
779 byte_array->SetWithoutChecks<true>(i + offset, *address);
780 }
781 return;
782 }
783
784 case Primitive::kPrimShort:
785 case Primitive::kPrimInt:
786 case Primitive::kPrimLong:
787 LOG(FATAL) << "Type unimplemented for Memory Array API, should not reach here: " << type;
788 UNREACHABLE();
789
790 case Primitive::kPrimBoolean:
791 case Primitive::kPrimChar:
792 case Primitive::kPrimFloat:
793 case Primitive::kPrimDouble:
794 case Primitive::kPrimVoid:
795 case Primitive::kPrimNot:
796 LOG(FATAL) << "Not in the Memory API: " << type;
797 UNREACHABLE();
798 }
799 LOG(FATAL) << "Should not reach here";
800 UNREACHABLE();
801}
802
Andreas Gampe799681b2015-05-15 19:24:12 -0700803void UnstartedRuntime::UnstartedMemoryPeekByteArray(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700804 Thread* self, ShadowFrame* shadow_frame, JValue* result ATTRIBUTE_UNUSED, size_t arg_offset) {
Andreas Gampe799681b2015-05-15 19:24:12 -0700805 UnstartedMemoryPeekArray(Primitive::kPrimByte, self, shadow_frame, arg_offset);
Andreas Gampedd9d0552015-03-09 12:57:41 -0700806}
807
Andreas Gampef778eb22015-04-13 14:17:09 -0700808// This allows reading security.properties in an unstarted runtime and initialize Security.
Andreas Gampe799681b2015-05-15 19:24:12 -0700809void UnstartedRuntime::UnstartedSecurityGetSecurityPropertiesReader(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700810 Thread* self, ShadowFrame* shadow_frame ATTRIBUTE_UNUSED, JValue* result,
811 size_t arg_offset ATTRIBUTE_UNUSED) {
Andreas Gampef778eb22015-04-13 14:17:09 -0700812 Runtime* runtime = Runtime::Current();
Andreas Gampee0f633e2016-03-29 19:33:56 -0700813
814 std::vector<std::string> split;
815 Split(runtime->GetBootClassPathString(), ':', &split);
816 if (split.empty()) {
817 AbortTransactionOrFail(self,
818 "Boot classpath not set or split error:: %s",
819 runtime->GetBootClassPathString().c_str());
820 return;
821 }
822 const std::string& source = split[0];
823
Andreas Gampef778eb22015-04-13 14:17:09 -0700824 mirror::String* string_data;
825
826 // Use a block to enclose the I/O and MemMap code so buffers are released early.
827 {
828 std::string error_msg;
Andreas Gampee0f633e2016-03-29 19:33:56 -0700829 std::unique_ptr<ZipArchive> zip_archive(ZipArchive::Open(source.c_str(), &error_msg));
Andreas Gampef778eb22015-04-13 14:17:09 -0700830 if (zip_archive.get() == nullptr) {
Andreas Gampee0f633e2016-03-29 19:33:56 -0700831 AbortTransactionOrFail(self,
832 "Could not open zip file %s: %s",
833 source.c_str(),
Andreas Gampef778eb22015-04-13 14:17:09 -0700834 error_msg.c_str());
835 return;
836 }
837 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find("java/security/security.properties",
838 &error_msg));
839 if (zip_entry.get() == nullptr) {
Andreas Gampee0f633e2016-03-29 19:33:56 -0700840 AbortTransactionOrFail(self,
841 "Could not find security.properties file in %s: %s",
842 source.c_str(),
843 error_msg.c_str());
Andreas Gampef778eb22015-04-13 14:17:09 -0700844 return;
845 }
Andreas Gampee0f633e2016-03-29 19:33:56 -0700846 std::unique_ptr<MemMap> map(zip_entry->ExtractToMemMap(source.c_str(),
Andreas Gampef778eb22015-04-13 14:17:09 -0700847 "java/security/security.properties",
848 &error_msg));
849 if (map.get() == nullptr) {
Andreas Gampee0f633e2016-03-29 19:33:56 -0700850 AbortTransactionOrFail(self,
851 "Could not unzip security.properties file in %s: %s",
852 source.c_str(),
853 error_msg.c_str());
Andreas Gampef778eb22015-04-13 14:17:09 -0700854 return;
855 }
856
857 uint32_t length = zip_entry->GetUncompressedLength();
858 std::unique_ptr<char[]> tmp(new char[length + 1]);
859 memcpy(tmp.get(), map->Begin(), length);
860 tmp.get()[length] = 0; // null terminator
861
862 string_data = mirror::String::AllocFromModifiedUtf8(self, tmp.get());
863 }
864
865 if (string_data == nullptr) {
Andreas Gampee0f633e2016-03-29 19:33:56 -0700866 AbortTransactionOrFail(self, "Could not create string from file content of %s", source.c_str());
Andreas Gampef778eb22015-04-13 14:17:09 -0700867 return;
868 }
869
870 // Create a StringReader.
871 StackHandleScope<3> hs(self);
872 Handle<mirror::String> h_string(hs.NewHandle(string_data));
873
874 Handle<mirror::Class> h_class(hs.NewHandle(
875 runtime->GetClassLinker()->FindClass(self,
876 "Ljava/io/StringReader;",
Mathieu Chartier9865bde2015-12-21 09:58:16 -0800877 ScopedNullHandle<mirror::ClassLoader>())));
Andreas Gampef778eb22015-04-13 14:17:09 -0700878 if (h_class.Get() == nullptr) {
879 AbortTransactionOrFail(self, "Could not find StringReader class");
880 return;
881 }
882
883 if (!runtime->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) {
884 AbortTransactionOrFail(self, "Could not initialize StringReader class");
885 return;
886 }
887
888 Handle<mirror::Object> h_obj(hs.NewHandle(h_class->AllocObject(self)));
889 if (h_obj.Get() == nullptr) {
890 AbortTransactionOrFail(self, "Could not allocate StringReader object");
891 return;
892 }
893
Mathieu Chartiere401d142015-04-22 13:56:20 -0700894 auto* cl = Runtime::Current()->GetClassLinker();
895 ArtMethod* constructor = h_class->FindDeclaredDirectMethod(
896 "<init>", "(Ljava/lang/String;)V", cl->GetImagePointerSize());
Andreas Gampef778eb22015-04-13 14:17:09 -0700897 if (constructor == nullptr) {
898 AbortTransactionOrFail(self, "Could not find StringReader constructor");
899 return;
900 }
901
902 uint32_t args[1];
903 args[0] = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(h_string.Get()));
904 EnterInterpreterFromInvoke(self, constructor, h_obj.Get(), args, nullptr);
905
906 if (self->IsExceptionPending()) {
907 AbortTransactionOrFail(self, "Could not run StringReader constructor");
908 return;
909 }
910
911 result->SetL(h_obj.Get());
912}
913
Kenny Root1c9e61c2015-05-14 15:58:17 -0700914// This allows reading the new style of String objects during compilation.
Andreas Gampe799681b2015-05-15 19:24:12 -0700915void UnstartedRuntime::UnstartedStringGetCharsNoCheck(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700916 Thread* self, ShadowFrame* shadow_frame, JValue* result ATTRIBUTE_UNUSED, size_t arg_offset) {
Kenny Root1c9e61c2015-05-14 15:58:17 -0700917 jint start = shadow_frame->GetVReg(arg_offset + 1);
918 jint end = shadow_frame->GetVReg(arg_offset + 2);
919 jint index = shadow_frame->GetVReg(arg_offset + 4);
920 mirror::String* string = shadow_frame->GetVRegReference(arg_offset)->AsString();
921 if (string == nullptr) {
922 AbortTransactionOrFail(self, "String.getCharsNoCheck with null object");
923 return;
924 }
Kenny Root57f91e82015-05-14 15:58:17 -0700925 DCHECK_GE(start, 0);
926 DCHECK_GE(end, string->GetLength());
Kenny Root1c9e61c2015-05-14 15:58:17 -0700927 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700928 Handle<mirror::CharArray> h_char_array(
929 hs.NewHandle(shadow_frame->GetVRegReference(arg_offset + 3)->AsCharArray()));
Kenny Root57f91e82015-05-14 15:58:17 -0700930 DCHECK_LE(index, h_char_array->GetLength());
931 DCHECK_LE(end - start, h_char_array->GetLength() - index);
Kenny Root1c9e61c2015-05-14 15:58:17 -0700932 string->GetChars(start, end, h_char_array, index);
933}
934
935// This allows reading chars from the new style of String objects during compilation.
Andreas Gampe799681b2015-05-15 19:24:12 -0700936void UnstartedRuntime::UnstartedStringCharAt(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700937 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Kenny Root1c9e61c2015-05-14 15:58:17 -0700938 jint index = shadow_frame->GetVReg(arg_offset + 1);
939 mirror::String* string = shadow_frame->GetVRegReference(arg_offset)->AsString();
940 if (string == nullptr) {
941 AbortTransactionOrFail(self, "String.charAt with null object");
942 return;
943 }
944 result->SetC(string->CharAt(index));
945}
946
Kenny Root57f91e82015-05-14 15:58:17 -0700947// This allows setting chars from the new style of String objects during compilation.
Andreas Gampe799681b2015-05-15 19:24:12 -0700948void UnstartedRuntime::UnstartedStringSetCharAt(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700949 Thread* self, ShadowFrame* shadow_frame, JValue* result ATTRIBUTE_UNUSED, size_t arg_offset) {
Kenny Root57f91e82015-05-14 15:58:17 -0700950 jint index = shadow_frame->GetVReg(arg_offset + 1);
951 jchar c = shadow_frame->GetVReg(arg_offset + 2);
952 mirror::String* string = shadow_frame->GetVRegReference(arg_offset)->AsString();
953 if (string == nullptr) {
954 AbortTransactionOrFail(self, "String.setCharAt with null object");
955 return;
956 }
957 string->SetCharAt(index, c);
958}
959
Kenny Root1c9e61c2015-05-14 15:58:17 -0700960// This allows creating the new style of String objects during compilation.
Andreas Gampe799681b2015-05-15 19:24:12 -0700961void UnstartedRuntime::UnstartedStringFactoryNewStringFromChars(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700962 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Kenny Root1c9e61c2015-05-14 15:58:17 -0700963 jint offset = shadow_frame->GetVReg(arg_offset);
964 jint char_count = shadow_frame->GetVReg(arg_offset + 1);
965 DCHECK_GE(char_count, 0);
966 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700967 Handle<mirror::CharArray> h_char_array(
968 hs.NewHandle(shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray()));
Kenny Root1c9e61c2015-05-14 15:58:17 -0700969 Runtime* runtime = Runtime::Current();
970 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator();
971 result->SetL(mirror::String::AllocFromCharArray<true>(self, char_count, h_char_array, offset, allocator));
972}
973
974// This allows creating the new style of String objects during compilation.
Andreas Gampe799681b2015-05-15 19:24:12 -0700975void UnstartedRuntime::UnstartedStringFactoryNewStringFromString(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700976 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Kenny Root57f91e82015-05-14 15:58:17 -0700977 mirror::String* to_copy = shadow_frame->GetVRegReference(arg_offset)->AsString();
978 if (to_copy == nullptr) {
979 AbortTransactionOrFail(self, "StringFactory.newStringFromString with null object");
980 return;
981 }
982 StackHandleScope<1> hs(self);
983 Handle<mirror::String> h_string(hs.NewHandle(to_copy));
984 Runtime* runtime = Runtime::Current();
985 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator();
986 result->SetL(mirror::String::AllocFromString<true>(self, h_string->GetLength(), h_string, 0,
987 allocator));
988}
989
Andreas Gampe799681b2015-05-15 19:24:12 -0700990void UnstartedRuntime::UnstartedStringFastSubstring(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700991 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Kenny Root1c9e61c2015-05-14 15:58:17 -0700992 jint start = shadow_frame->GetVReg(arg_offset + 1);
993 jint length = shadow_frame->GetVReg(arg_offset + 2);
Kenny Root57f91e82015-05-14 15:58:17 -0700994 DCHECK_GE(start, 0);
Kenny Root1c9e61c2015-05-14 15:58:17 -0700995 DCHECK_GE(length, 0);
996 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700997 Handle<mirror::String> h_string(
998 hs.NewHandle(shadow_frame->GetVRegReference(arg_offset)->AsString()));
Kenny Root57f91e82015-05-14 15:58:17 -0700999 DCHECK_LE(start, h_string->GetLength());
1000 DCHECK_LE(start + length, h_string->GetLength());
Kenny Root1c9e61c2015-05-14 15:58:17 -07001001 Runtime* runtime = Runtime::Current();
1002 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator();
1003 result->SetL(mirror::String::AllocFromString<true>(self, length, h_string, start, allocator));
1004}
1005
Kenny Root57f91e82015-05-14 15:58:17 -07001006// This allows getting the char array for new style of String objects during compilation.
Andreas Gampe799681b2015-05-15 19:24:12 -07001007void UnstartedRuntime::UnstartedStringToCharArray(
Kenny Root57f91e82015-05-14 15:58:17 -07001008 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -07001009 SHARED_REQUIRES(Locks::mutator_lock_) {
Kenny Root57f91e82015-05-14 15:58:17 -07001010 mirror::String* string = shadow_frame->GetVRegReference(arg_offset)->AsString();
1011 if (string == nullptr) {
1012 AbortTransactionOrFail(self, "String.charAt with null object");
1013 return;
1014 }
1015 result->SetL(string->ToCharArray(self));
1016}
1017
Andreas Gampebc4d2182016-02-22 10:03:12 -08001018// This allows statically initializing ConcurrentHashMap and SynchronousQueue.
1019void UnstartedRuntime::UnstartedReferenceGetReferent(
1020 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
1021 mirror::Reference* const ref = down_cast<mirror::Reference*>(
1022 shadow_frame->GetVRegReference(arg_offset));
1023 if (ref == nullptr) {
1024 AbortTransactionOrFail(self, "Reference.getReferent() with null object");
1025 return;
1026 }
1027 mirror::Object* const referent =
1028 Runtime::Current()->GetHeap()->GetReferenceProcessor()->GetReferent(self, ref);
1029 result->SetL(referent);
1030}
1031
1032// This allows statically initializing ConcurrentHashMap and SynchronousQueue. We use a somewhat
1033// conservative upper bound. We restrict the callers to SynchronousQueue and ConcurrentHashMap,
1034// where we can predict the behavior (somewhat).
1035// Note: this is required (instead of lazy initialization) as these classes are used in the static
1036// initialization of other classes, so will *use* the value.
1037void UnstartedRuntime::UnstartedRuntimeAvailableProcessors(
1038 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset ATTRIBUTE_UNUSED) {
1039 std::string caller(PrettyMethod(shadow_frame->GetLink()->GetMethod()));
1040 if (caller == "void java.util.concurrent.SynchronousQueue.<clinit>()") {
1041 // SynchronousQueue really only separates between single- and multiprocessor case. Return
1042 // 8 as a conservative upper approximation.
1043 result->SetI(8);
1044 } else if (caller == "void java.util.concurrent.ConcurrentHashMap.<clinit>()") {
1045 // ConcurrentHashMap uses it for striding. 8 still seems an OK general value, as it's likely
1046 // a good upper bound.
1047 // TODO: Consider resetting in the zygote?
1048 result->SetI(8);
1049 } else {
1050 // Not supported.
1051 AbortTransactionOrFail(self, "Accessing availableProcessors not allowed");
1052 }
1053}
1054
1055// This allows accessing ConcurrentHashMap/SynchronousQueue.
1056
1057void UnstartedRuntime::UnstartedUnsafeCompareAndSwapLong(
1058 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
1059 // Argument 0 is the Unsafe instance, skip.
1060 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset + 1);
1061 if (obj == nullptr) {
1062 AbortTransactionOrFail(self, "Cannot access null object, retry at runtime.");
1063 return;
1064 }
1065 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2);
1066 int64_t expectedValue = shadow_frame->GetVRegLong(arg_offset + 4);
1067 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6);
1068
1069 // Must use non transactional mode.
1070 if (kUseReadBarrier) {
1071 // Need to make sure the reference stored in the field is a to-space one before attempting the
1072 // CAS or the CAS could fail incorrectly.
1073 mirror::HeapReference<mirror::Object>* field_addr =
1074 reinterpret_cast<mirror::HeapReference<mirror::Object>*>(
1075 reinterpret_cast<uint8_t*>(obj) + static_cast<size_t>(offset));
1076 ReadBarrier::Barrier<mirror::Object, kWithReadBarrier, /*kAlwaysUpdateField*/true>(
1077 obj,
1078 MemberOffset(offset),
1079 field_addr);
1080 }
1081 bool success;
1082 // Check whether we're in a transaction, call accordingly.
1083 if (Runtime::Current()->IsActiveTransaction()) {
1084 success = obj->CasFieldStrongSequentiallyConsistent64<true>(MemberOffset(offset),
1085 expectedValue,
1086 newValue);
1087 } else {
1088 success = obj->CasFieldStrongSequentiallyConsistent64<false>(MemberOffset(offset),
1089 expectedValue,
1090 newValue);
1091 }
1092 result->SetZ(success ? 1 : 0);
1093}
1094
1095void UnstartedRuntime::UnstartedUnsafeCompareAndSwapObject(
1096 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
1097 // Argument 0 is the Unsafe instance, skip.
1098 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset + 1);
1099 if (obj == nullptr) {
1100 AbortTransactionOrFail(self, "Cannot access null object, retry at runtime.");
1101 return;
1102 }
1103 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2);
1104 mirror::Object* expected_value = shadow_frame->GetVRegReference(arg_offset + 4);
1105 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 5);
1106
1107 // Must use non transactional mode.
1108 if (kUseReadBarrier) {
1109 // Need to make sure the reference stored in the field is a to-space one before attempting the
1110 // CAS or the CAS could fail incorrectly.
1111 mirror::HeapReference<mirror::Object>* field_addr =
1112 reinterpret_cast<mirror::HeapReference<mirror::Object>*>(
1113 reinterpret_cast<uint8_t*>(obj) + static_cast<size_t>(offset));
1114 ReadBarrier::Barrier<mirror::Object, kWithReadBarrier, /*kAlwaysUpdateField*/true>(
1115 obj,
1116 MemberOffset(offset),
1117 field_addr);
1118 }
1119 bool success;
1120 // Check whether we're in a transaction, call accordingly.
1121 if (Runtime::Current()->IsActiveTransaction()) {
1122 success = obj->CasFieldStrongSequentiallyConsistentObject<true>(MemberOffset(offset),
1123 expected_value,
1124 newValue);
1125 } else {
1126 success = obj->CasFieldStrongSequentiallyConsistentObject<false>(MemberOffset(offset),
1127 expected_value,
1128 newValue);
1129 }
1130 result->SetZ(success ? 1 : 0);
1131}
1132
1133void UnstartedRuntime::UnstartedUnsafeGetObjectVolatile(
1134 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset)
1135 SHARED_REQUIRES(Locks::mutator_lock_) {
1136 // Argument 0 is the Unsafe instance, skip.
1137 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset + 1);
1138 if (obj == nullptr) {
1139 AbortTransactionOrFail(self, "Cannot access null object, retry at runtime.");
1140 return;
1141 }
1142 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2);
1143 mirror::Object* value = obj->GetFieldObjectVolatile<mirror::Object>(MemberOffset(offset));
1144 result->SetL(value);
1145}
1146
Andreas Gampe8a18fde2016-04-05 21:12:51 -07001147void UnstartedRuntime::UnstartedUnsafePutObjectVolatile(
1148 Thread* self, ShadowFrame* shadow_frame, JValue* result ATTRIBUTE_UNUSED, size_t arg_offset)
1149 SHARED_REQUIRES(Locks::mutator_lock_) {
1150 // Argument 0 is the Unsafe instance, skip.
1151 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset + 1);
1152 if (obj == nullptr) {
1153 AbortTransactionOrFail(self, "Cannot access null object, retry at runtime.");
1154 return;
1155 }
1156 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2);
1157 mirror::Object* value = shadow_frame->GetVRegReference(arg_offset + 4);
1158 if (Runtime::Current()->IsActiveTransaction()) {
1159 obj->SetFieldObjectVolatile<true>(MemberOffset(offset), value);
1160 } else {
1161 obj->SetFieldObjectVolatile<false>(MemberOffset(offset), value);
1162 }
1163}
1164
Andreas Gampebc4d2182016-02-22 10:03:12 -08001165void UnstartedRuntime::UnstartedUnsafePutOrderedObject(
1166 Thread* self, ShadowFrame* shadow_frame, JValue* result ATTRIBUTE_UNUSED, size_t arg_offset)
1167 SHARED_REQUIRES(Locks::mutator_lock_) {
1168 // Argument 0 is the Unsafe instance, skip.
1169 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset + 1);
1170 if (obj == nullptr) {
1171 AbortTransactionOrFail(self, "Cannot access null object, retry at runtime.");
1172 return;
1173 }
1174 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2);
1175 mirror::Object* newValue = shadow_frame->GetVRegReference(arg_offset + 4);
1176 QuasiAtomic::ThreadFenceRelease();
1177 if (Runtime::Current()->IsActiveTransaction()) {
1178 obj->SetFieldObject<true>(MemberOffset(offset), newValue);
1179 } else {
1180 obj->SetFieldObject<false>(MemberOffset(offset), newValue);
1181 }
1182}
1183
Andreas Gampe13fc1be2016-04-05 20:14:30 -07001184// A cutout for Integer.parseInt(String). Note: this code is conservative and will bail instead
1185// of correctly handling the corner cases.
1186void UnstartedRuntime::UnstartedIntegerParseInt(
1187 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset)
1188 SHARED_REQUIRES(Locks::mutator_lock_) {
1189 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset);
1190 if (obj == nullptr) {
1191 AbortTransactionOrFail(self, "Cannot parse null string, retry at runtime.");
1192 return;
1193 }
1194
1195 std::string string_value = obj->AsString()->ToModifiedUtf8();
1196 if (string_value.empty()) {
1197 AbortTransactionOrFail(self, "Cannot parse empty string, retry at runtime.");
1198 return;
1199 }
1200
1201 const char* c_str = string_value.c_str();
1202 char *end;
1203 // Can we set errno to 0? Is this always a variable, and not a macro?
1204 // Worst case, we'll incorrectly fail a transaction. Seems OK.
1205 int64_t l = strtol(c_str, &end, 10);
1206
1207 if ((errno == ERANGE && l == LONG_MAX) || l > std::numeric_limits<int32_t>::max() ||
1208 (errno == ERANGE && l == LONG_MIN) || l < std::numeric_limits<int32_t>::min()) {
1209 AbortTransactionOrFail(self, "Cannot parse string %s, retry at runtime.", c_str);
1210 return;
1211 }
1212 if (l == 0) {
1213 // Check whether the string wasn't exactly zero.
1214 if (string_value != "0") {
1215 AbortTransactionOrFail(self, "Cannot parse string %s, retry at runtime.", c_str);
1216 return;
1217 }
1218 } else if (*end != '\0') {
1219 AbortTransactionOrFail(self, "Cannot parse string %s, retry at runtime.", c_str);
1220 return;
1221 }
1222
1223 result->SetI(static_cast<int32_t>(l));
1224}
1225
1226// A cutout for Long.parseLong.
1227//
1228// Note: for now use code equivalent to Integer.parseInt, as the full range may not be supported
1229// well.
1230void UnstartedRuntime::UnstartedLongParseLong(
1231 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset)
1232 SHARED_REQUIRES(Locks::mutator_lock_) {
1233 mirror::Object* obj = shadow_frame->GetVRegReference(arg_offset);
1234 if (obj == nullptr) {
1235 AbortTransactionOrFail(self, "Cannot parse null string, retry at runtime.");
1236 return;
1237 }
1238
1239 std::string string_value = obj->AsString()->ToModifiedUtf8();
1240 if (string_value.empty()) {
1241 AbortTransactionOrFail(self, "Cannot parse empty string, retry at runtime.");
1242 return;
1243 }
1244
1245 const char* c_str = string_value.c_str();
1246 char *end;
1247 // Can we set errno to 0? Is this always a variable, and not a macro?
1248 // Worst case, we'll incorrectly fail a transaction. Seems OK.
1249 int64_t l = strtol(c_str, &end, 10);
1250
1251 // Note: comparing against int32_t min/max is intentional here.
1252 if ((errno == ERANGE && l == LONG_MAX) || l > std::numeric_limits<int32_t>::max() ||
1253 (errno == ERANGE && l == LONG_MIN) || l < std::numeric_limits<int32_t>::min()) {
1254 AbortTransactionOrFail(self, "Cannot parse string %s, retry at runtime.", c_str);
1255 return;
1256 }
1257 if (l == 0) {
1258 // Check whether the string wasn't exactly zero.
1259 if (string_value != "0") {
1260 AbortTransactionOrFail(self, "Cannot parse string %s, retry at runtime.", c_str);
1261 return;
1262 }
1263 } else if (*end != '\0') {
1264 AbortTransactionOrFail(self, "Cannot parse string %s, retry at runtime.", c_str);
1265 return;
1266 }
1267
1268 result->SetJ(l);
1269}
1270
Andreas Gampebc4d2182016-02-22 10:03:12 -08001271
Mathieu Chartiere401d142015-04-22 13:56:20 -07001272void UnstartedRuntime::UnstartedJNIVMRuntimeNewUnpaddedArray(
1273 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver ATTRIBUTE_UNUSED,
1274 uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001275 int32_t length = args[1];
1276 DCHECK_GE(length, 0);
1277 mirror::Class* element_class = reinterpret_cast<mirror::Object*>(args[0])->AsClass();
1278 Runtime* runtime = Runtime::Current();
1279 mirror::Class* array_class = runtime->GetClassLinker()->FindArrayClass(self, &element_class);
1280 DCHECK(array_class != nullptr);
1281 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator();
1282 result->SetL(mirror::Array::Alloc<true, true>(self, array_class, length,
1283 array_class->GetComponentSizeShift(), allocator));
1284}
1285
Mathieu Chartiere401d142015-04-22 13:56:20 -07001286void UnstartedRuntime::UnstartedJNIVMStackGetCallingClassLoader(
1287 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1288 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001289 result->SetL(nullptr);
1290}
1291
Mathieu Chartiere401d142015-04-22 13:56:20 -07001292void UnstartedRuntime::UnstartedJNIVMStackGetStackClass2(
1293 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver ATTRIBUTE_UNUSED,
1294 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001295 NthCallerVisitor visitor(self, 3);
1296 visitor.WalkStack();
1297 if (visitor.caller != nullptr) {
1298 result->SetL(visitor.caller->GetDeclaringClass());
1299 }
1300}
1301
Mathieu Chartiere401d142015-04-22 13:56:20 -07001302void UnstartedRuntime::UnstartedJNIMathLog(
1303 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1304 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001305 JValue value;
1306 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
1307 result->SetD(log(value.GetD()));
1308}
1309
Mathieu Chartiere401d142015-04-22 13:56:20 -07001310void UnstartedRuntime::UnstartedJNIMathExp(
1311 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1312 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001313 JValue value;
1314 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
1315 result->SetD(exp(value.GetD()));
1316}
1317
Andreas Gampebc4d2182016-02-22 10:03:12 -08001318void UnstartedRuntime::UnstartedJNIAtomicLongVMSupportsCS8(
1319 Thread* self ATTRIBUTE_UNUSED,
1320 ArtMethod* method ATTRIBUTE_UNUSED,
1321 mirror::Object* receiver ATTRIBUTE_UNUSED,
1322 uint32_t* args ATTRIBUTE_UNUSED,
1323 JValue* result) {
1324 result->SetZ(QuasiAtomic::LongAtomicsUseMutexes(Runtime::Current()->GetInstructionSet())
1325 ? 0
1326 : 1);
1327}
1328
Mathieu Chartiere401d142015-04-22 13:56:20 -07001329void UnstartedRuntime::UnstartedJNIClassGetNameNative(
1330 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver,
1331 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001332 StackHandleScope<1> hs(self);
1333 result->SetL(mirror::Class::ComputeName(hs.NewHandle(receiver->AsClass())));
1334}
1335
Andreas Gampebc4d2182016-02-22 10:03:12 -08001336void UnstartedRuntime::UnstartedJNIDoubleLongBitsToDouble(
1337 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1338 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1339 uint64_t long_input = args[0] | (static_cast<uint64_t>(args[1]) << 32);
1340 result->SetD(bit_cast<double>(long_input));
1341}
1342
Mathieu Chartiere401d142015-04-22 13:56:20 -07001343void UnstartedRuntime::UnstartedJNIFloatFloatToRawIntBits(
1344 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1345 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001346 result->SetI(args[0]);
1347}
1348
Mathieu Chartiere401d142015-04-22 13:56:20 -07001349void UnstartedRuntime::UnstartedJNIFloatIntBitsToFloat(
1350 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1351 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001352 result->SetI(args[0]);
1353}
1354
Mathieu Chartiere401d142015-04-22 13:56:20 -07001355void UnstartedRuntime::UnstartedJNIObjectInternalClone(
1356 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver,
1357 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001358 result->SetL(receiver->Clone(self));
1359}
1360
Mathieu Chartiere401d142015-04-22 13:56:20 -07001361void UnstartedRuntime::UnstartedJNIObjectNotifyAll(
1362 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver,
1363 uint32_t* args ATTRIBUTE_UNUSED, JValue* result ATTRIBUTE_UNUSED) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001364 receiver->NotifyAll(self);
1365}
1366
Mathieu Chartiere401d142015-04-22 13:56:20 -07001367void UnstartedRuntime::UnstartedJNIStringCompareTo(
1368 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver, uint32_t* args,
1369 JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001370 mirror::String* rhs = reinterpret_cast<mirror::Object*>(args[0])->AsString();
1371 if (rhs == nullptr) {
Andreas Gampe068b0c02015-03-11 12:44:47 -07001372 AbortTransactionOrFail(self, "String.compareTo with null object");
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001373 }
1374 result->SetI(receiver->AsString()->CompareTo(rhs));
1375}
1376
Mathieu Chartiere401d142015-04-22 13:56:20 -07001377void UnstartedRuntime::UnstartedJNIStringIntern(
1378 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver,
1379 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001380 result->SetL(receiver->AsString()->Intern());
1381}
1382
Mathieu Chartiere401d142015-04-22 13:56:20 -07001383void UnstartedRuntime::UnstartedJNIStringFastIndexOf(
1384 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver,
1385 uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001386 result->SetI(receiver->AsString()->FastIndexOf(args[0], args[1]));
1387}
1388
Mathieu Chartiere401d142015-04-22 13:56:20 -07001389void UnstartedRuntime::UnstartedJNIArrayCreateMultiArray(
1390 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver ATTRIBUTE_UNUSED,
1391 uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001392 StackHandleScope<2> hs(self);
1393 auto h_class(hs.NewHandle(reinterpret_cast<mirror::Class*>(args[0])->AsClass()));
1394 auto h_dimensions(hs.NewHandle(reinterpret_cast<mirror::IntArray*>(args[1])->AsIntArray()));
1395 result->SetL(mirror::Array::CreateMultiArray(self, h_class, h_dimensions));
1396}
1397
Mathieu Chartiere401d142015-04-22 13:56:20 -07001398void UnstartedRuntime::UnstartedJNIArrayCreateObjectArray(
1399 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver ATTRIBUTE_UNUSED,
1400 uint32_t* args, JValue* result) {
Andreas Gampee598e042015-04-10 14:57:10 -07001401 int32_t length = static_cast<int32_t>(args[1]);
1402 if (length < 0) {
1403 ThrowNegativeArraySizeException(length);
1404 return;
1405 }
1406 mirror::Class* element_class = reinterpret_cast<mirror::Class*>(args[0])->AsClass();
1407 Runtime* runtime = Runtime::Current();
1408 ClassLinker* class_linker = runtime->GetClassLinker();
1409 mirror::Class* array_class = class_linker->FindArrayClass(self, &element_class);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001410 if (UNLIKELY(array_class == nullptr)) {
Andreas Gampee598e042015-04-10 14:57:10 -07001411 CHECK(self->IsExceptionPending());
1412 return;
1413 }
1414 DCHECK(array_class->IsObjectArrayClass());
1415 mirror::Array* new_array = mirror::ObjectArray<mirror::Object*>::Alloc(
1416 self, array_class, length, runtime->GetHeap()->GetCurrentAllocator());
1417 result->SetL(new_array);
1418}
1419
Mathieu Chartiere401d142015-04-22 13:56:20 -07001420void UnstartedRuntime::UnstartedJNIThrowableNativeFillInStackTrace(
1421 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver ATTRIBUTE_UNUSED,
1422 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001423 ScopedObjectAccessUnchecked soa(self);
1424 if (Runtime::Current()->IsActiveTransaction()) {
1425 result->SetL(soa.Decode<mirror::Object*>(self->CreateInternalStackTrace<true>(soa)));
1426 } else {
1427 result->SetL(soa.Decode<mirror::Object*>(self->CreateInternalStackTrace<false>(soa)));
1428 }
1429}
1430
Mathieu Chartiere401d142015-04-22 13:56:20 -07001431void UnstartedRuntime::UnstartedJNISystemIdentityHashCode(
1432 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1433 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001434 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1435 result->SetI((obj != nullptr) ? obj->IdentityHashCode() : 0);
1436}
1437
Mathieu Chartiere401d142015-04-22 13:56:20 -07001438void UnstartedRuntime::UnstartedJNIByteOrderIsLittleEndian(
1439 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1440 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001441 result->SetZ(JNI_TRUE);
1442}
1443
Mathieu Chartiere401d142015-04-22 13:56:20 -07001444void UnstartedRuntime::UnstartedJNIUnsafeCompareAndSwapInt(
1445 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1446 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001447 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1448 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
1449 jint expectedValue = args[3];
1450 jint newValue = args[4];
1451 bool success;
1452 if (Runtime::Current()->IsActiveTransaction()) {
1453 success = obj->CasFieldStrongSequentiallyConsistent32<true>(MemberOffset(offset),
1454 expectedValue, newValue);
1455 } else {
1456 success = obj->CasFieldStrongSequentiallyConsistent32<false>(MemberOffset(offset),
1457 expectedValue, newValue);
1458 }
1459 result->SetZ(success ? JNI_TRUE : JNI_FALSE);
1460}
1461
Narayan Kamath34a316f2016-03-30 13:11:18 +01001462void UnstartedRuntime::UnstartedJNIUnsafeGetIntVolatile(
1463 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver ATTRIBUTE_UNUSED,
1464 uint32_t* args, JValue* result) {
1465 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1466 if (obj == nullptr) {
1467 AbortTransactionOrFail(self, "Cannot access null object, retry at runtime.");
1468 return;
1469 }
1470
1471 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
1472 result->SetI(obj->GetField32Volatile(MemberOffset(offset)));
1473}
1474
Mathieu Chartiere401d142015-04-22 13:56:20 -07001475void UnstartedRuntime::UnstartedJNIUnsafePutObject(
1476 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1477 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result ATTRIBUTE_UNUSED) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001478 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1479 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
1480 mirror::Object* newValue = reinterpret_cast<mirror::Object*>(args[3]);
1481 if (Runtime::Current()->IsActiveTransaction()) {
1482 obj->SetFieldObject<true>(MemberOffset(offset), newValue);
1483 } else {
1484 obj->SetFieldObject<false>(MemberOffset(offset), newValue);
1485 }
1486}
1487
Andreas Gampe799681b2015-05-15 19:24:12 -07001488void UnstartedRuntime::UnstartedJNIUnsafeGetArrayBaseOffsetForComponentType(
Mathieu Chartiere401d142015-04-22 13:56:20 -07001489 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1490 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001491 mirror::Class* component = reinterpret_cast<mirror::Object*>(args[0])->AsClass();
1492 Primitive::Type primitive_type = component->GetPrimitiveType();
1493 result->SetI(mirror::Array::DataOffset(Primitive::ComponentSize(primitive_type)).Int32Value());
1494}
1495
Andreas Gampe799681b2015-05-15 19:24:12 -07001496void UnstartedRuntime::UnstartedJNIUnsafeGetArrayIndexScaleForComponentType(
Mathieu Chartiere401d142015-04-22 13:56:20 -07001497 Thread* self ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED,
1498 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001499 mirror::Class* component = reinterpret_cast<mirror::Object*>(args[0])->AsClass();
1500 Primitive::Type primitive_type = component->GetPrimitiveType();
1501 result->SetI(Primitive::ComponentSize(primitive_type));
1502}
1503
Andreas Gampedd9d0552015-03-09 12:57:41 -07001504typedef void (*InvokeHandler)(Thread* self, ShadowFrame* shadow_frame, JValue* result,
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001505 size_t arg_size);
1506
Mathieu Chartiere401d142015-04-22 13:56:20 -07001507typedef void (*JNIHandler)(Thread* self, ArtMethod* method, mirror::Object* receiver,
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001508 uint32_t* args, JValue* result);
1509
1510static bool tables_initialized_ = false;
1511static std::unordered_map<std::string, InvokeHandler> invoke_handlers_;
1512static std::unordered_map<std::string, JNIHandler> jni_handlers_;
1513
Andreas Gampe799681b2015-05-15 19:24:12 -07001514void UnstartedRuntime::InitializeInvokeHandlers() {
1515#define UNSTARTED_DIRECT(ShortName, Sig) \
1516 invoke_handlers_.insert(std::make_pair(Sig, & UnstartedRuntime::Unstarted ## ShortName));
1517#include "unstarted_runtime_list.h"
1518 UNSTARTED_RUNTIME_DIRECT_LIST(UNSTARTED_DIRECT)
1519#undef UNSTARTED_RUNTIME_DIRECT_LIST
1520#undef UNSTARTED_RUNTIME_JNI_LIST
1521#undef UNSTARTED_DIRECT
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001522}
1523
Andreas Gampe799681b2015-05-15 19:24:12 -07001524void UnstartedRuntime::InitializeJNIHandlers() {
1525#define UNSTARTED_JNI(ShortName, Sig) \
1526 jni_handlers_.insert(std::make_pair(Sig, & UnstartedRuntime::UnstartedJNI ## ShortName));
1527#include "unstarted_runtime_list.h"
1528 UNSTARTED_RUNTIME_JNI_LIST(UNSTARTED_JNI)
1529#undef UNSTARTED_RUNTIME_DIRECT_LIST
1530#undef UNSTARTED_RUNTIME_JNI_LIST
1531#undef UNSTARTED_JNI
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001532}
1533
Andreas Gampe799681b2015-05-15 19:24:12 -07001534void UnstartedRuntime::Initialize() {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001535 CHECK(!tables_initialized_);
1536
Andreas Gampe799681b2015-05-15 19:24:12 -07001537 InitializeInvokeHandlers();
1538 InitializeJNIHandlers();
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001539
1540 tables_initialized_ = true;
1541}
1542
Andreas Gampe799681b2015-05-15 19:24:12 -07001543void UnstartedRuntime::Invoke(Thread* self, const DexFile::CodeItem* code_item,
1544 ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001545 // In a runtime that's not started we intercept certain methods to avoid complicated dependency
1546 // problems in core libraries.
1547 CHECK(tables_initialized_);
1548
1549 std::string name(PrettyMethod(shadow_frame->GetMethod()));
1550 const auto& iter = invoke_handlers_.find(name);
1551 if (iter != invoke_handlers_.end()) {
Kenny Root57f91e82015-05-14 15:58:17 -07001552 // Clear out the result in case it's not zeroed out.
1553 result->SetL(0);
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001554 (*iter->second)(self, shadow_frame, result, arg_offset);
1555 } else {
1556 // Not special, continue with regular interpreter execution.
Andreas Gampe3cfa4d02015-10-06 17:04:01 -07001557 ArtInterpreterToInterpreterBridge(self, code_item, shadow_frame, result);
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001558 }
1559}
1560
1561// Hand select a number of methods to be run in a not yet started runtime without using JNI.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001562void UnstartedRuntime::Jni(Thread* self, ArtMethod* method, mirror::Object* receiver,
Andreas Gampe799681b2015-05-15 19:24:12 -07001563 uint32_t* args, JValue* result) {
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001564 std::string name(PrettyMethod(method));
1565 const auto& iter = jni_handlers_.find(name);
1566 if (iter != jni_handlers_.end()) {
Kenny Root57f91e82015-05-14 15:58:17 -07001567 // Clear out the result in case it's not zeroed out.
1568 result->SetL(0);
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001569 (*iter->second)(self, method, receiver, args, result);
1570 } else if (Runtime::Current()->IsActiveTransaction()) {
Sebastien Hertz45b15972015-04-03 16:07:05 +02001571 AbortTransactionF(self, "Attempt to invoke native method in non-started runtime: %s",
1572 name.c_str());
Andreas Gampe2969bcd2015-03-09 12:57:41 -07001573 } else {
1574 LOG(FATAL) << "Calling native method " << PrettyMethod(method) << " in an unstarted "
1575 "non-transactional runtime";
1576 }
1577}
1578
1579} // namespace interpreter
1580} // namespace art