Re: [C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-22 Thread Jason Merrill

OK.

Jason


Re: [C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-12 Thread Jeff Law

On 08/12/2015 11:40 AM, Marek Polacek wrote:

On Wed, Aug 12, 2015 at 11:33:21AM -0600, Jeff Law wrote:

On 08/12/2015 11:28 AM, Toon Moene wrote:

https://gcc.gnu.org/ml/gcc-testresults/2015-08/msg01036.html

[ Yes, that's at run time, not compile time ... ]

Hoping some of those are fixed by the sext_hwi changes from Mikael.


I hope too ;).  But they have nothing to do with the -Wshift-overflow IMHO.
Right.  Toon was just pointing out that we're getting the left-shift 
errors from ubsan all over the place.  Those are totally independent if 
your -Wshift-overflow stuff.


Jeff


Re: [C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-12 Thread Marek Polacek
On Wed, Aug 12, 2015 at 11:33:21AM -0600, Jeff Law wrote:
> On 08/12/2015 11:28 AM, Toon Moene wrote:
> >https://gcc.gnu.org/ml/gcc-testresults/2015-08/msg01036.html
> >
> >[ Yes, that's at run time, not compile time ... ]
> Hoping some of those are fixed by the sext_hwi changes from Mikael.

I hope too ;).  But they have nothing to do with the -Wshift-overflow IMHO.

Marek


Re: [C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-12 Thread Jeff Law

On 08/12/2015 11:28 AM, Toon Moene wrote:

On 08/12/2015 05:39 PM, Marek Polacek wrote:


This patch fixes a defect in -Wshift-overflow.  We should only warn
about left-shifting 1 into the sign bit when -Wshift-overflow=2.  But
this doesn't apply only for 1 << 31, but also for 2 << 30, etc.
In C++14, never warn about this.


And then there's this:

https://gcc.gnu.org/ml/gcc-testresults/2015-08/msg01036.html

[ Yes, that's at run time, not compile time ... ]

Hoping some of those are fixed by the sext_hwi changes from Mikael.

jeff






Re: [C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-12 Thread Toon Moene

On 08/12/2015 05:39 PM, Marek Polacek wrote:


This patch fixes a defect in -Wshift-overflow.  We should only warn
about left-shifting 1 into the sign bit when -Wshift-overflow=2.  But
this doesn't apply only for 1 << 31, but also for 2 << 30, etc.
In C++14, never warn about this.


And then there's this:

https://gcc.gnu.org/ml/gcc-testresults/2015-08/msg01036.html

[ Yes, that's at run time, not compile time ... ]

--
Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
At home: http://moene.org/~toon/; weather: http://moene.org/~hirlam/
Progress of GNU Fortran: http://gcc.gnu.org/wiki/GFortran#news


Re: [C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-12 Thread Jeff Law

On 08/12/2015 09:39 AM, Marek Polacek wrote:

This patch fixes a defect in -Wshift-overflow.  We should only warn
about left-shifting 1 into the sign bit when -Wshift-overflow=2.  But
this doesn't apply only for 1 << 31, but also for 2 << 30, etc.
In C++14, never warn about this.

Neither existing tests nor documentation require updating, I think.

Bootstrapped/regtested on x86_64-linux, ok for trunk?

2015-08-12  Marek Polacek  

PR c++/55095
* c-common.c (maybe_warn_shift_overflow): Properly handle
left-shifting 1 into the sign bit.

* c-c++-common/Wshift-overflow-6.c: New test.
* c-c++-common/Wshift-overflow-7.c: New test.
* g++.dg/cpp1y/left-shift-2.C: New test.
I didn't realize C++14 fixed this bit of lameness.  I'd read that it was 
under consideration when I was looking at Mikael's sext_hwi patch, but 
didn't follow up on the current status.


OK for the trunk.

jeff


[C/C++ PATCH] Fix -Wshift-overflow with sign bit

2015-08-12 Thread Marek Polacek
This patch fixes a defect in -Wshift-overflow.  We should only warn
about left-shifting 1 into the sign bit when -Wshift-overflow=2.  But
this doesn't apply only for 1 << 31, but also for 2 << 30, etc.
In C++14, never warn about this.

Neither existing tests nor documentation require updating, I think.

Bootstrapped/regtested on x86_64-linux, ok for trunk?

2015-08-12  Marek Polacek  

PR c++/55095
* c-common.c (maybe_warn_shift_overflow): Properly handle
left-shifting 1 into the sign bit.

* c-c++-common/Wshift-overflow-6.c: New test.
* c-c++-common/Wshift-overflow-7.c: New test.
* g++.dg/cpp1y/left-shift-2.C: New test.

diff --git gcc/c-family/c-common.c gcc/c-family/c-common.c
index f6c5ddd..13175d8 100644
--- gcc/c-family/c-common.c
+++ gcc/c-family/c-common.c
@@ -12442,9 +12442,10 @@ maybe_warn_shift_overflow (location_t loc, tree op0, 
tree op1)
   if (TYPE_UNSIGNED (type0))
 return false;
 
+  unsigned int min_prec = (wi::min_precision (op0, SIGNED)
+  + TREE_INT_CST_LOW (op1));
   /* Handle the left-shifting 1 into the sign bit case.  */
-  if (integer_onep (op0)
-  && compare_tree_int (op1, prec0 - 1) == 0)
+  if (min_prec == prec0 + 1)
 {
   /* Never warn for C++14 onwards.  */
   if (cxx_dialect >= cxx14)
@@ -12456,8 +12457,6 @@ maybe_warn_shift_overflow (location_t loc, tree op0, 
tree op1)
return true;
 }
 
-  unsigned int min_prec = (wi::min_precision (op0, SIGNED)
-  + TREE_INT_CST_LOW (op1));
   bool overflowed = min_prec > prec0;
   if (overflowed && c_inhibit_evaluation_warnings == 0)
 warning_at (loc, OPT_Wshift_overflow_,
diff --git gcc/testsuite/c-c++-common/Wshift-overflow-6.c 
gcc/testsuite/c-c++-common/Wshift-overflow-6.c
index e69de29..fed79f8 100644
--- gcc/testsuite/c-c++-common/Wshift-overflow-6.c
+++ gcc/testsuite/c-c++-common/Wshift-overflow-6.c
@@ -0,0 +1,36 @@
+/* PR c++/55095 */
+/* { dg-do compile { target int32 } } */
+/* { dg-options "-Wshift-overflow=1" } */
+/* { dg-additional-options "-std=c++11" { target c++ } } */
+
+int i00 = 0b1 << 31;
+int i01 = 0b10 << 30;
+int i02 = 0b100 << 29;
+int i03 = 0b1000 << 28;
+int i04 = 0b1 << 27;
+int i05 = 0b10 << 26;
+int i06 = 0b100 << 25;
+int i07 = 0b1000 << 24;
+int i08 = 0b1 << 23;
+int i09 = 0b10 << 22;
+int i10 = 0b100 << 21;
+int i11 = 0b1000 << 20;
+int i12 = 0b1 << 19;
+int i13 = 0b10 << 18;
+int i14 = 0b100 << 17;
+int i15 = 0b1000 << 16;
+int i16 = 0b1 << 15;
+int i17 = 0b10 << 14;
+int i18 = 0b100 << 13;
+int i19 = 0b1000 << 12;
+int i20 = 0b1 << 11;
+int i21 = 0b10 << 10;
+int i22 = 0b100 << 9;
+int i23 = 0b1000 << 8;
+int i24 = 0b1 << 7;
+int i25 = 0b10 << 6;
+int i26 = 0b100 << 5;
+int i27 = 0b1000 << 4;
+int i28 = 0b1 << 3;
+int i29 = 0b10 << 2;
+int i30 = 0b100 << 1;
diff --git gcc/testsuite/c-c++-common/Wshift-overflow-7.c 
gcc/testsuite/c-c++-common/Wshift-overflow-7.c
index e69de29..0eb1fef 100644
--- gcc/testsuite/c-c++-common/Wshift-overflow-7.c
+++ gcc/testsuite/c-c++-common/Wshift-overflow-7.c
@@ -0,0 +1,36 @@
+/* PR c++/55095 */
+/* { dg-do compile { target int32 } } */
+/* { dg-options "-Wshift-overflow=2" } */
+/* { dg-additional-options "-std=c++11" { target c++ } } */
+
+int i00 = 0b1 << 31; /* { dg-warning "requires 33 bits to represent" } */
+int i01 = 0b10 << 30; /* { dg-warning "requires 33 bits to represent" } */
+int i02 = 0b100 << 29; /* { dg-warning "requires 33 bits to represent" } */
+int i03 = 0b1000 << 28; /* { dg-warning "requires 33 bits to represent" } */
+int i04 = 0b1 << 27; /* { dg-warning "requires 33 bits to represent" } */
+int i05 = 0b10 << 26; /* { dg-warning "requires 33 bits to represent" } */
+int i06 = 0b100 << 25; /* { dg-warning "requires 33 bits to represent" } */
+int i07 = 0b1000 << 24; /* { dg-warning "requires 33 bits to represent" } 
*/
+int i08 = 0b1 << 23; /* { dg-warning "requires 33 bits to represent" } 
*/
+int i09 = 0b10 << 22; /* { dg-warning "requires 33 bits to represent" 
} */
+int i10 = 0b100 << 21; /* { dg-warning "requires 33 bits to represent" 
} */
+int i11 = 0b1000 << 20; /* { dg-warning "requires 33 bits to 
represent" } */
+int i12 = 0b1 << 19; /* { dg-warning "requires 33 bits to 
represent" } */
+int i13 = 0b10 << 18; /* { dg-warning "requires 33 bits to 
represent" } */
+int i14 = 0b100 << 17; /* { dg-warning "requires 33 bits to 
represent" } */
+int i15 = 0b1000 << 16; /* { dg-warning "requires 33 bits to 
re