Home
last modified time | relevance | path

Searched refs:method_type (Results 1 – 16 of 16) sorted by relevance

/art/runtime/mirror/
Dmethod_handle_impl.cc35 Handle<MethodType> method_type) in Initialize() argument
40 SetFieldObject<false>(MethodTypeOffset(), method_type.Get()); in Initialize()
48 Handle<MethodType> method_type) in Create() argument
53 mh->Initialize(art_field_or_method, kind, method_type); in Create()
Dmethod_type.cc59 ObjPtr<MethodType> method_type) { in CloneWithoutLeadingParameter() argument
61 Handle<ObjectArray<Class>> src_ptypes = hs.NewHandle(method_type->GetPTypes()); in CloneWithoutLeadingParameter()
62 Handle<Class> dst_rtype = hs.NewHandle(method_type->GetRType()); in CloneWithoutLeadingParameter()
63 const int32_t dst_ptypes_count = method_type->GetNumberOfPTypes() - 1; in CloneWithoutLeadingParameter()
75 ObjPtr<MethodType> method_type, in CollectTrailingArguments() argument
78 int32_t ptypes_length = method_type->GetNumberOfPTypes(); in CollectTrailingArguments()
80 return method_type; in CollectTrailingArguments()
85 Handle<Class> dst_rtype = hs.NewHandle(method_type->GetRType()); in CollectTrailingArguments()
86 Handle<ObjectArray<Class>> src_ptypes = hs.NewHandle(method_type->GetPTypes()); in CollectTrailingArguments()
Dmethod_handles_lookup.cc53 Handle<MethodType> method_type) { in FindConstructor() argument
59 static_cast<uint32_t>(reinterpret_cast<uintptr_t>(method_type.Get())) in FindConstructor()
Dmethod_type.h39 ObjPtr<MethodType> method_type)
45 ObjPtr<MethodType> method_type,
Dmethod_handle_impl.h91 void Initialize(uintptr_t art_field_or_method, Kind kind, Handle<MethodType> method_type)
128 Handle<MethodType> method_type)
Dmethod_handles_lookup.h48 Handle<MethodType> method_type)
Dvar_handle_test.cc234 ObjPtr<MethodType> method_type, in AccessModeMatch() argument
237 return vh->GetMethodTypeMatchForAccessMode(access_mode, method_type) == expected_match; in AccessModeMatch()
245 ObjPtr<MethodType> method_type = MethodTypeOf(descriptor); in AccessModeExactMatch() local
248 method_type, in AccessModeExactMatch()
257 ObjPtr<MethodType> method_type = MethodTypeOf(descriptor); in AccessModeWithConversionsMatch() local
260 method_type, in AccessModeWithConversionsMatch()
269 ObjPtr<MethodType> method_type = MethodTypeOf(descriptor); in AccessModeNoMatch() local
272 method_type, in AccessModeNoMatch()
382 auto test_mode = [=](VarHandle::AccessMode access_mode, Handle<MethodType> method_type) in TEST_F()
384 return fvh->GetMethodTypeForAccessMode(self, access_mode)->IsExactMatch(method_type.Get()); in TEST_F()
[all …]
Dvar_handle.h110 MatchKind GetMethodTypeMatchForAccessMode(AccessMode access_mode, ObjPtr<MethodType> method_type)
117 bool IsInvokerMethodTypeCompatible(AccessMode access_mode, ObjPtr<MethodType> method_type)
/art/runtime/interpreter/
Dinterpreter.h53 DeoptimizationMethodType method_type)
/art/runtime/entrypoints/
Dentrypoint_utils.cc270 ObjPtr<mirror::MethodType> method_type = in ResolveMethodTypeFromCode() local
272 if (UNLIKELY(method_type == nullptr)) { in ResolveMethodTypeFromCode()
277 method_type = class_linker->ResolveMethodType(hs.Self(), proto_idx, dex_cache, class_loader); in ResolveMethodTypeFromCode()
279 return method_type; in ResolveMethodTypeFromCode()
/art/compiler/optimizing/
Dcode_generator.cc774 HLoadMethodType* method_type, in CreateLoadMethodTypeRuntimeCallLocationSummary() argument
777 DCHECK_EQ(method_type->InputCount(), 1u); in CreateLoadMethodTypeRuntimeCallLocationSummary()
779 new (method_type->GetBlock()->GetGraph()->GetAllocator()) LocationSummary( in CreateLoadMethodTypeRuntimeCallLocationSummary()
780 method_type, LocationSummary::kCallOnMainOnly); in CreateLoadMethodTypeRuntimeCallLocationSummary()
786 void CodeGenerator::GenerateLoadMethodTypeRuntimeCall(HLoadMethodType* method_type) { in GenerateLoadMethodTypeRuntimeCall() argument
787 LocationSummary* locations = method_type->GetLocations(); in GenerateLoadMethodTypeRuntimeCall()
788 MoveConstant(locations->GetTemp(0), method_type->GetProtoIndex().index_); in GenerateLoadMethodTypeRuntimeCall()
790 InvokeRuntime(kQuickResolveMethodType, method_type, method_type->GetDexPc()); in GenerateLoadMethodTypeRuntimeCall()
Dcode_generator.h571 static void CreateLoadMethodTypeRuntimeCallLocationSummary(HLoadMethodType* method_type,
574 void GenerateLoadMethodTypeRuntimeCall(HLoadMethodType* method_type);
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc694 DeoptimizationMethodType method_type; in HandleDeoptimization() local
698 /* out */ &method_type); in HandleDeoptimization()
2784 Handle<mirror::MethodType> method_type( in artInvokePolymorphic() local
2786 if (UNLIKELY(method_type.IsNull())) { in artInvokePolymorphic()
2832 method_type, in artInvokePolymorphic()
2841 method_type, in artInvokePolymorphic()
2854 method_type, in artInvokePolymorphic()
/art/dexdump/
Ddexdump.cc1686 std::string method_type = pDexFile->GetProtoSignature(method_type_id).ToString(); in dumpCallSite() local
1693 fprintf(gOutFile, " link_argument[2] : %s (MethodType)\n", method_type.c_str()); in dumpCallSite()
1704 method_type.c_str()); in dumpCallSite()
/art/runtime/
Dthread.h1007 DeoptimizationMethodType method_type)
1012 DeoptimizationMethodType* method_type)
DAndroid.bp137 "mirror/method_type.cc",