Home
last modified time | relevance | path

Searched refs:IsDirect (Results 1 – 21 of 21) sorted by relevance

/aosp12/art/runtime/
H A Dproxy_test.h74 CHECK(!method->IsDirect()); in GenerateProxyClass()
82 CHECK(!method->IsDirect()); in GenerateProxyClass()
90 CHECK(!method->IsDirect()); in GenerateProxyClass()
H A Dart_method-inl.h109 return !IsDirect() || IsStatic(); in CheckIncompatibleClassChange()
114 return IsDirect() || (methods_class->IsInterface() && !IsCopied()); in CheckIncompatibleClassChange()
121 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass()); in CheckIncompatibleClassChange()
H A Dclass_linker_test.cc294 EXPECT_TRUE(m.IsDirect()); in AssertClass()
331 EXPECT_TRUE(method.IsDirect()); in AssertClass()
337 EXPECT_FALSE(method.IsDirect()); in AssertClass()
1277 ASSERT_FALSE(Ii->IsDirect()); in TEST_F()
1279 ASSERT_FALSE(Jj1->IsDirect()); in TEST_F()
1281 ASSERT_FALSE(Jj2->IsDirect()); in TEST_F()
1286 ASSERT_FALSE(Ai->IsDirect()); in TEST_F()
1288 ASSERT_FALSE(Aj1->IsDirect()); in TEST_F()
1290 ASSERT_FALSE(Aj2->IsDirect()); in TEST_F()
1667 ASSERT_FALSE(m->IsDirect()); in TEST_F()
[all …]
H A Dinstrumentation_test.cc512 ASSERT_TRUE(method->IsDirect()); in TEST_F()
533 ASSERT_TRUE(method->IsDirect()); in TEST_F()
552 ASSERT_TRUE(method->IsDirect()); in TEST_F()
637 ASSERT_TRUE(method_to_deoptimize->IsDirect()); in TEST_F()
686 ASSERT_TRUE(method_to_deoptimize->IsDirect()); in TEST_F()
H A Dart_method.h157 bool IsDirect() const { in IsDirect() function
158 return IsDirect(GetAccessFlags()); in IsDirect()
161 static bool IsDirect(uint32_t access_flags) { in IsDirect() function
H A Dart_method.cc89 if (IsDirect()) { in GetNonObsoleteMethod()
169 } else if (IsDirect()) { in GetInvokeType()
482 if (method->IsStatic() || method->IsDirect()) { in FindOatMethodFor()
H A Dstack.cc778 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
/aosp12/art/runtime/mirror/
H A Ddex_cache_test.cc137 ASSERT_FALSE(method1->IsDirect()); in TEST_F()
143 ASSERT_FALSE(method2->IsDirect()); in TEST_F()
H A Dclass.cc1409 DCHECK(!orig_method->IsDirect() || new_method->IsDirect()); in IsMethodPreferredOver()
1472 DCHECK(!result->IsDirect()); in GetDeclaredMethodInternal()
H A Dclass-inl.h654 if (method->IsDirect()) { in FindVirtualMethodForVirtualOrInterface()
/aosp12/art/compiler/
H A Dexception_test.cc109 ASSERT_FALSE(method_f_->IsDirect()); in SetUp()
114 ASSERT_FALSE(method_g_->IsDirect()); in SetUp()
H A Dcommon_compiler_test.cc288 CHECK(method != nullptr && method->IsDirect()) << "Direct method not found: " in CompileDirectMethod()
305 CHECK(method != nullptr && !method->IsDirect()) << "Virtual method not found: " in CompileVirtualMethod()
/aosp12/art/openjdkjvmti/
H A Dti_search.cc122 DCHECK(!get_property->IsDirect()); in Update()
130 DCHECK(!set_property->IsDirect()); in Update()
H A Dti_redefine.cc2841 if (LIKELY(!field_or_method->IsDirect() || field_or_method->IsConstructor())) { in UpdateClassStructurally()
/aosp12/art/dex2oat/linker/
H A Dimage_test.cc150 ASSERT_FALSE(origin->IsDirect()); in TEST_F()
H A Doat_writer.cc1566 CHECK(!origin->IsDirect()); in StartClass()
/aosp12/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc955 ASSERT_TRUE(caller_method->IsDirect()); in TEST_F()
1006 ASSERT_TRUE(method->IsDirect()); in TEST_F()
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc3932 if ((method_type == METHOD_DIRECT && (!res_method->IsDirect() || res_method->IsStatic())) || in ResolveMethodAndCheckAccess()
3936 method_type == METHOD_INTERFACE) && res_method->IsDirect()) || in ResolveMethodAndCheckAccess()
/aosp12/art/compiler/jni/
H A Djni_compiler_test.cc247 ASSERT_EQ(direct, method->IsDirect()) << method_name << " " << method_sig; in CompileForTest()
/aosp12/art/runtime/jni/
H A Djni_internal_test.cc631 ASSERT_EQ(direct, method->IsDirect()); in SetUpForTest()
/aosp12/art/oatdump/
H A Doatdump.cc738 if (m->IsStatic() || m->IsDirect()) { in GetQuickOatCode()