Lines Matching refs:index_loc
162 Location index_loc = locations->InAt(0); in EmitNativeCode() local
175 if (!index_loc.Equals(length_arg)) { in EmitNativeCode()
179 x86_codegen->Move32(index_arg, index_loc); in EmitNativeCode()
182 x86_codegen->Move32(index_arg, index_loc); in EmitNativeCode()
189 index_loc, in EmitNativeCode()
205 index_loc, in EmitNativeCode()
6859 Location index_loc = locations->InAt(0); in VisitBoundsCheck() local
6866 if (index_loc.IsConstant()) { in VisitBoundsCheck()
6868 int32_t index = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant()); in VisitBoundsCheck()
6880 Register index_reg = index_loc.AsRegister<Register>(); in VisitBoundsCheck()
6899 codegen_->GenerateIntCompare(length_reg, index_loc); in VisitBoundsCheck()
6903 if (index_loc.IsConstant()) { in VisitBoundsCheck()
6904 int32_t value = CodeGenerator::GetInt32ValueOf(index_loc.GetConstant()); in VisitBoundsCheck()
6907 __ cmpl(array_len, index_loc.AsRegister<Register>()); in VisitBoundsCheck()
6912 codegen_->GenerateIntCompare(length_loc, index_loc); in VisitBoundsCheck()