Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
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()
Dquick_trampoline_entrypoints.cc2079 bool fast_native = called->IsFastNative(); in artQuickGenericJniTrampoline()
/art/runtime/native/
Dscoped_fast_native_object_access-inl.h30 DCHECK((*Self()->GetManagedStack()->GetTopQuickFrame())->IsFastNative()); in ScopedFastNativeObjectAccess()
/art/runtime/
Dart_method.cc674 bool is_fast_native = IsFastNative(); in SetIntrinsic()
690 DCHECK_EQ(is_fast_native, IsFastNative()); in SetIntrinsic()
Dart_method.h295 bool IsFastNative() const { in IsFastNative() function
Dmonitor.cc1456 DCHECK(!m->IsFastNative()); in VisitLocks()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h764 DCHECK(!called->IsFastNative()); in GetGenericJniSynchronizationObject()
/art/compiler/jni/
Djni_compiler_test.cc2277 EXPECT_FALSE(method->IsFastNative()); in NormalNativeImpl()
2299 EXPECT_TRUE(method->IsFastNative()); in FastNativeImpl()
2328 EXPECT_FALSE(method->IsFastNative()); in CriticalNativeImpl()
/art/runtime/jit/
Djit_code_cache.cc73 is_fast_native_(method->IsFastNative()), in REQUIRES_SHARED()