Home
last modified time | relevance | path

Searched refs:target_type (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dmethod_handles.cc421 Handle<mirror::MethodType> target_type, in DoCallPolymorphic() argument
465 if (callsite_type->IsExactMatch(target_type.Get())) { in DoCallPolymorphic()
489 target_type, in DoCallPolymorphic()
497 if (!callsite_type->IsConvertible(target_type.Get())) { in DoCallPolymorphic()
498 ThrowWrongMethodTypeException(target_type.Get(), callsite_type.Get()); in DoCallPolymorphic()
503 target_type, in DoCallPolymorphic()
542 if (ConvertReturnValue(emulated_stack_type, target_type, &local_result)) { in DoCallPolymorphic()
551 return ConvertReturnValue(callsite_type, target_type, result); in DoCallPolymorphic()
/art/test/dexdump/
Dinvoke-custom.txt1288 target_type : I
1292 target_type : I
1296 target_type : (Linvokecustom/InvokeCustom;
1300 target_type : (Linvokecustom/InvokeCustom;
1304target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy…
1308target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy…
1312target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy…
1316target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy…
1320 target_type : (Ljava/lang/String;)Z
1324target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy…
[all …]
/art/runtime/verifier/
Dmethod_verifier.h544 void VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Dmethod_verifier.cc4698 void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type, in VerifyPrimitivePut() argument
4704 if (target_type.IsIntegralTypes()) { in VerifyPrimitivePut()
4705 instruction_compatible = target_type.Equals(insn_type); in VerifyPrimitivePut()
4707 } else if (target_type.IsFloat()) { in VerifyPrimitivePut()
4710 } else if (target_type.IsLong()) { in VerifyPrimitivePut()
4720 } else if (target_type.IsDouble()) { in VerifyPrimitivePut()
4739 << "' but expected type '" << target_type << "'"; in VerifyPrimitivePut()
4744 << " of type " << value_type << " but expected " << target_type << " for put"; in VerifyPrimitivePut()