public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/47707] New: Loss of step type precision leads to bad scalar evolution
@ 2011-02-11 20:53 xinliangli at gmail dot com
  2011-02-11 21:07 ` [Bug tree-optimization/47707] " rguenth at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: xinliangli at gmail dot com @ 2011-02-11 20:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47707

           Summary: Loss of step type precision leads to bad scalar
                    evolution
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: xinliangli@gmail.com


Compiling the following program with O2 and -fno-tree-vrp, the program aborts
at runtime

#include <assert.h>

struct CH
{
  unsigned char ch : 3;
} ch;

__attribute__((noinline)) void MakeCheckOp (unsigned int *v1, unsigned int *v2)
{
 assert (*v1 == *v2);

}

int main (void)
{

  int len;

  for (len = 4; len >= 1; len--)
  {
     unsigned v1, v2;
     ch.ch = len;
     v1 = ch.ch;
     v2 = len;
     MakeCheckOp (&v1, &v2);
  }
}

The following is the ir dump before ivopt:

int main() ()
{
  unsigned int ivtmp.12;
  int pretmp.11;
  unsigned int pretmp.10;
  <unnamed-unsigned:3> pretmp.9;
  unsigned char pretmp.8;
  <unnamed-unsigned:3> pretmp.7;
  unsigned char pretmp.6;
  unsigned int v2;
  unsigned int v1;
  int len;
  unsigned int len.1;
  unsigned int v1.0;
  <unnamed-unsigned:3> D.2142;
  unsigned char D.2141;

<bb 2>:

<bb 3>:
Invalid sum of incoming frequencies 8400, should be 8000
  # len_17 = PHI <len_9(4), 4(2)>
  # ivtmp.12_21 = PHI <ivtmp.12_20(4), 4(2)>
  D.2141_4 = (unsigned char) len_17;
  D.2142_5 = (<unnamed-unsigned:3>) D.2141_4;
  ch.ch = D.2142_5;
  v1.0_7 = (unsigned int) D.2142_5;
  v1 = v1.0_7;
  len.1_8 = (unsigned int) len_17;
  v2 = len.1_8;
  MakeCheckOp (&v1, &v2);
  len_9 = len_17 - 1;
  ivtmp.12_20 = ivtmp.12_21 - 1;
  if (ivtmp.12_20 != 0)
    goto <bb 4>;
  else
    goto <bb 5>;

<bb 4>:
  goto <bb 3>;

<bb 5>:
Invalid sum of incoming frequencies 1600, should be 2000
  return 0;

}


The scalar evolution for D.2142 is 

(analyze_scalar_evolution 
  (loop_nb = 1)
  (scalar = D.2142_5)
(get_scalar_evolution 
  (scalar = D.2142_5)
  (scalar_evolution = {4, +, 7}_1))
(set_scalar_evolution 
  instantiated_below = 2 
  (scalar = D.2142_5)
  (scalar_evolution = {4, +, 7}_1))
)

Which is correct, because precision of D.2142's type is 3 bits, so the sequence
will wrap: {4,3,2,1}

However for v1.0_7

v1.0_7 = (unsigned int) D.2142_5;

The scev is wrong:

(analyze_scalar_evolution 
  (loop_nb = 1)
  (scalar = v1.0_7)
(get_scalar_evolution 
  (scalar = v1.0_7)
  (scalar_evolution = {4, +, 7}_1))
(set_scalar_evolution 
  instantiated_below = 2 
  (scalar = v1.0_7)
  (scalar_evolution = {4, +, 7}_1))
)

Which will be {4,11,18,....} as there is no wrapping.

The proposed fixed is :

Index: tree-chrec.c
===================================================================
--- tree-chrec.c        (revision 170058)
+++ tree-chrec.c        (working copy)
@@ -1238,8 +1238,13 @@ convert_affine_scev (struct loop *loop, 
      performed by default when CT is signed.  */
   new_step = *step;
   if (TYPE_PRECISION (step_type) > TYPE_PRECISION (ct) && TYPE_UNSIGNED (ct))
-    new_step = chrec_convert_1 (signed_type_for (ct), new_step, at_stmt,
-                               use_overflow_semantics);
+    {
+      tree signed_ct = signed_type_for (ct);
+      if (TYPE_PRECISION (signed_ct) != TYPE_PRECISION (ct))
+        signed_ct = build_nonstandard_integer_type (TYPE_PRECISION (ct), 0);
+      new_step = chrec_convert_1 (signed_ct, new_step, at_stmt,
+                                  use_overflow_semantics);
+    }
   new_step = chrec_convert_1 (step_type, new_step, at_stmt,
use_overflow_semantics);

   if (automatically_generated_chrec_p (new_base)
@@ -1579,4 +1584,3 @@ evolution_function_right_is_integer_cst 
       return false;
     }
 }




David


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug tree-optimization/47707] Loss of step type precision leads to bad scalar evolution
  2011-02-11 20:53 [Bug tree-optimization/47707] New: Loss of step type precision leads to bad scalar evolution xinliangli at gmail dot com
@ 2011-02-11 21:07 ` rguenth at gcc dot gnu.org
  2011-02-12 12:01 ` manu at gcc dot gnu.org
  2011-02-14 19:51 ` xinliangli at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-02-11 21:07 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47707

--- Comment #1 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-02-11 20:56:09 UTC ---
Yeah, signed_type_for isn't really suitable for middle-end use.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug tree-optimization/47707] Loss of step type precision leads to bad scalar evolution
  2011-02-11 20:53 [Bug tree-optimization/47707] New: Loss of step type precision leads to bad scalar evolution xinliangli at gmail dot com
  2011-02-11 21:07 ` [Bug tree-optimization/47707] " rguenth at gcc dot gnu.org
@ 2011-02-12 12:01 ` manu at gcc dot gnu.org
  2011-02-14 19:51 ` xinliangli at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: manu at gcc dot gnu.org @ 2011-02-12 12:01 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47707

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> 2011-02-12 10:24:34 UTC ---
(In reply to comment #1)
> Yeah, signed_type_for isn't really suitable for middle-end use.

And kids, this is what happens when you don't have modularity...


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug tree-optimization/47707] Loss of step type precision leads to bad scalar evolution
  2011-02-11 20:53 [Bug tree-optimization/47707] New: Loss of step type precision leads to bad scalar evolution xinliangli at gmail dot com
  2011-02-11 21:07 ` [Bug tree-optimization/47707] " rguenth at gcc dot gnu.org
  2011-02-12 12:01 ` manu at gcc dot gnu.org
@ 2011-02-14 19:51 ` xinliangli at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: xinliangli at gmail dot com @ 2011-02-14 19:51 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47707

davidxl <xinliangli at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED

--- Comment #3 from davidxl <xinliangli at gmail dot com> 2011-02-14 19:47:03 UTC ---
Fixed in r170062.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-02-14 19:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-11 20:53 [Bug tree-optimization/47707] New: Loss of step type precision leads to bad scalar evolution xinliangli at gmail dot com
2011-02-11 21:07 ` [Bug tree-optimization/47707] " rguenth at gcc dot gnu.org
2011-02-12 12:01 ` manu at gcc dot gnu.org
2011-02-14 19:51 ` xinliangli at gmail dot com

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).