Lines Matching refs:length

97     Location length = locations->InAt(4);  in EmitNativeCode()  local
153 x86_codegen->GenerateIntCompare(temp1_loc, length); in EmitNativeCode()
766 HIntConstant* length = invoke->InputAt(4)->AsIntConstant(); in VisitSystemArrayCopyChar() local
771 + ((length != nullptr) ? 1 : 0); in VisitSystemArrayCopyChar()
787 if (length != nullptr) { in VisitSystemArrayCopyChar()
788 int32_t len = length->GetValue(); in VisitSystemArrayCopyChar()
814 Location length, in CheckPosition() argument
826 if (length.IsConstant()) { in CheckPosition()
828 Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
830 __ cmpl(Address(input, length_offset), length.AsRegister<Register>()); in CheckPosition()
841 if (length.IsConstant()) { in CheckPosition()
842 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
844 __ cmpl(temp, length.AsRegister<Register>()); in CheckPosition()
866 if (length.IsConstant()) { in CheckPosition()
867 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
869 __ cmpl(temp, length.AsRegister<Register>()); in CheckPosition()
883 Location length = locations->InAt(4); in VisitSystemArrayCopyChar() local
910 if (!length.IsConstant()) { in VisitSystemArrayCopyChar()
911 __ cmpl(length.AsRegister<Register>(), length.AsRegister<Register>()); in VisitSystemArrayCopyChar()
916 if (length.IsConstant()) { in VisitSystemArrayCopyChar()
917 __ movl(count, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in VisitSystemArrayCopyChar()
919 __ movl(count, length.AsRegister<Register>()); in VisitSystemArrayCopyChar()
2541 Location length = length_arg; in VisitSystemArrayCopy() local
2606 if (length.IsStackSlot()) { in VisitSystemArrayCopy()
2607 __ movl(temp3, Address(ESP, length.GetStackIndex())); in VisitSystemArrayCopy()
2608 length = Location::RegisterLocation(temp3); in VisitSystemArrayCopy()
2613 if (!length.IsConstant() && in VisitSystemArrayCopy()
2616 __ testl(length.AsRegister<Register>(), length.AsRegister<Register>()); in VisitSystemArrayCopy()
2624 length, in VisitSystemArrayCopy()
2633 length, in VisitSystemArrayCopy()
2673 if (length.Equals(Location::RegisterLocation(temp3))) { in VisitSystemArrayCopy()
2680 length = length_arg; in VisitSystemArrayCopy()
2807 if (length.IsStackSlot()) { in VisitSystemArrayCopy()
2811 DCHECK(length.Equals(length_arg)); in VisitSystemArrayCopy()
2812 __ movl(temp3, Address(ESP, length.GetStackIndex())); in VisitSystemArrayCopy()
2813 length = Location::RegisterLocation(temp3); in VisitSystemArrayCopy()
2815 GenSystemArrayCopyEndAddress(GetAssembler(), type, length, temp1, temp3); in VisitSystemArrayCopy()
2890 GenSystemArrayCopyEndAddress(GetAssembler(), type, length, temp1, temp3); in VisitSystemArrayCopy()
2946 if (static_cast<uint32_t>(value - info.low) < info.length) { in VisitIntegerValueOf()
2965 __ cmpl(out, Immediate(info.length)); in VisitIntegerValueOf()