Files
RedBear-OS/local/recipes/dev/libclc/source/llvm/test/TableGen/compare.td
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
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).
2026-08-01 05:13:02 +03:00

118 lines
3.0 KiB
TableGen

// RUN: llvm-tblgen %s | FileCheck %s
// RUN: not llvm-tblgen -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
// RUN: not llvm-tblgen -DERROR2 %s 2>&1 | FileCheck --check-prefix=ERROR2 %s
// This file tests the comparison bang operators.
class BitCompare<bit a, bit b> {
list<bit> compare = [!eq(a, b), !ne(a, b),
!lt(a, b), !le(a, b),
!gt(a, b), !ge(a, b)];
}
class BitsCompare<bits<3> a, bits<3> b> {
list<bit> compare = [!eq(a, b), !ne(a, b),
!lt(a, b), !le(a, b),
!gt(a, b), !ge(a, b)];
}
class IntCompare<int a, int b> {
list<bit> compare = [!eq(a, b), !ne(a, b),
!lt(a, b), !le(a, b),
!gt(a, b), !ge(a, b)];
}
class StringCompare<string a, string b> {
list<bit> compare = [!eq(a, b), !ne(a, b),
!lt(a, b), !le(a, b),
!gt(a, b), !ge(a, b)];
}
multiclass MC {
def _MC;
}
// CHECK: def Bit00
// CHECK: compare = [1, 0, 0, 1, 0, 1];
// CHECK: def Bit01
// CHECK: compare = [0, 1, 1, 1, 0, 0];
// CHECK: def Bit10
// CHECK: compare = [0, 1, 0, 0, 1, 1];
// CHECK: def Bit11
// CHECK: compare = [1, 0, 0, 1, 0, 1];
def Bit00 : BitCompare<0, 0>;
def Bit01 : BitCompare<0, 1>;
def Bit10 : BitCompare<1, 0>;
def Bit11 : BitCompare<1, 1>;
// CHECK: def Bits1
// CHECK: compare = [0, 1, 1, 1, 0, 0];
// CHECK: def Bits2
// CHECK: compare = [1, 0, 0, 1, 0, 1];
// CHECK: def Bits3
// CHECK: compare = [0, 1, 0, 0, 1, 1];
def Bits1 : BitsCompare<{0, 1, 0}, {1, 0, 1}>;
def Bits2 : BitsCompare<{0, 1, 1}, {0, 1, 1}>;
def Bits3 : BitsCompare<{1, 1, 1}, {0, 1, 1}>;
// CHECK: def Int1
// CHECK: compare = [0, 1, 1, 1, 0, 0];
// CHECK: def Int2
// CHECK: compare = [1, 0, 0, 1, 0, 1];
// CHECK: def Int3
// CHECK: compare = [0, 1, 0, 0, 1, 1];
def Int1 : IntCompare<-7, 13>;
def Int2 : IntCompare<42, 42>;
def Int3 : IntCompare<108, 42>;
// CHECK: def Record1
// CHECK: compare1 = [1, 0];
// CHECK: compare2 = [0, 1];
// CHECK: compare3 = [1, 1];
defm foo : MC;
defm bar : MC;
def Record1 {
list<bit> compare1 = [!eq(Bit00, Bit00), !eq(Bit00, Bit01)];
list<bit> compare2 = [!ne(Bit00, Bit00), !ne(Bit00, Int1)];
list<bit> compare3 = [!eq(bar_MC, bar_MC), !ne(bar_MC, foo_MC)];
}
// CHECK: def String1
// CHECK: compare = [0, 1, 1, 1, 0, 0];
// CHECK: def String2
// CHECK: compare = [1, 0, 0, 1, 0, 1];
// CHECK: def String3
// CHECK: compare = [0, 1, 0, 0, 1, 1];
// CHECK: def String4
// CHECK: compare = [0, 1, 0, 0, 1, 1];
def String1 : StringCompare<"bar", "foo">;
def String2 : StringCompare<"foo", "foo">;
def String3 : StringCompare<"foo", "bar">;
def String4 : StringCompare<"foo", "Foo">;
#ifdef ERROR1
// ERROR1: expected bit, bits, int, string, or record; got value
def Zerror1 {
bit compare1 = !eq([0, 1, 2], [0, 1, 2]);
}
#endif
#ifdef ERROR2
// ERROR2: expected bit, bits, int, or string; got value
def Zerror2 {
bit compare1 = !lt(Bit00, Bit00);
}
#endif