Lines Matching refs:second

475   HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
476 T* comparison = new (arena_) T(first, second, dex_pc);
514 HInstruction* second = LoadLocal(instruction.VRegC(), type);
515 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
524 HInstruction* second = LoadLocal(instruction.VRegC(), Primitive::kPrimInt);
525 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
534 HInstruction* second = LoadLocal(instruction.VRegC(), type);
535 AppendInstruction(new (arena_) HCompare(type, first, second, bias, dex_pc));
544 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
545 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
554 HInstruction* second = LoadLocal(instruction.VRegB(), type);
555 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
562 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc);
564 std::swap(first, second);
566 AppendInstruction(new (arena_) T(Primitive::kPrimInt, first, second, dex_pc));
573 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc);
575 std::swap(first, second);
577 AppendInstruction(new (arena_) T(Primitive::kPrimInt, first, second, dex_pc));
1360 bool can_easily_access = is_put ? pair.second : pair.first;
1427 HInstruction* second = nullptr;
1430 second = graph_->GetIntConstant(second_vreg_or_constant, dex_pc);
1432 second = graph_->GetLongConstant(second_vreg_or_constant, dex_pc);
1435 second = LoadLocal(second_vreg_or_constant, type);
1439 || (type == Primitive::kPrimInt && second->AsIntConstant()->GetValue() == 0)
1440 || (type == Primitive::kPrimLong && second->AsLongConstant()->GetValue() == 0)) {
1441 second = new (arena_) HDivZeroCheck(second, dex_pc);
1442 AppendInstruction(second);
1446 AppendInstruction(new (arena_) HDiv(type, first, second, dex_pc));
1448 AppendInstruction(new (arena_) HRem(type, first, second, dex_pc));
1687 uint16_t value_in_map = it->second;