[ZoneAlgo] Fix PHI inconsistency in invalid contexts.
[polly-mirror.git] / lib / Support / ISLTools.cpp
blob08bb0529424cf60140b0cbf5a9b0aba558b269a8
1 //===------ ISLTools.cpp ----------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Tools, utilities, helpers and extensions useful in conjunction with the
10 // Integer Set Library (isl).
12 //===----------------------------------------------------------------------===//
14 #include "polly/Support/ISLTools.h"
15 #include "llvm/Support/raw_ostream.h"
16 #include <cassert>
17 #include <vector>
19 using namespace polly;
21 namespace {
22 /// Create a map that shifts one dimension by an offset.
23 ///
24 /// Example:
25 /// makeShiftDimAff({ [i0, i1] -> [o0, o1] }, 1, -2)
26 /// = { [i0, i1] -> [i0, i1 - 1] }
27 ///
28 /// @param Space The map space of the result. Must have equal number of in- and
29 /// out-dimensions.
30 /// @param Pos Position to shift.
31 /// @param Amount Value added to the shifted dimension.
32 ///
33 /// @return An isl_multi_aff for the map with this shifted dimension.
34 isl::multi_aff makeShiftDimAff(isl::space Space, int Pos, int Amount) {
35 auto Identity = isl::multi_aff::identity(Space);
36 if (Amount == 0)
37 return Identity;
38 auto ShiftAff = Identity.get_aff(Pos);
39 ShiftAff = ShiftAff.set_constant_si(Amount);
40 return Identity.set_aff(Pos, ShiftAff);
43 /// Construct a map that swaps two nested tuples.
44 ///
45 /// @param FromSpace1 { Space1[] }
46 /// @param FromSpace2 { Space2[] }
47 ///
48 /// @return { [Space1[] -> Space2[]] -> [Space2[] -> Space1[]] }
49 isl::basic_map makeTupleSwapBasicMap(isl::space FromSpace1,
50 isl::space FromSpace2) {
51 // Fast-path on out-of-quota.
52 if (!FromSpace1 || !FromSpace2)
53 return {};
55 assert(FromSpace1.is_set());
56 assert(FromSpace2.is_set());
58 unsigned Dims1 = FromSpace1.dim(isl::dim::set);
59 unsigned Dims2 = FromSpace2.dim(isl::dim::set);
61 isl::space FromSpace =
62 FromSpace1.map_from_domain_and_range(FromSpace2).wrap();
63 isl::space ToSpace = FromSpace2.map_from_domain_and_range(FromSpace1).wrap();
64 isl::space MapSpace = FromSpace.map_from_domain_and_range(ToSpace);
66 isl::basic_map Result = isl::basic_map::universe(MapSpace);
67 for (auto i = Dims1 - Dims1; i < Dims1; i += 1)
68 Result = Result.equate(isl::dim::in, i, isl::dim::out, Dims2 + i);
69 for (auto i = Dims2 - Dims2; i < Dims2; i += 1) {
70 Result = Result.equate(isl::dim::in, Dims1 + i, isl::dim::out, i);
73 return Result;
76 /// Like makeTupleSwapBasicMap(isl::space,isl::space), but returns
77 /// an isl_map.
78 isl::map makeTupleSwapMap(isl::space FromSpace1, isl::space FromSpace2) {
79 isl::basic_map BMapResult = makeTupleSwapBasicMap(FromSpace1, FromSpace2);
80 return isl::map(BMapResult);
82 } // anonymous namespace
84 isl::map polly::beforeScatter(isl::map Map, bool Strict) {
85 isl::space RangeSpace = Map.get_space().range();
86 isl::map ScatterRel =
87 Strict ? isl::map::lex_gt(RangeSpace) : isl::map::lex_ge(RangeSpace);
88 return Map.apply_range(ScatterRel);
91 isl::union_map polly::beforeScatter(isl::union_map UMap, bool Strict) {
92 isl::union_map Result = isl::union_map::empty(UMap.get_space());
94 for (isl::map Map : UMap.get_map_list()) {
95 isl::map After = beforeScatter(Map, Strict);
96 Result = Result.add_map(After);
99 return Result;
102 isl::map polly::afterScatter(isl::map Map, bool Strict) {
103 isl::space RangeSpace = Map.get_space().range();
104 isl::map ScatterRel =
105 Strict ? isl::map::lex_lt(RangeSpace) : isl::map::lex_le(RangeSpace);
106 return Map.apply_range(ScatterRel);
109 isl::union_map polly::afterScatter(const isl::union_map &UMap, bool Strict) {
110 isl::union_map Result = isl::union_map::empty(UMap.get_space());
111 for (isl::map Map : UMap.get_map_list()) {
112 isl::map After = afterScatter(Map, Strict);
113 Result = Result.add_map(After);
115 return Result;
118 isl::map polly::betweenScatter(isl::map From, isl::map To, bool InclFrom,
119 bool InclTo) {
120 isl::map AfterFrom = afterScatter(From, !InclFrom);
121 isl::map BeforeTo = beforeScatter(To, !InclTo);
123 return AfterFrom.intersect(BeforeTo);
126 isl::union_map polly::betweenScatter(isl::union_map From, isl::union_map To,
127 bool InclFrom, bool InclTo) {
128 isl::union_map AfterFrom = afterScatter(From, !InclFrom);
129 isl::union_map BeforeTo = beforeScatter(To, !InclTo);
131 return AfterFrom.intersect(BeforeTo);
134 isl::map polly::singleton(isl::union_map UMap, isl::space ExpectedSpace) {
135 if (!UMap)
136 return nullptr;
138 if (isl_union_map_n_map(UMap.get()) == 0)
139 return isl::map::empty(ExpectedSpace);
141 isl::map Result = isl::map::from_union_map(UMap);
142 assert(!Result || Result.get_space().has_equal_tuples(ExpectedSpace));
144 return Result;
147 isl::set polly::singleton(isl::union_set USet, isl::space ExpectedSpace) {
148 if (!USet)
149 return nullptr;
151 if (isl_union_set_n_set(USet.get()) == 0)
152 return isl::set::empty(ExpectedSpace);
154 isl::set Result(USet);
155 assert(!Result || Result.get_space().has_equal_tuples(ExpectedSpace));
157 return Result;
160 unsigned polly::getNumScatterDims(const isl::union_map &Schedule) {
161 unsigned Dims = 0;
162 for (isl::map Map : Schedule.get_map_list())
163 Dims = std::max(Dims, Map.dim(isl::dim::out));
164 return Dims;
167 isl::space polly::getScatterSpace(const isl::union_map &Schedule) {
168 if (!Schedule)
169 return nullptr;
170 unsigned Dims = getNumScatterDims(Schedule);
171 isl::space ScatterSpace = Schedule.get_space().set_from_params();
172 return ScatterSpace.add_dims(isl::dim::set, Dims);
175 isl::union_map polly::makeIdentityMap(const isl::union_set &USet,
176 bool RestrictDomain) {
177 isl::union_map Result = isl::union_map::empty(USet.get_space());
178 for (isl::set Set : USet.get_set_list()) {
179 isl::map IdentityMap = isl::map::identity(Set.get_space().map_from_set());
180 if (RestrictDomain)
181 IdentityMap = IdentityMap.intersect_domain(Set);
182 Result = Result.add_map(IdentityMap);
184 return Result;
187 isl::map polly::reverseDomain(isl::map Map) {
188 isl::space DomSpace = Map.get_space().domain().unwrap();
189 isl::space Space1 = DomSpace.domain();
190 isl::space Space2 = DomSpace.range();
191 isl::map Swap = makeTupleSwapMap(Space1, Space2);
192 return Map.apply_domain(Swap);
195 isl::union_map polly::reverseDomain(const isl::union_map &UMap) {
196 isl::union_map Result = isl::union_map::empty(UMap.get_space());
197 for (isl::map Map : UMap.get_map_list()) {
198 auto Reversed = reverseDomain(std::move(Map));
199 Result = Result.add_map(Reversed);
201 return Result;
204 isl::set polly::shiftDim(isl::set Set, int Pos, int Amount) {
205 int NumDims = Set.dim(isl::dim::set);
206 if (Pos < 0)
207 Pos = NumDims + Pos;
208 assert(Pos < NumDims && "Dimension index must be in range");
209 isl::space Space = Set.get_space();
210 Space = Space.map_from_domain_and_range(Space);
211 isl::multi_aff Translator = makeShiftDimAff(Space, Pos, Amount);
212 isl::map TranslatorMap = isl::map::from_multi_aff(Translator);
213 return Set.apply(TranslatorMap);
216 isl::union_set polly::shiftDim(isl::union_set USet, int Pos, int Amount) {
217 isl::union_set Result = isl::union_set::empty(USet.get_space());
218 for (isl::set Set : USet.get_set_list()) {
219 isl::set Shifted = shiftDim(Set, Pos, Amount);
220 Result = Result.add_set(Shifted);
222 return Result;
225 isl::map polly::shiftDim(isl::map Map, isl::dim Dim, int Pos, int Amount) {
226 int NumDims = Map.dim(Dim);
227 if (Pos < 0)
228 Pos = NumDims + Pos;
229 assert(Pos < NumDims && "Dimension index must be in range");
230 isl::space Space = Map.get_space();
231 switch (Dim) {
232 case isl::dim::in:
233 Space = Space.domain();
234 break;
235 case isl::dim::out:
236 Space = Space.range();
237 break;
238 default:
239 llvm_unreachable("Unsupported value for 'dim'");
241 Space = Space.map_from_domain_and_range(Space);
242 isl::multi_aff Translator = makeShiftDimAff(Space, Pos, Amount);
243 isl::map TranslatorMap = isl::map::from_multi_aff(Translator);
244 switch (Dim) {
245 case isl::dim::in:
246 return Map.apply_domain(TranslatorMap);
247 case isl::dim::out:
248 return Map.apply_range(TranslatorMap);
249 default:
250 llvm_unreachable("Unsupported value for 'dim'");
254 isl::union_map polly::shiftDim(isl::union_map UMap, isl::dim Dim, int Pos,
255 int Amount) {
256 isl::union_map Result = isl::union_map::empty(UMap.get_space());
258 for (isl::map Map : UMap.get_map_list()) {
259 isl::map Shifted = shiftDim(Map, Dim, Pos, Amount);
260 Result = Result.add_map(Shifted);
262 return Result;
265 void polly::simplify(isl::set &Set) {
266 Set = isl::manage(isl_set_compute_divs(Set.copy()));
267 Set = Set.detect_equalities();
268 Set = Set.coalesce();
271 void polly::simplify(isl::union_set &USet) {
272 USet = isl::manage(isl_union_set_compute_divs(USet.copy()));
273 USet = USet.detect_equalities();
274 USet = USet.coalesce();
277 void polly::simplify(isl::map &Map) {
278 Map = isl::manage(isl_map_compute_divs(Map.copy()));
279 Map = Map.detect_equalities();
280 Map = Map.coalesce();
283 void polly::simplify(isl::union_map &UMap) {
284 UMap = isl::manage(isl_union_map_compute_divs(UMap.copy()));
285 UMap = UMap.detect_equalities();
286 UMap = UMap.coalesce();
289 isl::union_map polly::computeReachingWrite(isl::union_map Schedule,
290 isl::union_map Writes, bool Reverse,
291 bool InclPrevDef, bool InclNextDef) {
293 // { Scatter[] }
294 isl::space ScatterSpace = getScatterSpace(Schedule);
296 // { ScatterRead[] -> ScatterWrite[] }
297 isl::map Relation;
298 if (Reverse)
299 Relation = InclPrevDef ? isl::map::lex_lt(ScatterSpace)
300 : isl::map::lex_le(ScatterSpace);
301 else
302 Relation = InclNextDef ? isl::map::lex_gt(ScatterSpace)
303 : isl::map::lex_ge(ScatterSpace);
305 // { ScatterWrite[] -> [ScatterRead[] -> ScatterWrite[]] }
306 isl::map RelationMap = Relation.range_map().reverse();
308 // { Element[] -> ScatterWrite[] }
309 isl::union_map WriteAction = Schedule.apply_domain(Writes);
311 // { ScatterWrite[] -> Element[] }
312 isl::union_map WriteActionRev = WriteAction.reverse();
314 // { Element[] -> [ScatterUse[] -> ScatterWrite[]] }
315 isl::union_map DefSchedRelation =
316 isl::union_map(RelationMap).apply_domain(WriteActionRev);
318 // For each element, at every point in time, map to the times of previous
319 // definitions. { [Element[] -> ScatterRead[]] -> ScatterWrite[] }
320 isl::union_map ReachableWrites = DefSchedRelation.uncurry();
321 if (Reverse)
322 ReachableWrites = ReachableWrites.lexmin();
323 else
324 ReachableWrites = ReachableWrites.lexmax();
326 // { [Element[] -> ScatterWrite[]] -> ScatterWrite[] }
327 isl::union_map SelfUse = WriteAction.range_map();
329 if (InclPrevDef && InclNextDef) {
330 // Add the Def itself to the solution.
331 ReachableWrites = ReachableWrites.unite(SelfUse).coalesce();
332 } else if (!InclPrevDef && !InclNextDef) {
333 // Remove Def itself from the solution.
334 ReachableWrites = ReachableWrites.subtract(SelfUse);
337 // { [Element[] -> ScatterRead[]] -> Domain[] }
338 return ReachableWrites.apply_range(Schedule.reverse());
341 isl::union_map
342 polly::computeArrayUnused(isl::union_map Schedule, isl::union_map Writes,
343 isl::union_map Reads, bool ReadEltInSameInst,
344 bool IncludeLastRead, bool IncludeWrite) {
345 // { Element[] -> Scatter[] }
346 isl::union_map ReadActions = Schedule.apply_domain(Reads);
347 isl::union_map WriteActions = Schedule.apply_domain(Writes);
349 // { [Element[] -> DomainWrite[]] -> Scatter[] }
350 isl::union_map EltDomWrites =
351 Writes.reverse().range_map().apply_range(Schedule);
353 // { [Element[] -> Scatter[]] -> DomainWrite[] }
354 isl::union_map ReachingOverwrite = computeReachingWrite(
355 Schedule, Writes, true, ReadEltInSameInst, !ReadEltInSameInst);
357 // { [Element[] -> Scatter[]] -> DomainWrite[] }
358 isl::union_map ReadsOverwritten =
359 ReachingOverwrite.intersect_domain(ReadActions.wrap());
361 // { [Element[] -> DomainWrite[]] -> Scatter[] }
362 isl::union_map ReadsOverwrittenRotated =
363 reverseDomain(ReadsOverwritten).curry().reverse();
364 isl::union_map LastOverwrittenRead = ReadsOverwrittenRotated.lexmax();
366 // { [Element[] -> DomainWrite[]] -> Scatter[] }
367 isl::union_map BetweenLastReadOverwrite = betweenScatter(
368 LastOverwrittenRead, EltDomWrites, IncludeLastRead, IncludeWrite);
370 // { [Element[] -> Scatter[]] -> DomainWrite[] }
371 isl::union_map ReachingOverwriteZone = computeReachingWrite(
372 Schedule, Writes, true, IncludeLastRead, IncludeWrite);
374 // { [Element[] -> DomainWrite[]] -> Scatter[] }
375 isl::union_map ReachingOverwriteRotated =
376 reverseDomain(ReachingOverwriteZone).curry().reverse();
378 // { [Element[] -> DomainWrite[]] -> Scatter[] }
379 isl::union_map WritesWithoutReads = ReachingOverwriteRotated.subtract_domain(
380 ReadsOverwrittenRotated.domain());
382 return BetweenLastReadOverwrite.unite(WritesWithoutReads)
383 .domain_factor_domain();
386 isl::union_set polly::convertZoneToTimepoints(isl::union_set Zone,
387 bool InclStart, bool InclEnd) {
388 if (!InclStart && InclEnd)
389 return Zone;
391 auto ShiftedZone = shiftDim(Zone, -1, -1);
392 if (InclStart && !InclEnd)
393 return ShiftedZone;
394 else if (!InclStart && !InclEnd)
395 return Zone.intersect(ShiftedZone);
397 assert(InclStart && InclEnd);
398 return Zone.unite(ShiftedZone);
401 isl::union_map polly::convertZoneToTimepoints(isl::union_map Zone, isl::dim Dim,
402 bool InclStart, bool InclEnd) {
403 if (!InclStart && InclEnd)
404 return Zone;
406 auto ShiftedZone = shiftDim(Zone, Dim, -1, -1);
407 if (InclStart && !InclEnd)
408 return ShiftedZone;
409 else if (!InclStart && !InclEnd)
410 return Zone.intersect(ShiftedZone);
412 assert(InclStart && InclEnd);
413 return Zone.unite(ShiftedZone);
416 isl::map polly::convertZoneToTimepoints(isl::map Zone, isl::dim Dim,
417 bool InclStart, bool InclEnd) {
418 if (!InclStart && InclEnd)
419 return Zone;
421 auto ShiftedZone = shiftDim(Zone, Dim, -1, -1);
422 if (InclStart && !InclEnd)
423 return ShiftedZone;
424 else if (!InclStart && !InclEnd)
425 return Zone.intersect(ShiftedZone);
427 assert(InclStart && InclEnd);
428 return Zone.unite(ShiftedZone);
431 isl::map polly::distributeDomain(isl::map Map) {
432 // Note that we cannot take Map apart into { Domain[] -> Range1[] } and {
433 // Domain[] -> Range2[] } and combine again. We would loose any relation
434 // between Range1[] and Range2[] that is not also a constraint to Domain[].
436 isl::space Space = Map.get_space();
437 isl::space DomainSpace = Space.domain();
438 unsigned DomainDims = DomainSpace.dim(isl::dim::set);
439 isl::space RangeSpace = Space.range().unwrap();
440 isl::space Range1Space = RangeSpace.domain();
441 unsigned Range1Dims = Range1Space.dim(isl::dim::set);
442 isl::space Range2Space = RangeSpace.range();
443 unsigned Range2Dims = Range2Space.dim(isl::dim::set);
445 isl::space OutputSpace =
446 DomainSpace.map_from_domain_and_range(Range1Space)
447 .wrap()
448 .map_from_domain_and_range(
449 DomainSpace.map_from_domain_and_range(Range2Space).wrap());
451 isl::basic_map Translator = isl::basic_map::universe(
452 Space.wrap().map_from_domain_and_range(OutputSpace.wrap()));
454 for (unsigned i = 0; i < DomainDims; i += 1) {
455 Translator = Translator.equate(isl::dim::in, i, isl::dim::out, i);
456 Translator = Translator.equate(isl::dim::in, i, isl::dim::out,
457 DomainDims + Range1Dims + i);
459 for (unsigned i = 0; i < Range1Dims; i += 1)
460 Translator = Translator.equate(isl::dim::in, DomainDims + i, isl::dim::out,
461 DomainDims + i);
462 for (unsigned i = 0; i < Range2Dims; i += 1)
463 Translator = Translator.equate(isl::dim::in, DomainDims + Range1Dims + i,
464 isl::dim::out,
465 DomainDims + Range1Dims + DomainDims + i);
467 return Map.wrap().apply(Translator).unwrap();
470 isl::union_map polly::distributeDomain(isl::union_map UMap) {
471 isl::union_map Result = isl::union_map::empty(UMap.get_space());
472 for (isl::map Map : UMap.get_map_list()) {
473 auto Distributed = distributeDomain(Map);
474 Result = Result.add_map(Distributed);
476 return Result;
479 isl::union_map polly::liftDomains(isl::union_map UMap, isl::union_set Factor) {
481 // { Factor[] -> Factor[] }
482 isl::union_map Factors = makeIdentityMap(Factor, true);
484 return Factors.product(UMap);
487 isl::union_map polly::applyDomainRange(isl::union_map UMap,
488 isl::union_map Func) {
489 // This implementation creates unnecessary cross products of the
490 // DomainDomain[] and Func. An alternative implementation could reverse
491 // domain+uncurry,apply Func to what now is the domain, then undo the
492 // preparing transformation. Another alternative implementation could create a
493 // translator map for each piece.
495 // { DomainDomain[] }
496 isl::union_set DomainDomain = UMap.domain().unwrap().domain();
498 // { [DomainDomain[] -> DomainRange[]] -> [DomainDomain[] -> NewDomainRange[]]
499 // }
500 isl::union_map LifetedFunc = liftDomains(std::move(Func), DomainDomain);
502 return UMap.apply_domain(LifetedFunc);
505 isl::map polly::intersectRange(isl::map Map, isl::union_set Range) {
506 isl::set RangeSet = Range.extract_set(Map.get_space().range());
507 return Map.intersect_range(RangeSet);
510 isl::map polly::subtractParams(isl::map Map, isl::set Params) {
511 auto MapSpace = Map.get_space();
512 auto ParamsMap = isl::map::universe(MapSpace).intersect_params(Params);
513 return Map.subtract(ParamsMap);
516 isl::val polly::getConstant(isl::pw_aff PwAff, bool Max, bool Min) {
517 assert(!Max || !Min); // Cannot return min and max at the same time.
518 isl::val Result;
519 isl::stat Stat = PwAff.foreach_piece(
520 [=, &Result](isl::set Set, isl::aff Aff) -> isl::stat {
521 if (Result && Result.is_nan())
522 return isl::stat::ok();
524 // TODO: If Min/Max, we can also determine a minimum/maximum value if
525 // Set is constant-bounded.
526 if (!Aff.is_cst()) {
527 Result = isl::val::nan(Aff.get_ctx());
528 return isl::stat::error();
531 isl::val ThisVal = Aff.get_constant_val();
532 if (!Result) {
533 Result = ThisVal;
534 return isl::stat::ok();
537 if (Result.eq(ThisVal))
538 return isl::stat::ok();
540 if (Max && ThisVal.gt(Result)) {
541 Result = ThisVal;
542 return isl::stat::ok();
545 if (Min && ThisVal.lt(Result)) {
546 Result = ThisVal;
547 return isl::stat::ok();
550 // Not compatible
551 Result = isl::val::nan(Aff.get_ctx());
552 return isl::stat::error();
555 if (Stat.is_error())
556 return {};
558 return Result;
561 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
562 static void foreachPoint(const isl::set &Set,
563 const std::function<void(isl::point P)> &F) {
564 Set.foreach_point([&](isl::point P) -> isl::stat {
565 F(P);
566 return isl::stat::ok();
570 static void foreachPoint(isl::basic_set BSet,
571 const std::function<void(isl::point P)> &F) {
572 foreachPoint(isl::set(BSet), F);
575 /// Determine the sorting order of the sets @p A and @p B without considering
576 /// the space structure.
578 /// Ordering is based on the lower bounds of the set's dimensions. First
579 /// dimensions are considered first.
580 static int flatCompare(const isl::basic_set &A, const isl::basic_set &B) {
581 unsigned ALen = A.dim(isl::dim::set);
582 unsigned BLen = B.dim(isl::dim::set);
583 unsigned Len = std::min(ALen, BLen);
585 for (unsigned i = 0; i < Len; i += 1) {
586 isl::basic_set ADim =
587 A.project_out(isl::dim::param, 0, A.dim(isl::dim::param))
588 .project_out(isl::dim::set, i + 1, ALen - i - 1)
589 .project_out(isl::dim::set, 0, i);
590 isl::basic_set BDim =
591 B.project_out(isl::dim::param, 0, B.dim(isl::dim::param))
592 .project_out(isl::dim::set, i + 1, BLen - i - 1)
593 .project_out(isl::dim::set, 0, i);
595 isl::basic_set AHull = isl::set(ADim).convex_hull();
596 isl::basic_set BHull = isl::set(BDim).convex_hull();
598 bool ALowerBounded =
599 bool(isl::set(AHull).dim_has_any_lower_bound(isl::dim::set, 0));
600 bool BLowerBounded =
601 bool(isl::set(BHull).dim_has_any_lower_bound(isl::dim::set, 0));
603 int BoundedCompare = BLowerBounded - ALowerBounded;
604 if (BoundedCompare != 0)
605 return BoundedCompare;
607 if (!ALowerBounded || !BLowerBounded)
608 continue;
610 isl::pw_aff AMin = isl::set(ADim).dim_min(0);
611 isl::pw_aff BMin = isl::set(BDim).dim_min(0);
613 isl::val AMinVal = polly::getConstant(AMin, false, true);
614 isl::val BMinVal = polly::getConstant(BMin, false, true);
616 int MinCompare = AMinVal.sub(BMinVal).sgn();
617 if (MinCompare != 0)
618 return MinCompare;
621 // If all the dimensions' lower bounds are equal or incomparable, sort based
622 // on the number of dimensions.
623 return ALen - BLen;
626 /// Compare the sets @p A and @p B according to their nested space structure.
627 /// Returns 0 if the structure is considered equal.
628 /// If @p ConsiderTupleLen is false, the number of dimensions in a tuple are
629 /// ignored, i.e. a tuple with the same name but different number of dimensions
630 /// are considered equal.
631 static int structureCompare(const isl::space &ASpace, const isl::space &BSpace,
632 bool ConsiderTupleLen) {
633 int WrappingCompare = bool(ASpace.is_wrapping()) - bool(BSpace.is_wrapping());
634 if (WrappingCompare != 0)
635 return WrappingCompare;
637 if (ASpace.is_wrapping() && BSpace.is_wrapping()) {
638 isl::space AMap = ASpace.unwrap();
639 isl::space BMap = BSpace.unwrap();
641 int FirstResult =
642 structureCompare(AMap.domain(), BMap.domain(), ConsiderTupleLen);
643 if (FirstResult != 0)
644 return FirstResult;
646 return structureCompare(AMap.range(), BMap.range(), ConsiderTupleLen);
649 std::string AName;
650 if (ASpace.has_tuple_name(isl::dim::set))
651 AName = ASpace.get_tuple_name(isl::dim::set);
653 std::string BName;
654 if (BSpace.has_tuple_name(isl::dim::set))
655 BName = BSpace.get_tuple_name(isl::dim::set);
657 int NameCompare = AName.compare(BName);
658 if (NameCompare != 0)
659 return NameCompare;
661 if (ConsiderTupleLen) {
662 int LenCompare = BSpace.dim(isl::dim::set) - ASpace.dim(isl::dim::set);
663 if (LenCompare != 0)
664 return LenCompare;
667 return 0;
670 /// Compare the sets @p A and @p B according to their nested space structure. If
671 /// the structure is the same, sort using the dimension lower bounds.
672 /// Returns an std::sort compatible bool.
673 static bool orderComparer(const isl::basic_set &A, const isl::basic_set &B) {
674 isl::space ASpace = A.get_space();
675 isl::space BSpace = B.get_space();
677 // Ignoring number of dimensions first ensures that structures with same tuple
678 // names, but different number of dimensions are still sorted close together.
679 int TupleNestingCompare = structureCompare(ASpace, BSpace, false);
680 if (TupleNestingCompare != 0)
681 return TupleNestingCompare < 0;
683 int TupleCompare = structureCompare(ASpace, BSpace, true);
684 if (TupleCompare != 0)
685 return TupleCompare < 0;
687 return flatCompare(A, B) < 0;
690 /// Print a string representation of @p USet to @p OS.
692 /// The pieces of @p USet are printed in a sorted order. Spaces with equal or
693 /// similar nesting structure are printed together. Compared to isl's own
694 /// printing function the uses the structure itself as base of the sorting, not
695 /// a hash of it. It ensures that e.g. maps spaces with same domain structure
696 /// are printed together. Set pieces with same structure are printed in order of
697 /// their lower bounds.
699 /// @param USet Polyhedra to print.
700 /// @param OS Target stream.
701 /// @param Simplify Whether to simplify the polyhedron before printing.
702 /// @param IsMap Whether @p USet is a wrapped map. If true, sets are
703 /// unwrapped before printing to again appear as a map.
704 static void printSortedPolyhedra(isl::union_set USet, llvm::raw_ostream &OS,
705 bool Simplify, bool IsMap) {
706 if (!USet) {
707 OS << "<null>\n";
708 return;
711 if (Simplify)
712 simplify(USet);
714 // Get all the polyhedra.
715 std::vector<isl::basic_set> BSets;
717 for (isl::set Set : USet.get_set_list()) {
718 for (isl::basic_set BSet : Set.get_basic_set_list()) {
719 BSets.push_back(BSet);
723 if (BSets.empty()) {
724 OS << "{\n}\n";
725 return;
728 // Sort the polyhedra.
729 llvm::sort(BSets, orderComparer);
731 // Print the polyhedra.
732 bool First = true;
733 for (const isl::basic_set &BSet : BSets) {
734 std::string Str;
735 if (IsMap)
736 Str = isl::map(BSet.unwrap()).to_str();
737 else
738 Str = isl::set(BSet).to_str();
739 size_t OpenPos = Str.find_first_of('{');
740 assert(OpenPos != std::string::npos);
741 size_t ClosePos = Str.find_last_of('}');
742 assert(ClosePos != std::string::npos);
744 if (First)
745 OS << llvm::StringRef(Str).substr(0, OpenPos + 1) << "\n ";
746 else
747 OS << ";\n ";
749 OS << llvm::StringRef(Str).substr(OpenPos + 1, ClosePos - OpenPos - 2);
750 First = false;
752 assert(!First);
753 OS << "\n}\n";
756 static void recursiveExpand(isl::basic_set BSet, int Dim, isl::set &Expanded) {
757 int Dims = BSet.dim(isl::dim::set);
758 if (Dim >= Dims) {
759 Expanded = Expanded.unite(BSet);
760 return;
763 isl::basic_set DimOnly =
764 BSet.project_out(isl::dim::param, 0, BSet.dim(isl::dim::param))
765 .project_out(isl::dim::set, Dim + 1, Dims - Dim - 1)
766 .project_out(isl::dim::set, 0, Dim);
767 if (!DimOnly.is_bounded()) {
768 recursiveExpand(BSet, Dim + 1, Expanded);
769 return;
772 foreachPoint(DimOnly, [&, Dim](isl::point P) {
773 isl::val Val = P.get_coordinate_val(isl::dim::set, 0);
774 isl::basic_set FixBSet = BSet.fix_val(isl::dim::set, Dim, Val);
775 recursiveExpand(FixBSet, Dim + 1, Expanded);
779 /// Make each point of a set explicit.
781 /// "Expanding" makes each point a set contains explicit. That is, the result is
782 /// a set of singleton polyhedra. Unbounded dimensions are not expanded.
784 /// Example:
785 /// { [i] : 0 <= i < 2 }
786 /// is expanded to:
787 /// { [0]; [1] }
788 static isl::set expand(const isl::set &Set) {
789 isl::set Expanded = isl::set::empty(Set.get_space());
790 for (isl::basic_set BSet : Set.get_basic_set_list())
791 recursiveExpand(BSet, 0, Expanded);
792 return Expanded;
795 /// Expand all points of a union set explicit.
797 /// @see expand(const isl::set)
798 static isl::union_set expand(const isl::union_set &USet) {
799 isl::union_set Expanded = isl::union_set::empty(USet.get_space());
800 for (isl::set Set : USet.get_set_list()) {
801 isl::set SetExpanded = expand(Set);
802 Expanded = Expanded.add_set(SetExpanded);
804 return Expanded;
807 LLVM_DUMP_METHOD void polly::dumpPw(const isl::set &Set) {
808 printSortedPolyhedra(Set, llvm::errs(), true, false);
811 LLVM_DUMP_METHOD void polly::dumpPw(const isl::map &Map) {
812 printSortedPolyhedra(Map.wrap(), llvm::errs(), true, true);
815 LLVM_DUMP_METHOD void polly::dumpPw(const isl::union_set &USet) {
816 printSortedPolyhedra(USet, llvm::errs(), true, false);
819 LLVM_DUMP_METHOD void polly::dumpPw(const isl::union_map &UMap) {
820 printSortedPolyhedra(UMap.wrap(), llvm::errs(), true, true);
823 LLVM_DUMP_METHOD void polly::dumpPw(__isl_keep isl_set *Set) {
824 dumpPw(isl::manage_copy(Set));
827 LLVM_DUMP_METHOD void polly::dumpPw(__isl_keep isl_map *Map) {
828 dumpPw(isl::manage_copy(Map));
831 LLVM_DUMP_METHOD void polly::dumpPw(__isl_keep isl_union_set *USet) {
832 dumpPw(isl::manage_copy(USet));
835 LLVM_DUMP_METHOD void polly::dumpPw(__isl_keep isl_union_map *UMap) {
836 dumpPw(isl::manage_copy(UMap));
839 LLVM_DUMP_METHOD void polly::dumpExpanded(const isl::set &Set) {
840 printSortedPolyhedra(expand(Set), llvm::errs(), false, false);
843 LLVM_DUMP_METHOD void polly::dumpExpanded(const isl::map &Map) {
844 printSortedPolyhedra(expand(Map.wrap()), llvm::errs(), false, true);
847 LLVM_DUMP_METHOD void polly::dumpExpanded(const isl::union_set &USet) {
848 printSortedPolyhedra(expand(USet), llvm::errs(), false, false);
851 LLVM_DUMP_METHOD void polly::dumpExpanded(const isl::union_map &UMap) {
852 printSortedPolyhedra(expand(UMap.wrap()), llvm::errs(), false, true);
855 LLVM_DUMP_METHOD void polly::dumpExpanded(__isl_keep isl_set *Set) {
856 dumpExpanded(isl::manage_copy(Set));
859 LLVM_DUMP_METHOD void polly::dumpExpanded(__isl_keep isl_map *Map) {
860 dumpExpanded(isl::manage_copy(Map));
863 LLVM_DUMP_METHOD void polly::dumpExpanded(__isl_keep isl_union_set *USet) {
864 dumpExpanded(isl::manage_copy(USet));
867 LLVM_DUMP_METHOD void polly::dumpExpanded(__isl_keep isl_union_map *UMap) {
868 dumpExpanded(isl::manage_copy(UMap));
870 #endif