Searched refs:src_type (Results 1 – 11 of 11) sorted by relevance
/art/runtime/entrypoints/quick/ |
D | quick_throw_entrypoints.cc | 114 mirror::Class* src_type, in artThrowClassCastException() argument 132 CHECK(!dest_type->IsAssignableFrom(src_type)) in artThrowClassCastException() 135 << " <: " << src_type->PrettyDescriptor() << ";" << src_type->Depth() in artThrowClassCastException() 136 << "/" << src_type->GetField32(mirror::Class::StatusOffset()); in artThrowClassCastException() 138 DCHECK(!dest_type->IsAssignableFrom(src_type)); in artThrowClassCastException() 139 ThrowClassCastException(dest_type, src_type); in artThrowClassCastException()
|
/art/runtime/verifier/ |
D | register_line-inl.h | 125 const RegType& src_type = GetRegisterType(verifier, vsrc); in VerifyRegisterType() local 126 if (UNLIKELY(!check_type.IsAssignableFrom(src_type, verifier))) { in VerifyRegisterType() 128 if (!check_type.IsNonZeroReferenceTypes() || !src_type.IsNonZeroReferenceTypes()) { in VerifyRegisterType() 131 } else if (check_type.IsUninitializedTypes() || src_type.IsUninitializedTypes()) { in VerifyRegisterType() 134 } else if (check_type.IsUnresolvedTypes() || src_type.IsUnresolvedTypes()) { in VerifyRegisterType() 140 << src_type << " but expected " << check_type; in VerifyRegisterType() 145 if (UNLIKELY(!src_type.CheckWidePair(src_type_h))) { in VerifyRegisterType() 147 << src_type << "/" << src_type_h; in VerifyRegisterType()
|
D | register_line.cc | 78 const RegType& src_type = GetRegisterType(verifier, vsrc); in VerifyRegisterTypeWide() local 79 if (!check_type1.IsAssignableFrom(src_type, verifier)) { in VerifyRegisterTypeWide() 80 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << vsrc << " has type " << src_type in VerifyRegisterTypeWide() 85 if (!src_type.CheckWidePair(src_type_h)) { in VerifyRegisterTypeWide() 87 << src_type << "/" << src_type_h; in VerifyRegisterTypeWide() 199 const RegType& dst_type, const RegType& src_type) { in CheckUnaryOp() argument 200 if (VerifyRegisterType(verifier, inst->VRegB_12x(), src_type)) { in CheckUnaryOp() 215 const RegType& src_type) { in CheckUnaryOpToWide() argument 216 if (VerifyRegisterType(verifier, inst->VRegB_12x(), src_type)) { in CheckUnaryOpToWide() 311 const RegType& dst_type, const RegType& src_type, in CheckLiteralOp() argument [all …]
|
D | register_line.h | 241 const RegType& src_type) 256 const RegType& src_type) 334 const RegType& src_type,
|
D | method_verifier.cc | 2124 const RegType& src_type = work_line_->GetRegisterType(this, vregA); in CodeFlowVerifyInstruction() local 2125 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) || in CodeFlowVerifyInstruction() 2128 src_type.IsInteger())); in CodeFlowVerifyInstruction() 2131 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type); in CodeFlowVerifyInstruction() 3979 const RegType& src_type = work_line_->GetRegisterType(this, get_reg); in VerifyInvocationArgsFromIterator() local 3980 if (!src_type.IsIntegralTypes()) { in VerifyInvocationArgsFromIterator() 3981 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type in VerifyInvocationArgsFromIterator()
|
/art/test/712-varhandle-invocations/util-src/ |
D | generate_java.py | 103 for src_type in WIDENING_CONVERSIONS: 104 if var_type in WIDENING_CONVERSIONS[src_type]: 105 types_that_widen.add(src_type)
|
/art/runtime/ |
D | common_throws.h | 82 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type)
|
D | common_throws.cc | 154 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type) { in ThrowClassCastException() argument 157 mirror::Class::PrettyDescriptor(src_type).c_str(), in ThrowClassCastException()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 873 ObjPtr<mirror::Class> src_type = shadow_frame->GetVRegReference(arg_offset)->GetClass()-> in UnstartedSystemArraycopy() local 876 if (!src_type->IsPrimitive()) { in UnstartedSystemArraycopy() 916 } else if (src_type->IsPrimitiveByte()) { in UnstartedSystemArraycopy() 918 } else if (src_type->IsPrimitiveChar()) { in UnstartedSystemArraycopy() 920 } else if (src_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy() 924 src_type->PrettyDescriptor().c_str()); in UnstartedSystemArraycopy()
|
/art/compiler/optimizing/ |
D | code_generator_x86.h | 506 void MoveToMemory(DataType::Type src_type,
|
D | code_generator_x86.cc | 1797 void CodeGeneratorX86::MoveToMemory(DataType::Type src_type, in MoveToMemory() argument 1806 switch (src_type) { in MoveToMemory() 1871 LOG(FATAL) << "Unreachable type " << src_type; in MoveToMemory()
|