blob: 2e35d78503ee0b90f0f75cd98fcbff39631c8aa1 [file] [log] [blame]
/*
* Copyright (C) 2012 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 "oat/runtime/oat_support_entrypoints.h"
#include "runtime_support.h"
namespace art {
// Alloc entrypoints.
extern "C" void* art_quick_alloc_array_from_code(uint32_t, void*, int32_t);
extern "C" void* art_quick_alloc_array_from_code_with_access_check(uint32_t, void*, int32_t);
extern "C" void* art_quick_alloc_object_from_code(uint32_t type_idx, void* method);
extern "C" void* art_quick_alloc_object_from_code_with_access_check(uint32_t type_idx, void* method);
extern "C" void* art_quick_check_and_alloc_array_from_code(uint32_t, void*, int32_t);
extern "C" void* art_quick_check_and_alloc_array_from_code_with_access_check(uint32_t, void*, int32_t);
// Cast entrypoints.
extern "C" uint32_t art_quick_is_assignable_from_code(const mirror::Class* klass,
const mirror::Class* ref_class);
extern "C" void art_quick_can_put_array_element_from_code(void*, void*);
extern "C" void art_quick_check_cast_from_code(void*, void*);
// DexCache entrypoints.
extern "C" void* art_quick_initialize_static_storage_from_code(uint32_t, void*);
extern "C" void* art_quick_initialize_type_from_code(uint32_t, void*);
extern "C" void* art_quick_initialize_type_and_verify_access_from_code(uint32_t, void*);
extern "C" void* art_quick_resolve_string_from_code(void*, uint32_t);
// Field entrypoints.
extern "C" int art_quick_set32_instance_from_code(uint32_t, void*, int32_t);
extern "C" int art_quick_set32_static_from_code(uint32_t, int32_t);
extern "C" int art_quick_set64_instance_from_code(uint32_t, void*, int64_t);
extern "C" int art_quick_set64_static_from_code(uint32_t, int64_t);
extern "C" int art_quick_set_obj_instance_from_code(uint32_t, void*, void*);
extern "C" int art_quick_set_obj_static_from_code(uint32_t, void*);
extern "C" int32_t art_quick_get32_instance_from_code(uint32_t, void*);
extern "C" int32_t art_quick_get32_static_from_code(uint32_t);
extern "C" int64_t art_quick_get64_instance_from_code(uint32_t, void*);
extern "C" int64_t art_quick_get64_static_from_code(uint32_t);
extern "C" void* art_quick_get_obj_instance_from_code(uint32_t, void*);
extern "C" void* art_quick_get_obj_static_from_code(uint32_t);
// FillArray entrypoint.
extern "C" void art_quick_handle_fill_data_from_code(void*, void*);
// Lock entrypoints.
extern "C" void art_quick_lock_object_from_code(void*);
extern "C" void art_quick_unlock_object_from_code(void*);
// Math entrypoints.
extern "C" double art_quick_fmod_from_code(double, double);
extern "C" float art_quick_fmodf_from_code(float, float);
extern "C" double art_quick_l2d_from_code(int64_t);
extern "C" float art_quick_l2f_from_code(int64_t);
extern "C" int64_t art_quick_d2l_from_code(double);
extern "C" int64_t art_quick_f2l_from_code(float);
extern "C" int32_t art_quick_idivmod_from_code(int32_t, int32_t);
extern "C" int64_t art_quick_ldiv_from_code(int64_t, int64_t);
extern "C" int64_t art_quick_ldivmod_from_code(int64_t, int64_t);
extern "C" int64_t art_quick_lmul_from_code(int64_t, int64_t);
extern "C" uint64_t art_quick_lshl_from_code(uint64_t, uint32_t);
extern "C" uint64_t art_quick_lshr_from_code(uint64_t, uint32_t);
extern "C" uint64_t art_quick_lushr_from_code(uint64_t, uint32_t);
// Intrinsic entrypoints.
extern "C" int32_t art_quick_memcmp16(void*, void*, int32_t);
extern "C" int32_t art_quick_indexof(void*, uint32_t, uint32_t, uint32_t);
extern "C" int32_t art_quick_string_compareto(void*, void*);
extern "C" void* art_quick_memcpy(void*, const void*, size_t);
// Invoke entrypoints.
extern "C" void art_quick_invoke_direct_trampoline_with_access_check(uint32_t, void*);
extern "C" void art_quick_invoke_interface_trampoline(uint32_t, void*);
extern "C" void art_quick_invoke_interface_trampoline_with_access_check(uint32_t, void*);
extern "C" void art_quick_invoke_static_trampoline_with_access_check(uint32_t, void*);
extern "C" void art_quick_invoke_super_trampoline_with_access_check(uint32_t, void*);
extern "C" void art_quick_invoke_virtual_trampoline_with_access_check(uint32_t, void*);
// Thread entrypoints.
extern void CheckSuspendFromCode(Thread* thread);
extern "C" void art_quick_test_suspend();
// Throw entrypoints.
extern void ThrowAbstractMethodErrorFromCode(mirror::AbstractMethod* method, Thread* thread,
mirror::AbstractMethod** sp);
extern "C" void art_quick_deliver_exception_from_code(void*);
extern "C" void art_quick_throw_array_bounds_from_code(int32_t index, int32_t limit);
extern "C" void art_quick_throw_div_zero_from_code();
extern "C" void art_quick_throw_no_such_method_from_code(int32_t method_idx);
extern "C" void art_quick_throw_null_pointer_exception_from_code();
extern "C" void art_quick_throw_stack_overflow_from_code(void*);
void InitEntryPoints(EntryPoints* points) {
// Alloc
points->pAllocArrayFromCode = art_quick_alloc_array_from_code;
points->pAllocArrayFromCodeWithAccessCheck = art_quick_alloc_array_from_code_with_access_check;
points->pAllocObjectFromCode = art_quick_alloc_object_from_code;
points->pAllocObjectFromCodeWithAccessCheck = art_quick_alloc_object_from_code_with_access_check;
points->pCheckAndAllocArrayFromCode = art_quick_check_and_alloc_array_from_code;
points->pCheckAndAllocArrayFromCodeWithAccessCheck = art_quick_check_and_alloc_array_from_code_with_access_check;
// Cast
points->pInstanceofNonTrivialFromCode = art_quick_is_assignable_from_code;
points->pCanPutArrayElementFromCode = art_quick_can_put_array_element_from_code;
points->pCheckCastFromCode = art_quick_check_cast_from_code;
// DexCache
points->pInitializeStaticStorage = art_quick_initialize_static_storage_from_code;
points->pInitializeTypeAndVerifyAccessFromCode = art_quick_initialize_type_and_verify_access_from_code;
points->pInitializeTypeFromCode = art_quick_initialize_type_from_code;
points->pResolveStringFromCode = art_quick_resolve_string_from_code;
// Field
points->pSet32Instance = art_quick_set32_instance_from_code;
points->pSet32Static = art_quick_set32_static_from_code;
points->pSet64Instance = art_quick_set64_instance_from_code;
points->pSet64Static = art_quick_set64_static_from_code;
points->pSetObjInstance = art_quick_set_obj_instance_from_code;
points->pSetObjStatic = art_quick_set_obj_static_from_code;
points->pGet32Instance = art_quick_get32_instance_from_code;
points->pGet64Instance = art_quick_get64_instance_from_code;
points->pGetObjInstance = art_quick_get_obj_instance_from_code;
points->pGet32Static = art_quick_get32_static_from_code;
points->pGet64Static = art_quick_get64_static_from_code;
points->pGetObjStatic = art_quick_get_obj_static_from_code;
// FillArray
points->pHandleFillArrayDataFromCode = art_quick_handle_fill_data_from_code;
// JNI
points->pFindNativeMethod = FindNativeMethod;
points->pJniMethodStart = JniMethodStart;
points->pJniMethodStartSynchronized = JniMethodStartSynchronized;
points->pJniMethodEnd = JniMethodEnd;
points->pJniMethodEndSynchronized = JniMethodEndSynchronized;
points->pJniMethodEndWithReference = JniMethodEndWithReference;
points->pJniMethodEndWithReferenceSynchronized = JniMethodEndWithReferenceSynchronized;
// Locks
points->pLockObjectFromCode = art_quick_lock_object_from_code;
points->pUnlockObjectFromCode = art_quick_unlock_object_from_code;
// Math
//points->pCmpgDouble = NULL; // Not needed on x86.
//points->pCmpgFloat = NULL; // Not needed on x86.
//points->pCmplDouble = NULL; // Not needed on x86.
//points->pCmplFloat = NULL; // Not needed on x86.
points->pFmod = art_quick_fmod_from_code;
points->pL2d = art_quick_l2d_from_code;
points->pFmodf = art_quick_fmodf_from_code;
points->pL2f = art_quick_l2f_from_code;
//points->pD2iz = NULL; // Not needed on x86.
//points->pF2iz = NULL; // Not needed on x86.
points->pIdivmod = art_quick_idivmod_from_code;
points->pD2l = art_quick_d2l_from_code;
points->pF2l = art_quick_f2l_from_code;
points->pLdiv = art_quick_ldiv_from_code;
points->pLdivmod = art_quick_ldivmod_from_code;
points->pLmul = art_quick_lmul_from_code;
points->pShlLong = art_quick_lshl_from_code;
points->pShrLong = art_quick_lshr_from_code;
points->pUshrLong = art_quick_lushr_from_code;
// Intrinsics
points->pIndexOf = art_quick_indexof;
points->pMemcmp16 = art_quick_memcmp16;
points->pStringCompareTo = art_quick_string_compareto;
points->pMemcpy = art_quick_memcpy;
// Invocation
points->pInvokeDirectTrampolineWithAccessCheck = art_quick_invoke_direct_trampoline_with_access_check;
points->pInvokeInterfaceTrampoline = art_quick_invoke_interface_trampoline;
points->pInvokeInterfaceTrampolineWithAccessCheck = art_quick_invoke_interface_trampoline_with_access_check;
points->pInvokeStaticTrampolineWithAccessCheck = art_quick_invoke_static_trampoline_with_access_check;
points->pInvokeSuperTrampolineWithAccessCheck = art_quick_invoke_super_trampoline_with_access_check;
points->pInvokeVirtualTrampolineWithAccessCheck = art_quick_invoke_virtual_trampoline_with_access_check;
// Thread
points->pCheckSuspendFromCode = CheckSuspendFromCode;
points->pTestSuspendFromCode = art_quick_test_suspend;
// Throws
points->pDeliverException = art_quick_deliver_exception_from_code;
points->pThrowAbstractMethodErrorFromCode = ThrowAbstractMethodErrorFromCode;
points->pThrowArrayBoundsFromCode = art_quick_throw_array_bounds_from_code;
points->pThrowDivZeroFromCode = art_quick_throw_div_zero_from_code;
points->pThrowNoSuchMethodFromCode = art_quick_throw_no_such_method_from_code;
points->pThrowNullPointerFromCode = art_quick_throw_null_pointer_exception_from_code;
points->pThrowStackOverflowFromCode = art_quick_throw_stack_overflow_from_code;
};
} // namespace art