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

References

tools/polly/lib/External/isl/isl_schedule_constraints.c
  685 	if (!sc)
  688 	space = isl_union_set_get_space(sc->domain);
  689 	space = isl_space_align_params(space, isl_set_get_space(sc->context));
  692 				    isl_union_map_get_space(sc->constraint[i]));
  695 		sc->constraint[i] = isl_union_map_align_params(
  696 				    sc->constraint[i], isl_space_copy(space));
  697 		if (!sc->constraint[i])
  700 	sc->context = isl_set_align_params(sc->context, isl_space_copy(space));
  700 	sc->context = isl_set_align_params(sc->context, isl_space_copy(space));
  701 	sc->domain = isl_union_set_align_params(sc->domain, space);
  701 	sc->domain = isl_union_set_align_params(sc->domain, space);
  702 	if (!sc->context || !sc->domain)
  702 	if (!sc->context || !sc->domain)
  703 		return isl_schedule_constraints_free(sc);
  705 	return sc;