Home
last modified time | relevance | path

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

/art/runtime/native/
Dscoped_fast_native_object_access-inl.h30 DCHECK((*Self()->GetManagedStack()->GetTopQuickFrame())->IsFastNative()); in ScopedFastNativeObjectAccess()
/art/runtime/entrypoints/quick/
Dquick_jni_entrypoints.cc70 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in artJniMethodStart()
128 CHECK(!native_method->IsFastNative()) << native_method->PrettyMethod(); in artJniMethodEnd()
157 bool fast_native = called->IsFastNative(); in GenericJniMethodEnd()
Dquick_trampoline_entrypoints.cc1980 bool fast_native = called->IsFastNative(); in artQuickGenericJniTrampoline()
/art/compiler/jni/quick/
Dcalling_convention.h361 bool IsFastNative() const { in IsFastNative() function
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc310 DCHECK(!IsFastNative()); in LockingArgumentRegister()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc314 DCHECK(!IsFastNative()); in LockingArgumentRegister()
/art/runtime/
Dart_method.h443 bool IsFastNative() const {
444 return IsFastNative(GetAccessFlags());
447 static bool IsFastNative(uint32_t access_flags) {
Dart_method.cc735 bool is_fast_native = IsFastNative(); in SetIntrinsic()
751 DCHECK_EQ(is_fast_native, IsFastNative()); in SetIntrinsic()
Dmonitor.cc1466 DCHECK(!m->IsFastNative()); in VisitLocks()
/art/compiler/jni/quick/riscv64/
Dcalling_convention_riscv64.cc408 DCHECK(!IsFastNative()); in LockingArgumentRegister()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc394 DCHECK(!IsFastNative()); in LockingArgumentRegister()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc559 DCHECK(!IsFastNative()); in LockingArgumentRegister()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h722 DCHECK(!called->IsFastNative()); in GetGenericJniSynchronizationObject()
/art/compiler/jni/
Djni_compiler_test.cc418 CHECK(!caller->IsFastNative()); in AssertCallerObjectLocked()
2386 EXPECT_FALSE(method->IsFastNative()); in NormalNativeImpl()
2408 EXPECT_TRUE(method->IsFastNative()); in FastNativeImpl()
2437 EXPECT_FALSE(method->IsFastNative()); in CriticalNativeImpl()
/art/runtime/jit/
Djit_code_cache.cc74 is_fast_native_(method->IsFastNative()), in REQUIRES_SHARED()