Files
RedBear-OS/local/recipes/dev/libclc/source/llvm/test/Verifier/callbr.ll
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

123 lines
3.2 KiB
LLVM

; RUN: not opt -S %s -passes=verify 2>&1 | FileCheck %s
; CHECK: Number of label constraints does not match number of callbr dests
; CHECK-NEXT: #too_few_label_constraints
define void @too_few_label_constraints() {
callbr void asm sideeffect "#too_few_label_constraints", "!i"()
to label %1 [label %2, label %3]
1:
ret void
2:
ret void
3:
ret void
}
; CHECK-NOT: Number of label constraints does not match number of callbr dests
define void @correct_label_constraints() {
callbr void asm sideeffect "${0:l} ${1:l}", "!i,!i"()
to label %1 [label %2, label %3]
1:
ret void
2:
ret void
3:
ret void
}
; CHECK: Number of label constraints does not match number of callbr dests
; CHECK-NEXT: #too_many_label_constraints
define void @too_many_label_constraints() {
callbr void asm sideeffect "#too_many_label_constraints", "!i,!i,!i"()
to label %1 [label %2, label %3]
1:
ret void
2:
ret void
3:
ret void
}
; CHECK: Label constraints can only be used with callbr
; CHECK-NEXT: #label_constraint_without_callbr
define void @label_constraint_without_callbr() {
call void asm sideeffect "#label_constraint_without_callbr", "!i"()
ret void
}
; CHECK: Number of label constraints does not match number of callbr dests
; CHECK-NEXT: #callbr_without_label_constraint
define void @callbr_without_label_constraint() {
callbr void asm sideeffect "#callbr_without_label_constraint", ""()
to label %1 [label %2]
1:
ret void
2:
ret void
}
;; Ensure you can use the return value of a callbr in indirect targets.
;; No issue!
define i32 @test4(i1 %var) {
entry:
%ret = callbr i32 asm sideeffect "#test4", "=r,!i"() to label %normal [label %abnormal]
normal:
ret i32 0
abnormal:
ret i32 %ret
}
;; Tests of the callbr.landingpad intrinsic function.
declare i32 @llvm.callbr.landingpad.i64(i64)
define void @callbrpad_bad_type() {
entry:
; CHECK: Intrinsic has incorrect argument type!
; CHECK-NEXT: ptr @llvm.callbr.landingpad.i64
%foo = call i32 @llvm.callbr.landingpad.i64(i64 42)
ret void
}
declare i32 @llvm.callbr.landingpad.i32(i32)
define i32 @callbrpad_multi_preds() {
entry:
%foo = callbr i32 asm "", "=r,!i"() to label %direct [label %indirect]
direct:
br label %indirect
indirect:
; CHECK-NEXT: Intrinsic in block must have 1 unique predecessor
; CHECK-NEXT: %out = call i32 @llvm.callbr.landingpad.i32(i32 %foo)
%out = call i32 @llvm.callbr.landingpad.i32(i32 %foo)
ret i32 %out
}
define void @callbrpad_wrong_callbr() {
entry:
%foo = callbr i32 asm "", "=r,!i"() to label %direct [label %indirect]
direct:
; CHECK-NEXT: Intrinsic's corresponding callbr must have intrinsic's parent basic block in indirect destination list
; CHECK-NEXT: %x = call i32 @llvm.callbr.landingpad.i32(i32 %foo)
%x = call i32 @llvm.callbr.landingpad.i32(i32 %foo)
ret void
indirect:
ret void
}
declare i32 @foo(i32)
define i32 @test_callbr_landingpad_not_first_inst() {
entry:
%0 = callbr i32 asm "", "=r,!i"()
to label %asm.fallthrough [label %landingpad]
asm.fallthrough:
ret i32 42
landingpad:
%foo = call i32 @foo(i32 42)
; CHECK-NEXT: No other instructions may proceed intrinsic
; CHECK-NEXT: %out = call i32 @llvm.callbr.landingpad.i32(i32 %0)
%out = call i32 @llvm.callbr.landingpad.i32(i32 %0)
ret i32 %out
}