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).
200 lines
6.2 KiB
C++
200 lines
6.2 KiB
C++
// RUN: %clang_cc1 -std=c++14 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// Basic test.
|
|
namespace test0 {
|
|
struct A {
|
|
A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt;
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test04testEs(i16 noundef signext
|
|
// CHECK: [[N:%.*]] = sext i16 {{%.*}} to i32
|
|
// CHECK-NEXT: [[T0:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[N]], i32 4)
|
|
// CHECK-NEXT: [[T1:%.*]] = extractvalue { i32, i1 } [[T0]], 1
|
|
// CHECK-NEXT: [[T2:%.*]] = extractvalue { i32, i1 } [[T0]], 0
|
|
// CHECK-NEXT: [[T3:%.*]] = select i1 [[T1]], i32 -1, i32 [[T2]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T3]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[N]]
|
|
elt *test(short s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test0 with a nested array.
|
|
namespace test1 {
|
|
struct A {
|
|
A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt[100];
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test14testEs(i16 noundef signext
|
|
// CHECK: [[N:%.*]] = sext i16 {{%.*}} to i32
|
|
// CHECK-NEXT: [[T0:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[N]], i32 400)
|
|
// CHECK-NEXT: [[T1:%.*]] = extractvalue { i32, i1 } [[T0]], 1
|
|
// CHECK-NEXT: [[T2:%.*]] = extractvalue { i32, i1 } [[T0]], 0
|
|
// CHECK-NEXT: [[T3:%.*]] = mul i32 [[N]], 100
|
|
// CHECK-NEXT: [[T4:%.*]] = select i1 [[T1]], i32 -1, i32 [[T2]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T4]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[T3]]
|
|
elt *test(short s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test1 with an array cookie.
|
|
namespace test2 {
|
|
struct A {
|
|
A();
|
|
~A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt[100];
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test24testEs(i16 noundef signext
|
|
// CHECK: [[N:%.*]] = sext i16 {{%.*}} to i32
|
|
// CHECK-NEXT: [[T0:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[N]], i32 400)
|
|
// CHECK-NEXT: [[T1:%.*]] = extractvalue { i32, i1 } [[T0]], 1
|
|
// CHECK-NEXT: [[T2:%.*]] = extractvalue { i32, i1 } [[T0]], 0
|
|
// CHECK-NEXT: [[T3:%.*]] = mul i32 [[N]], 100
|
|
// CHECK-NEXT: [[T4:%.*]] = call { i32, i1 } @llvm.uadd.with.overflow.i32(i32 [[T2]], i32 4)
|
|
// CHECK-NEXT: [[T5:%.*]] = extractvalue { i32, i1 } [[T4]], 1
|
|
// CHECK-NEXT: [[T6:%.*]] = or i1 [[T1]], [[T5]]
|
|
// CHECK-NEXT: [[T7:%.*]] = extractvalue { i32, i1 } [[T4]], 0
|
|
// CHECK-NEXT: [[T8:%.*]] = select i1 [[T6]], i32 -1, i32 [[T7]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T8]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[T3]]
|
|
elt *test(short s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test0 with a 1-byte element.
|
|
namespace test4 {
|
|
struct A {
|
|
A();
|
|
};
|
|
|
|
typedef A elt;
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test44testEs(i16 noundef signext
|
|
// CHECK: [[N:%.*]] = sext i16 {{%.*}} to i32
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[N]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[N]]
|
|
elt *test(short s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test4 with no sext required.
|
|
namespace test5 {
|
|
struct A {
|
|
A();
|
|
};
|
|
|
|
typedef A elt;
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test54testEi(i32
|
|
// CHECK: [[N:%.*]] = load i32, ptr
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[N]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[N]]
|
|
elt *test(int s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test0 with an unsigned size.
|
|
namespace test6 {
|
|
struct A {
|
|
A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt;
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test64testEt(i16 noundef zeroext
|
|
// CHECK: [[N:%.*]] = zext i16 {{%.*}} to i32
|
|
// CHECK-NEXT: [[T0:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[N]], i32 4)
|
|
// CHECK-NEXT: [[T1:%.*]] = extractvalue { i32, i1 } [[T0]], 1
|
|
// CHECK-NEXT: [[T2:%.*]] = extractvalue { i32, i1 } [[T0]], 0
|
|
// CHECK-NEXT: [[T3:%.*]] = select i1 [[T1]], i32 -1, i32 [[T2]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T3]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[N]]
|
|
elt *test(unsigned short s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test1 with an unsigned size.
|
|
namespace test7 {
|
|
struct A {
|
|
A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt[100];
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test74testEt(i16 noundef zeroext
|
|
// CHECK: [[N:%.*]] = zext i16 {{%.*}} to i32
|
|
// CHECK-NEXT: [[T0:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[N]], i32 400)
|
|
// CHECK-NEXT: [[T1:%.*]] = extractvalue { i32, i1 } [[T0]], 1
|
|
// CHECK-NEXT: [[T2:%.*]] = extractvalue { i32, i1 } [[T0]], 0
|
|
// CHECK-NEXT: [[T3:%.*]] = mul i32 [[N]], 100
|
|
// CHECK-NEXT: [[T4:%.*]] = select i1 [[T1]], i32 -1, i32 [[T2]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T4]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[T3]]
|
|
elt *test(unsigned short s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test0 with a signed type larger than size_t.
|
|
namespace test8 {
|
|
struct A {
|
|
A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt;
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test84testEx(i64
|
|
// CHECK: [[N:%.*]] = load i64, ptr
|
|
// CHECK-NEXT: [[T1:%.*]] = trunc i64 [[N]] to i32
|
|
// CHECK-NEXT: [[T2:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[T1]], i32 4)
|
|
// CHECK-NEXT: [[T3:%.*]] = extractvalue { i32, i1 } [[T2]], 1
|
|
// CHECK-NEXT: [[T5:%.*]] = extractvalue { i32, i1 } [[T2]], 0
|
|
// CHECK-NEXT: [[T6:%.*]] = select i1 [[T3]], i32 -1, i32 [[T5]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T6]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[T1]]
|
|
elt *test(long long s) {
|
|
return new elt[s];
|
|
}
|
|
}
|
|
|
|
// test8 with an unsigned type.
|
|
namespace test9 {
|
|
struct A {
|
|
A();
|
|
int x;
|
|
};
|
|
|
|
typedef A elt;
|
|
|
|
// CHECK: define{{.*}} ptr @_ZN5test94testEy(i64
|
|
// CHECK: [[N:%.*]] = load i64, ptr
|
|
// CHECK-NEXT: [[T1:%.*]] = trunc i64 [[N]] to i32
|
|
// CHECK-NEXT: [[T2:%.*]] = call { i32, i1 } @llvm.umul.with.overflow.i32(i32 [[T1]], i32 4)
|
|
// CHECK-NEXT: [[T3:%.*]] = extractvalue { i32, i1 } [[T2]], 1
|
|
// CHECK-NEXT: [[T5:%.*]] = extractvalue { i32, i1 } [[T2]], 0
|
|
// CHECK-NEXT: [[T6:%.*]] = select i1 [[T3]], i32 -1, i32 [[T5]]
|
|
// CHECK-NEXT: call noalias noundef nonnull ptr @_Znaj(i32 noundef [[T6]])
|
|
// CHECK: getelementptr inbounds {{.*}}, i32 [[T1]]
|
|
elt *test(unsigned long long s) {
|
|
return new elt[s];
|
|
}
|
|
}
|