Lines Matching refs:length_loc
161 Location length_loc = locations->InAt(1); in EmitNativeCode() local
169 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode()
171 if (length_loc.Equals(locations->InAt(0))) { in EmitNativeCode()
173 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(2)); in EmitNativeCode()
175 __ movl(length_loc.AsRegister<Register>(), array_len); in EmitNativeCode()
177 __ shrl(length_loc.AsRegister<Register>(), Immediate(1)); in EmitNativeCode()
184 length_loc, in EmitNativeCode()
6639 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
6643 if (length_loc.IsConstant()) { in VisitBoundsCheck()
6644 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
6691 codegen_->GenerateIntCompare(length_loc, index_loc); in VisitBoundsCheck()