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).
209 lines
9.3 KiB
C++
209 lines
9.3 KiB
C++
// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++11 -fcoverage-mcdc -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only %s | FileCheck %s
|
|
|
|
bool func_if_and(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
if (a && b && c && d && e && f)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 4:7 -> 4:33 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 4:7 -> 4:8 = #10, (#0 - #10) [1,6,0]
|
|
// CHECK: Branch,File 0, 4:12 -> 4:13 = #11, (#10 - #11) [6,5,0]
|
|
// CHECK: Branch,File 0, 4:17 -> 4:18 = #9, (#8 - #9) [5,4,0]
|
|
// CHECK: Branch,File 0, 4:22 -> 4:23 = #7, (#6 - #7) [4,3,0]
|
|
// CHECK: Branch,File 0, 4:27 -> 4:28 = #5, (#4 - #5) [3,2,0]
|
|
// CHECK: Branch,File 0, 4:32 -> 4:33 = #3, (#2 - #3) [2,0,0]
|
|
|
|
bool func_if_or(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
if (a || b || c || d || e || f)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 18:7 -> 18:33 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 18:7 -> 18:8 = (#0 - #10), #10 [1,0,6]
|
|
// CHECK: Branch,File 0, 18:12 -> 18:13 = (#10 - #11), #11 [6,0,5]
|
|
// CHECK: Branch,File 0, 18:17 -> 18:18 = (#8 - #9), #9 [5,0,4]
|
|
// CHECK: Branch,File 0, 18:22 -> 18:23 = (#6 - #7), #7 [4,0,3]
|
|
// CHECK: Branch,File 0, 18:27 -> 18:28 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 18:32 -> 18:33 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_while_and(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
while (a && b && c && d && e && f) { return true; }
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 32:10 -> 32:36 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 32:10 -> 32:11 = #10, (#0 - #10) [1,6,0]
|
|
// CHECK: Branch,File 0, 32:15 -> 32:16 = #11, (#10 - #11) [6,5,0]
|
|
// CHECK: Branch,File 0, 32:20 -> 32:21 = #9, (#8 - #9) [5,4,0]
|
|
// CHECK: Branch,File 0, 32:25 -> 32:26 = #7, (#6 - #7) [4,3,0]
|
|
// CHECK: Branch,File 0, 32:30 -> 32:31 = #5, (#4 - #5) [3,2,0]
|
|
// CHECK: Branch,File 0, 32:35 -> 32:36 = #3, (#2 - #3) [2,0,0]
|
|
|
|
bool func_while_or(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
while (a || b || c || d || e || f) { return true; }
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 45:10 -> 45:36 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 45:10 -> 45:11 = (#0 - #10), #10 [1,0,6]
|
|
// CHECK: Branch,File 0, 45:15 -> 45:16 = (#10 - #11), #11 [6,0,5]
|
|
// CHECK: Branch,File 0, 45:20 -> 45:21 = (#8 - #9), #9 [5,0,4]
|
|
// CHECK: Branch,File 0, 45:25 -> 45:26 = (#6 - #7), #7 [4,0,3]
|
|
// CHECK: Branch,File 0, 45:30 -> 45:31 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 45:35 -> 45:36 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_for_and(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
for (;a && b && c && d && e && f;) { return true; }
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 58:9 -> 58:35 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 58:9 -> 58:10 = #10, (#0 - #10) [1,6,0]
|
|
// CHECK: Branch,File 0, 58:14 -> 58:15 = #11, (#10 - #11) [6,5,0]
|
|
// CHECK: Branch,File 0, 58:19 -> 58:20 = #9, (#8 - #9) [5,4,0]
|
|
// CHECK: Branch,File 0, 58:24 -> 58:25 = #7, (#6 - #7) [4,3,0]
|
|
// CHECK: Branch,File 0, 58:29 -> 58:30 = #5, (#4 - #5) [3,2,0]
|
|
// CHECK: Branch,File 0, 58:34 -> 58:35 = #3, (#2 - #3) [2,0,0]
|
|
|
|
bool func_for_or(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
for (;a || b || c || d || e || f;) { return true; }
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 71:9 -> 71:35 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 71:9 -> 71:10 = (#0 - #10), #10 [1,0,6]
|
|
// CHECK: Branch,File 0, 71:14 -> 71:15 = (#10 - #11), #11 [6,0,5]
|
|
// CHECK: Branch,File 0, 71:19 -> 71:20 = (#8 - #9), #9 [5,0,4]
|
|
// CHECK: Branch,File 0, 71:24 -> 71:25 = (#6 - #7), #7 [4,0,3]
|
|
// CHECK: Branch,File 0, 71:29 -> 71:30 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 71:34 -> 71:35 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_do_and(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
do {} while (a && b && c && d && e && f);
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 84:16 -> 84:42 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 84:16 -> 84:17 = #10, ((#0 + #1) - #10) [1,6,0]
|
|
// CHECK: Branch,File 0, 84:21 -> 84:22 = #11, (#10 - #11) [6,5,0]
|
|
// CHECK: Branch,File 0, 84:26 -> 84:27 = #9, (#8 - #9) [5,4,0]
|
|
// CHECK: Branch,File 0, 84:31 -> 84:32 = #7, (#6 - #7) [4,3,0]
|
|
// CHECK: Branch,File 0, 84:36 -> 84:37 = #5, (#4 - #5) [3,2,0]
|
|
// CHECK: Branch,File 0, 84:41 -> 84:42 = #3, (#2 - #3) [2,0,0]
|
|
|
|
bool func_do_or(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
do {} while (a || b || c || d || e || f);
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 97:16 -> 97:42 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 97:16 -> 97:17 = ((#0 + #1) - #10), #10 [1,0,6]
|
|
// CHECK: Branch,File 0, 97:21 -> 97:22 = (#10 - #11), #11 [6,0,5]
|
|
// CHECK: Branch,File 0, 97:26 -> 97:27 = (#8 - #9), #9 [5,0,4]
|
|
// CHECK: Branch,File 0, 97:31 -> 97:32 = (#6 - #7), #7 [4,0,3]
|
|
// CHECK: Branch,File 0, 97:36 -> 97:37 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 97:41 -> 97:42 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_ternary_and(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
return (a && b && c && d && e && f) ? true : false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 110:11 -> 110:37 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 110:11 -> 110:12 = #10, (#0 - #10) [1,6,0]
|
|
// CHECK: Branch,File 0, 110:16 -> 110:17 = #11, (#10 - #11) [6,5,0]
|
|
// CHECK: Branch,File 0, 110:21 -> 110:22 = #9, (#8 - #9) [5,4,0]
|
|
// CHECK: Branch,File 0, 110:26 -> 110:27 = #7, (#6 - #7) [4,3,0]
|
|
// CHECK: Branch,File 0, 110:31 -> 110:32 = #5, (#4 - #5) [3,2,0]
|
|
// CHECK: Branch,File 0, 110:36 -> 110:37 = #3, (#2 - #3) [2,0,0]
|
|
|
|
bool func_ternary_or(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
return (a || b || c || d || e || f) ? true : false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 122:11 -> 122:37 = M:7, C:6
|
|
// CHECK-NEXT: Branch,File 0, 122:11 -> 122:12 = (#0 - #10), #10 [1,0,6]
|
|
// CHECK: Branch,File 0, 122:16 -> 122:17 = (#10 - #11), #11 [6,0,5]
|
|
// CHECK: Branch,File 0, 122:21 -> 122:22 = (#8 - #9), #9 [5,0,4]
|
|
// CHECK: Branch,File 0, 122:26 -> 122:27 = (#6 - #7), #7 [4,0,3]
|
|
// CHECK: Branch,File 0, 122:31 -> 122:32 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 122:36 -> 122:37 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_if_nested_if(bool a, bool b, bool c, bool d, bool e) {
|
|
if (a || (b && c) || d || e)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 134:7 -> 134:30 = M:8, C:5
|
|
// CHECK-NEXT: Branch,File 0, 134:7 -> 134:8 = (#0 - #6), #6 [1,0,4]
|
|
// CHECK: Branch,File 0, 134:13 -> 134:14 = #7, (#6 - #7) [4,5,3]
|
|
// CHECK: Branch,File 0, 134:18 -> 134:19 = #8, (#7 - #8) [5,0,3]
|
|
// CHECK: Branch,File 0, 134:24 -> 134:25 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 134:29 -> 134:30 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_ternary_nested_if(bool a, bool b, bool c, bool d, bool e) {
|
|
return (a || (b && c) || d || e) ? true : false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 148:11 -> 148:34 = M:8, C:5
|
|
// CHECK-NEXT: Branch,File 0, 148:11 -> 148:12 = (#0 - #6), #6 [1,0,4]
|
|
// CHECK: Branch,File 0, 148:17 -> 148:18 = #7, (#6 - #7) [4,5,3]
|
|
// CHECK: Branch,File 0, 148:22 -> 148:23 = #8, (#7 - #8) [5,0,3]
|
|
// CHECK: Branch,File 0, 148:28 -> 148:29 = (#4 - #5), #5 [3,0,2]
|
|
// CHECK: Branch,File 0, 148:33 -> 148:34 = (#2 - #3), #3 [2,0,0]
|
|
|
|
bool func_if_nested_if_2(bool a, bool b, bool c, bool d, bool e) {
|
|
if (a || ((b && c) || d) && e)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 159:7 -> 159:32 = M:9, C:5
|
|
// CHECK-NEXT: Branch,File 0, 159:7 -> 159:8 = (#0 - #2), #2 [1,0,2]
|
|
// CHECK: Branch,File 0, 159:14 -> 159:15 = #7, (#2 - #7) [2,5,4]
|
|
// CHECK: Branch,File 0, 159:19 -> 159:20 = #8, (#7 - #8) [5,3,4]
|
|
// CHECK: Branch,File 0, 159:25 -> 159:26 = (#5 - #6), #6 [4,3,0]
|
|
// CHECK: Branch,File 0, 159:31 -> 159:32 = #4, (#3 - #4) [3,0,0]
|
|
|
|
bool func_ternary_nested_if_2(bool a, bool b, bool c, bool d, bool e) {
|
|
return (a || ((b && c) || d) && e) ? true : false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 173:11 -> 173:36 = M:9, C:5
|
|
// CHECK-NEXT: Branch,File 0, 173:11 -> 173:12 = (#0 - #2), #2 [1,0,2]
|
|
// CHECK: Branch,File 0, 173:18 -> 173:19 = #7, (#2 - #7) [2,5,4]
|
|
// CHECK: Branch,File 0, 173:23 -> 173:24 = #8, (#7 - #8) [5,3,4]
|
|
// CHECK: Branch,File 0, 173:29 -> 173:30 = (#5 - #6), #6 [4,3,0]
|
|
// CHECK: Branch,File 0, 173:35 -> 173:36 = #4, (#3 - #4) [3,0,0]
|
|
|
|
bool func_if_nested_if_3(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
if ((a && (b || c) || (d && e)) && f)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 184:7 -> 184:39 = M:12, C:6
|
|
// CHECK: Branch,File 0, 184:8 -> 184:9 = #5, (#0 - #5) [1,4,3]
|
|
// CHECK: Branch,File 0, 184:14 -> 184:15 = (#5 - #6), #6 [4,2,5]
|
|
// CHECK: Branch,File 0, 184:19 -> 184:20 = (#6 - #7), #7 [5,2,3]
|
|
// CHECK: Branch,File 0, 184:26 -> 184:27 = #8, (#4 - #8) [3,6,0]
|
|
// CHECK: Branch,File 0, 184:31 -> 184:32 = #9, (#8 - #9) [6,2,0]
|
|
// CHECK: Branch,File 0, 184:38 -> 184:39 = #3, (#2 - #3) [2,0,0]
|
|
|
|
bool func_ternary_nested_if_3(bool a, bool b, bool c, bool d, bool e, bool f) {
|
|
return ((a && (b || c) || (d && e)) && f) ? true : false;
|
|
}
|
|
|
|
// CHECK-LABEL: Decision,File 0, 199:11 -> 199:43 = M:12, C:6
|
|
// CHECK: Branch,File 0, 199:12 -> 199:13 = #5, (#0 - #5) [1,4,3]
|
|
// CHECK: Branch,File 0, 199:18 -> 199:19 = (#5 - #6), #6 [4,2,5]
|
|
// CHECK: Branch,File 0, 199:23 -> 199:24 = (#6 - #7), #7 [5,2,3]
|
|
// CHECK: Branch,File 0, 199:30 -> 199:31 = #8, (#4 - #8) [3,6,0]
|
|
// CHECK: Branch,File 0, 199:35 -> 199:36 = #9, (#8 - #9) [6,2,0]
|
|
// CHECK: Branch,File 0, 199:42 -> 199:43 = #3, (#2 - #3) [2,0,0]
|