-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[CIR] Upstream cir-canonicalize pass #131891
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This file declares an interface for running CIR-to-CIR passes. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef CLANG_CIR_CIRTOCIRPASSES_H | ||
#define CLANG_CIR_CIRTOCIRPASSES_H | ||
|
||
#include "mlir/Pass/Pass.h" | ||
|
||
#include <memory> | ||
|
||
namespace clang { | ||
class ASTContext; | ||
} | ||
|
||
namespace mlir { | ||
class MLIRContext; | ||
class ModuleOp; | ||
} // namespace mlir | ||
|
||
namespace cir { | ||
|
||
// Run set of cleanup/prepare/etc passes CIR <-> CIR. | ||
mlir::LogicalResult runCIRToCIRPasses(mlir::ModuleOp theModule, | ||
mlir::MLIRContext &mlirCtx, | ||
clang::ASTContext &astCtx, | ||
bool enableVerifier); | ||
|
||
} // namespace cir | ||
|
||
#endif // CLANG_CIR_CIRTOCIRPASSES_H_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This file implements pass that canonicalizes CIR operations, eliminating | ||
// redundant branches, empty scopes, and other unnecessary operations. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "PassDetail.h" | ||
#include "mlir/Dialect/Func/IR/FuncOps.h" | ||
#include "mlir/IR/Block.h" | ||
#include "mlir/IR/Operation.h" | ||
#include "mlir/IR/PatternMatch.h" | ||
#include "mlir/IR/Region.h" | ||
#include "mlir/Support/LogicalResult.h" | ||
#include "mlir/Transforms/GreedyPatternRewriteDriver.h" | ||
#include "clang/CIR/Dialect/IR/CIRDialect.h" | ||
#include "clang/CIR/Dialect/Passes.h" | ||
#include "clang/CIR/MissingFeatures.h" | ||
|
||
using namespace mlir; | ||
using namespace cir; | ||
|
||
namespace { | ||
|
||
/// Removes branches between two blocks if it is the only branch. | ||
/// | ||
/// From: | ||
/// ^bb0: | ||
/// cir.br ^bb1 | ||
/// ^bb1: // pred: ^bb0 | ||
/// cir.return | ||
/// | ||
/// To: | ||
/// ^bb0: | ||
/// cir.return | ||
struct RemoveRedundantBranches : public OpRewritePattern<BrOp> { | ||
using OpRewritePattern<BrOp>::OpRewritePattern; | ||
|
||
LogicalResult matchAndRewrite(BrOp op, | ||
PatternRewriter &rewriter) const final { | ||
Block *block = op.getOperation()->getBlock(); | ||
Block *dest = op.getDest(); | ||
|
||
assert(!cir::MissingFeatures::labelOp()); | ||
|
||
// Single edge between blocks: merge it. | ||
if (block->getNumSuccessors() == 1 && | ||
dest->getSinglePredecessor() == block) { | ||
rewriter.eraseOp(op); | ||
rewriter.mergeBlocks(dest, block); | ||
return success(); | ||
} | ||
|
||
return failure(); | ||
} | ||
}; | ||
|
||
struct RemoveEmptyScope | ||
: public OpRewritePattern<ScopeOp>::SplitMatchAndRewrite { | ||
using SplitMatchAndRewrite::SplitMatchAndRewrite; | ||
|
||
LogicalResult match(ScopeOp op) const final { | ||
// TODO: Remove this logic once CIR uses MLIR infrastructure to remove | ||
// trivially dead operations | ||
if (op.isEmpty()) | ||
return success(); | ||
|
||
Region ®ion = op.getScopeRegion(); | ||
if (region.getBlocks().front().getOperations().size() == 1) | ||
return success(isa<YieldOp>(region.getBlocks().front().front())); | ||
|
||
return failure(); | ||
} | ||
|
||
void rewrite(ScopeOp op, PatternRewriter &rewriter) const final { | ||
rewriter.eraseOp(op); | ||
} | ||
}; | ||
|
||
//===----------------------------------------------------------------------===// | ||
// CIRCanonicalizePass | ||
//===----------------------------------------------------------------------===// | ||
|
||
struct CIRCanonicalizePass : public CIRCanonicalizeBase<CIRCanonicalizePass> { | ||
using CIRCanonicalizeBase::CIRCanonicalizeBase; | ||
|
||
// The same operation rewriting done here could have been performed | ||
// by CanonicalizerPass (adding hasCanonicalizer for target Ops and | ||
// implementing the same from above in CIRDialects.cpp). However, it's | ||
// currently too aggressive for static analysis purposes, since it might | ||
// remove things where a diagnostic can be generated. | ||
// | ||
// FIXME: perhaps we can add one more mode to GreedyRewriteConfig to | ||
// disable this behavior. | ||
void runOnOperation() override; | ||
}; | ||
|
||
void populateCIRCanonicalizePatterns(RewritePatternSet &patterns) { | ||
// clang-format off | ||
patterns.add< | ||
RemoveRedundantBranches, | ||
RemoveEmptyScope | ||
>(patterns.getContext()); | ||
// clang-format on | ||
} | ||
|
||
void CIRCanonicalizePass::runOnOperation() { | ||
// Collect rewrite patterns. | ||
RewritePatternSet patterns(&getContext()); | ||
populateCIRCanonicalizePatterns(patterns); | ||
|
||
// Collect operations to apply patterns. | ||
llvm::SmallVector<Operation *, 16> ops; | ||
getOperation()->walk([&](Operation *op) { | ||
assert(!cir::MissingFeatures::brCondOp()); | ||
assert(!cir::MissingFeatures::switchOp()); | ||
assert(!cir::MissingFeatures::tryOp()); | ||
assert(!cir::MissingFeatures::unaryOp()); | ||
assert(!cir::MissingFeatures::selectOp()); | ||
assert(!cir::MissingFeatures::complexCreateOp()); | ||
assert(!cir::MissingFeatures::complexRealOp()); | ||
assert(!cir::MissingFeatures::complexImagOp()); | ||
assert(!cir::MissingFeatures::callOp()); | ||
// CastOp here is to perform a manual `fold` in | ||
// applyOpPatternsGreedily | ||
if (isa<BrOp, ScopeOp, CastOp>(op)) | ||
ops.push_back(op); | ||
}); | ||
|
||
// Apply patterns. | ||
if (applyOpPatternsGreedily(ops, std::move(patterns)).failed()) | ||
signalPassFailure(); | ||
} | ||
|
||
} // namespace | ||
|
||
std::unique_ptr<Pass> mlir::createCIRCanonicalizePass() { | ||
return std::make_unique<CIRCanonicalizePass>(); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
add_clang_library(MLIRCIRTransforms | ||
CIRCanonicalize.cpp | ||
FlattenCFG.cpp | ||
|
||
DEPENDS | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.