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).
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
// REQUIRES: x86-registered-target
|
|
// RUN: %clang_cc1 %s -triple i386-apple-darwin10 -fasm-blocks -emit-llvm -o - | FileCheck %s
|
|
|
|
struct A {
|
|
int a1;
|
|
int a2;
|
|
struct B {
|
|
int b1;
|
|
int b2;
|
|
} a3;
|
|
};
|
|
|
|
namespace asdf {
|
|
A a_global;
|
|
}
|
|
|
|
extern "C" int test_param_field(A p) {
|
|
// CHECK: define{{.*}} i32 @test_param_field(ptr noundef byval(%struct.A) align 4 %p)
|
|
// CHECK: getelementptr inbounds nuw %struct.A, ptr %p, i32 0, i32 0
|
|
// CHECK: call i32 asm sideeffect inteldialect "mov eax, $1"
|
|
// CHECK: ret i32
|
|
__asm mov eax, p.a1
|
|
}
|
|
|
|
extern "C" int test_namespace_global() {
|
|
// CHECK: define{{.*}} i32 @test_namespace_global()
|
|
// CHECK: call i32 asm sideeffect inteldialect "mov eax, $1", "{{.*}}"(ptr elementtype(i32) getelementptr inbounds nuw (%"struct.A::B", ptr getelementptr inbounds nuw (%struct.A, ptr @_ZN4asdf8a_globalE, i32 0, i32 2), i32 0, i32 1))
|
|
// CHECK: ret i32
|
|
__asm mov eax, asdf::a_global.a3.b2
|
|
}
|
|
|
|
template <bool Signed>
|
|
struct make_storage_type {
|
|
struct type {
|
|
struct B {
|
|
int a;
|
|
int x;
|
|
} b;
|
|
};
|
|
};
|
|
|
|
template <bool Signed>
|
|
struct msvc_dcas_x86 {
|
|
typedef typename make_storage_type<Signed>::type storage_type;
|
|
void store() __asm("PR26001") {
|
|
storage_type p;
|
|
__asm mov edx, p.b.x;
|
|
}
|
|
};
|
|
|
|
template void msvc_dcas_x86<false>::store();
|
|
// CHECK: define weak_odr void @"\01PR26001"(
|
|
// CHECK: %[[P:.*]] = alloca %"struct.make_storage_type<false>::type", align 4
|
|
// CHECK: %[[B:.*]] = getelementptr inbounds nuw %"struct.make_storage_type<false>::type", ptr %[[P]], i32 0, i32 0
|
|
// CHECK: %[[X:.*]] = getelementptr inbounds nuw %"struct.make_storage_type<false>::type::B", ptr %[[B]], i32 0, i32 1
|
|
// CHECK: call void asm sideeffect inteldialect "mov edx, $0", "*m,~{edx},~{dirflag},~{fpsr},~{flags}"(ptr elementtype(i32) %[[X]])
|