Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dgraph_checker.cc1056 DataType::Type lhs_type = op->InputAt(0)->GetType(); in VisitBinaryOperation() local
1070 if (DataType::Kind(lhs_type) != DataType::Kind(rhs_type)) { in VisitBinaryOperation()
1073 DataType::PrettyDescriptor(lhs_type), in VisitBinaryOperation()
1088 if (result_type != DataType::Kind(lhs_type)) { in VisitBinaryOperation()
1093 DataType::PrettyDescriptor(lhs_type))); in VisitBinaryOperation()
1096 if (DataType::Kind(result_type) != DataType::Kind(lhs_type)) { in VisitBinaryOperation()
1101 DataType::PrettyDescriptor(lhs_type))); in VisitBinaryOperation()
/art/runtime/
Dclass_linker.cc8692 Primitive::Type lhs_type = lhs_field->GetTypeAsPrimitiveType(); in LinkFields()
8693 CHECK_NE(lhs_type, Primitive::kPrimNot); in LinkFields()
8696 if (lhs_type != rhs_type) { in LinkFields()
8697 size_t lhs_size = Primitive::ComponentSize(lhs_type); in LinkFields()
8699 return (lhs_size != rhs_size) ? (lhs_size > rhs_size) : (lhs_type < rhs_type); in LinkFields()