1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
//===- PolynomialAttributes.cpp - Polynomial dialect attrs ------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/Polynomial/IR/PolynomialAttributes.h"
#include "mlir/Dialect/Polynomial/IR/Polynomial.h"
#include "mlir/Support/LLVM.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringSet.h"
namespace mlir {
namespace polynomial {
void IntPolynomialAttr::print(AsmPrinter &p) const {
p << '<' << getPolynomial() << '>';
}
void FloatPolynomialAttr::print(AsmPrinter &p) const {
p << '<' << getPolynomial() << '>';
}
/// A callable that parses the coefficient using the appropriate method for the
/// given monomial type, and stores the parsed coefficient value on the
/// monomial.
template <typename MonomialType>
using ParseCoefficientFn = std::function<OptionalParseResult(MonomialType &)>;
/// Try to parse a monomial. If successful, populate the fields of the outparam
/// `monomial` with the results, and the `variable` outparam with the parsed
/// variable name. Sets shouldParseMore to true if the monomial is followed by
/// a '+'.
///
template <typename Monomial>
ParseResult
parseMonomial(AsmParser &parser, Monomial &monomial, llvm::StringRef &variable,
bool &isConstantTerm, bool &shouldParseMore,
ParseCoefficientFn<Monomial> parseAndStoreCoefficient) {
OptionalParseResult parsedCoeffResult = parseAndStoreCoefficient(monomial);
isConstantTerm = false;
shouldParseMore = false;
// A + indicates it's a constant term with more to go, as in `1 + x`.
if (succeeded(parser.parseOptionalPlus())) {
// If no coefficient was parsed, and there's a +, then it's effectively
// parsing an empty string.
if (!parsedCoeffResult.has_value()) {
return failure();
}
monomial.setExponent(APInt(apintBitWidth, 0));
isConstantTerm = true;
shouldParseMore = true;
return success();
}
// A monomial can be a trailing constant term, as in `x + 1`.
if (failed(parser.parseOptionalKeyword(&variable))) {
// If neither a coefficient nor a variable was found, then it's effectively
// parsing an empty string.
if (!parsedCoeffResult.has_value()) {
return failure();
}
monomial.setExponent(APInt(apintBitWidth, 0));
isConstantTerm = true;
return success();
}
// Parse exponentiation symbol as `**`. We can't use caret because it's
// reserved for basic block identifiers If no star is present, it's treated
// as a polynomial with exponent 1.
if (succeeded(parser.parseOptionalStar())) {
// If there's one * there must be two.
if (failed(parser.parseStar())) {
return failure();
}
// If there's a **, then the integer exponent is required.
APInt parsedExponent(apintBitWidth, 0);
if (failed(parser.parseInteger(parsedExponent))) {
parser.emitError(parser.getCurrentLocation(),
"found invalid integer exponent");
return failure();
}
monomial.setExponent(parsedExponent);
} else {
monomial.setExponent(APInt(apintBitWidth, 1));
}
if (succeeded(parser.parseOptionalPlus())) {
shouldParseMore = true;
}
return success();
}
template <typename Monomial>
LogicalResult
parsePolynomialAttr(AsmParser &parser, llvm::SmallVector<Monomial> &monomials,
llvm::StringSet<> &variables,
ParseCoefficientFn<Monomial> parseAndStoreCoefficient) {
while (true) {
Monomial parsedMonomial;
llvm::StringRef parsedVariableRef;
bool isConstantTerm;
bool shouldParseMore;
if (failed(parseMonomial<Monomial>(
parser, parsedMonomial, parsedVariableRef, isConstantTerm,
shouldParseMore, parseAndStoreCoefficient))) {
parser.emitError(parser.getCurrentLocation(), "expected a monomial");
return failure();
}
if (!isConstantTerm) {
std::string parsedVariable = parsedVariableRef.str();
variables.insert(parsedVariable);
}
monomials.push_back(parsedMonomial);
if (shouldParseMore)
continue;
if (succeeded(parser.parseOptionalGreater())) {
break;
}
parser.emitError(
parser.getCurrentLocation(),
"expected + and more monomials, or > to end polynomial attribute");
return failure();
}
if (variables.size() > 1) {
std::string vars = llvm::join(variables.keys(), ", ");
parser.emitError(
parser.getCurrentLocation(),
"polynomials must have one indeterminate, but there were multiple: " +
vars);
return failure();
}
return success();
}
Attribute IntPolynomialAttr::parse(AsmParser &parser, Type type) {
if (failed(parser.parseLess()))
return {};
llvm::SmallVector<IntMonomial> monomials;
llvm::StringSet<> variables;
if (failed(parsePolynomialAttr<IntMonomial>(
parser, monomials, variables,
[&](IntMonomial &monomial) -> OptionalParseResult {
APInt parsedCoeff(apintBitWidth, 1);
OptionalParseResult result =
parser.parseOptionalInteger(parsedCoeff);
monomial.setCoefficient(parsedCoeff);
return result;
}))) {
return {};
}
auto result = IntPolynomial::fromMonomials(monomials);
if (failed(result)) {
parser.emitError(parser.getCurrentLocation())
<< "parsed polynomial must have unique exponents among monomials";
return {};
}
return IntPolynomialAttr::get(parser.getContext(), result.value());
}
Attribute FloatPolynomialAttr::parse(AsmParser &parser, Type type) {
if (failed(parser.parseLess()))
return {};
llvm::SmallVector<FloatMonomial> monomials;
llvm::StringSet<> variables;
ParseCoefficientFn<FloatMonomial> parseAndStoreCoefficient =
[&](FloatMonomial &monomial) -> OptionalParseResult {
double coeffValue = 1.0;
ParseResult result = parser.parseFloat(coeffValue);
monomial.setCoefficient(APFloat(coeffValue));
return OptionalParseResult(result);
};
if (failed(parsePolynomialAttr<FloatMonomial>(parser, monomials, variables,
parseAndStoreCoefficient))) {
return {};
}
auto result = FloatPolynomial::fromMonomials(monomials);
if (failed(result)) {
parser.emitError(parser.getCurrentLocation())
<< "parsed polynomial must have unique exponents among monomials";
return {};
}
return FloatPolynomialAttr::get(parser.getContext(), result.value());
}
} // namespace polynomial
} // namespace mlir
|