[PATCH] D149645: [clang][Interp] Optionally cast comparison result to non-bool
Timm Bäder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 2 06:47:57 PDT 2023
tbaeder updated this revision to Diff 518707.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149645/new/
https://reviews.llvm.org/D149645
Files:
clang/lib/AST/Interp/ByteCodeExprGen.cpp
clang/test/AST/Interp/c.c
Index: clang/test/AST/Interp/c.c
===================================================================
--- /dev/null
+++ clang/test/AST/Interp/c.c
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 -fexperimental-new-constant-interpreter -verify %s
+// RUN: %clang_cc1 -verify=ref %s
+
+/// expected-no-diagnostics
+/// ref-no-diagnostics
+
+_Static_assert(1, "");
+_Static_assert(0 != 1, "");
+_Static_assert(1.0 == 1.0, "");
+_Static_assert( (5 > 4) + (3 > 2) == 2, "");
Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp
===================================================================
--- clang/lib/AST/Interp/ByteCodeExprGen.cpp
+++ clang/lib/AST/Interp/ByteCodeExprGen.cpp
@@ -319,19 +319,29 @@
if (!visit(LHS) || !visit(RHS))
return false;
+ // For languages such as C, cast the result of one
+ // of our comparision opcodes to T (which is usually int).
+ auto MaybeCastToBool = [this, T, BO](bool Result) {
+ if (!Result)
+ return false;
+ if (T != PT_Bool)
+ return this->emitCast(PT_Bool, *T, BO);
+ return true;
+ };
+
switch (Op) {
case BO_EQ:
- return this->emitEQ(*LT, BO);
+ return MaybeCastToBool(this->emitEQ(*LT, BO));
case BO_NE:
- return this->emitNE(*LT, BO);
+ return MaybeCastToBool(this->emitNE(*LT, BO));
case BO_LT:
- return this->emitLT(*LT, BO);
+ return MaybeCastToBool(this->emitLT(*LT, BO));
case BO_LE:
- return this->emitLE(*LT, BO);
+ return MaybeCastToBool(this->emitLE(*LT, BO));
case BO_GT:
- return this->emitGT(*LT, BO);
+ return MaybeCastToBool(this->emitGT(*LT, BO));
case BO_GE:
- return this->emitGE(*LT, BO);
+ return MaybeCastToBool(this->emitGE(*LT, BO));
case BO_Sub:
if (T == PT_Float)
return this->emitSubf(getRoundingMode(BO), BO);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149645.518707.patch
Type: text/x-patch
Size: 1771 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230502/6aa23c8b/attachment.bin>
More information about the cfe-commits
mailing list