/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "android-base/logging.h" #include "android-base/stringprintf.h" #include "jni.h" #include "jvmti.h" #include "scoped_local_ref.h" #include "scoped_utf_chars.h" // Test infrastructure #include "jni_binder.h" #include "jni_helper.h" #include "jvmti_helper.h" #include "test_env.h" #include "ti_macros.h" #include "suspend_event_helper.h" namespace art { namespace Test1970ForceEarlyReturnLong { extern "C" JNIEXPORT jlong JNICALL Java_art_Test1970_00024NativeCalledObject_calledFunction( JNIEnv* env, jobject thiz) { env->PushLocalFrame(4); jclass klass = env->GetObjectClass(thiz); jfieldID cnt = env->GetFieldID(klass, "cnt", "I"); env->SetIntField(thiz, cnt, env->GetIntField(thiz, cnt) + 1); jlong res = static_cast(env->GetIntField(thiz, cnt)); env->SetIntField(thiz, cnt, env->GetIntField(thiz, cnt) + 1); void *data; if (JvmtiErrorToException(env, jvmti_env, jvmti_env->GetThreadLocalStorage(/* thread */ nullptr, reinterpret_cast(&data)))) { env->PopLocalFrame(nullptr); return -1; } if (data != nullptr) { art::common_suspend_event::PerformSuspension(jvmti_env, env); } env->PopLocalFrame(nullptr); return res; } extern "C" JNIEXPORT void JNICALL Java_art_Test1970_00024NativeCallerObject_run( JNIEnv* env, jobject thiz) { env->PushLocalFrame(1); jclass klass = env->GetObjectClass(thiz); jfieldID ret = env->GetFieldID(klass, "returnValue", "J"); jmethodID called = env->GetMethodID(klass, "calledFunction", "()J"); env->SetLongField(thiz, ret, env->CallLongMethod(thiz, called)); env->PopLocalFrame(nullptr); } } // namespace Test1970ForceEarlyReturnLong } // namespace art