Home | History | Annotate | Download | only in verifier

Lines Matching defs:array_type

2079       const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t());
2080 /* array_type can be null if the reg type is Zero */
2081 if (!array_type.IsZero()) {
2082 if (!array_type.IsArrayTypes()) {
2084 << array_type;
2086 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
3725 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
3726 if (array_type.IsZero()) {
3739 } else if (!array_type.IsArrayTypes()) {
3740 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
3743 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
3745 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
3748 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
3753 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
3827 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
3828 if (array_type.IsZero()) {
3849 } else if (!array_type.IsArrayTypes()) {
3850 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
3852 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
3858 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type