reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_local_space.c
  976 	if (!ls || !eq)
  980 	if (isl_local_space_dim(ls, isl_dim_all) != total)
  981 		isl_die(isl_local_space_get_ctx(ls), isl_error_invalid,
  990 		for (k = 0; k < ls->div->n_row; ++k) {
  991 			if (isl_int_is_zero(ls->div->row[k][1 + j]))
  993 			ls = isl_local_space_cow(ls);
  993 			ls = isl_local_space_cow(ls);
  994 			if (!ls)
  996 			ls->div = isl_mat_cow(ls->div);
  996 			ls->div = isl_mat_cow(ls->div);
  997 			if (!ls->div)
  999 			isl_seq_elim(ls->div->row[k] + 1, eq->eq[i], j, total,
 1000 					&ls->div->row[k][0]);
 1001 			normalize_div(ls, k);
 1006 	return ls;
 1009 	isl_local_space_free(ls);