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).
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
// RUN: %clang_cc1 %s -o - -O0 -emit-llvm \
|
|
// RUN: -triple spir64-unknown-unknown \
|
|
// RUN: -aux-triple x86_64-unknown-linux-gnu \
|
|
// RUN: -fsycl-is-device \
|
|
// RUN: -finclude-default-header \
|
|
// RUN: -debug-info-kind=limited -gno-column-info \
|
|
// RUN: | FileCheck %s
|
|
//
|
|
// In spir functions, validate the llvm.dbg.declare intrinsics created for
|
|
// parameters and locals refer to the stack allocation in the alloca address
|
|
// space.
|
|
//
|
|
|
|
#define KERNEL __attribute__((sycl_kernel))
|
|
|
|
template <typename KernelName, typename KernelType>
|
|
KERNEL void parallel_for(const KernelType &KernelFunc) {
|
|
KernelFunc();
|
|
}
|
|
|
|
void my_kernel(int my_param) {
|
|
int my_local = 0;
|
|
my_local = my_param;
|
|
}
|
|
|
|
int my_host() {
|
|
parallel_for<class K>([=]() { my_kernel(42); });
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: define {{.*}}spir_func void @_Z9my_kerneli(
|
|
// CHECK-SAME i32 %my_param
|
|
// CHECK-SAME: !dbg [[MY_KERNEL:![0-9]+]]
|
|
// CHECK-SAME: {
|
|
// CHECK: %my_param.addr = alloca i32, align 4
|
|
// CHECK: %my_local = alloca i32, align 4
|
|
// CHECK: #dbg_declare(
|
|
// CHECK-SAME: ptr %my_param.addr,
|
|
// CHECK-SAME: [[MY_PARAM:![0-9]+]],
|
|
// CHECK-SAME: !DIExpression(DW_OP_constu, 4, DW_OP_swap, DW_OP_xderef)
|
|
// CHECK-SAME: )
|
|
// CHECK: #dbg_declare(
|
|
// CHECK-SAME: ptr %my_local,
|
|
// CHECK-SAME: [[MY_LOCAL:![0-9]+]],
|
|
// CHECK-SAME: !DIExpression(DW_OP_constu, 4, DW_OP_swap, DW_OP_xderef)
|
|
// CHECK-SAME: )
|
|
// CHECK: }
|
|
|
|
// CHECK: [[MY_KERNEL]] = distinct !DISubprogram(
|
|
// CHECK-SAME: name: "my_kernel"
|
|
// CHECK-SAME: )
|
|
// CHECK: [[MY_PARAM]] = !DILocalVariable(
|
|
// CHECK-SAME: name: "my_param"
|
|
// CHECK-SAME: arg: 1
|
|
// CHECK-SAME: scope: [[MY_KERNEL]]
|
|
// CHECK-SAME: )
|
|
// CHECK: [[MY_LOCAL]] = !DILocalVariable(
|
|
// CHECK-SAME: name: "my_local"
|
|
// CHECK-SAME: scope: [[MY_KERNEL]]
|
|
// CHECK-SAME: )
|