[llvm] [LLVM][SLSR] Add a debug counter (PR #119981)
Justin Fargnoli via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 18 12:58:37 PST 2024
================
@@ -690,7 +694,8 @@ bool StraightLineStrengthReduce::runOnFunction(Function &F) {
while (!Candidates.empty()) {
const Candidate &C = Candidates.back();
if (C.Basis != nullptr) {
- rewriteCandidateWithBasis(C, *C.Basis);
+ if (DebugCounter::shouldExecute(StraightLineStrengthReduceCounter))
+ rewriteCandidateWithBasis(C, *C.Basis);
----------------
justinfargnoli wrote:
Apologies for the last-minute review.
After looking through other uses of debug counters, it seems like `shouldExecute` is usually called within the function that implements the transformation as opposed to guarding the call to the function that implements the transformation.
i.e.
```
if (shouldExecute())
foo();
-->
void foo() {
if (shouldExecute())
return;
...
```
Can we make this change and then go forward with merging the PR?
https://github.com/llvm/llvm-project/pull/119981
More information about the llvm-commits
mailing list