* [TCWG CI] Regression caused by llvm: Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects"
@ 2021-10-05 23:31 ci_notify
2021-10-06 0:46 ` Nick Desaulniers
0 siblings, 1 reply; 2+ messages in thread
From: ci_notify @ 2021-10-05 23:31 UTC (permalink / raw)
To: Dávid Bolvanský; +Cc: llvm
[-- Attachment #1: Type: text/plain, Size: 15892 bytes --]
[TCWG CI] Regression caused by llvm: Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects":
commit f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
Author: Dávid Bolvanský <david.bolvansky@gmail.com>
Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects"
Results regressed to
# reset_artifacts:
-10
# build_abe binutils:
-9
# build_llvm:
-5
# build_abe qemu:
-2
# linux_n_obj:
19948
# First few build errors in logs:
# 00:02:06 kernel/locking/test-ww_mutex.c:138:7: error: variable 'ret' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
# 00:02:07 make[2]: *** [scripts/Makefile.build:288: kernel/locking/test-ww_mutex.o] Error 1
# 00:02:13 make[1]: *** [scripts/Makefile.build:571: kernel/locking] Error 2
# 00:03:49 kernel/trace/trace_events_hist.c:4723:13: error: stack frame size (1400) exceeds limit (1024) in function 'hist_trigger_print_key' [-Werror,-Wframe-larger-than]
# 00:03:52 make[2]: *** [scripts/Makefile.build:288: kernel/trace/trace_events_hist.o] Error 1
# 00:04:04 arch/arm/lib/xor-neon.c:30:2: error: This code requires at least version 4.6 of GCC [-Werror,-W#warnings]
# 00:04:04 make[1]: *** [scripts/Makefile.build:288: arch/arm/lib/xor-neon.o] Error 1
# 00:04:04 make: *** [Makefile:2034: arch/arm/lib] Error 2
# 00:04:05 crypto/wp512.c:782:13: error: stack frame size (1176) exceeds limit (1024) in function 'wp512_process_buffer' [-Werror,-Wframe-larger-than]
# 00:04:05 make[1]: *** [scripts/Makefile.build:288: crypto/wp512.o] Error 1
from
# reset_artifacts:
-10
# build_abe binutils:
-9
# build_llvm:
-5
# build_abe qemu:
-2
# linux_n_obj:
19952
THIS IS THE END OF INTERESTING STUFF. BELOW ARE LINKS TO BUILDS, REPRODUCTION INSTRUCTIONS, AND THE RAW COMMIT.
This commit has regressed these CI configurations:
- tcwg_kernel/llvm-master-arm-next-allyesconfig
First_bad build: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/build-f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e/
Last_good build: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/build-b1fcca38844138d1950e1b34eb2be65b3bfc7352/
Baseline build: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/build-baseline/
Even more details: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/
Reproduce builds:
<cut>
mkdir investigate-llvm-f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
cd investigate-llvm-f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
# Fetch scripts
git clone https://git.linaro.org/toolchain/jenkins-scripts
# Fetch manifests and test.sh script
mkdir -p artifacts/manifests
curl -o artifacts/manifests/build-baseline.sh https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/manifests/build-baseline.sh --fail
curl -o artifacts/manifests/build-parameters.sh https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/manifests/build-parameters.sh --fail
curl -o artifacts/test.sh https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/test.sh --fail
chmod +x artifacts/test.sh
# Reproduce the baseline build (build all pre-requisites)
./jenkins-scripts/tcwg_kernel-build.sh @@ artifacts/manifests/build-baseline.sh
# Save baseline build state (which is then restored in artifacts/test.sh)
mkdir -p ./bisect
rsync -a --del --delete-excluded --exclude /bisect/ --exclude /artifacts/ --exclude /llvm/ ./ ./bisect/baseline/
cd llvm
# Reproduce first_bad build
git checkout --detach f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
../artifacts/test.sh
# Reproduce last_good build
git checkout --detach b1fcca38844138d1950e1b34eb2be65b3bfc7352
../artifacts/test.sh
cd ..
</cut>
Full commit (up to 1000 lines):
<cut>
commit f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
Author: Dávid Bolvanský <david.bolvansky@gmail.com>
Date: Sun Oct 3 13:05:09 2021 +0200
Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects"
This reverts commit a4933f57f3f0a45e1db1075f7285f0761a80fc06. New warnings were fixed.
---
clang/include/clang/Basic/DiagnosticGroups.td | 3 +-
clang/include/clang/Basic/DiagnosticSemaKinds.td | 4 ++
clang/lib/Sema/SemaChecking.cpp | 14 ++++++
clang/test/Misc/warning-wall.c | 1 +
clang/test/Sema/warn-bitwise-and-bool.c | 63 ++++++++++++++++++++++++
clang/test/Sema/warn-bitwise-or-bool.c | 63 ++++++++++++++++++++++++
6 files changed, 147 insertions(+), 1 deletion(-)
diff --git a/clang/include/clang/Basic/DiagnosticGroups.td b/clang/include/clang/Basic/DiagnosticGroups.td
index 761b323d0616..d9db3482dbda 100644
--- a/clang/include/clang/Basic/DiagnosticGroups.td
+++ b/clang/include/clang/Basic/DiagnosticGroups.td
@@ -64,7 +64,8 @@ def StringConversion : DiagGroup<"string-conversion">;
def SignConversion : DiagGroup<"sign-conversion">;
def PointerBoolConversion : DiagGroup<"pointer-bool-conversion">;
def UndefinedBoolConversion : DiagGroup<"undefined-bool-conversion">;
-def BoolOperation : DiagGroup<"bool-operation">;
+def BitwiseInsteadOfLogical : DiagGroup<"bitwise-instead-of-logical">;
+def BoolOperation : DiagGroup<"bool-operation", [BitwiseInsteadOfLogical]>;
def BoolConversion : DiagGroup<"bool-conversion", [PointerBoolConversion,
UndefinedBoolConversion]>;
def IntConversion : DiagGroup<"int-conversion">;
diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td
index 1d4ea92c6520..c71a00b18432 100644
--- a/clang/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td
@@ -66,6 +66,7 @@ def warn_infinite_recursive_function : Warning<
def warn_comma_operator : Warning<"possible misuse of comma operator here">,
InGroup<DiagGroup<"comma">>, DefaultIgnore;
def note_cast_to_void : Note<"cast expression to void to silence warning">;
+def note_cast_operand_to_int : Note<"cast one or both operands to int to silence this warning">;
// Constant expressions
def err_expr_not_ice : Error<
@@ -7423,6 +7424,9 @@ def note_member_declared_here : Note<
"member %0 declared here">;
def note_member_first_declared_here : Note<
"member %0 first declared here">;
+def warn_bitwise_instead_of_logical : Warning<
+ "use of bitwise '%0' with boolean operands">,
+ InGroup<BitwiseInsteadOfLogical>, DefaultIgnore;
def warn_bitwise_negation_bool : Warning<
"bitwise negation of a boolean expression%select{;| always evaluates to 'true';}0 "
"did you mean logical negation?">,
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
index 615ba1aef8e6..bdd9fb495da2 100644
--- a/clang/lib/Sema/SemaChecking.cpp
+++ b/clang/lib/Sema/SemaChecking.cpp
@@ -13249,6 +13249,20 @@ static void AnalyzeImplicitConversions(
<< OrigE->getSourceRange() << T->isBooleanType()
<< FixItHint::CreateReplacement(UO->getBeginLoc(), "!");
+ if (const auto *BO = dyn_cast<BinaryOperator>(SourceExpr))
+ if ((BO->getOpcode() == BO_And || BO->getOpcode() == BO_Or) &&
+ BO->getLHS()->isKnownToHaveBooleanValue() &&
+ BO->getRHS()->isKnownToHaveBooleanValue() &&
+ BO->getLHS()->HasSideEffects(S.Context) &&
+ BO->getRHS()->HasSideEffects(S.Context)) {
+ S.Diag(BO->getBeginLoc(), diag::warn_bitwise_instead_of_logical)
+ << (BO->getOpcode() == BO_And ? "&" : "|") << OrigE->getSourceRange()
+ << FixItHint::CreateReplacement(
+ BO->getOperatorLoc(),
+ (BO->getOpcode() == BO_And ? "&&" : "||"));
+ S.Diag(BO->getBeginLoc(), diag::note_cast_operand_to_int);
+ }
+
// For conditional operators, we analyze the arguments as if they
// were being fed directly into the output.
if (auto *CO = dyn_cast<AbstractConditionalOperator>(SourceExpr)) {
diff --git a/clang/test/Misc/warning-wall.c b/clang/test/Misc/warning-wall.c
index a3686fb96a4c..a4a79bec934a 100644
--- a/clang/test/Misc/warning-wall.c
+++ b/clang/test/Misc/warning-wall.c
@@ -4,6 +4,7 @@ RUN: FileCheck --input-file=%t %s
CHECK:-Wall
CHECK-NEXT: -Wmost
CHECK-NEXT: -Wbool-operation
+CHECK-NEXT: -Wbitwise-instead-of-logical
CHECK-NEXT: -Wchar-subscripts
CHECK-NEXT: -Wcomment
CHECK-NEXT: -Wdelete-non-virtual-dtor
diff --git a/clang/test/Sema/warn-bitwise-and-bool.c b/clang/test/Sema/warn-bitwise-and-bool.c
new file mode 100644
index 000000000000..6bec1be1abde
--- /dev/null
+++ b/clang/test/Sema/warn-bitwise-and-bool.c
@@ -0,0 +1,63 @@
+// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wbool-operation %s
+// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wall %s
+// RUN: %clang_cc1 -x c -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -x c -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wbool-operation %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wall %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+
+#ifdef __cplusplus
+typedef bool boolean;
+#else
+typedef _Bool boolean;
+#endif
+
+boolean foo(void);
+boolean bar(void);
+boolean baz(void) __attribute__((const));
+void sink(boolean);
+
+#define FOO foo()
+
+void test(boolean a, boolean b, int *p, volatile int *q, int i) {
+ b = a & b;
+ b = foo() & a;
+ b = (p != 0) & (*p == 42); // FIXME: also warn for a non-volatile pointer dereference
+ b = foo() & (*q == 42); // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ b = foo() & (int)(*q == 42); // OK, no warning expected
+ b = a & foo();
+ b = (int)a & foo(); // OK, no warning expected
+ b = foo() & bar(); // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"&&"
+ b = foo() & (int)bar(); // OK, no warning expected
+ b = foo() & !bar(); // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"&&"
+ b = a & baz();
+ b = bar() & FOO; // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"&&"
+ b = foo() & (int)FOO; // OK, no warning expected
+ b = b & foo();
+ b = bar() & (i > 4);
+ b = (i == 7) & foo();
+#ifdef __cplusplus
+ b = foo() bitand bar(); // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+#endif
+
+ if (foo() & bar()) // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ ;
+
+ sink(a & b);
+ sink(a & foo());
+ sink(foo() & bar()); // expected-warning {{use of bitwise '&' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+
+ int n = i + 10;
+ b = (n & (n - 1));
+}
diff --git a/clang/test/Sema/warn-bitwise-or-bool.c b/clang/test/Sema/warn-bitwise-or-bool.c
new file mode 100644
index 000000000000..ae86790901aa
--- /dev/null
+++ b/clang/test/Sema/warn-bitwise-or-bool.c
@@ -0,0 +1,63 @@
+// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wbool-operation %s
+// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wall %s
+// RUN: %clang_cc1 -x c -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -x c -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wbool-operation %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wall %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
+
+#ifdef __cplusplus
+typedef bool boolean;
+#else
+typedef _Bool boolean;
+#endif
+
+boolean foo(void);
+boolean bar(void);
+boolean baz(void) __attribute__((const));
+void sink(boolean);
+
+#define FOO foo()
+
+void test(boolean a, boolean b, int *p, volatile int *q, int i) {
+ b = a | b;
+ b = foo() | a;
+ b = (p != 0) | (*p == 42); // FIXME: also warn for a non-volatile pointer dereference
+ b = foo() | (*q == 42); // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ b = foo() | (int)(*q == 42); // OK, no warning expected
+ b = a | foo();
+ b = (int)a | foo(); // OK, no warning expected
+ b = foo() | bar(); // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"||"
+ b = foo() | !bar(); // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"||"
+ b = foo() | (int)bar(); // OK, no warning expected
+ b = a | baz();
+ b = bar() | FOO; // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"||"
+ b = foo() | (int)FOO; // OK, no warning expected
+ b = b | foo();
+ b = bar() | (i > 4);
+ b = (i == 7) | foo();
+#ifdef __cplusplus
+ b = foo() bitor bar(); // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+#endif
+
+ if (foo() | bar()) // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+ ;
+
+ sink(a | b);
+ sink(a | foo());
+ sink(foo() | bar()); // expected-warning {{use of bitwise '|' with boolean operands}}
+ // expected-note@-1 {{cast one or both operands to int to silence this warning}}
+
+ int n = i + 10;
+ b = (n | (n - 1));
+}
</cut>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [TCWG CI] Regression caused by llvm: Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects"
2021-10-05 23:31 [TCWG CI] Regression caused by llvm: Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects" ci_notify
@ 2021-10-06 0:46 ` Nick Desaulniers
0 siblings, 0 replies; 2+ messages in thread
From: Nick Desaulniers @ 2021-10-06 0:46 UTC (permalink / raw)
To: Dávid Bolvanský; +Cc: llvm, ci_notify
Ignore this, re-landing warning support for that warning didn't
trigger these different warnings.
On Tue, Oct 5, 2021 at 4:32 PM <ci_notify@linaro.org> wrote:
>
> [TCWG CI] Regression caused by llvm: Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects":
> commit f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
> Author: Dávid Bolvanský <david.bolvansky@gmail.com>
>
> Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects"
>
> Results regressed to
> # reset_artifacts:
> -10
> # build_abe binutils:
> -9
> # build_llvm:
> -5
> # build_abe qemu:
> -2
> # linux_n_obj:
> 19948
> # First few build errors in logs:
> # 00:02:06 kernel/locking/test-ww_mutex.c:138:7: error: variable 'ret' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
> # 00:02:07 make[2]: *** [scripts/Makefile.build:288: kernel/locking/test-ww_mutex.o] Error 1
> # 00:02:13 make[1]: *** [scripts/Makefile.build:571: kernel/locking] Error 2
> # 00:03:49 kernel/trace/trace_events_hist.c:4723:13: error: stack frame size (1400) exceeds limit (1024) in function 'hist_trigger_print_key' [-Werror,-Wframe-larger-than]
> # 00:03:52 make[2]: *** [scripts/Makefile.build:288: kernel/trace/trace_events_hist.o] Error 1
> # 00:04:04 arch/arm/lib/xor-neon.c:30:2: error: This code requires at least version 4.6 of GCC [-Werror,-W#warnings]
> # 00:04:04 make[1]: *** [scripts/Makefile.build:288: arch/arm/lib/xor-neon.o] Error 1
> # 00:04:04 make: *** [Makefile:2034: arch/arm/lib] Error 2
> # 00:04:05 crypto/wp512.c:782:13: error: stack frame size (1176) exceeds limit (1024) in function 'wp512_process_buffer' [-Werror,-Wframe-larger-than]
> # 00:04:05 make[1]: *** [scripts/Makefile.build:288: crypto/wp512.o] Error 1
>
> from
> # reset_artifacts:
> -10
> # build_abe binutils:
> -9
> # build_llvm:
> -5
> # build_abe qemu:
> -2
> # linux_n_obj:
> 19952
>
> THIS IS THE END OF INTERESTING STUFF. BELOW ARE LINKS TO BUILDS, REPRODUCTION INSTRUCTIONS, AND THE RAW COMMIT.
>
> This commit has regressed these CI configurations:
> - tcwg_kernel/llvm-master-arm-next-allyesconfig
>
> First_bad build: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/build-f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e/
> Last_good build: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/build-b1fcca38844138d1950e1b34eb2be65b3bfc7352/
> Baseline build: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/build-baseline/
> Even more details: https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/
>
> Reproduce builds:
> <cut>
> mkdir investigate-llvm-f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
> cd investigate-llvm-f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
>
> # Fetch scripts
> git clone https://git.linaro.org/toolchain/jenkins-scripts
>
> # Fetch manifests and test.sh script
> mkdir -p artifacts/manifests
> curl -o artifacts/manifests/build-baseline.sh https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/manifests/build-baseline.sh --fail
> curl -o artifacts/manifests/build-parameters.sh https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/manifests/build-parameters.sh --fail
> curl -o artifacts/test.sh https://ci.linaro.org/job/tcwg_kernel-llvm-bisect-llvm-master-arm-next-allyesconfig/13/artifact/artifacts/test.sh --fail
> chmod +x artifacts/test.sh
>
> # Reproduce the baseline build (build all pre-requisites)
> ./jenkins-scripts/tcwg_kernel-build.sh @@ artifacts/manifests/build-baseline.sh
>
> # Save baseline build state (which is then restored in artifacts/test.sh)
> mkdir -p ./bisect
> rsync -a --del --delete-excluded --exclude /bisect/ --exclude /artifacts/ --exclude /llvm/ ./ ./bisect/baseline/
>
> cd llvm
>
> # Reproduce first_bad build
> git checkout --detach f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
> ../artifacts/test.sh
>
> # Reproduce last_good build
> git checkout --detach b1fcca38844138d1950e1b34eb2be65b3bfc7352
> ../artifacts/test.sh
>
> cd ..
> </cut>
>
> Full commit (up to 1000 lines):
> <cut>
> commit f59cc9542bfb461d16ad12b2cc4be4abbfd9d96e
> Author: Dávid Bolvanský <david.bolvansky@gmail.com>
> Date: Sun Oct 3 13:05:09 2021 +0200
>
> Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects"
>
> This reverts commit a4933f57f3f0a45e1db1075f7285f0761a80fc06. New warnings were fixed.
> ---
> clang/include/clang/Basic/DiagnosticGroups.td | 3 +-
> clang/include/clang/Basic/DiagnosticSemaKinds.td | 4 ++
> clang/lib/Sema/SemaChecking.cpp | 14 ++++++
> clang/test/Misc/warning-wall.c | 1 +
> clang/test/Sema/warn-bitwise-and-bool.c | 63 ++++++++++++++++++++++++
> clang/test/Sema/warn-bitwise-or-bool.c | 63 ++++++++++++++++++++++++
> 6 files changed, 147 insertions(+), 1 deletion(-)
>
> diff --git a/clang/include/clang/Basic/DiagnosticGroups.td b/clang/include/clang/Basic/DiagnosticGroups.td
> index 761b323d0616..d9db3482dbda 100644
> --- a/clang/include/clang/Basic/DiagnosticGroups.td
> +++ b/clang/include/clang/Basic/DiagnosticGroups.td
> @@ -64,7 +64,8 @@ def StringConversion : DiagGroup<"string-conversion">;
> def SignConversion : DiagGroup<"sign-conversion">;
> def PointerBoolConversion : DiagGroup<"pointer-bool-conversion">;
> def UndefinedBoolConversion : DiagGroup<"undefined-bool-conversion">;
> -def BoolOperation : DiagGroup<"bool-operation">;
> +def BitwiseInsteadOfLogical : DiagGroup<"bitwise-instead-of-logical">;
> +def BoolOperation : DiagGroup<"bool-operation", [BitwiseInsteadOfLogical]>;
> def BoolConversion : DiagGroup<"bool-conversion", [PointerBoolConversion,
> UndefinedBoolConversion]>;
> def IntConversion : DiagGroup<"int-conversion">;
> diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td
> index 1d4ea92c6520..c71a00b18432 100644
> --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td
> +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td
> @@ -66,6 +66,7 @@ def warn_infinite_recursive_function : Warning<
> def warn_comma_operator : Warning<"possible misuse of comma operator here">,
> InGroup<DiagGroup<"comma">>, DefaultIgnore;
> def note_cast_to_void : Note<"cast expression to void to silence warning">;
> +def note_cast_operand_to_int : Note<"cast one or both operands to int to silence this warning">;
>
> // Constant expressions
> def err_expr_not_ice : Error<
> @@ -7423,6 +7424,9 @@ def note_member_declared_here : Note<
> "member %0 declared here">;
> def note_member_first_declared_here : Note<
> "member %0 first declared here">;
> +def warn_bitwise_instead_of_logical : Warning<
> + "use of bitwise '%0' with boolean operands">,
> + InGroup<BitwiseInsteadOfLogical>, DefaultIgnore;
> def warn_bitwise_negation_bool : Warning<
> "bitwise negation of a boolean expression%select{;| always evaluates to 'true';}0 "
> "did you mean logical negation?">,
> diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
> index 615ba1aef8e6..bdd9fb495da2 100644
> --- a/clang/lib/Sema/SemaChecking.cpp
> +++ b/clang/lib/Sema/SemaChecking.cpp
> @@ -13249,6 +13249,20 @@ static void AnalyzeImplicitConversions(
> << OrigE->getSourceRange() << T->isBooleanType()
> << FixItHint::CreateReplacement(UO->getBeginLoc(), "!");
>
> + if (const auto *BO = dyn_cast<BinaryOperator>(SourceExpr))
> + if ((BO->getOpcode() == BO_And || BO->getOpcode() == BO_Or) &&
> + BO->getLHS()->isKnownToHaveBooleanValue() &&
> + BO->getRHS()->isKnownToHaveBooleanValue() &&
> + BO->getLHS()->HasSideEffects(S.Context) &&
> + BO->getRHS()->HasSideEffects(S.Context)) {
> + S.Diag(BO->getBeginLoc(), diag::warn_bitwise_instead_of_logical)
> + << (BO->getOpcode() == BO_And ? "&" : "|") << OrigE->getSourceRange()
> + << FixItHint::CreateReplacement(
> + BO->getOperatorLoc(),
> + (BO->getOpcode() == BO_And ? "&&" : "||"));
> + S.Diag(BO->getBeginLoc(), diag::note_cast_operand_to_int);
> + }
> +
> // For conditional operators, we analyze the arguments as if they
> // were being fed directly into the output.
> if (auto *CO = dyn_cast<AbstractConditionalOperator>(SourceExpr)) {
> diff --git a/clang/test/Misc/warning-wall.c b/clang/test/Misc/warning-wall.c
> index a3686fb96a4c..a4a79bec934a 100644
> --- a/clang/test/Misc/warning-wall.c
> +++ b/clang/test/Misc/warning-wall.c
> @@ -4,6 +4,7 @@ RUN: FileCheck --input-file=%t %s
> CHECK:-Wall
> CHECK-NEXT: -Wmost
> CHECK-NEXT: -Wbool-operation
> +CHECK-NEXT: -Wbitwise-instead-of-logical
> CHECK-NEXT: -Wchar-subscripts
> CHECK-NEXT: -Wcomment
> CHECK-NEXT: -Wdelete-non-virtual-dtor
> diff --git a/clang/test/Sema/warn-bitwise-and-bool.c b/clang/test/Sema/warn-bitwise-and-bool.c
> new file mode 100644
> index 000000000000..6bec1be1abde
> --- /dev/null
> +++ b/clang/test/Sema/warn-bitwise-and-bool.c
> @@ -0,0 +1,63 @@
> +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wbool-operation %s
> +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wall %s
> +// RUN: %clang_cc1 -x c -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +// RUN: %clang_cc1 -x c -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wbool-operation %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wall %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +
> +#ifdef __cplusplus
> +typedef bool boolean;
> +#else
> +typedef _Bool boolean;
> +#endif
> +
> +boolean foo(void);
> +boolean bar(void);
> +boolean baz(void) __attribute__((const));
> +void sink(boolean);
> +
> +#define FOO foo()
> +
> +void test(boolean a, boolean b, int *p, volatile int *q, int i) {
> + b = a & b;
> + b = foo() & a;
> + b = (p != 0) & (*p == 42); // FIXME: also warn for a non-volatile pointer dereference
> + b = foo() & (*q == 42); // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + b = foo() & (int)(*q == 42); // OK, no warning expected
> + b = a & foo();
> + b = (int)a & foo(); // OK, no warning expected
> + b = foo() & bar(); // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"&&"
> + b = foo() & (int)bar(); // OK, no warning expected
> + b = foo() & !bar(); // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"&&"
> + b = a & baz();
> + b = bar() & FOO; // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"&&"
> + b = foo() & (int)FOO; // OK, no warning expected
> + b = b & foo();
> + b = bar() & (i > 4);
> + b = (i == 7) & foo();
> +#ifdef __cplusplus
> + b = foo() bitand bar(); // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> +#endif
> +
> + if (foo() & bar()) // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + ;
> +
> + sink(a & b);
> + sink(a & foo());
> + sink(foo() & bar()); // expected-warning {{use of bitwise '&' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> +
> + int n = i + 10;
> + b = (n & (n - 1));
> +}
> diff --git a/clang/test/Sema/warn-bitwise-or-bool.c b/clang/test/Sema/warn-bitwise-or-bool.c
> new file mode 100644
> index 000000000000..ae86790901aa
> --- /dev/null
> +++ b/clang/test/Sema/warn-bitwise-or-bool.c
> @@ -0,0 +1,63 @@
> +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wbool-operation %s
> +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wall %s
> +// RUN: %clang_cc1 -x c -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +// RUN: %clang_cc1 -x c -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wbool-operation %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wall %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbitwise-instead-of-logical -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
> +
> +#ifdef __cplusplus
> +typedef bool boolean;
> +#else
> +typedef _Bool boolean;
> +#endif
> +
> +boolean foo(void);
> +boolean bar(void);
> +boolean baz(void) __attribute__((const));
> +void sink(boolean);
> +
> +#define FOO foo()
> +
> +void test(boolean a, boolean b, int *p, volatile int *q, int i) {
> + b = a | b;
> + b = foo() | a;
> + b = (p != 0) | (*p == 42); // FIXME: also warn for a non-volatile pointer dereference
> + b = foo() | (*q == 42); // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + b = foo() | (int)(*q == 42); // OK, no warning expected
> + b = a | foo();
> + b = (int)a | foo(); // OK, no warning expected
> + b = foo() | bar(); // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"||"
> + b = foo() | !bar(); // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"||"
> + b = foo() | (int)bar(); // OK, no warning expected
> + b = a | baz();
> + b = bar() | FOO; // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:13-[[@LINE-2]]:14}:"||"
> + b = foo() | (int)FOO; // OK, no warning expected
> + b = b | foo();
> + b = bar() | (i > 4);
> + b = (i == 7) | foo();
> +#ifdef __cplusplus
> + b = foo() bitor bar(); // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> +#endif
> +
> + if (foo() | bar()) // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> + ;
> +
> + sink(a | b);
> + sink(a | foo());
> + sink(foo() | bar()); // expected-warning {{use of bitwise '|' with boolean operands}}
> + // expected-note@-1 {{cast one or both operands to int to silence this warning}}
> +
> + int n = i + 10;
> + b = (n | (n - 1));
> +}
> </cut>
--
Thanks,
~Nick Desaulniers
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-10-06 0:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-05 23:31 [TCWG CI] Regression caused by llvm: Reland "[Clang] Extend -Wbool-operation to warn about bitwise and of bools with side effects" ci_notify
2021-10-06 0:46 ` Nick Desaulniers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox