Searched refs:target_type (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | method_handles.cc | 421 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/ |
D | invoke-custom.txt | 1288 target_type : I 1292 target_type : I 1296 target_type : (Linvokecustom/InvokeCustom; 1300 target_type : (Linvokecustom/InvokeCustom; 1304 …target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy… 1308 …target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy… 1312 …target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy… 1316 …target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy… 1320 target_type : (Ljava/lang/String;)Z 1324 …target_type : (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodTy… [all …]
|
/art/runtime/verifier/ |
D | method_verifier.h | 544 void VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
|
D | method_verifier.cc | 4698 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()
|