cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
81 lines
3.3 KiB
C++
81 lines
3.3 KiB
C++
//===- mlir-query.cpp - MLIR Query Driver ---------------------------------===//
|
|
//
|
|
// 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 is a command line utility that queries a file from/to MLIR using one
|
|
// of the registered queries.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/IR/Dialect.h"
|
|
#include "mlir/IR/MLIRContext.h"
|
|
#include "mlir/IR/Matchers.h"
|
|
#include "mlir/InitAllDialects.h"
|
|
#include "mlir/Query/Matcher/Registry.h"
|
|
#include "mlir/Query/Matcher/SliceMatchers.h"
|
|
#include "mlir/Tools/mlir-query/MlirQueryMain.h"
|
|
|
|
using namespace mlir;
|
|
|
|
// This is needed because these matchers are defined as overloaded functions.
|
|
using HasOpAttrName = detail::AttrOpMatcher(StringRef);
|
|
using HasOpName = detail::NameOpMatcher(StringRef);
|
|
using IsConstantOp = detail::constant_op_matcher();
|
|
|
|
namespace test {
|
|
#ifdef MLIR_INCLUDE_TESTS
|
|
void registerTestDialect(DialectRegistry &);
|
|
#endif
|
|
} // namespace test
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
DialectRegistry dialectRegistry;
|
|
registerAllDialects(dialectRegistry);
|
|
|
|
query::matcher::Registry matcherRegistry;
|
|
|
|
// Matchers registered in alphabetical order for consistency:
|
|
matcherRegistry.registerMatcher("allOf", query::matcher::internal::allOf);
|
|
matcherRegistry.registerMatcher("anyOf", query::matcher::internal::anyOf);
|
|
matcherRegistry.registerMatcher(
|
|
"getAllDefinitions",
|
|
query::matcher::m_GetAllDefinitions<query::matcher::DynMatcher>);
|
|
matcherRegistry.registerMatcher(
|
|
"getDefinitions",
|
|
query::matcher::m_GetDefinitions<query::matcher::DynMatcher>);
|
|
matcherRegistry.registerMatcher(
|
|
"getDefinitionsByPredicate",
|
|
query::matcher::m_GetDefinitionsByPredicate<query::matcher::DynMatcher,
|
|
query::matcher::DynMatcher>);
|
|
matcherRegistry.registerMatcher(
|
|
"getUsersByPredicate",
|
|
query::matcher::m_GetUsersByPredicate<query::matcher::DynMatcher,
|
|
query::matcher::DynMatcher>);
|
|
matcherRegistry.registerMatcher("hasOpAttrName",
|
|
static_cast<HasOpAttrName *>(m_Attr));
|
|
matcherRegistry.registerMatcher("hasOpName", static_cast<HasOpName *>(m_Op));
|
|
matcherRegistry.registerMatcher("isConstantOp",
|
|
static_cast<IsConstantOp *>(m_Constant));
|
|
matcherRegistry.registerMatcher("isNegInfFloat", m_NegInfFloat);
|
|
matcherRegistry.registerMatcher("isNegZeroFloat", m_NegZeroFloat);
|
|
matcherRegistry.registerMatcher("isNonZero", m_NonZero);
|
|
matcherRegistry.registerMatcher("isOne", m_One);
|
|
matcherRegistry.registerMatcher("isOneFloat", m_OneFloat);
|
|
matcherRegistry.registerMatcher("isPosInfFloat", m_PosInfFloat);
|
|
matcherRegistry.registerMatcher("isPosZeroFloat", m_PosZeroFloat);
|
|
matcherRegistry.registerMatcher("isZero", m_Zero);
|
|
matcherRegistry.registerMatcher("isZeroFloat", m_AnyZeroFloat);
|
|
|
|
#ifdef MLIR_INCLUDE_TESTS
|
|
test::registerTestDialect(dialectRegistry);
|
|
#endif
|
|
MLIRContext context(dialectRegistry);
|
|
|
|
return failed(mlirQueryMain(argc, argv, context, matcherRegistry));
|
|
}
|