* [PATCH] convert: Fix test for out of bounds shift count [PR113574]
@ 2024-01-25 8:15 Jakub Jelinek
2024-01-25 9:15 ` Richard Biener
0 siblings, 1 reply; 2+ messages in thread
From: Jakub Jelinek @ 2024-01-25 8:15 UTC (permalink / raw)
To: Richard Biener; +Cc: gcc-patches
Hi!
The following patch is miscompiled, because convert_to_integer_1 for
LSHIFT_EXPR tests if the INTEGER_CST shift count is too high, but
incorrectly compares it against TYPE_SIZE rather than TYPE_PRECISION.
The type in question is unsigned _BitInt(1), which has TYPE_PRECISION 1,
TYPE_SIZE 8, and the shift count is 2 in that case.
Bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk?
2024-01-25 Jakub Jelinek <jakub@redhat.com>
PR middle-end/113574
* convert.cc (convert_to_integer_1) <case LSHIFT_EXPR>: Compare shift
count against TYPE_PRECISION rather than TYPE_SIZE.
* gcc.dg/torture/bitint-52.c: New test.
--- gcc/convert.cc.jj 2024-01-03 11:51:24.000000000 +0100
+++ gcc/convert.cc 2024-01-24 17:29:56.328124611 +0100
@@ -762,7 +762,8 @@ convert_to_integer_1 (tree type, tree ex
{
/* If shift count is less than the width of the truncated type,
really shift. */
- if (tree_int_cst_lt (TREE_OPERAND (expr, 1), TYPE_SIZE (type)))
+ if (wi::to_widest (TREE_OPERAND (expr, 1))
+ < TYPE_PRECISION (type))
/* In this case, shifting is like multiplication. */
goto trunc1;
else
--- gcc/testsuite/gcc.dg/torture/bitint-52.c.jj 2024-01-24 17:33:42.174986825 +0100
+++ gcc/testsuite/gcc.dg/torture/bitint-52.c 2024-01-24 17:33:33.395108814 +0100
@@ -0,0 +1,23 @@
+/* PR middle-end/113574 */
+/* { dg-do run { target bitint } } */
+/* { dg-options "-std=c23 -pedantic-errors" } */
+/* { dg-skip-if "" { ! run_expensive_tests } { "*" } { "-O0" "-O2" } } */
+/* { dg-skip-if "" { ! run_expensive_tests } { "-flto" } { "" } } */
+
+unsigned _BitInt(1) a;
+unsigned _BitInt(8) b;
+
+void
+foo (unsigned _BitInt(16) x)
+{
+ a += (x << 2) | b;
+}
+
+int
+main ()
+{
+ foo (0xfef1uwb);
+ if (a)
+ __builtin_abort ();
+ return 0;
+}
Jakub
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] convert: Fix test for out of bounds shift count [PR113574]
2024-01-25 8:15 [PATCH] convert: Fix test for out of bounds shift count [PR113574] Jakub Jelinek
@ 2024-01-25 9:15 ` Richard Biener
0 siblings, 0 replies; 2+ messages in thread
From: Richard Biener @ 2024-01-25 9:15 UTC (permalink / raw)
To: Jakub Jelinek; +Cc: gcc-patches
On Thu, 25 Jan 2024, Jakub Jelinek wrote:
> Hi!
>
> The following patch is miscompiled, because convert_to_integer_1 for
> LSHIFT_EXPR tests if the INTEGER_CST shift count is too high, but
> incorrectly compares it against TYPE_SIZE rather than TYPE_PRECISION.
> The type in question is unsigned _BitInt(1), which has TYPE_PRECISION 1,
> TYPE_SIZE 8, and the shift count is 2 in that case.
>
> Bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk?
OK.
> 2024-01-25 Jakub Jelinek <jakub@redhat.com>
>
> PR middle-end/113574
> * convert.cc (convert_to_integer_1) <case LSHIFT_EXPR>: Compare shift
> count against TYPE_PRECISION rather than TYPE_SIZE.
>
> * gcc.dg/torture/bitint-52.c: New test.
>
> --- gcc/convert.cc.jj 2024-01-03 11:51:24.000000000 +0100
> +++ gcc/convert.cc 2024-01-24 17:29:56.328124611 +0100
> @@ -762,7 +762,8 @@ convert_to_integer_1 (tree type, tree ex
> {
> /* If shift count is less than the width of the truncated type,
> really shift. */
> - if (tree_int_cst_lt (TREE_OPERAND (expr, 1), TYPE_SIZE (type)))
> + if (wi::to_widest (TREE_OPERAND (expr, 1))
> + < TYPE_PRECISION (type))
> /* In this case, shifting is like multiplication. */
> goto trunc1;
> else
> --- gcc/testsuite/gcc.dg/torture/bitint-52.c.jj 2024-01-24 17:33:42.174986825 +0100
> +++ gcc/testsuite/gcc.dg/torture/bitint-52.c 2024-01-24 17:33:33.395108814 +0100
> @@ -0,0 +1,23 @@
> +/* PR middle-end/113574 */
> +/* { dg-do run { target bitint } } */
> +/* { dg-options "-std=c23 -pedantic-errors" } */
> +/* { dg-skip-if "" { ! run_expensive_tests } { "*" } { "-O0" "-O2" } } */
> +/* { dg-skip-if "" { ! run_expensive_tests } { "-flto" } { "" } } */
> +
> +unsigned _BitInt(1) a;
> +unsigned _BitInt(8) b;
> +
> +void
> +foo (unsigned _BitInt(16) x)
> +{
> + a += (x << 2) | b;
> +}
> +
> +int
> +main ()
> +{
> + foo (0xfef1uwb);
> + if (a)
> + __builtin_abort ();
> + return 0;
> +}
>
> Jakub
>
>
--
Richard Biener <rguenther@suse.de>
SUSE Software Solutions Germany GmbH,
Frankenstrasse 146, 90461 Nuernberg, Germany;
GF: Ivo Totev, Andrew McDonald, Werner Knoblich; (HRB 36809, AG Nuernberg)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-25 9:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-25 8:15 [PATCH] convert: Fix test for out of bounds shift count [PR113574] Jakub Jelinek
2024-01-25 9:15 ` Richard Biener
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).