public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Bin Cheng" <bin.cheng@arm.com>
To: <gcc-patches@gcc.gnu.org>
Subject: RE: [PATCH PR66449]Fix ICE by using POINTER_PLUS_EXPR for pointers.
Date: Thu, 18 Jun 2015 10:16:00 -0000	[thread overview]
Message-ID: <000701d0a9af$833a6e80$89af4b80$@arm.com> (raw)
In-Reply-To: <000601d0a9af$51b0b310$f5121930$@arm.com>

[-- Attachment #1: Type: text/plain, Size: 813 bytes --]

And the patch...

Thanks,
bin

> -----Original Message-----
> From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches-
> owner@gcc.gnu.org] On Behalf Of Bin Cheng
> Sent: Thursday, June 18, 2015 6:13 PM
> To: gcc-patches@gcc.gnu.org
> Subject: [PATCH PR66449]Fix ICE by using POINTER_PLUS_EXPR for pointers.
> 
> Hi,
> This patch fixes ICE in PR66449 by using POINTER_PLUS_EXPR for pointers.
> Bootstrap and test on x86_64.  Is it OK trunk?
> 
> Thanks,
> bin
> 
> 2015-06-18  Bin Cheng  <bin.cheng@arm.com>
> 
> 	PR tree-optimization/66449
> 	* tree-ssa-loop-niter.c (loop_exits_before_overflow): Use
> 	POINTER_PLUS_EXPR for pointers.
> 
> gcc/testsuite/ChangeLog
> 2015-06-18  Bin Cheng  <bin.cheng@arm.com>
> 
> 	PR tree-optimization/66449
> 	* gcc.dg/vect/pr66449.c: New.
> 


[-- Attachment #2: pr66449-20150618.txt --]
[-- Type: text/plain, Size: 1242 bytes --]

Index: gcc/testsuite/gcc.dg/tree-ssa/pr66449.c
===================================================================
--- gcc/testsuite/gcc.dg/tree-ssa/pr66449.c	(revision 0)
+++ gcc/testsuite/gcc.dg/tree-ssa/pr66449.c	(revision 0)
@@ -0,0 +1,18 @@
+/* { dg-do compile } */
+/* { dg-options "-O3" } */
+
+void *fn1(void *p1, void *p2, long p3)
+{
+  long a = (long)p1, b = (long)p2, c = p3;
+
+  while (c)
+    {
+      int d = ((int *)b)[0];
+
+      c--;
+      ((char *)a)[0] = d;
+      a++;
+    }
+  return 0;
+}
+
Index: gcc/tree-ssa-loop-niter.c
===================================================================
--- gcc/tree-ssa-loop-niter.c	(revision 224020)
+++ gcc/tree-ssa-loop-niter.c	(working copy)
@@ -3902,7 +3902,12 @@ loop_exits_before_overflow (tree base, tree step,
 
 	   by proving the reverse conditions are false using loop's initial
 	   condition.  */
-	stepped = fold_build2 (PLUS_EXPR, TREE_TYPE (base), base, step);
+	if (POINTER_TYPE_P (TREE_TYPE (base)))
+	  code = POINTER_PLUS_EXPR;
+	else
+	  code = PLUS_EXPR;
+
+	stepped = fold_build2 (code, TREE_TYPE (base), base, step);
 	if (operand_equal_p (stepped, civ->base, 0))
 	  {
 	    if (tree_int_cst_sign_bit (step))

  reply	other threads:[~2015-06-18 10:14 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-18 10:14 Bin Cheng
2015-06-18 10:16 ` Bin Cheng [this message]
2015-06-18 11:11   ` Richard Biener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='000701d0a9af$833a6e80$89af4b80$@arm.com' \
    --to=bin.cheng@arm.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).