| /* |
| * 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 "entrypoints/jni/jni_entrypoints.h" |
| #include "entrypoints/quick/quick_alloc_entrypoints.h" |
| #include "entrypoints/quick/quick_default_externs.h" |
| #include "entrypoints/quick/quick_entrypoints.h" |
| #include "entrypoints/runtime_asm_entrypoints.h" |
| #include "interpreter/interpreter.h" |
| |
| namespace art { |
| |
| // Cast entrypoints. |
| extern "C" uint32_t art_quick_is_assignable(const mirror::Class* klass, |
| const mirror::Class* ref_class); |
| |
| // Read barrier entrypoints. |
| extern "C" mirror::Object* art_quick_read_barrier_mark(mirror::Object*); |
| extern "C" mirror::Object* art_quick_read_barrier_slow(mirror::Object*, mirror::Object*, uint32_t); |
| extern "C" mirror::Object* art_quick_read_barrier_for_root_slow(GcRoot<mirror::Object>*); |
| |
| void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) { |
| // JNI |
| jpoints->pDlsymLookup = art_jni_dlsym_lookup_stub; |
| |
| // Alloc |
| ResetQuickAllocEntryPoints(qpoints); |
| |
| // Cast |
| qpoints->pInstanceofNonTrivial = art_quick_is_assignable; |
| qpoints->pCheckCast = art_quick_check_cast; |
| |
| // DexCache |
| qpoints->pInitializeStaticStorage = art_quick_initialize_static_storage; |
| qpoints->pInitializeTypeAndVerifyAccess = art_quick_initialize_type_and_verify_access; |
| qpoints->pInitializeType = art_quick_initialize_type; |
| qpoints->pResolveString = art_quick_resolve_string; |
| |
| // Field |
| qpoints->pSet8Instance = art_quick_set8_instance; |
| qpoints->pSet8Static = art_quick_set8_static; |
| qpoints->pSet16Instance = art_quick_set16_instance; |
| qpoints->pSet16Static = art_quick_set16_static; |
| qpoints->pSet32Instance = art_quick_set32_instance; |
| qpoints->pSet32Static = art_quick_set32_static; |
| qpoints->pSet64Instance = art_quick_set64_instance; |
| qpoints->pSet64Static = art_quick_set64_static; |
| qpoints->pSetObjInstance = art_quick_set_obj_instance; |
| qpoints->pSetObjStatic = art_quick_set_obj_static; |
| qpoints->pGetByteInstance = art_quick_get_byte_instance; |
| qpoints->pGetBooleanInstance = art_quick_get_boolean_instance; |
| qpoints->pGetShortInstance = art_quick_get_short_instance; |
| qpoints->pGetCharInstance = art_quick_get_char_instance; |
| qpoints->pGet32Instance = art_quick_get32_instance; |
| qpoints->pGet64Instance = art_quick_get64_instance; |
| qpoints->pGetObjInstance = art_quick_get_obj_instance; |
| qpoints->pGetByteStatic = art_quick_get_byte_static; |
| qpoints->pGetBooleanStatic = art_quick_get_boolean_static; |
| qpoints->pGetShortStatic = art_quick_get_short_static; |
| qpoints->pGetCharStatic = art_quick_get_char_static; |
| qpoints->pGet32Static = art_quick_get32_static; |
| qpoints->pGet64Static = art_quick_get64_static; |
| qpoints->pGetObjStatic = art_quick_get_obj_static; |
| |
| // Array |
| qpoints->pAputObjectWithNullAndBoundCheck = art_quick_aput_obj_with_null_and_bound_check; |
| qpoints->pAputObjectWithBoundCheck = art_quick_aput_obj_with_bound_check; |
| qpoints->pAputObject = art_quick_aput_obj; |
| qpoints->pHandleFillArrayData = art_quick_handle_fill_data; |
| |
| // JNI |
| qpoints->pJniMethodStart = JniMethodStart; |
| qpoints->pJniMethodStartSynchronized = JniMethodStartSynchronized; |
| qpoints->pJniMethodEnd = JniMethodEnd; |
| qpoints->pJniMethodEndSynchronized = JniMethodEndSynchronized; |
| qpoints->pJniMethodEndWithReference = JniMethodEndWithReference; |
| qpoints->pJniMethodEndWithReferenceSynchronized = JniMethodEndWithReferenceSynchronized; |
| qpoints->pQuickGenericJniTrampoline = art_quick_generic_jni_trampoline; |
| |
| // Locks |
| qpoints->pLockObject = art_quick_lock_object; |
| qpoints->pUnlockObject = art_quick_unlock_object; |
| |
| // More math. |
| qpoints->pCos = cos; |
| qpoints->pSin = sin; |
| qpoints->pAcos = acos; |
| qpoints->pAsin = asin; |
| qpoints->pAtan = atan; |
| qpoints->pAtan2 = atan2; |
| qpoints->pCbrt = cbrt; |
| qpoints->pCosh = cosh; |
| qpoints->pExp = exp; |
| qpoints->pExpm1 = expm1; |
| qpoints->pHypot = hypot; |
| qpoints->pLog = log; |
| qpoints->pLog10 = log10; |
| qpoints->pNextAfter = nextafter; |
| qpoints->pSinh = sinh; |
| qpoints->pTan = tan; |
| qpoints->pTanh = tanh; |
| |
| // Math |
| qpoints->pD2l = art_quick_d2l; |
| qpoints->pF2l = art_quick_f2l; |
| qpoints->pLdiv = art_quick_ldiv; |
| qpoints->pLmod = art_quick_lmod; |
| qpoints->pLmul = art_quick_lmul; |
| qpoints->pShlLong = art_quick_lshl; |
| qpoints->pShrLong = art_quick_lshr; |
| qpoints->pUshrLong = art_quick_lushr; |
| |
| // Intrinsics |
| // qpoints->pIndexOf = nullptr; // Not needed on x86 |
| qpoints->pStringCompareTo = art_quick_string_compareto; |
| qpoints->pMemcpy = art_quick_memcpy; |
| |
| // Invocation |
| qpoints->pQuickImtConflictTrampoline = art_quick_imt_conflict_trampoline; |
| qpoints->pQuickResolutionTrampoline = art_quick_resolution_trampoline; |
| qpoints->pQuickToInterpreterBridge = art_quick_to_interpreter_bridge; |
| qpoints->pInvokeDirectTrampolineWithAccessCheck = |
| art_quick_invoke_direct_trampoline_with_access_check; |
| qpoints->pInvokeInterfaceTrampolineWithAccessCheck = |
| art_quick_invoke_interface_trampoline_with_access_check; |
| qpoints->pInvokeStaticTrampolineWithAccessCheck = |
| art_quick_invoke_static_trampoline_with_access_check; |
| qpoints->pInvokeSuperTrampolineWithAccessCheck = |
| art_quick_invoke_super_trampoline_with_access_check; |
| qpoints->pInvokeVirtualTrampolineWithAccessCheck = |
| art_quick_invoke_virtual_trampoline_with_access_check; |
| |
| // Thread |
| qpoints->pTestSuspend = art_quick_test_suspend; |
| |
| // Throws |
| qpoints->pDeliverException = art_quick_deliver_exception; |
| qpoints->pThrowArrayBounds = art_quick_throw_array_bounds; |
| qpoints->pThrowDivZero = art_quick_throw_div_zero; |
| qpoints->pThrowNoSuchMethod = art_quick_throw_no_such_method; |
| qpoints->pThrowNullPointer = art_quick_throw_null_pointer_exception; |
| qpoints->pThrowStackOverflow = art_quick_throw_stack_overflow; |
| |
| // Deoptimize |
| qpoints->pDeoptimize = art_quick_deoptimize_from_compiled_code; |
| |
| // Read barrier. |
| qpoints->pReadBarrierJni = ReadBarrierJni; |
| qpoints->pReadBarrierMark = art_quick_read_barrier_mark; |
| qpoints->pReadBarrierSlow = art_quick_read_barrier_slow; |
| qpoints->pReadBarrierForRootSlow = art_quick_read_barrier_for_root_slow; |
| }; |
| |
| } // namespace art |