aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>2016-05-25 15:53:21 +0000
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>2016-05-25 15:53:21 +0000
commit5c42d3414397b59b0431be58732900c2c0165c72 (patch)
tree131f0f77d0d7c2be0f18092dc8ec7993aaff6922 /gcc
parentbf9a1a07adb0594b8060bbe23e2cde3475885fdc (diff)
downloadgcc-5c42d3414397b59b0431be58732900c2c0165c72.zip
gcc-5c42d3414397b59b0431be58732900c2c0165c72.tar.gz
gcc-5c42d3414397b59b0431be58732900c2c0165c72.tar.bz2
[RTL ifcvt] PR rtl-optimization/66940: Avoid signed overflow in noce_get_alt_condition
PR rtl-optimization/66940 * ifcvt.c (noce_get_alt_condition): Check that incrementing or decrementing desired_val will not overflow before performing these operations. * gcc.c-torture/execute/pr66940.c: New test. From-SVN: r236728
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/ifcvt.c12
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/pr66940.c20
4 files changed, 40 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4af0254..92f094b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2016-05-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
+ PR rtl-optimization/66940
+ * ifcvt.c (noce_get_alt_condition): Check that incrementing or
+ decrementing desired_val will not overflow before performing these
+ operations.
+
2016-05-25 Ilya Verbin <ilya.verbin@intel.com>
* config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c
index 4949965..44ae020 100644
--- a/gcc/ifcvt.c
+++ b/gcc/ifcvt.c
@@ -2364,28 +2364,32 @@ noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
switch (code)
{
case LT:
- if (actual_val == desired_val + 1)
+ if (desired_val != HOST_WIDE_INT_MAX
+ && actual_val == desired_val + 1)
{
code = LE;
op_b = GEN_INT (desired_val);
}
break;
case LE:
- if (actual_val == desired_val - 1)
+ if (desired_val != HOST_WIDE_INT_MIN
+ && actual_val == desired_val - 1)
{
code = LT;
op_b = GEN_INT (desired_val);
}
break;
case GT:
- if (actual_val == desired_val - 1)
+ if (desired_val != HOST_WIDE_INT_MIN
+ && actual_val == desired_val - 1)
{
code = GE;
op_b = GEN_INT (desired_val);
}
break;
case GE:
- if (actual_val == desired_val + 1)
+ if (desired_val != HOST_WIDE_INT_MAX
+ && actual_val == desired_val + 1)
{
code = GT;
op_b = GEN_INT (desired_val);
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8070adb..fb7713d 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2016-05-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
+ PR rtl-optimization/66940
+ * gcc.c-torture/execute/pr66940.c: New test.
+
2016-05-25 Ilya Verbin <ilya.verbin@intel.com>
* gcc.target/i386/avx512f-ceil-vec-1.c: New test.
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr66940.c b/gcc/testsuite/gcc.c-torture/execute/pr66940.c
new file mode 100644
index 0000000..fbd109d
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/execute/pr66940.c
@@ -0,0 +1,20 @@
+long long __attribute__ ((noinline, noclone))
+foo (long long ival)
+{
+ if (ival <= 0)
+ return -0x7fffffffffffffffL - 1;
+
+ return 0x7fffffffffffffffL;
+}
+
+int
+main (void)
+{
+ if (foo (-1) != (-0x7fffffffffffffffL - 1))
+ __builtin_abort ();
+
+ if (foo (1) != 0x7fffffffffffffffL)
+ __builtin_abort ();
+
+ return 0;
+}