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

/art/runtime/interpreter/
H A Dinterpreter_common.h112 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
131 ArtMethod* const called_method = FindMethodFromCode<type, false>( local
134 if (UNLIKELY(called_method == nullptr)) {
138 } else if (UNLIKELY(!called_method->IsInvokable())) {
139 called_method->ThrowInvocationTimeError();
146 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
150 if (called_method->IsIntrinsic()) {
151 if (MterpHandleIntrinsic(&shadow_frame, called_method, inst, inst_data,
156 return DoCall<false, false>(called_method, self, shadow_frame, inst, inst_data, result);
172 ArtMethod* const called_method local
243 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
[all...]
H A Dinterpreter_common.cc441 static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method,
904 static inline bool DoCallCommon(ArtMethod* called_method, argument
913 if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass()
914 && called_method->IsConstructor())) {
915 called_method = WellKnownClasses::StringInitToStringFactory(called_method);
920 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
928 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
950 DCHECK(called_method
1090 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.cc275 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
277 if ((called_method != nullptr) && called_method->IsIntrinsic()) {
278 if (MterpHandleIntrinsic(shadow_frame, called_method, inst, inst_data, result_register)) {
282 receiver, shadow_frame->GetMethod(), shadow_frame->GetDexPC(), called_method);
/art/runtime/
H A Dmethod_handles.cc419 static inline bool DoCallPolymorphic(ArtMethod* called_method,
429 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
448 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
449 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method);
455 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
547 static inline bool DoCallTransform(ArtMethod* called_method,
568 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
574 CREATE_SHADOW_FRAME(kNumRegsForTransform, &shadow_frame, called_method, /* dex pc */ 0);
721 ArtMethod* called_method local
1051 ArtMethod* called_method = RefineTargetMethod(self, local
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc2900 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range); local
2902 if (called_method != nullptr) {
2903 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_);
2905 return_type = &FromClass(called_method->GetReturnTypeDescriptor(),
2932 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range); local
2936 if (called_method == nullptr) {
2944 is_constructor = called_method->IsConstructor();
2945 return_type_descriptor = called_method->GetReturnTypeDescriptor();
2946 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_);
2959 * that the "this" argument is an instance of called_method
3010 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range); local
3088 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range); local
3446 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range); local
[all...]

Completed in 91 milliseconds