18 #include "mlir/Analysis/TopologicalSortUtils.h"
19 #include "mlir/Dialect/Func/IR/FuncOps.h"
20 #include "mlir/Dialect/LLVMIR/FunctionCallUtils.h"
21 #include "mlir/Dialect/LLVMIR/LLVMDialect.h"
22 #include "mlir/IR/Builders.h"
23 #include "mlir/IR/Location.h"
24 #include "mlir/IR/SymbolTable.h"
25 #include "llvm/Support/LogicalResult.h"
28 using namespace circt;
32 #define GEN_PASS_DEF_LOWERTOBMC
33 #include "circt/Tools/circt-bmc/Passes.h.inc"
41 struct LowerToBMCPass :
public circt::impl::LowerToBMCBase<LowerToBMCPass> {
42 using LowerToBMCBase::LowerToBMCBase;
43 void runOnOperation()
override;
47 void LowerToBMCPass::runOnOperation() {
50 auto moduleOp = getOperation();
53 moduleOp.emitError(
"hw.module named '") << topModule <<
"' not found";
54 return signalPassFailure();
58 if (hwModule.getOps<verif::AssertOp>().empty() &&
59 hwModule.getOps<hw::InstanceOp>().empty()) {
60 hwModule.emitError(
"no property provided to check in module");
61 return signalPassFailure();
64 if (!sortTopologically(&hwModule.getBodyRegion().front())) {
65 hwModule->emitError(
"could not resolve cycles in module");
66 return signalPassFailure();
70 auto *ctx = &getContext();
71 OpBuilder builder(ctx);
72 Location loc = moduleOp->getLoc();
73 builder.setInsertionPointToEnd(moduleOp.getBody());
79 LLVM::lookupOrCreateFn(moduleOp,
"printf", ptrTy, voidTy,
true);
82 auto entryFunc = builder.create<func::FuncOp>(
83 loc, topModule, builder.getFunctionType({}, {}));
84 builder.createBlock(&entryFunc.getBody());
87 OpBuilder::InsertionGuard guard(builder);
88 auto *terminator = hwModule.getBody().front().getTerminator();
89 builder.setInsertionPoint(terminator);
90 builder.create<verif::YieldOp>(loc, terminator->getOperands());
96 verif::BoundedModelCheckingOp bmcOp;
97 auto numRegs = hwModule->getAttrOfType<IntegerAttr>(
"num_regs");
98 auto initialValues = hwModule->getAttrOfType<ArrayAttr>(
"initial_values");
99 if (numRegs && initialValues) {
100 for (
auto value : initialValues) {
101 if (!isa<IntegerAttr, UnitAttr>(value)) {
102 hwModule->emitError(
"initial_values attribute must contain only "
103 "integer or unit attributes");
104 return signalPassFailure();
107 bmcOp = builder.create<verif::BoundedModelCheckingOp>(
108 loc, 2 * bound, cast<IntegerAttr>(numRegs).getValue().getZExtValue(),
111 hwModule->emitOpError(
"no num_regs or initial_values attribute found - "
112 "please run externalize "
113 "registers pass first");
114 return signalPassFailure();
121 for (
auto input : hwModule.getInputTypes()) {
122 if (isa<seq::ClockType>(input)) {
124 hwModule.emitError(
"designs with multiple clocks not yet supported");
125 return signalPassFailure();
129 if (
auto hwStruct = dyn_cast<hw::StructType>(input)) {
130 for (
auto field : hwStruct.getElements()) {
131 if (isa<seq::ClockType>(field.type)) {
134 "designs with multiple clocks not yet supported");
135 return signalPassFailure();
143 OpBuilder::InsertionGuard guard(builder);
145 auto *initBlock = builder.createBlock(&bmcOp.getInit());
146 builder.setInsertionPointToStart(initBlock);
150 auto toClk = builder.
create<seq::ToClockOp>(loc, initVal);
151 builder.create<verif::YieldOp>(loc, ValueRange{toClk});
153 builder.create<verif::YieldOp>(loc, ValueRange{});
157 auto *loopBlock = builder.createBlock(&bmcOp.getLoop());
158 builder.setInsertionPointToStart(loopBlock);
162 builder.create<seq::FromClockOp>(loc, loopBlock->getArgument(0));
163 auto cNeg1 = builder.create<
hw::ConstantOp>(loc, builder.getI1Type(), -1);
165 auto toClk = builder.create<seq::ToClockOp>(loc, nClk);
167 builder.create<verif::YieldOp>(loc, ValueRange{toClk});
169 builder.create<verif::YieldOp>(loc, ValueRange{});
172 bmcOp.getCircuit().takeBody(hwModule.getBody());
176 auto createUniqueStringGlobal = [&](StringRef str) -> FailureOr<Value> {
177 Location loc = moduleOp.getLoc();
179 OpBuilder b = OpBuilder::atBlockEnd(moduleOp.getBody());
181 auto global = b.create<LLVM::GlobalOp>(
182 loc, arrayTy,
true, LLVM::linkage::Linkage::Private,
185 SymbolTable symTable(moduleOp);
186 if (failed(symTable.renameToUnique(global, {&symTable}))) {
187 return mlir::failure();
191 builder.create<LLVM::AddressOfOp>(loc, global)->getResult(0));
194 auto successStrAddr =
195 createUniqueStringGlobal(
"Bound reached with no violations!\n");
196 auto failureStrAddr =
197 createUniqueStringGlobal(
"Assertion can be violated!\n");
199 if (failed(successStrAddr) || failed(failureStrAddr)) {
200 moduleOp->emitOpError(
"could not create result message strings");
201 return signalPassFailure();
204 auto formatString = builder.create<LLVM::SelectOp>(
205 loc, bmcOp.getResult(), successStrAddr.value(), failureStrAddr.value());
206 builder.create<LLVM::CallOp>(loc, printfFunc, ValueRange{formatString});
207 builder.create<func::ReturnOp>(loc);
209 if (insertMainFunc) {
210 builder.setInsertionPointToEnd(getOperation().getBody());
211 Type i32Ty = builder.getI32Type();
212 auto mainFunc = builder.create<func::FuncOp>(
213 loc,
"main", builder.getFunctionType({i32Ty, ptrTy}, {i32Ty}));
214 builder.createBlock(&mainFunc.getBody(), {}, {i32Ty, ptrTy}, {loc, loc});
215 builder.create<func::CallOp>(loc, entryFunc, ValueRange{});
217 Value constZero = builder.create<LLVM::ConstantOp>(loc, i32Ty, 0);
218 builder.create<func::ReturnOp>(loc, constZero);
static SmallVector< T > concat(const SmallVectorImpl< T > &a, const SmallVectorImpl< T > &b)
Returns a new vector containing the concatenation of vectors a and b.
A namespace that is used to store existing names and generate new names in some scope within the IR.
def create(data_type, value)
Direction get(bool isOutput)
Returns an output direction if isOutput is true, otherwise returns an input direction.
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.