Home
last modified time | relevance | path

Searched refs:IsFastNative (Results 1 – 9 of 9) sorted by relevance

/aosp12/art/runtime/entrypoints/quick/
H A Dquick_jni_entrypoints.cc71 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in JniMethodFastStart()
86 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in JniMethodStart()
103 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnable()
113 CHECK(native_method->IsFastNative()) << native_method->PrettyMethod(); in GoToRunnableFast()
233 bool fast_native = called->IsFastNative(); in GenericJniMethodEnd()
H A Dquick_trampoline_entrypoints.cc2079 bool fast_native = called->IsFastNative(); in artQuickGenericJniTrampoline()
/aosp12/art/runtime/native/
H A Dscoped_fast_native_object_access-inl.h30 DCHECK((*Self()->GetManagedStack()->GetTopQuickFrame())->IsFastNative()); in ScopedFastNativeObjectAccess()
/aosp12/art/runtime/
H A Dart_method.cc674 bool is_fast_native = IsFastNative(); in SetIntrinsic()
690 DCHECK_EQ(is_fast_native, IsFastNative()); in SetIntrinsic()
H A Dart_method.h295 bool IsFastNative() const { in IsFastNative() function
H A Dmonitor.cc1456 DCHECK(!m->IsFastNative()); in VisitLocks()
/aosp12/art/runtime/entrypoints/
H A Dentrypoint_utils-inl.h764 DCHECK(!called->IsFastNative()); in GetGenericJniSynchronizationObject()
/aosp12/art/compiler/jni/
H A Djni_compiler_test.cc2277 EXPECT_FALSE(method->IsFastNative()); in NormalNativeImpl()
2299 EXPECT_TRUE(method->IsFastNative()); in FastNativeImpl()
2328 EXPECT_FALSE(method->IsFastNative()); in CriticalNativeImpl()
/aosp12/art/runtime/jit/
H A Djit_code_cache.cc73 is_fast_native_(method->IsFastNative()), in REQUIRES_SHARED()