Lines Matching refs:length

582   HIntConstant* length = invoke->InputAt(4)->AsIntConstant();  in VisitSystemArrayCopyChar()  local
583 if (length != nullptr) { in VisitSystemArrayCopyChar()
584 int32_t len = length->GetValue(); in VisitSystemArrayCopyChar()
609 Location length, in CheckPosition() argument
621 if (length.IsConstant()) { in CheckPosition()
623 Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
625 __ cmpl(Address(input, length_offset), length.AsRegister<CpuRegister>()); in CheckPosition()
636 if (length.IsConstant()) { in CheckPosition()
637 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
639 __ cmpl(temp, length.AsRegister<CpuRegister>()); in CheckPosition()
661 if (length.IsConstant()) { in CheckPosition()
662 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
664 __ cmpl(temp, length.AsRegister<CpuRegister>()); in CheckPosition()
678 Location length = locations->InAt(4); in VisitSystemArrayCopyChar() local
705 if (!length.IsConstant()) { in VisitSystemArrayCopyChar()
706 __ testl(length.AsRegister<CpuRegister>(), length.AsRegister<CpuRegister>()); in VisitSystemArrayCopyChar()
711 CheckPosition(assembler, src_pos, src, length, slow_path, src_base); in VisitSystemArrayCopyChar()
714 CheckPosition(assembler, dest_pos, dest, length, slow_path, src_base); in VisitSystemArrayCopyChar()
717 if (length.IsConstant()) { in VisitSystemArrayCopyChar()
718 __ movl(count, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in VisitSystemArrayCopyChar()
720 __ movl(count, length.AsRegister<CpuRegister>()); in VisitSystemArrayCopyChar()
821 Location length = locations->InAt(4); in VisitSystemArrayCopy() local
889 if (!length.IsConstant() && in VisitSystemArrayCopy()
892 __ testl(length.AsRegister<CpuRegister>(), length.AsRegister<CpuRegister>()); in VisitSystemArrayCopy()
900 length, in VisitSystemArrayCopy()
909 length, in VisitSystemArrayCopy()
1058 GetAssembler(), type, src, src_pos, dest, dest_pos, length, temp1, temp2, temp3); in VisitSystemArrayCopy()
2621 if (static_cast<uint32_t>(value - info.low) < info.length) { in VisitIntegerValueOf()
2639 __ cmpl(out, Immediate(info.length)); in VisitIntegerValueOf()