Home
last modified time | relevance | path

Searched refs:entrypoint (Results 1 – 10 of 10) sorted by relevance

/art/runtime/arch/mips/
Dentrypoints_direct_mips.h27 static constexpr bool IsDirectEntrypoint(QuickEntrypointEnum entrypoint) { in IsDirectEntrypoint() argument
29 entrypoint == kQuickInstanceofNonTrivial || in IsDirectEntrypoint()
30 entrypoint == kQuickA64Load || in IsDirectEntrypoint()
31 entrypoint == kQuickA64Store || in IsDirectEntrypoint()
32 entrypoint == kQuickFmod || in IsDirectEntrypoint()
33 entrypoint == kQuickFmodf || in IsDirectEntrypoint()
34 entrypoint == kQuickMemcpy || in IsDirectEntrypoint()
35 entrypoint == kQuickL2d || in IsDirectEntrypoint()
36 entrypoint == kQuickL2f || in IsDirectEntrypoint()
37 entrypoint == kQuickD2iz || in IsDirectEntrypoint()
[all …]
Dquick_entrypoints_mips.S994 .macro ONE_ARG_DOWNCALL name, entrypoint, return
995 .extern \entrypoint
998 jal \entrypoint
1004 .macro TWO_ARG_DOWNCALL name, entrypoint, return
1005 .extern \entrypoint
1008 jal \entrypoint
1014 .macro THREE_ARG_DOWNCALL name, entrypoint, return
1015 .extern \entrypoint
1018 jal \entrypoint
1024 .macro FOUR_ARG_DOWNCALL name, entrypoint, return
[all …]
/art/runtime/arch/arm64/
Dquick_entrypoints_arm64.S1263 .macro ONE_ARG_DOWNCALL name, entrypoint, return
1264 .extern \entrypoint
1268 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*)
1275 .macro TWO_ARG_DOWNCALL name, entrypoint, return
1276 .extern \entrypoint
1280 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*)
1287 .macro THREE_ARG_DOWNCALL name, entrypoint, return
1288 .extern \entrypoint
1292 bl \entrypoint
1299 .macro FOUR_ARG_DOWNCALL name, entrypoint, return
[all …]
/art/test/427-bounds/
Dinfo.txt2 index and/or length to the pThrowArrayBounds entrypoint.
/art/runtime/entrypoints/quick/
Dquick_entrypoints_enum.h55 template <QuickEntrypointEnum entrypoint, typename... Types>
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S242 .macro ONE_ARG_REF_DOWNCALL name, entrypoint, return
243 .extern \entrypoint
248 bl \entrypoint @ (uint32_t field_idx, const Method* referrer, Thread*)
254 .macro TWO_ARG_REF_DOWNCALL name, entrypoint, return
255 .extern \entrypoint
260 bl \entrypoint @ (field_idx, Object*, referrer, Thread*)
266 .macro THREE_ARG_REF_DOWNCALL name, entrypoint, return
267 .extern \entrypoint
273 bl \entrypoint @ (field_idx, Object*, new_val, referrer, Thread*)
/art/runtime/
Dart_method.h423 void SetEntryPointFromJni(const void* entrypoint) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in SetEntryPointFromJni() argument
424 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*)); in SetEntryPointFromJni()
426 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) { in SetEntryPointFromJniPtrSize() argument
427 SetEntryPoint(EntryPointFromJniOffset(pointer_size), entrypoint, pointer_size); in SetEntryPointFromJniPtrSize()
/art/compiler/optimizing/
Dbuilder.cc1064 QuickEntrypointEnum entrypoint = NeedsAccessCheck(type_index) in BuildFilledNewArray() local
1067 HInstruction* object = new (arena_) HNewArray(length, dex_pc, type_index, entrypoint); in BuildFilledNewArray()
2018 QuickEntrypointEnum entrypoint = NeedsAccessCheck(type_index) in AnalyzeDexInstruction() local
2022 current_block_->AddInstruction(new (arena_) HNewInstance(dex_pc, type_index, entrypoint)); in AnalyzeDexInstruction()
2031 QuickEntrypointEnum entrypoint = NeedsAccessCheck(type_index) in AnalyzeDexInstruction() local
2035 new (arena_) HNewArray(length, dex_pc, type_index, entrypoint)); in AnalyzeDexInstruction()
Dnodes.h2607 HNewInstance(uint32_t dex_pc, uint16_t type_index, QuickEntrypointEnum entrypoint) in HNewInstance() argument
2611 entrypoint_(entrypoint) {} in HNewInstance()
2657 QuickEntrypointEnum entrypoint) in HNewArray() argument
2661 entrypoint_(entrypoint) { in HNewArray()
/art/runtime/arch/
Dstub_test.cc793 static uintptr_t GetEntrypoint(Thread* self, QuickEntrypointEnum entrypoint) { in GetEntrypoint() argument
796 offset = GetThreadOffset<8>(entrypoint).Int32Value(); in GetEntrypoint()
798 offset = GetThreadOffset<4>(entrypoint).Int32Value(); in GetEntrypoint()