MLIR 22.0.0git
SMTDialect.cpp
Go to the documentation of this file.
1//===- SMTDialect.cpp - SMT dialect implementation ------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
13
14using namespace mlir;
15using namespace smt;
16
17void SMTDialect::initialize() {
18 registerAttributes();
19 registerTypes();
20 addOperations<
21#define GET_OP_LIST
22#include "mlir/Dialect/SMT/IR/SMT.cpp.inc"
23 >();
24}
25
26Operation *SMTDialect::materializeConstant(OpBuilder &builder, Attribute value,
27 Type type, Location loc) {
28 // BitVectorType constants can materialize into smt.bv.constant
29 if (auto bvType = dyn_cast<BitVectorType>(type)) {
30 if (auto attrValue = dyn_cast<BitVectorAttr>(value)) {
31 assert(bvType == attrValue.getType() &&
32 "attribute and desired result types have to match");
33 return BVConstantOp::create(builder, loc, attrValue);
34 }
35 }
36
37 // BoolType constants can materialize into smt.constant
38 if (auto boolType = dyn_cast<BoolType>(type)) {
39 if (auto attrValue = dyn_cast<BoolAttr>(value))
40 return BoolConstantOp::create(builder, loc, attrValue);
41 }
42
43 return nullptr;
44}
45
46#include "mlir/Dialect/SMT/IR/SMTDialect.cpp.inc"
47#include "mlir/Dialect/SMT/IR/SMTEnums.cpp.inc"
Attributes are known-constant values of operations.
Definition Attributes.h:25
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
Definition Location.h:76
This class helps build Operations.
Definition Builders.h:207
Operation is the basic unit of execution within MLIR.
Definition Operation.h:88
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
Definition Types.h:74
Include the generated interface declarations.