Searched defs:entrypoint (Results 1 - 5 of 5) sorted by relevance

/art/runtime/arch/mips/
H A Dentrypoints_direct_mips.h24 /* Returns true if entrypoint contains direct reference to
27 static constexpr bool IsDirectEntrypoint(QuickEntrypointEnum entrypoint) { argument
29 entrypoint == kQuickInstanceofNonTrivial ||
30 entrypoint == kQuickA64Load ||
31 entrypoint == kQuickA64Store ||
32 entrypoint == kQuickFmod ||
33 entrypoint == kQuickFmodf ||
34 entrypoint == kQuickMemcpy ||
35 entrypoint == kQuickL2d ||
36 entrypoint
[all...]
/art/runtime/
H A Dart_method.h313 // quick entrypoint. This code isn't robust for instrumentation, etc. and is only used for
322 // Returns true if the entrypoint points to the interpreter, as
423 void SetEntryPointFromJni(const void* entrypoint) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
424 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*));
426 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) { argument
427 SetEntryPoint(EntryPointFromJniOffset(pointer_size), entrypoint, pointer_size); local
/art/runtime/arch/
H A Dstub_test.cc793 static uintptr_t GetEntrypoint(Thread* self, QuickEntrypointEnum entrypoint) { argument
796 offset = GetThreadOffset<8>(entrypoint).Int32Value();
798 offset = GetThreadOffset<4>(entrypoint).Int32Value();
/art/compiler/optimizing/
H A Dbuilder.cc1064 QuickEntrypointEnum entrypoint = NeedsAccessCheck(type_index) local
1067 HInstruction* object = new (arena_) HNewArray(length, dex_pc, type_index, entrypoint);
2018 QuickEntrypointEnum entrypoint = NeedsAccessCheck(type_index) local
2022 current_block_->AddInstruction(new (arena_) HNewInstance(dex_pc, type_index, entrypoint));
2031 QuickEntrypointEnum entrypoint = NeedsAccessCheck(type_index) local
2035 new (arena_) HNewArray(length, dex_pc, type_index, entrypoint));
H A Dnodes.h2545 // Thread entrypoint offset for string init method if this is a string init invoke.
2607 HNewInstance(uint32_t dex_pc, uint16_t type_index, QuickEntrypointEnum entrypoint) argument
2611 entrypoint_(entrypoint) {}
2657 QuickEntrypointEnum entrypoint)
2661 entrypoint_(entrypoint) {
2654 HNewArray(HInstruction* length, uint32_t dex_pc, uint16_t type_index, QuickEntrypointEnum entrypoint) argument

Completed in 502 milliseconds