Lines Matching refs:flatExprs
163 std::vector<SmallVector<int64_t, 8>> flatExprs; in FlatAffineValueConstraints() local
165 if (failed(getFlattenedAffineExprs(set, &flatExprs, &localVarCst))) { in FlatAffineValueConstraints()
169 assert(flatExprs.size() == set.getNumConstraints()); in FlatAffineValueConstraints()
173 for (unsigned i = 0, e = flatExprs.size(); i < e; ++i) { in FlatAffineValueConstraints()
174 const auto &flatExpr = flatExprs[i]; in FlatAffineValueConstraints()
463 std::vector<SmallVector<int64_t, 8>> flatExprs; in composeMatchingMap() local
464 if (failed(flattenAlignedMapAndMergeLocals(other, &flatExprs))) in composeMatchingMap()
466 assert(flatExprs.size() == other.getNumResults()); in composeMatchingMap()
477 for (unsigned r = 0, e = flatExprs.size(); r < e; r++) { in composeMatchingMap()
478 const auto &flatExpr = flatExprs[r]; in composeMatchingMap()
1187 std::vector<SmallVector<int64_t, 8>> flatExprs; in addBound() local
1188 if (failed(flattenAlignedMapAndMergeLocals(boundMap, &flatExprs))) in addBound()
1190 assert(flatExprs.size() == boundMap.getNumResults()); in addBound()
1193 for (const auto &flatExpr : flatExprs) { in addBound()
1757 std::vector<SmallVector<int64_t, 8>> flatExprs; in getRelationFromMap() local
1759 if (failed(getFlattenedAffineExprs(map, &flatExprs, &localVarCst))) in getRelationFromMap()
1777 eq[j] = flatExprs[i][j]; in getRelationFromMap()
1779 eq[j + numRangeVars] = flatExprs[i][j]; in getRelationFromMap()