From: Uday Bondhugula Date: Wed, 24 Nov 2021 08:12:20 +0000 (+0530) Subject: [NFC] Improve debug message in getAsIntegerSet X-Git-Tag: upstream/15.0.7~24841 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23d505571d5180e497b88bde6719d6f2e9879f1a;p=platform%2Fupstream%2Fllvm.git [NFC] Improve debug message in getAsIntegerSet Improve debug message in getAsIntegerSet. Add missing trailing new line and position info. Differential Revision: https://reviews.llvm.org/D114511 --- diff --git a/mlir/lib/Analysis/AffineStructures.cpp b/mlir/lib/Analysis/AffineStructures.cpp index 1742077..c0465a2 100644 --- a/mlir/lib/Analysis/AffineStructures.cpp +++ b/mlir/lib/Analysis/AffineStructures.cpp @@ -3566,12 +3566,20 @@ IntegerSet FlatAffineConstraints::getAsIntegerSet(MLIRContext *context) const { if (failed(computeLocalVars(*this, memo, context))) { // Check if the local variables without an explicit representation have // zero coefficients everywhere. - for (unsigned i = getNumDimAndSymbolIds(), e = getNumIds(); i < e; ++i) { - if (!memo[i] && !isColZero(*this, /*pos=*/i)) { - LLVM_DEBUG(llvm::dbgs() << "one or more local exprs do not have an " - "explicit representation"); - return IntegerSet(); - } + SmallVector noLocalRepVars; + unsigned numDimsSymbols = getNumDimAndSymbolIds(); + for (unsigned i = numDimsSymbols, e = getNumIds(); i < e; ++i) { + if (!memo[i] && !isColZero(*this, /*pos=*/i)) + noLocalRepVars.push_back(i - numDimsSymbols); + } + if (!noLocalRepVars.empty()) { + LLVM_DEBUG({ + llvm::dbgs() << "local variables at position(s) "; + llvm::interleaveComma(noLocalRepVars, llvm::dbgs()); + llvm::dbgs() << " do not have an explicit representation in:\n"; + this->dump(); + }); + return IntegerSet(); } }