Files
clang-p2996/mlir/lib/Query/Matcher/MatchersInternal.cpp
Denzel-Brian Budii 3702d64801 [mlir] Reapply 141423 mlir-query combinators plus fix (#146156)
An uninitialized variable that caused a crash
(https://lab.llvm.org/buildbot/#/builders/164/builds/11004) was
identified using the memory analyzer, leading to the reversion of
https://github.com/llvm/llvm-project/pull/141423. This pull request
reapplies the previously reverted changes and includes the fix, which
has been tested locally following the steps at
https://github.com/google/sanitizers/wiki/SanitizerBotReproduceBuild.

Note: the fix is included as part of the second commit
2025-07-01 15:03:17 +02:00

34 lines
1.2 KiB
C++

//===--- MatchersInternal.cpp----------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "mlir/Query/Matcher/MatchersInternal.h"
#include "llvm/ADT/SetVector.h"
namespace mlir::query::matcher {
namespace internal {
bool allOfVariadicOperator(Operation *op, SetVector<Operation *> *matchedOps,
ArrayRef<DynMatcher> innerMatchers) {
return llvm::all_of(innerMatchers, [&](const DynMatcher &matcher) {
if (matchedOps)
return matcher.match(op, *matchedOps);
return matcher.match(op);
});
}
bool anyOfVariadicOperator(Operation *op, SetVector<Operation *> *matchedOps,
ArrayRef<DynMatcher> innerMatchers) {
return llvm::any_of(innerMatchers, [&](const DynMatcher &matcher) {
if (matchedOps)
return matcher.match(op, *matchedOps);
return matcher.match(op);
});
}
} // namespace internal
} // namespace mlir::query::matcher