23#include "llvm/ADT/DenseMap.h"
24#include "llvm/ADT/STLExtras.h"
25#include "llvm/ADT/Sequence.h"
26#include "llvm/ADT/SmallBitVector.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/DebugLog.h"
29#include "llvm/Support/raw_ostream.h"
38#define DEBUG_TYPE "presburger"
43using llvm::SmallDenseMap;
46 return std::make_unique<IntegerRelation>(*
this);
50 return std::make_unique<IntegerPolyhedron>(*
this);
59 assert(oSpace.
getNumLocalVars() == 0 &&
"no locals should be present!");
67 assert(
space.isUsingIds() &&
68 "space must be using identifiers to set an identifier");
69 assert(kind !=
VarKind::Local &&
"local variables cannot have identifiers");
70 assert(i <
space.getNumVarKind(kind) &&
"invalid variable index");
71 space.setId(kind, i,
id);
75 if (!
space.isUsingIds())
77 return space.getIds(kind);
81 assert(
space.isEqual(other.
getSpace()) &&
"Spaces must be equal.");
97 result.mergeLocalVars(other);
103 assert(
space.isCompatible(other.
getSpace()) &&
"Spaces must be compatible.");
117 for (
unsigned j = 0;
j < cols; ++
j) {
123 for (
unsigned j = 0;
j < cols; ++
j) {
132 assert(
space.isCompatible(other.
getSpace()) &&
"Spaces must be compatible.");
151 "Incorrect number of vars in lexMin!");
171 "Incorrect number of vars in lexMin!");
177 return llvm::all_of(range, [](
const DynamicAPInt &x) {
return x == 0; });
181 unsigned begin,
unsigned count) {
200 assert(num <= curNum &&
"Can't truncate to more vars!");
229 copy.getLocalReprs(&reprs);
233 unsigned numNonDivLocals = 0;
235 for (
unsigned i = 0, e =
copy.getNumLocalVars(); i < e - numNonDivLocals;) {
240 copy.swapVar(offset + i, offset + e - numNonDivLocals - 1);
241 std::swap(reprs[i], reprs[e - numNonDivLocals - 1]);
249 if (numNonDivLocals == 0)
266 copy.getNumVars() - numNonDivLocals)))
283 llvm::SmallBitVector isSymbol(
getNumVars(),
false);
302 result.lexopt.getNumOutputs());
327 symbolicIntegerLexMax(
330 for (
auto &flippedPiece :
332 IntMatrix mat = flippedPiece.output.getOutputMatrix();
333 for (
unsigned i = 0, e = mat.
getNumRows(); i < e; i++)
337 symbolicIntegerLexMax.lexopt.addPiece(piece);
339 symbolicIntegerLexMax.unboundedDomain =
341 return symbolicIntegerLexMax;
352 unsigned insertPos =
space.insertVar(kind, pos, num);
366 for (
unsigned i = 0, e = eq.size(); i < e; ++i)
373 for (
unsigned i = 0, e = inEq.size(); i < e; ++i)
387 if (varStart >= varLimit)
392 equalities.removeColumns(offset + varStart, varLimit - varStart);
393 inequalities.removeColumns(offset + varStart, varLimit - varStart);
396 space.removeVarRange(kind, varStart, varLimit);
402 if (varStart >= varLimit)
408 auto removeVarKindInRange = [
this](
VarKind kind,
unsigned &start,
417 unsigned relativeStart =
418 start <= offset ? 0 : std::min(num, start - offset);
419 unsigned relativeLimit =
420 limit <= offset ? 0 : std::min(num, limit - offset);
428 limit -= relativeLimit - relativeStart;
458 assert(posA <
getNumVars() &&
"invalid position A");
459 assert(posB <
getNumVars() &&
"invalid position B");
468 space.swapVar(kindA, kindB, relativePosA, relativePosB);
485 unsigned offset,
unsigned num)
const {
486 assert(pos <
getNumVars() &&
"invalid position");
487 assert(offset + num <
getNumCols() &&
"invalid range");
491 auto containsConstraintDependentOnRange = [&](
unsigned r,
bool isEq) {
494 for (c = offset, f = offset + num; c < f; ++c) {
508 if (containsConstraintDependentOnRange(r,
false))
510 if (
atIneq(r, pos) >= 1) {
512 lbIndices->emplace_back(r);
513 }
else if (
atIneq(r, pos) <= -1) {
515 ubIndices->emplace_back(r);
525 if (
atEq(r, pos) == 0)
527 if (containsConstraintDependentOnRange(r,
true))
529 eqIndices->emplace_back(r);
546 "invalid position or too many values");
551 for (
unsigned i = 0, numVals = values.size(); i < numVals; ++i)
552 inequalities.addToColumn(i + pos, constantColPos, values[i]);
553 for (
unsigned i = 0, numVals = values.size(); i < numVals; ++i)
554 equalities.addToColumn(i + pos, constantColPos, values[i]);
562std::optional<unsigned>
564 assert(colIdx <
getNumCols() &&
"position out of bounds");
565 auto at = [&](
unsigned rowIdx) -> DynamicAPInt {
566 return isEq ?
atEq(rowIdx, colIdx) :
atIneq(rowIdx, colIdx);
569 for (
unsigned rowIdx = 0; rowIdx < e; ++rowIdx) {
585 auto check = [&](
bool isEq) ->
bool {
588 for (
unsigned i = 0, e = numRows; i < e; ++i) {
590 for (
j = 0;
j < numCols - 1; ++
j) {
596 if (
j < numCols - 1) {
601 DynamicAPInt v = isEq ?
atEq(i, numCols - 1) :
atIneq(i, numCols - 1);
602 if ((isEq && v != 0) || (!isEq && v < 0)) {
617 unsigned rowIdx,
unsigned pivotRow,
618 unsigned pivotCol,
unsigned elimColStart,
621 if (isEq && rowIdx == pivotRow)
623 auto at = [&](
unsigned i,
unsigned j) -> DynamicAPInt {
624 return isEq ? constraints->
atEq(i,
j) : constraints->
atIneq(i,
j);
626 DynamicAPInt leadCoeff = at(rowIdx, pivotCol);
630 DynamicAPInt pivotCoeff = constraints->
atEq(pivotRow, pivotCol);
631 int sign = (leadCoeff * pivotCoeff > 0) ? -1 : 1;
632 DynamicAPInt lcm = llvm::lcm(pivotCoeff, leadCoeff);
633 DynamicAPInt pivotMultiplier = sign * (lcm /
abs(pivotCoeff));
634 DynamicAPInt rowMultiplier = lcm /
abs(leadCoeff);
637 for (
unsigned j = 0;
j < numCols; ++
j) {
639 if (
j >= elimColStart &&
j < pivotCol)
641 DynamicAPInt v = pivotMultiplier * constraints->
atEq(pivotRow,
j) +
642 rowMultiplier * at(rowIdx,
j);
643 isEq ? constraints->
atEq(rowIdx,
j) = v
644 : constraints->
atIneq(rowIdx,
j) = v;
654 unsigned start,
unsigned end) {
657 auto getProductOfNumLowerUpperBounds = [&](
unsigned pos) {
661 if (cst.
atIneq(r, pos) > 0) {
663 }
else if (cst.
atIneq(r, pos) < 0) {
667 return numLb * numUb;
670 unsigned minLoc = start;
671 unsigned min = getProductOfNumLowerUpperBounds(start);
672 for (
unsigned c = start + 1; c < end; c++) {
673 unsigned numLbUbProduct = getProductOfNumLowerUpperBounds(c);
674 if (numLbUbProduct <
min) {
675 min = numLbUbProduct;
698 unsigned currentPos = 0;
711 for (
unsigned i = 0, e = tmpCst.
getNumVars(); i < e; i++) {
720 LDBG() <<
"FM constraint explosion detected";
754 DynamicAPInt gcd =
abs(
atEq(i, 0));
755 for (
unsigned j = 1;
j < numCols - 1; ++
j) {
756 gcd = llvm::gcd(gcd,
abs(
atEq(i,
j)));
758 DynamicAPInt v =
abs(
atEq(i, numCols - 1));
759 if (gcd > 0 && (v % gcd != 0)) {
780 assert(!simplex.
isEmpty() &&
"It is not meaningful to ask whether a "
781 "direction is bounded in an empty set.");
788 boundedIneqs.emplace_back(i);
798 for (
unsigned i : boundedIneqs) {
799 for (
unsigned col = 0; col < dirsNumCols; ++col)
800 dirs(row, col) =
atIneq(i, col);
806 for (
unsigned col = 0; col < dirsNumCols; ++col)
807 dirs(row, col) =
atEq(i, col);
861std::optional<SmallVector<DynamicAPInt, 8>>
885 std::pair<unsigned, LinearTransform>
result =
894 unsigned numBoundedDims =
result.first;
895 unsigned numUnboundedDims =
getNumVars() - numBoundedDims;
901 std::optional<SmallVector<DynamicAPInt, 8>> boundedSample =
906 "Simplex returned an invalid sample!");
940 DynamicAPInt coeff = cone.
atIneq(i,
j);
950 Simplex shrunkenConeSimplex(cone);
951 assert(!shrunkenConeSimplex.
isEmpty() &&
"Shrunken cone cannot be empty!");
958 llvm::map_range(shrunkenConeSample,
ceil));
962 sample.append(coneSample.begin(), coneSample.end());
963 return transform.postMultiplyWithColumn(sample);
971 assert(expr.size() == 1 + point.size() &&
972 "Dimensionalities of point and expression don't match!");
973 DynamicAPInt value = expr.back();
974 for (
unsigned i = 0; i < point.size(); ++i)
975 value += expr[i] * point[i];
1002std::optional<SmallVector<DynamicAPInt, 8>>
1005 "Point should contain all vars except locals!");
1007 "This function depends on locals being stored last!");
1009 copy.setAndEliminate(0, point);
1010 return copy.findIntegerSample();
1017 foundRepr[i] =
true;
1027 if (!foundRepr[i + localOffset]) {
1037 foundRepr[localOffset + i] =
true;
1062 atIneq(i, numCols - 1) = floorDiv(
atIneq(i, numCols - 1), gcd);
1069 unsigned posLimit) {
1074 if (posStart >= posLimit)
1079 unsigned pivotCol = 0;
1080 for (pivotCol = posStart; pivotCol < posLimit; ++pivotCol) {
1082 std::optional<unsigned> pivotRow =
1109 posLimit = pivotCol;
1112 return posLimit - posStart;
1118 unsigned nowDone, eqs;
1119 std::optional<unsigned> pivotRow;
1122 for (; firstVar < vars; ++firstVar) {
1127 if (firstVar >= vars)
1131 if (*pivotRow > nowDone) {
1133 *pivotRow = nowDone;
1137 for (
unsigned i = nowDone + 1; i < eqs; ++i) {
1154 for (
unsigned i = nowDone; i < eqs; ++i) {
1155 if (
atEq(i, vars) == 0)
1212 for (
unsigned r = 0; r < numIneqs; r++) {
1238 return DynamicAPInt(0);
1254 DynamicAPInt count(1);
1256 bool hasUnboundedVar =
false;
1262 assert((!
min.isEmpty() && !
max.isEmpty()) &&
1263 "Polytope should be rationally non-empty!");
1267 if (
min.isUnbounded() ||
max.isUnbounded()) {
1268 hasUnboundedVar =
true;
1274 if (
min.getBoundedOptimum() >
max.getBoundedOptimum())
1275 return DynamicAPInt(0);
1277 count *= (*
max - *
min + 1);
1281 return DynamicAPInt(0);
1282 if (hasUnboundedVar)
1292 posA += localOffset;
1293 posB += localOffset;
1306 "both relations need to have identifers to merge and align");
1315 const Identifier *itr = std::find(findBegin, findEnd, identifier);
1316 if (itr != findEnd) {
1319 std::distance(findBegin, itr));
1354 auto merge = [&relA, &relB, oldALocals](
unsigned i,
unsigned j) ->
bool {
1383 auto merge = [
this](
unsigned i,
unsigned j) ->
bool {
1417 unsigned i, e,
j, f;
1436 if (
atEq(k,
j) != 0) {
1453 unsigned varLimit,
VarKind dstKind,
1455 assert(varLimit <=
getNumVarKind(srcKind) &&
"invalid id range");
1457 if (varStart >= varLimit)
1462 unsigned convertCount = varLimit - varStart;
1463 int forwardMoveOffset = dstOffset > srcOffset ? -convertCount : 0;
1465 equalities.moveColumns(srcOffset + varStart, convertCount,
1466 dstOffset + pos + forwardMoveOffset);
1467 inequalities.moveColumns(srcOffset + varStart, convertCount,
1468 dstOffset + pos + forwardMoveOffset);
1470 space.convertVarKind(srcKind, varStart, varLimit - varStart, dstKind, pos);
1474 const DynamicAPInt &value) {
1489 const DynamicAPInt &value) {
1493 for (
unsigned i = 0, e = expr.size(); i < e; ++i)
1506 const DynamicAPInt &divisor) {
1507 assert(dividend.size() ==
getNumCols() &&
"incorrect dividend size");
1508 assert(divisor > 0 &&
"positive divisor expected");
1513 dividendCopy.insert(dividendCopy.end() - 1, DynamicAPInt(0));
1522 const DynamicAPInt &modulus) {
1523 assert(exprs.size() ==
getNumCols() &&
"incorrect exprs size");
1524 assert(modulus > 0 &&
"positive modulus expected");
1536 exprsCopy.insert(exprsCopy.end() - 1,
1537 {DynamicAPInt(-modulus), DynamicAPInt(-1)});
1543 assert(pos <
getNumVars() &&
"invalid position");
1545 DynamicAPInt v =
atEq(r, pos);
1551 for (c = 0; c < f; c++) {
1554 if (
atEq(r, c) != 0) {
1567 assert(pos <
getNumVars() &&
"invalid position");
1573 assert(
atEq(rowIdx, pos) *
atEq(rowIdx, pos) == 1);
1580 for (
unsigned s = pos, t = pos, e = pos + num; s < e; s++) {
1603 unsigned *minLbPos,
unsigned *minUbPos)
const {
1604 assert(pos <
getNumDimVars() &&
"Invalid variable position");
1616 [](
const DynamicAPInt &coeff) { return coeff == 0; }))
1617 return std::nullopt;
1626 DynamicAPInt v =
atEq(eqPos, pos);
1633 (*ub)[c] = (*lb)[c];
1635 assert(boundFloorDivisor &&
1636 "both lb and divisor or none should be provided");
1637 *boundFloorDivisor = 1;
1643 return DynamicAPInt(1);
1654 return std::nullopt;
1667 std::optional<DynamicAPInt> minDiff;
1668 unsigned minLbPosition = 0, minUbPosition = 0;
1669 for (
auto ubPos : ubIndices) {
1670 for (
auto lbPos : lbIndices) {
1688 diff = std::max<DynamicAPInt>(diff, DynamicAPInt(0));
1689 if (minDiff == std::nullopt || diff < minDiff) {
1691 minLbPosition = lbPos;
1692 minUbPosition = ubPos;
1696 if (lb && minDiff) {
1705 *boundFloorDivisor =
atIneq(minLbPosition, pos);
1706 assert(*boundFloorDivisor == -
atIneq(minUbPosition, pos));
1721 *minLbPos = minLbPosition;
1723 *minUbPos = minUbPosition;
1727template <
bool isLower>
1728std::optional<DynamicAPInt>
1730 assert(pos <
getNumVars() &&
"invalid position");
1748 return std::nullopt;
1750 std::optional<DynamicAPInt> minOrMaxConst;
1759 }
else if (
atIneq(r, 0) >= 0) {
1764 for (c = 0, f =
getNumCols() - 1; c < f; c++)
1765 if (c != 0 &&
atIneq(r, c) != 0)
1771 DynamicAPInt boundConst =
1775 if (minOrMaxConst == std::nullopt || boundConst > minOrMaxConst)
1776 minOrMaxConst = boundConst;
1778 if (minOrMaxConst == std::nullopt || boundConst < minOrMaxConst)
1779 minOrMaxConst = boundConst;
1782 return minOrMaxConst;
1785std::optional<DynamicAPInt>
1789 .computeConstantLowerOrUpperBound<
true>(pos);
1792 .computeConstantLowerOrUpperBound<
false>(pos);
1795 std::optional<DynamicAPInt> lb =
1798 std::optional<DynamicAPInt>
ub =
1800 .computeConstantLowerOrUpperBound<
false>(pos);
1801 return (lb &&
ub && *lb == *
ub) ? std::optional<DynamicAPInt>(*
ub)
1811 for (
unsigned c = pos; c < pos + num; c++) {
1820 for (
unsigned c = pos; c < pos + num; c++) {
1821 if (
atEq(r, c) != 0)
1844 rowsWithoutConstTerm;
1847 auto isTriviallyValid = [&](
unsigned r) ->
bool {
1848 for (
unsigned c = 0, e =
getNumCols() - 1; c < e; c++) {
1859 if (isTriviallyValid(r)) {
1860 redunIneq[r] =
true;
1869 auto rowWithoutConstTerm =
1872 rowsWithoutConstTerm.insert({rowWithoutConstTerm, {r, constTerm}});
1875 auto &val = ret.first->second;
1876 if (val.second > constTerm) {
1878 redunIneq[val.first] =
true;
1879 val = {r, constTerm};
1882 redunIneq[r] =
true;
1900#define DEBUG_TYPE "fm"
1946 bool *isResultIntegerExact) {
1947 LDBG() <<
"FM input (eliminate pos " << pos <<
"):";
1949 assert(pos <
getNumVars() &&
"invalid position");
1954 if (
atEq(r, pos) != 0) {
1958 assert(ret.succeeded() &&
"Gaussian elimination guaranteed to succeed");
1959 LDBG() <<
"FM output (through Gaussian elimination):";
1973 LDBG() <<
"FM output:";
1983 std::vector<unsigned> nbIndices;
1990 if (
atIneq(r, pos) == 0) {
1992 nbIndices.emplace_back(r);
1993 }
else if (
atIneq(r, pos) >= 1) {
1995 lbIndices.emplace_back(r);
1998 ubIndices.emplace_back(r);
2005 newSpace.
removeVarRange(idKindRemove, relativePos, relativePos + 1);
2008 IntegerRelation newRel(lbIndices.size() * ubIndices.size() + nbIndices.size(),
2012 bool allLCMsAreOne =
true;
2024 for (
auto ubPos : ubIndices) {
2025 for (
auto lbPos : lbIndices) {
2028 DynamicAPInt lbCoeff =
atIneq(lbPos, pos);
2032 DynamicAPInt ubCoeff = -
atIneq(ubPos, pos);
2034 for (
unsigned l = 0, e =
getNumCols(); l < e; l++) {
2037 assert(lbCoeff >= 1 && ubCoeff >= 1 &&
"bounds wrongly identified");
2038 DynamicAPInt lcm = llvm::lcm(lbCoeff, ubCoeff);
2039 ineq.emplace_back(
atIneq(ubPos, l) * (lcm / ubCoeff) +
2040 atIneq(lbPos, l) * (lcm / lbCoeff));
2041 assert(lcm > 0 &&
"lcm should be positive!");
2043 allLCMsAreOne =
false;
2048 ineq[ineq.size() - 1] += lbCoeff * ubCoeff - lbCoeff - ubCoeff + 1;
2056 LDBG() <<
"FM isResultIntegerExact: " << allLCMsAreOne;
2057 if (allLCMsAreOne && isResultIntegerExact)
2058 *isResultIntegerExact =
true;
2061 for (
auto nbPos : nbIndices) {
2064 for (
unsigned l = 0, e =
getNumCols(); l < e; l++) {
2067 ineq.emplace_back(
atIneq(nbPos, l));
2073 lbIndices.size() * ubIndices.size() + nbIndices.size());
2079 for (
unsigned l = 0, e =
getNumCols(); l < e; l++) {
2082 eq.emplace_back(
atEq(r, l));
2093 LDBG() <<
"FM output:";
2098#define DEBUG_TYPE "presburger"
2106 assert(pos + num <
getNumCols() &&
"invalid range");
2109 unsigned currentPos = pos;
2110 unsigned numToEliminate = num;
2111 unsigned numGaussianEliminated = 0;
2114 unsigned curNumEliminated =
2117 numToEliminate -= curNumEliminated + 1;
2118 numGaussianEliminated += curNumEliminated;
2122 for (
unsigned i = 0; i < num - numGaussianEliminated; i++) {
2123 unsigned numToEliminate = num - numGaussianEliminated - i;
2137enum BoundCmpResult { Greater, Less, Equal,
Unknown };
2143 assert(a.size() ==
b.size());
2149 if (!std::equal(a.begin(), a.end() - 1,
b.begin()))
2152 if (a.back() ==
b.back())
2155 return a.back() <
b.back() ? Less : Greater;
2165 for (
unsigned s = 0, f =
b.getNumInequalities(); s < f; ++s) {
2173 for (
unsigned s = 0, f =
b.getNumEqualities(); s < f; ++s) {
2186 assert(
space.isEqual(otherCst.
getSpace()) &&
"Spaces should match.");
2194 std::vector<SmallVector<DynamicAPInt, 8>> boundingLbs;
2195 std::vector<SmallVector<DynamicAPInt, 8>> boundingUbs;
2207 DynamicAPInt lbFloorDivisor, otherLbFloorDivisor;
2210 if (!extent.has_value())
2216 d, &otherLb, &otherLbFloorDivisor, &otherUb);
2217 if (!otherExtent.has_value() || lbFloorDivisor != otherLbFloorDivisor)
2221 assert(lbFloorDivisor > 0 &&
"divisor always expected to be positive");
2223 auto res = compareBounds(lb, otherLb);
2225 if (res == BoundCmpResult::Less || res == BoundCmpResult::Equal) {
2230 minLb.back() -= lbFloorDivisor - 1;
2231 }
else if (res == BoundCmpResult::Greater) {
2233 minLb.back() -= otherLbFloorDivisor - 1;
2238 if (!constLb.has_value() || !constOtherLb.has_value())
2240 llvm::fill(minLb, 0);
2241 minLb.back() = std::min(*constLb, *constOtherLb);
2245 auto uRes = compareBounds(
ub, otherUb);
2246 if (uRes == BoundCmpResult::Greater || uRes == BoundCmpResult::Equal) {
2248 }
else if (uRes == BoundCmpResult::Less) {
2254 if (!constUb.has_value() || !constOtherUb.has_value())
2256 llvm::fill(maxUb, 0);
2257 maxUb.back() = std::max(*constUb, *constOtherUb);
2260 llvm::fill(newLb, 0);
2261 llvm::fill(newUb, 0);
2265 newLb[d] = lbFloorDivisor;
2266 newUb[d] = -lbFloorDivisor;
2269 std::transform(newLb.begin() +
getNumDimVars(), newLb.end(),
2271 std::negate<DynamicAPInt>());
2274 boundingLbs.emplace_back(newLb);
2275 boundingUbs.emplace_back(newUb);
2307 assert(pos < cst.
getNumVars() &&
"invalid start position");
2308 assert(pos + num <= cst.
getNumVars() &&
"invalid limit");
2313 for (c = pos; c < pos + num; ++c) {
2314 if (cst.
atIneq(r, c) != 0)
2318 nbIneqIndices.emplace_back(r);
2324 for (c = pos; c < pos + num; ++c) {
2325 if (cst.
atEq(r, c) != 0)
2329 nbEqIndices.emplace_back(r);
2334 assert(pos + num <=
getNumVars() &&
"invalid range");
2343 for (
auto nbIndex : llvm::reverse(nbIneqIndices))
2345 for (
auto nbIndex : llvm::reverse(nbEqIndices))
2373 hashTable.insert({row, 0});
2374 for (
unsigned k = 1; k < ineqs; ++k) {
2376 if (hashTable.try_emplace(row, k).second)
2380 unsigned l = hashTable[row];
2391 for (
unsigned k = 0; k < ineqs; ++k) {
2393 negIneq.assign(row.begin(), row.end());
2394 for (DynamicAPInt &ele : negIneq)
2396 if (!hashTable.contains(negIneq))
2401 unsigned l = hashTable[row];
2403 if (sum > 0 || l == k)
2439 "Domain set is not compatible with poly");
2455 "Range set is not compatible with poly");
2475 "Range of `this` should be compatible with Domain of `rel`");
2512 "Range product is only defined for relations with equal domains");
2529 copy.insert(
copy.begin() + relRangeVarStart,
2530 numThisRangeVars + numNewSymbolVars, DynamicAPInt(0));
2537 copy.insert(
copy.begin() + relRangeVarStart,
2538 numThisRangeVars + numNewSymbolVars, DynamicAPInt(0));
2577 "Domain of this and range of other do not match");
2618 for (
unsigned i = 0, e =
result.getNumDomainVars(); i < e; ++i)
2629 result.removeRedundantLocalVars();
2645 constexpr unsigned kMinSpacing = 1;
2666 "Domain has to be zero in a set");
static void copy(Location loc, Value dst, Value src, Value size, OpBuilder &builder)
Copies the given number of bytes from src to dst pointers.
static bool rangeIsZero(ArrayRef< DynamicAPInt > range)
static void getIndependentConstraints(const IntegerRelation &cst, unsigned pos, unsigned num, SmallVectorImpl< unsigned > &nbIneqIndices, SmallVectorImpl< unsigned > &nbEqIndices)
Find positions of inequalities and equalities that do not have a coefficient for [pos,...
static void removeConstraintsInvolvingVarRange(IntegerRelation &poly, unsigned begin, unsigned count)
static unsigned getBestVarToEliminate(const IntegerRelation &cst, unsigned start, unsigned end)
Returns the position of the variable that has the minimum <number of lowerbounds> times <number of up...
static void getCommonConstraints(const IntegerRelation &a, const IntegerRelation &b, IntegerRelation &c)
static void eliminateFromConstraint(IntegerRelation *constraints, unsigned rowIdx, unsigned pivotRow, unsigned pivotCol, unsigned elimColStart, bool isEq)
Eliminate variable from constraint at rowIdx based on coefficient at pivotRow, pivotCol.
static DynamicAPInt valueAt(ArrayRef< DynamicAPInt > expr, ArrayRef< DynamicAPInt > point)
Helper to evaluate an affine expression at a point.
static Value max(ImplicitLocOpBuilder &builder, Value value, Value bound)
static Value min(ImplicitLocOpBuilder &builder, Value value, Value bound)
Class storing division representation of local variables of a constraint system.
void removeDuplicateDivs(llvm::function_ref< bool(unsigned i, unsigned j)> merge)
Removes duplicate divisions.
void clearRepr(unsigned i)
DynamicAPInt & getDenom(unsigned i)
MutableArrayRef< DynamicAPInt > getDividend(unsigned i)
An Identifier stores a pointer to an object, such as a Value or an Operation.
An IntegerPolyhedron represents the set of points from a PresburgerSpace that satisfy a list of affin...
IntegerPolyhedron intersect(const IntegerPolyhedron &other) const
Return the intersection of the two relations.
unsigned insertVar(VarKind kind, unsigned pos, unsigned num=1) override
Insert num variables of the specified kind at position pos.
PresburgerSet subtract(const PresburgerSet &other) const
Return the set difference of this set and the given set, i.e., return this \ set.
IntegerPolyhedron(unsigned numReservedInequalities, unsigned numReservedEqualities, unsigned numReservedCols, const PresburgerSpace &space)
Constructs a set reserving memory for the specified number of constraints and variables.
std::unique_ptr< IntegerPolyhedron > clone() const
An IntegerRelation represents the set of points from a PresburgerSpace that satisfy a list of affine ...
std::optional< DynamicAPInt > getConstantBoundOnDimSize(unsigned pos, SmallVectorImpl< DynamicAPInt > *lb=nullptr, DynamicAPInt *boundFloorDivisor=nullptr, SmallVectorImpl< DynamicAPInt > *ub=nullptr, unsigned *minLbPos=nullptr, unsigned *minUbPos=nullptr) const
Returns the smallest known constant bound for the extent of the specified variable (pos^th),...
void setId(VarKind kind, unsigned i, Identifier id)
Set the identifier for the ith variable of the specified kind of the IntegerRelation's PresburgerSpac...
virtual void swapVar(unsigned posA, unsigned posB)
Swap the posA^th variable with the posB^th variable.
void removeIndependentConstraints(unsigned pos, unsigned num)
Removes constraints that are independent of (i.e., do not have a coefficient) variables in the range ...
void compose(const IntegerRelation &rel)
Let the relation this be R1, and the relation rel be R2.
void applyRange(const IntegerRelation &rel)
Given a relation rel, apply the relation to the range of this relation.
unsigned getVarKindEnd(VarKind kind) const
Return the index at Which the specified kind of vars ends.
ArrayRef< Identifier > getIds(VarKind kind)
Get the identifiers for the variables of specified varKind.
void removeTrivialRedundancy()
Removes duplicate constraints, trivially true constraints, and constraints that can be detected as re...
unsigned addLocalModulo(ArrayRef< DynamicAPInt > exprs, const DynamicAPInt &modulus)
Adds a new local variable as the modulus of an affine function of other variables,...
static IntegerRelation getEmpty(const PresburgerSpace &space)
Return an empty system containing an invalid equation 0 = 1.
static constexpr unsigned kExplosionFactor
A parameter that controls detection of an unrealistic number of constraints.
ArrayRef< DynamicAPInt > getEquality(unsigned idx) const
std::optional< unsigned > findConstraintWithNonZeroAt(unsigned colIdx, bool isEq) const
Finds a constraint with a non-zero coefficient at colIdx in equality (isEq=true) or inequality (isEq=...
void removeInequalityRange(unsigned start, unsigned end)
void normalizeConstraintsByGCD()
Normalized each constraints by the GCD of its coefficients.
void truncate(const CountsSnapshot &counts)
virtual void eliminateRedundantLocalVar(unsigned posA, unsigned posB)
Eliminate the posB^th local variable, replacing every instance of it with the posA^th local variable.
CountsSnapshot getCounts() const
std::optional< DynamicAPInt > computeConstantLowerOrUpperBound(unsigned pos)
Returns the constant lower bound if isLower is true, and the upper bound if isLower is false.
void removeEqualityRange(unsigned start, unsigned end)
Remove the (in)equalities at positions [start, end).
LogicalResult constantFoldVar(unsigned pos)
Tries to fold the specified variable to a constant using a trivial equality detection; if successful,...
unsigned getNumSymbolVars() const
void removeEquality(unsigned pos)
bool isObviouslyEqual(const IntegerRelation &other) const
Perform a quick equality check on this and other.
IntegerPolyhedron getRangeSet() const
Return a set corresponding to all points in the range of the relation.
std::optional< SmallVector< DynamicAPInt, 8 > > containsPointNoLocal(ArrayRef< DynamicAPInt > point) const
Given the values of non-local vars, return a satisfying assignment to the local if one exists,...
unsigned getNumVarKind(VarKind kind) const
Get the number of vars of the specified kind.
bool isEmptyByGCDTest() const
Runs the GCD test on all equality constraints.
void simplify()
Simplify the constraint system by removing canonicalizing constraints and removing redundant constrai...
void convertVarKind(VarKind srcKind, unsigned varStart, unsigned varLimit, VarKind dstKind, unsigned pos)
Converts variables of kind srcKind in the range [varStart, varLimit) to variables of kind dstKind.
void removeDuplicateDivs()
void addBound(BoundType type, unsigned pos, const DynamicAPInt &value)
Adds a constant bound for the specified variable.
unsigned appendVar(VarKind kind, unsigned num=1)
Append num variables of the specified kind after the last variable of that kind.
void intersectRange(const IntegerPolyhedron &poly)
Intersect the given poly with the range in-place.
ArrayRef< DynamicAPInt > getInequality(unsigned idx) const
IntegerRelation rangeProduct(const IntegerRelation &rel)
Let the relation this be R1, and the relation rel be R2.
void print(raw_ostream &os) const
bool isIntegerEmpty() const
Returns true if the set of constraints is found to have no solution, false if a solution exists.
DynamicAPInt atIneq(unsigned i, unsigned j) const
Returns the value at the specified inequality row and column.
virtual unsigned insertVar(VarKind kind, unsigned pos, unsigned num=1)
Insert num variables of the specified kind at position pos.
bool containsPoint(ArrayRef< DynamicAPInt > point) const
Returns true if the given point satisfies the constraints, or false otherwise.
std::optional< SmallVector< DynamicAPInt, 8 > > findIntegerSample() const
Find an integer sample point satisfying the constraints using a branch and bound algorithm with gener...
bool hasInvalidConstraint() const
Checks all rows of equality/inequality constraints for trivial contradictions (for example: 1 == 0,...
LogicalResult unionBoundingBox(const IntegerRelation &other)
Updates the constraints to be the smallest bounding (enclosing) box that contains the points of this ...
IntegerRelation(unsigned numReservedInequalities, unsigned numReservedEqualities, unsigned numReservedCols, const PresburgerSpace &space)
Constructs a relation reserving memory for the specified number of constraints and variables.
bool isHyperRectangular(unsigned pos, unsigned num) const
Returns true if the set can be trivially detected as being hyper-rectangular on the specified contigu...
void convertToLocal(VarKind kind, unsigned varStart, unsigned varLimit)
IntMatrix getBoundedDirections() const
Returns a matrix where each row is a vector along which the polytope is bounded.
unsigned getNumDomainVars() const
LogicalResult gaussianEliminateVar(unsigned position)
Eliminates a single variable at position from equality and inequality constraints.
void clearConstraints()
Removes all equalities and inequalities.
DynamicAPInt atEq(unsigned i, unsigned j) const
Returns the value at the specified equality row and column.
IntegerRelation intersect(IntegerRelation other) const
Return the intersection of the two relations.
std::optional< DynamicAPInt > computeVolume() const
Compute an overapproximation of the number of integer points in the relation.
MaybeOptimum< SmallVector< DynamicAPInt, 8 > > findIntegerLexMin() const
Same as above, but returns lexicographically minimal integer point.
void removeTrivialEqualities()
const PresburgerSpace & getSpace() const
Returns a reference to the underlying space.
SymbolicLexOpt findSymbolicIntegerLexMin() const
Compute the symbolic integer lexmin of the relation.
void setSpace(const PresburgerSpace &oSpace)
Set the space to oSpace, which should have the same number of ids as the current space.
int findEqualityToConstant(unsigned pos, bool symbolic=false) const
Finds an equality that equates the specified variable to a constant.
unsigned getNumVars() const
void inverse()
Invert the relation i.e., swap its domain and range.
void append(const IntegerRelation &other)
Appends constraints from other into this.
void applyDomain(const IntegerRelation &rel)
Given a relation rel, apply the relation to the domain of this relation.
void intersectDomain(const IntegerPolyhedron &poly)
Intersect the given poly with the domain in-place.
unsigned addLocalFloorDiv(ArrayRef< DynamicAPInt > dividend, const DynamicAPInt &divisor)
Adds a new local variable as the floordiv of an affine function of other variables,...
PresburgerRelation subtract(const PresburgerRelation &set) const
Return the set difference of this set and the given set, i.e., return this \ set.
bool isEqual(const IntegerRelation &other) const
Return whether this and other are equal.
virtual void printSpace(raw_ostream &os) const
Prints the number of constraints, dimensions, symbols and locals in the IntegerRelation.
void addEquality(ArrayRef< DynamicAPInt > eq)
Adds an equality from the coefficients specified in eq.
unsigned getNumRangeVars() const
unsigned getNumLocalVars() const
void removeRedundantConstraints()
Removes redundant constraints using Simplex.
PresburgerRelation computeReprWithOnlyDivLocals() const
Compute an equivalent representation of the same set, such that all local vars in all disjuncts have ...
void removeRedundantInequalities()
A more expensive check than removeTrivialRedundancy to detect redundant inequalities.
bool isObviouslyEmpty() const
Performs GCD checks and invalid constraint checks.
IntMatrix equalities
Coefficients of affine equalities (in == 0 form).
SymbolicLexOpt findSymbolicIntegerLexMax() const
Same as findSymbolicIntegerLexMin but produces lexmax instead of lexmin.
unsigned getNumDimAndSymbolVars() const
bool gaussianEliminate()
Perform a Gaussian elimination operation to reduce all equations to standard form.
void truncateVarKind(VarKind kind, unsigned num)
Truncate the vars of the specified kind to the specified number by dropping some vars at the end.
void constantFoldVarRange(unsigned pos, unsigned num)
This method calls constantFoldVar for the specified range of variables, num variables starting at pos...
bool isEmpty() const
Checks for emptiness by performing variable elimination on all variables, running the GCD test on eac...
unsigned getNumCols() const
Returns the number of columns in the constraint system.
void getLowerAndUpperBoundIndices(unsigned pos, SmallVectorImpl< unsigned > *lbIndices, SmallVectorImpl< unsigned > *ubIndices, SmallVectorImpl< unsigned > *eqIndices=nullptr, unsigned offset=0, unsigned num=0) const
Gather positions of all lower and upper bounds of the variable at pos, and optionally any equalities ...
void gcdTightenInequalities()
Tightens inequalities given that we are dealing with integer spaces.
void removeVar(VarKind kind, unsigned pos)
Removes variables of the specified kind with the specified pos (or within the specified range) from t...
void setSpaceExceptLocals(const PresburgerSpace &oSpace)
Set the space to oSpace, which should not have any local ids.
unsigned gaussianEliminateVars(unsigned posStart, unsigned posLimit)
Eliminates variables from equality and inequality constraints in column range [posStart,...
void removeInequality(unsigned pos)
void mergeAndCompose(const IntegerRelation &other)
Given a relation other: (A -> B), this operation merges the symbol and local variables and then takes...
IntegerPolyhedron getDomainSet() const
Return a set corresponding to all points in the domain of the relation.
DivisionRepr getLocalReprs(std::vector< MaybeLocalRepr > *repr=nullptr) const
Returns a DivisonRepr representing the division representation of local variables in the constraint s...
bool hasOnlyDivLocals() const
Check whether all local ids have a division representation.
std::optional< DynamicAPInt > getConstantBound(BoundType type, unsigned pos) const
Returns the constant bound for the pos^th variable if there is one; std::nullopt otherwise.
virtual void clearAndCopyFrom(const IntegerRelation &other)
Replaces the contents of this IntegerRelation with other.
void projectOut(unsigned pos, unsigned num)
Projects out (aka eliminates) num variables starting at position pos.
void addInequality(ArrayRef< DynamicAPInt > inEq)
Adds an inequality (>= 0) from the coefficients specified in inEq.
void mergeAndAlignSymbols(IntegerRelation &other)
Merge and align symbol variables of this and other with respect to identifiers.
void removeRedundantLocalVars()
Removes local variables using equalities.
unsigned mergeLocalVars(IntegerRelation &other)
Adds additional local vars to the sets such that they both have the union of the local vars in each s...
unsigned getNumConstraints() const
MaybeOptimum< SmallVector< Fraction, 8 > > findRationalLexMin() const
Get the lexicographically minimum rational point satisfying the constraints.
IntMatrix inequalities
Coefficients of affine inequalities (in >= 0 form).
virtual bool hasConsistentState() const
Returns false if the fields corresponding to various variable counts, or equality/inequality buffer s...
unsigned getNumInequalities() const
bool isSubsetOf(const IntegerRelation &other) const
Return whether this is a subset of the given IntegerRelation.
std::unique_ptr< IntegerRelation > clone() const
void setAndEliminate(unsigned pos, ArrayRef< DynamicAPInt > values)
Sets the values.size() variables starting at pos to the specified values and removes them.
unsigned getNumEqualities() const
bool isColZero(unsigned pos) const
Returns true if the pos^th column is all zero for both inequalities and equalities.
unsigned getVarKindOffset(VarKind kind) const
Return the index at which the specified kind of vars starts.
unsigned getNumDimVars() const
virtual void removeVarRange(VarKind kind, unsigned varStart, unsigned varLimit)
virtual void fourierMotzkinEliminate(unsigned pos, bool darkShadow=false, bool *isResultIntegerExact=nullptr)
Eliminates the variable at the specified position using Fourier-Motzkin variable elimination,...
bool removeDuplicateConstraints()
Checks for identical inequalities and eliminates redundant inequalities.
A class for lexicographic optimization without any symbols.
MaybeOptimum< SmallVector< Fraction, 8 > > findRationalLexMin()
Return the lexicographically minimum rational solution to the constraints.
MaybeOptimum< SmallVector< DynamicAPInt, 8 > > findIntegerLexMin()
Return the lexicographically minimum integer solution to the constraints.
unsigned getNumRows() const
void fillRow(unsigned row, const T &value)
void negateRow(unsigned row)
Negate the specified row.
OptimumKind getKind() const
This class represents a multi-affine function with the domain as Z^d, where d is the number of domain...
ArrayRef< Piece > getAllPieces() const
Return all the pieces of this piece-wise function.
const PresburgerSpace & getSpace() const
PresburgerSet getDomain() const
Return the domain of this piece-wise MultiAffineFunction.
A PresburgerRelation represents a union of IntegerRelations that live in the same PresburgerSpace wit...
PresburgerRelation subtract(const PresburgerRelation &set) const
Return the set difference of this set and the given set, i.e., return this \ set.
bool isSubsetOf(const PresburgerRelation &set) const
Return true if this set is a subset of the given set, and false otherwise.
bool isEqual(const PresburgerRelation &set) const
Return true if this set is equal to the given set, and false otherwise.
PresburgerSet unionSet(const PresburgerRelation &set) const
These operations are the same as the ones in PresburgeRelation, they just forward the arguement and r...
PresburgerSpace is the space of all possible values of a tuple of integer valued variables/variables.
void setId(VarKind kind, unsigned pos, Identifier id)
Set the identifier of pos^th variable of the specified kind.
unsigned getNumVarKind(VarKind kind) const
Get the number of vars of the specified kind.
bool isUsingIds() const
Returns if identifiers are being used.
void removeVarRange(VarKind kind, unsigned varStart, unsigned varLimit)
Removes variables of the specified kind in the column range [varStart, varLimit).
ArrayRef< Identifier > getIds(VarKind kind) const
unsigned getVarKindOffset(VarKind kind) const
Return the index at which the specified kind of var starts.
Identifier getId(VarKind kind, unsigned pos) const
Get the identifier of pos^th variable of the specified kind.
unsigned getNumVars() const
unsigned getNumLocalVars() const
VarKind getVarKindAt(unsigned pos) const
Return the VarKind of the var at the specified position.
static PresburgerSpace getSetSpace(unsigned numDims=0, unsigned numSymbols=0, unsigned numLocals=0)
static PresburgerSpace getRelationSpace(unsigned numDomain=0, unsigned numRange=0, unsigned numSymbols=0, unsigned numLocals=0)
bool isEmpty() const
Returns true if the tableau is empty (has conflicting constraints), false otherwise.
The Simplex class uses the Normal pivot rule and supports integer emptiness checks as well as detecti...
std::pair< MaybeOptimum< DynamicAPInt >, MaybeOptimum< DynamicAPInt > > computeIntegerBounds(ArrayRef< DynamicAPInt > coeffs)
Returns a (min, max) pair denoting the minimum and maximum integer values of the given expression.
bool isMarkedRedundant(unsigned constraintIndex) const
Returns whether the specified constraint has been marked as redundant.
bool isFlatAlong(ArrayRef< DynamicAPInt > coeffs)
Check if the simplex takes only one rational value along the direction of coeffs.
bool isBoundedAlongConstraint(unsigned constraintIndex)
Returns whether the perpendicular of the specified constraint is a is a direction along which the pol...
bool isUnbounded()
Returns true if the polytope is unbounded, i.e., extends to infinity in some direction.
void detectRedundant(unsigned offset, unsigned count)
Finds a subset of constraints that is redundant, i.e., such that the set of solutions does not change...
std::optional< SmallVector< Fraction, 8 > > getRationalSample() const
Returns the current sample point, which may contain non-integer (rational) coordinates.
std::optional< SmallVector< DynamicAPInt, 8 > > findIntegerSample()
Returns an integer sample point if one exists, or std::nullopt otherwise.
A class to perform symbolic lexicographic optimization, i.e., to find, for every assignment to the sy...
SymbolicLexOpt computeSymbolicIntegerLexMin()
The lexmin will be stored as a function lexopt from symbols to non-symbols in the result.
BoundType
The type of bound: equal, lower bound or upper bound.
MaybeLocalRepr computeSingleVarRepr(const IntegerRelation &cst, ArrayRef< bool > foundRepr, unsigned pos, MutableArrayRef< DynamicAPInt > dividend, DynamicAPInt &divisor)
Returns the MaybeLocalRepr struct which contains the indices of the constraints that can be expressed...
void mergeLocalVars(IntegerRelation &relA, IntegerRelation &relB, llvm::function_ref< bool(unsigned i, unsigned j)> merge)
Given two relations, A and B, add additional local vars to the sets such that both have the union of ...
DynamicAPInt ceil(const Fraction &f)
Fraction abs(const Fraction &f)
SmallVector< DynamicAPInt, 8 > getDivUpperBound(ArrayRef< DynamicAPInt > dividend, const DynamicAPInt &divisor, unsigned localVarIdx)
If q is defined to be equal to expr floordiv d, this equivalent to saying that q is an integer and q ...
void printWithPrintMetrics(raw_ostream &os, T val, unsigned minSpacing, const PrintTableMetrics &m)
Print val in the table with metrics specified in 'm'.
void updatePrintMetrics(T val, PrintTableMetrics &m)
Iterate over each val in the table and update 'm' where .maxPreIndent and .maxPostIndent are initiali...
SmallVector< DynamicAPInt, 8 > getDivLowerBound(ArrayRef< DynamicAPInt > dividend, const DynamicAPInt &divisor, unsigned localVarIdx)
Include the generated interface declarations.
const FrozenRewritePatternSet GreedyRewriteConfig bool * changed
The struct CountsSnapshot stores the count of each VarKind, and also of each constraint type.
const PresburgerSpace & getSpace() const
unsigned getNumIneqs() const
unsigned getNumEqs() const
MaybeLocalRepr contains the indices of the constraints that can be expressed as a floordiv of an affi...
Example usage: Print .12, 3.4, 56.7 preAlign = ".", minSpacing = 1, .12 .12 3.4 3....
Represents the result of a symbolic lexicographic optimization computation.
PWMAFunction lexopt
This maps assignments of symbols to the corresponding lexopt.
PresburgerSet unboundedDomain
Contains all assignments to the symbols that made the lexopt unbounded.
Eliminates variable at the specified position using Fourier-Motzkin variable elimination.