Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/CodeGen/PR32874.c
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

62 lines
2.0 KiB
C

// RUN: %clang_cc1 -x c -emit-llvm -o - -triple x86_64-apple-darwin10 %s \
// RUN: -w -fsanitize=signed-integer-overflow,unsigned-integer-overflow,integer-divide-by-zero,float-divide-by-zero \
// RUN: | FileCheck %s
// CHECK-LABEL: define{{.*}} void @foo
// CHECK-NOT: !nosanitize
void foo(const int *p) {
// __builtin_prefetch expects its optional arguments to be constant integers.
// Check that ubsan does not instrument any safe arithmetic performed in
// operands to __builtin_prefetch. (A clang frontend check should reject
// unsafe arithmetic in these operands.)
__builtin_prefetch(p, 0 + 1, 0 + 3);
__builtin_prefetch(p, 1 - 0, 3 - 0);
__builtin_prefetch(p, 1 * 1, 1 * 3);
__builtin_prefetch(p, 1 / 1, 3 / 1);
__builtin_prefetch(p, 3 % 2, 3 % 1);
__builtin_prefetch(p, 0U + 1U, 0U + 3U);
__builtin_prefetch(p, 1U - 0U, 3U - 0U);
__builtin_prefetch(p, 1U * 1U, 1U * 3U);
__builtin_prefetch(p, 1U / 1U, 3U / 1U);
__builtin_prefetch(p, 3U % 2U, 3U % 1U);
}
// CHECK-LABEL: define{{.*}} void @ub_constant_arithmetic
void ub_constant_arithmetic(void) {
// Check that we still instrument unsafe arithmetic, even if it is known to
// be unsafe at compile time.
int INT_MIN = 0xffffffff;
int INT_MAX = 0x7fffffff;
// CHECK: call void @__ubsan_handle_add_overflow
// CHECK: call void @__ubsan_handle_add_overflow
INT_MAX + 1;
INT_MAX + -1;
// CHECK: call void @__ubsan_handle_negate_overflow
// CHECK: call void @__ubsan_handle_sub_overflow
-INT_MIN;
-INT_MAX - 2;
// CHECK: call void @__ubsan_handle_mul_overflow
// CHECK: call void @__ubsan_handle_mul_overflow
INT_MAX * INT_MAX;
INT_MIN * INT_MIN;
// CHECK: call void @__ubsan_handle_divrem_overflow
// CHECK: call void @__ubsan_handle_divrem_overflow
1 / 0;
INT_MIN / -1;
// CHECK: call void @__ubsan_handle_divrem_overflow
// CHECK: call void @__ubsan_handle_divrem_overflow
1 % 0;
INT_MIN % -1;
// CHECK: call void @__ubsan_handle_divrem_overflow
1.0 / 0.0;
}