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
|
//===- IRDLVerifiers.cpp - IRDL verifiers ------------------------- C++ -*-===//
//
// This file is licensed 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
//
//===----------------------------------------------------------------------===//
//
// Verifiers for objects declared by IRDL.
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/IRDL/IRDLVerifiers.h"
#include "mlir/IR/Diagnostics.h"
#include "mlir/IR/ExtensibleDialect.h"
#include "mlir/Support/LogicalResult.h"
using namespace mlir;
using namespace mlir::irdl;
ConstraintVerifier::ConstraintVerifier(
ArrayRef<std::unique_ptr<Constraint>> constraints)
: constraints(constraints), assigned() {
assigned.resize(this->constraints.size());
}
LogicalResult
ConstraintVerifier::verify(function_ref<InFlightDiagnostic()> emitError,
Attribute attr, unsigned variable) {
assert(variable < constraints.size() && "invalid constraint variable");
// If the variable is already assigned, check that the attribute is the same.
if (assigned[variable].has_value()) {
if (attr == assigned[variable].value()) {
return success();
} else {
if (emitError)
return emitError() << "expected '" << assigned[variable].value()
<< "' but got '" << attr << "'";
return failure();
}
}
// Otherwise, check the constraint and assign the attribute to the variable.
LogicalResult result = constraints[variable]->verify(emitError, attr, *this);
if (succeeded(result))
assigned[variable] = attr;
return result;
}
LogicalResult IsConstraint::verify(function_ref<InFlightDiagnostic()> emitError,
Attribute attr,
ConstraintVerifier &context) const {
if (attr == expectedAttribute)
return success();
if (emitError)
return emitError() << "expected '" << expectedAttribute << "' but got '"
<< attr << "'";
return failure();
}
LogicalResult DynParametricAttrConstraint::verify(
function_ref<InFlightDiagnostic()> emitError, Attribute attr,
ConstraintVerifier &context) const {
// Check that the base is the expected one.
auto dynAttr = dyn_cast<DynamicAttr>(attr);
if (!dynAttr || dynAttr.getAttrDef() != attrDef) {
if (emitError) {
StringRef dialectName = attrDef->getDialect()->getNamespace();
StringRef attrName = attrDef->getName();
return emitError() << "expected base attribute '" << attrName << '.'
<< dialectName << "' but got '" << attr << "'";
}
return failure();
}
// Check that the parameters satisfy the constraints.
ArrayRef<Attribute> params = dynAttr.getParams();
if (params.size() != constraints.size()) {
if (emitError) {
StringRef dialectName = attrDef->getDialect()->getNamespace();
StringRef attrName = attrDef->getName();
emitError() << "attribute '" << dialectName << "." << attrName
<< "' expects " << params.size() << " parameters but got "
<< constraints.size();
}
return failure();
}
for (size_t i = 0, s = params.size(); i < s; i++)
if (failed(context.verify(emitError, params[i], constraints[i])))
return failure();
return success();
}
LogicalResult DynParametricTypeConstraint::verify(
function_ref<InFlightDiagnostic()> emitError, Attribute attr,
ConstraintVerifier &context) const {
// Check that the base is a TypeAttr.
auto typeAttr = dyn_cast<TypeAttr>(attr);
if (!typeAttr) {
if (emitError)
return emitError() << "expected type, got attribute '" << attr;
return failure();
}
// Check that the type base is the expected one.
auto dynType = dyn_cast<DynamicType>(typeAttr.getValue());
if (!dynType || dynType.getTypeDef() != typeDef) {
if (emitError) {
StringRef dialectName = typeDef->getDialect()->getNamespace();
StringRef attrName = typeDef->getName();
return emitError() << "expected base type '" << dialectName << '.'
<< attrName << "' but got '" << attr << "'";
}
return failure();
}
// Check that the parameters satisfy the constraints.
ArrayRef<Attribute> params = dynType.getParams();
if (params.size() != constraints.size()) {
if (emitError) {
StringRef dialectName = typeDef->getDialect()->getNamespace();
StringRef attrName = typeDef->getName();
emitError() << "attribute '" << dialectName << "." << attrName
<< "' expects " << params.size() << " parameters but got "
<< constraints.size();
}
return failure();
}
for (size_t i = 0, s = params.size(); i < s; i++)
if (failed(context.verify(emitError, params[i], constraints[i])))
return failure();
return success();
}
LogicalResult
AnyOfConstraint::verify(function_ref<InFlightDiagnostic()> emitError,
Attribute attr, ConstraintVerifier &context) const {
for (unsigned constr : constraints) {
// We do not pass the `emitError` here, since we want to emit an error
// only if none of the constraints are satisfied.
if (succeeded(context.verify({}, attr, constr))) {
return success();
}
}
if (emitError)
return emitError() << "'" << attr << "' does not satisfy the constraint";
return failure();
}
LogicalResult
AllOfConstraint::verify(function_ref<InFlightDiagnostic()> emitError,
Attribute attr, ConstraintVerifier &context) const {
for (unsigned constr : constraints) {
if (failed(context.verify(emitError, attr, constr))) {
return failure();
}
}
return success();
}
LogicalResult
AnyAttributeConstraint::verify(function_ref<InFlightDiagnostic()> emitError,
Attribute attr,
ConstraintVerifier &context) const {
return success();
}
|