- Notifications
You must be signed in to change notification settings - Fork 15.3k
[flang][CodeGen][NFC] Reduce PreCGRewrite pass boilerplate #94329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The pass constructor can be generated automatically by tablegen. This pass is module-level and runs on all instances of target operations inside of it and so does not need any modification to support alternative top-level operations.
| @llvm/pr-subscribers-flang-codegen @llvm/pr-subscribers-flang-fir-hlfir Author: Tom Eccles (tblah) ChangesThe pass constructor can be generated automatically by tablegen. This pass is module-level and runs on all instances of target operations inside of it and so does not need any modification to support alternative top-level operations. Full diff: https://github.com/llvm/llvm-project/pull/94329.diff 4 Files Affected:
diff --git a/flang/include/flang/Optimizer/CodeGen/CGPasses.td b/flang/include/flang/Optimizer/CodeGen/CGPasses.td index d23f07a5c8f11..df042187b2a71 100644 --- a/flang/include/flang/Optimizer/CodeGen/CGPasses.td +++ b/flang/include/flang/Optimizer/CodeGen/CGPasses.td @@ -43,7 +43,6 @@ def CodeGenRewrite : Pass<"cg-rewrite", "mlir::ModuleOp"> { let description = [{ Fuse specific subgraphs into single Ops for code generation. }]; - let constructor = "::fir::createFirCodeGenRewritePass()"; let dependentDialects = [ "fir::FIROpsDialect", "fir::FIRCodeGenDialect" ]; diff --git a/flang/include/flang/Optimizer/CodeGen/CodeGen.h b/flang/include/flang/Optimizer/CodeGen/CodeGen.h index b2773abbd8411..3063bf1c0e020 100644 --- a/flang/include/flang/Optimizer/CodeGen/CodeGen.h +++ b/flang/include/flang/Optimizer/CodeGen/CodeGen.h @@ -28,11 +28,6 @@ struct NameUniquer; #define GEN_PASS_DECL_BOXEDPROCEDUREPASS #include "flang/Optimizer/CodeGen/CGPasses.h.inc" -/// Prerequiste pass for code gen. Perform intermediate rewrites to perform -/// the code gen (to LLVM-IR dialect) conversion. -std::unique_ptr<mlir::Pass> createFirCodeGenRewritePass( - CodeGenRewriteOptions Options = CodeGenRewriteOptions{}); - /// FirTargetRewritePass options. struct TargetRewriteOptions { bool noCharacterConversion{}; diff --git a/flang/include/flang/Tools/CLOptions.inc b/flang/include/flang/Tools/CLOptions.inc index cca3344da02a1..fb3ec75d4078a 100644 --- a/flang/include/flang/Tools/CLOptions.inc +++ b/flang/include/flang/Tools/CLOptions.inc @@ -178,7 +178,7 @@ inline void addCodeGenRewritePass(mlir::PassManager &pm, bool preserveDeclare) { fir::CodeGenRewriteOptions options; options.preserveDeclare = preserveDeclare; addPassConditionally(pm, disableCodeGenRewrite, - [&]() { return fir::createFirCodeGenRewritePass(options); }); + [&]() { return fir::createCodeGenRewrite(options); }); } inline void addTargetRewritePass(mlir::PassManager &pm) { diff --git a/flang/lib/Optimizer/CodeGen/PreCGRewrite.cpp b/flang/lib/Optimizer/CodeGen/PreCGRewrite.cpp index c54a7457db761..6a0cd5ef4b34e 100644 --- a/flang/lib/Optimizer/CodeGen/PreCGRewrite.cpp +++ b/flang/lib/Optimizer/CodeGen/PreCGRewrite.cpp @@ -327,7 +327,8 @@ class DummyScopeOpConversion class CodeGenRewrite : public fir::impl::CodeGenRewriteBase<CodeGenRewrite> { public: - CodeGenRewrite(fir::CodeGenRewriteOptions opts) : Base(opts) {} + using CodeGenRewriteBase<CodeGenRewrite>::CodeGenRewriteBase; + void runOnOperation() override final { mlir::ModuleOp mod = getOperation(); @@ -361,11 +362,6 @@ class CodeGenRewrite : public fir::impl::CodeGenRewriteBase<CodeGenRewrite> { } // namespace -std::unique_ptr<mlir::Pass> -fir::createFirCodeGenRewritePass(fir::CodeGenRewriteOptions Options) { - return std::make_unique<CodeGenRewrite>(Options); -} - void fir::populatePreCGRewritePatterns(mlir::RewritePatternSet &patterns, bool preserveDeclare) { patterns.insert<EmboxConversion, ArrayCoorConversion, ReboxConversion, |
jeanPerier left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks
clementval left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
| FYI, the windows failure seems related to #93718, I commented there. |
abidh left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks.
The pass constructor can be generated automatically by tablegen.
This pass is module-level and runs on all instances of target operations inside of it and so does not need any modification to support alternative top-level operations.