Home
last modified time | relevance | path

Searched refs:rhs_type (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dgraph_checker.cc1057 DataType::Type rhs_type = op->InputAt(1)->GetType(); in VisitBinaryOperation() local
1062 if (DataType::Kind(rhs_type) != DataType::Type::kInt32) { in VisitBinaryOperation()
1067 DataType::PrettyDescriptor(rhs_type))); in VisitBinaryOperation()
1070 if (DataType::Kind(lhs_type) != DataType::Kind(rhs_type)) { in VisitBinaryOperation()
1074 DataType::PrettyDescriptor(rhs_type))); in VisitBinaryOperation()
1103 if (DataType::Kind(result_type) != DataType::Kind(rhs_type)) { in VisitBinaryOperation()
1108 DataType::PrettyDescriptor(rhs_type))); in VisitBinaryOperation()
/art/runtime/
Dclass_linker.cc8683 Primitive::Type rhs_type = rhs_field->GetTypeAsPrimitiveType(); in LinkFields()
8684 CHECK_NE(rhs_type, Primitive::kPrimNot); in LinkFields()
8685 if (lhs_type != rhs_type) { in LinkFields()
8687 size_t rhs_size = Primitive::ComponentSize(rhs_type); in LinkFields()
8688 return (lhs_size != rhs_size) ? (lhs_size > rhs_size) : (lhs_type < rhs_type); in LinkFields()