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).
96 lines
3.2 KiB
C++
96 lines
3.2 KiB
C++
//===-- CodeGenFunction.h - Target features for builtin ---------*- C++ -*-===//
|
|
//
|
|
// 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 the internal required target features for builtin.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_LIB_BASIC_BUILTINTARGETFEATURES_H
|
|
#define LLVM_CLANG_LIB_BASIC_BUILTINTARGETFEATURES_H
|
|
#include "llvm/ADT/StringMap.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
using llvm::StringRef;
|
|
|
|
namespace clang {
|
|
namespace Builtin {
|
|
/// TargetFeatures - This class is used to check whether the builtin function
|
|
/// has the required tagert specific features. It is able to support the
|
|
/// combination of ','(and), '|'(or), and '()'. By default, the priority of
|
|
/// ',' is higher than that of '|' .
|
|
/// E.g:
|
|
/// A,B|C means the builtin function requires both A and B, or C.
|
|
/// If we want the builtin function requires both A and B, or both A and C,
|
|
/// there are two ways: A,B|A,C or A,(B|C).
|
|
/// The FeaturesList should not contain spaces, and brackets must appear in
|
|
/// pairs.
|
|
class TargetFeatures {
|
|
struct FeatureListStatus {
|
|
bool HasFeatures;
|
|
StringRef CurFeaturesList;
|
|
};
|
|
|
|
const llvm::StringMap<bool> &CallerFeatureMap;
|
|
|
|
FeatureListStatus getAndFeatures(StringRef FeatureList) {
|
|
int InParentheses = 0;
|
|
bool HasFeatures = true;
|
|
size_t SubexpressionStart = 0;
|
|
for (size_t i = 0, e = FeatureList.size(); i < e; ++i) {
|
|
char CurrentToken = FeatureList[i];
|
|
switch (CurrentToken) {
|
|
default:
|
|
break;
|
|
case '(':
|
|
if (InParentheses == 0)
|
|
SubexpressionStart = i + 1;
|
|
++InParentheses;
|
|
break;
|
|
case ')':
|
|
--InParentheses;
|
|
assert(InParentheses >= 0 && "Parentheses are not in pair");
|
|
[[fallthrough]];
|
|
case '|':
|
|
case ',':
|
|
if (InParentheses == 0) {
|
|
if (HasFeatures && i != SubexpressionStart) {
|
|
StringRef F = FeatureList.slice(SubexpressionStart, i);
|
|
HasFeatures = CurrentToken == ')' ? hasRequiredFeatures(F)
|
|
: CallerFeatureMap.lookup(F);
|
|
}
|
|
SubexpressionStart = i + 1;
|
|
if (CurrentToken == '|') {
|
|
return {HasFeatures, FeatureList.substr(SubexpressionStart)};
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
assert(InParentheses == 0 && "Parentheses are not in pair");
|
|
if (HasFeatures && SubexpressionStart != FeatureList.size())
|
|
HasFeatures =
|
|
CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart));
|
|
return {HasFeatures, StringRef()};
|
|
}
|
|
|
|
public:
|
|
bool hasRequiredFeatures(StringRef FeatureList) {
|
|
FeatureListStatus FS = {false, FeatureList};
|
|
while (!FS.HasFeatures && !FS.CurFeaturesList.empty())
|
|
FS = getAndFeatures(FS.CurFeaturesList);
|
|
return FS.HasFeatures;
|
|
}
|
|
|
|
TargetFeatures(const llvm::StringMap<bool> &CallerFeatureMap)
|
|
: CallerFeatureMap(CallerFeatureMap) {}
|
|
};
|
|
|
|
} // namespace Builtin
|
|
} // namespace clang
|
|
#endif /* CLANG_LIB_BASIC_BUILTINTARGETFEATURES_H */
|