Searched defs:called_method (Results 1 - 6 of 6) sorted by relevance

/art/runtime/interpreter/
H A Dinterpreter_common.h120 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
139 ArtMethod* const called_method = FindMethodFromCode<type, false>( local
142 if (UNLIKELY(called_method == nullptr)) {
146 } else if (UNLIKELY(!called_method->IsInvokable())) {
147 called_method->ThrowInvocationTimeError();
153 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
155 if (called_method->IsIntrinsic()) {
156 if (MterpHandleIntrinsic(&shadow_frame, called_method, inst, inst_data,
161 return DoCall<false, false>(called_method, self, shadow_frame, inst, inst_data, result);
182 ArtMethod* const called_method local
270 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
[all...]
H A Dinterpreter_common.cc504 static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method,
1193 static inline bool DoCallCommon(ArtMethod* called_method, argument
1202 if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass()
1203 && called_method->IsConstructor())) {
1204 called_method = WellKnownClasses::StringInitToStringFactory(called_method);
1209 CodeItemDataAccessor accessor(called_method->DexInstructionData());
1221 called_method,
1222 called_method->GetEntryPointFromQuickCompiledCode());
1235 DCHECK(called_method
1403 DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data, JValue* result) argument
[all...]
/art/runtime/interpreter/mterp/
H A Dmterp.cc331 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
333 if ((called_method != nullptr) && called_method->IsIntrinsic()) {
334 if (MterpHandleIntrinsic(shadow_frame, called_method, inst, inst_data, result_register)) {
338 receiver, shadow_frame->GetMethod(), shadow_frame->GetDexPC(), called_method);
/art/runtime/
H A Dmethod_handles.cc416 static inline bool MethodHandleInvokeMethod(ArtMethod* called_method,
424 CodeItemDataAccessor accessor(called_method->DexInstructionData());
443 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
444 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method);
450 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
510 called_method, called_method->GetEntryPointFromQuickCompiledCode());
546 static inline bool MethodHandleInvokeTransform(ArtMethod* called_method,
566 CodeItemDataAccessor accessor(called_method
718 ArtMethod* called_method = RefineTargetMethod(self, local
1167 ArtMethod* called_method = RefineTargetMethod(self, local
[all...]
/art/openjdkjvmti/
H A Dti_stack.cc916 bool called_method = false; local
926 called_method = true;
941 if (!called_method) {
/art/runtime/verifier/
H A Dmethod_verifier.cc2885 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range); local
2887 if (called_method != nullptr) {
2889 ? called_method->ResolveReturnType()
2890 : called_method->LookupResolvedReturnType();
2892 return_type = &FromClass(called_method->GetReturnTypeDescriptor(),
2919 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range); local
2923 if (called_method == nullptr) {
2931 is_constructor = called_method->IsConstructor();
2932 return_type_descriptor = called_method->GetReturnTypeDescriptor();
2934 ? called_method
2999 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range); local
3077 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range); local
[all...]

Completed in 124 milliseconds