//===- SCFToControlFlow.h - SCF to ControlFlow Pass entrypoint --*- 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 // //===----------------------------------------------------------------------===// #ifndef MLIR_CONVERSION_SCFTOCONTROLFLOW_SCFTOCONTROLFLOW_H_ #define MLIR_CONVERSION_SCFTOCONTROLFLOW_SCFTOCONTROLFLOW_H_ #include <memory> namespace mlir { class Pass; class RewritePatternSet; #define GEN_PASS_DECL_SCFTOCONTROLFLOW #include "mlir/Conversion/Passes.h.inc" /// Collect a set of patterns to convert SCF operations to CFG branch-based /// operations within the ControlFlow dialect. void populateSCFToControlFlowConversionPatterns(RewritePatternSet &patterns); /// Creates a pass to convert SCF operations to CFG branch-based operation in /// the ControlFlow dialect. std::unique_ptr<Pass> createConvertSCFToCFPass(); } // namespace mlir #endif // MLIR_CONVERSION_SCFTOCONTROLFLOW_SCFTOCONTROLFLOW_H_