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).
66 lines
2.0 KiB
C++
66 lines
2.0 KiB
C++
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 | FileCheck %s
|
|
|
|
struct ClassWithoutDtor {
|
|
char x;
|
|
};
|
|
|
|
void check_array_no_cookies() {
|
|
// CHECK: define dso_local void @"?check_array_no_cookies@@YAXXZ"() [[NUW:#[0-9]+]]
|
|
|
|
// CHECK: call noalias noundef nonnull ptr @"??_U@YAPAXI@Z"(i32 noundef 42)
|
|
ClassWithoutDtor *array = new ClassWithoutDtor[42];
|
|
|
|
// CHECK: call void @"??_V@YAXPAX@Z"(
|
|
delete [] array;
|
|
|
|
}
|
|
|
|
struct ClassWithDtor {
|
|
char x;
|
|
~ClassWithDtor() {}
|
|
};
|
|
|
|
void check_array_cookies_simple() {
|
|
// CHECK: define {{.*}} @"?check_array_cookies_simple@@YAXXZ"()
|
|
|
|
ClassWithDtor *array = new ClassWithDtor[42];
|
|
// CHECK: [[ALLOCATED:%.*]] = call noalias noundef nonnull ptr @"??_U@YAPAXI@Z"(i32 noundef 46)
|
|
// 46 = 42 + size of cookie (4)
|
|
// CHECK: store i32 42, ptr [[ALLOCATED]]
|
|
// CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8, ptr [[ALLOCATED]], i32 4
|
|
|
|
delete [] array;
|
|
// CHECK: getelementptr inbounds i8, ptr {{%.*}}, i32 -4
|
|
}
|
|
|
|
struct __attribute__((aligned(8))) ClassWithAlignment {
|
|
// FIXME: replace __attribute__((aligned(8))) with __declspec(align(8)) once
|
|
// http://llvm.org/bugs/show_bug.cgi?id=12631 is fixed.
|
|
int *x, *y;
|
|
~ClassWithAlignment() {}
|
|
};
|
|
|
|
void check_array_cookies_aligned() {
|
|
// CHECK: define {{.*}} @"?check_array_cookies_aligned@@YAXXZ"()
|
|
ClassWithAlignment *array = new ClassWithAlignment[42];
|
|
// CHECK: [[ALLOCATED:%.*]] = call noalias noundef nonnull ptr @"??_U@YAPAXI@Z"(i32 noundef 344)
|
|
// 344 = 42*8 + size of cookie (8, due to alignment)
|
|
// CHECK: store i32 42, ptr [[ALLOCATED]]
|
|
// CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8, ptr [[ALLOCATED]], i32 8
|
|
|
|
delete [] array;
|
|
// CHECK: getelementptr inbounds i8, ptr {{.*}}, i32 -8
|
|
}
|
|
|
|
namespace PR23990 {
|
|
struct S {
|
|
char x[42];
|
|
void operator delete[](void *p, __SIZE_TYPE__);
|
|
// CHECK-LABEL: define dso_local void @"?delete_s@PR23990@@YAXPAUS@1@@Z"(
|
|
// CHECK: call void @"??_VS@PR23990@@SAXPAXI@Z"(ptr noundef {{.*}}, i32 noundef 42)
|
|
};
|
|
void delete_s(S *s) { delete[] s; }
|
|
}
|
|
|
|
// CHECK: attributes [[NUW]] = { mustprogress noinline nounwind{{.*}} }
|