public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/44183]  New: Vectorizer may generate invalid memory access
@ 2010-05-18  1:22 hjl dot tools at gmail dot com
  2010-05-20  7:14 ` [Bug tree-optimization/44183] " irar at il dot ibm dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: hjl dot tools at gmail dot com @ 2010-05-18  1:22 UTC (permalink / raw)
  To: gcc-bugs

For

---
#define N 16

float b[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
float a[N];

void
test (void)
{
  int i;
  for (i = 0; i < N/2; i++)
    a[i] = b[2*i+1] * c[2*i+1];
}
---

vectorizer generates:

test ()
{
  unsigned int ivtmp.30;
  vector(4) float * vect_pa.29;
  vector(4) float * vect_pa.26;
  vector(4) float vect_var_.25;
  vector(4) float vect_perm_odd.24;
  vector(4) float vect_perm_even.23;
  vector(4) float vect_var_.22;
  vector(4) float vect_var_.21;
  vector(4) float * c.20;
  vector(4) float * vect_pc.19;
  vector(4) float * vect_pc.16;
  vector(4) float vect_perm_odd.15;
  vector(4) float vect_perm_even.14;
  vector(4) float vect_var_.13;
  vector(4) float vect_var_.12;
  vector(4) float * b.11;
  vector(4) float * vect_pb.10;
  vector(4) float * vect_pb.7;
  unsigned int ivtmp.6;
  int i;
  float D.2731;
  float D.2730;
  float D.2729;
  int D.2728;
  int D.2727;

<bb 2>:
  b.11_18 = (vector(4) float *) &b;
  vect_pb.10_21 = b.11_18 + 4;
  vect_pb.7_22 = vect_pb.10_21;
  c.20_30 = (vector(4) float *) &c;
  vect_pc.19_31 = c.20_30 + 4;
  vect_pc.16_32 = vect_pc.19_31;
  vect_pa.29_41 = (vector(4) float *) &a;
  vect_pa.26_42 = vect_pa.29_41;

<bb 3>:
  # i_14 = PHI <i_10(4), 0(2)>
  # ivtmp.6_20 = PHI <ivtmp.6_19(4), 8(2)>
  # vect_pb.7_23 = PHI <vect_pb.7_24(4), vect_pb.7_22(2)>
  # vect_pc.16_33 = PHI <vect_pc.16_34(4), vect_pc.16_32(2)>
  # vect_pa.26_43 = PHI <vect_pa.26_44(4), vect_pa.26_42(2)>
  # ivtmp.30_45 = PHI <ivtmp.30_46(4), 0(2)>
  D.2727_3 = i_14 * 2;
  D.2728_4 = D.2727_3 + 1;
  vect_var_.12_25 = M*vect_pb.7_23{misalignment: 32};
  vect_pb.7_26 = vect_pb.7_23 + 16;
  vect_var_.13_27 = M*vect_pb.7_26{misalignment: 32};
  vect_perm_even.14_28 = VEC_EXTRACTEVEN_EXPR <vect_var_.12_25,
vect_var_.13_27>;
  vect_perm_odd.15_29 = VEC_EXTRACTODD_EXPR <vect_var_.12_25, vect_var_.13_27>;
  D.2729_5 = b[D.2728_4];
  vect_var_.21_35 = M*vect_pc.16_33{misalignment: 32};
  vect_pc.16_36 = vect_pc.16_33 + 16;
  vect_var_.22_37 = M*vect_pc.16_36{misalignment: 32};
  vect_perm_even.23_38 = VEC_EXTRACTEVEN_EXPR <vect_var_.21_35,
vect_var_.22_37>;
  vect_perm_odd.24_39 = VEC_EXTRACTODD_EXPR <vect_var_.21_35, vect_var_.22_37>;
  D.2730_8 = c[D.2728_4];
  vect_var_.25_40 = vect_perm_even.14_28 * vect_perm_even.23_38;
  D.2731_9 = D.2729_5 * D.2730_8;
  *vect_pa.26_43 = vect_var_.25_40;
  i_10 = i_14 + 1;
  ivtmp.6_19 = ivtmp.6_20 - 1;
  vect_pb.7_24 = vect_pb.7_26 + 16;
  vect_pc.16_34 = vect_pc.16_36 + 16;
  vect_pa.26_44 = vect_pa.26_43 + 16;
  ivtmp.30_46 = ivtmp.30_45 + 1;
  if (ivtmp.30_46 < 2)
    goto <bb 4>;
  else
    goto <bb 5>;

<bb 4>:
  goto <bb 3>;

<bb 5>:
  return;

}

The problem is

  D.2727_3 = i_14 * 2;
  D.2728_4 = D.2727_3 + 1;
  vect_var_.12_25 = M*vect_pb.7_23{misalignment: 32};
  vect_pb.7_26 = vect_pb.7_23 + 16;
  vect_var_.13_27 = M*vect_pb.7_26{misalignment: 32};
  vect_perm_even.14_28 = VEC_EXTRACTEVEN_EXPR <vect_var_.12_25,
vect_var_.13_27>;
  vect_perm_odd.15_29 = VEC_EXTRACTODD_EXPR <vect_var_.12_25, vect_var_.13_27>;

may access memory beyond the array boundary, depending on
how VEC_EXTRACTEVEN_EXPR and VEC_EXTRACTODD_EXPR are
implemented in backend. The misaligned assess:

vect_var_.12_25 = M*vect_pb.7_23{misalignment: 32};
vect_var_.13_27 = M*vect_pb.7_26{misalignment: 32};

may read one element outside of array if backend
needs to read in the whole misaligned memory.


-- 
           Summary: Vectorizer may generate invalid memory access
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl dot tools at gmail dot com


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
  2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
@ 2010-05-20  7:14 ` irar at il dot ibm dot com
  2010-05-20  8:51 ` hjl dot tools at gmail dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: irar at il dot ibm dot com @ 2010-05-20  7:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from irar at il dot ibm dot com  2010-05-20 07:13 -------
Do you mean that extract_even implementation does something illegal with this
last element? Misaligned load also accesses elements outside the array, but the
problem is in extract_even?

Other than doing something in the backend, we can reduce the number of vector
iterations in cases that may access elements outside array bounds for specific
targets...


-- 


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
  2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
  2010-05-20  7:14 ` [Bug tree-optimization/44183] " irar at il dot ibm dot com
@ 2010-05-20  8:51 ` hjl dot tools at gmail dot com
  2010-05-20 10:05 ` irar at il dot ibm dot com
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: hjl dot tools at gmail dot com @ 2010-05-20  8:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from hjl dot tools at gmail dot com  2010-05-20 08:50 -------
(In reply to comment #1)
> Do you mean that extract_even implementation does something illegal with this
> last element? Misaligned load also accesses elements outside the array, but the
> problem is in extract_even?

Vectorizer generates

vect_var_.12_25 = M*vect_pb.7_23{misalignment: 32};
vect_var_.13_27 = M*vect_pb.7_26{misalignment: 32};

Those may read beyond the end of array. Vectorizer
should check that vect_pb.7_23/vect_pb.7_26 + vector
size < end of array.


-- 


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
  2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
  2010-05-20  7:14 ` [Bug tree-optimization/44183] " irar at il dot ibm dot com
  2010-05-20  8:51 ` hjl dot tools at gmail dot com
@ 2010-05-20 10:05 ` irar at il dot ibm dot com
  2010-05-20 10:18 ` mikpe at it dot uu dot se
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: irar at il dot ibm dot com @ 2010-05-20 10:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from irar at il dot ibm dot com  2010-05-20 10:04 -------
I am curious what is the problem with that? These elements are not used, they
are just loaded... 


-- 


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
  2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
                   ` (2 preceding siblings ...)
  2010-05-20 10:05 ` irar at il dot ibm dot com
@ 2010-05-20 10:18 ` mikpe at it dot uu dot se
  2010-05-20 10:24 ` irar at il dot ibm dot com
  2010-05-20 11:07 ` mikpe at it dot uu dot se
  5 siblings, 0 replies; 9+ messages in thread
From: mikpe at it dot uu dot se @ 2010-05-20 10:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from mikpe at it dot uu dot se  2010-05-20 10:18 -------
(In reply to comment #3)
> I am curious what is the problem with that? These elements are not used, they
> are just loaded... 

An out-of-bounds read can result in a SEGV if the memory is unmapped. Worse
things can happen if the memory is "special" (think kernels and MMIO).


-- 


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
  2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
                   ` (3 preceding siblings ...)
  2010-05-20 10:18 ` mikpe at it dot uu dot se
@ 2010-05-20 10:24 ` irar at il dot ibm dot com
  2010-05-20 11:07 ` mikpe at it dot uu dot se
  5 siblings, 0 replies; 9+ messages in thread
From: irar at il dot ibm dot com @ 2010-05-20 10:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from irar at il dot ibm dot com  2010-05-20 10:24 -------
Even if we are talking about less than vector size from array boundary? And
that boundary is not (vector) aligned.


-- 


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
  2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
                   ` (4 preceding siblings ...)
  2010-05-20 10:24 ` irar at il dot ibm dot com
@ 2010-05-20 11:07 ` mikpe at it dot uu dot se
  5 siblings, 0 replies; 9+ messages in thread
From: mikpe at it dot uu dot se @ 2010-05-20 11:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from mikpe at it dot uu dot se  2010-05-20 11:05 -------
It depends on the specific values of (a) array end alignment and (b) the number
of bytes read. As long as the array end + number of bytes read can cross a page
boundary, you're potentially causing SEGV or other errors.


-- 


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


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
       [not found] <bug-44183-4@http.gcc.gnu.org/bugzilla/>
  2011-01-31 10:28 ` rguenth at gcc dot gnu.org
@ 2011-01-31 11:36 ` rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-01-31 11:36 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

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

--- Comment #8 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-01-31 10:51:32 UTC ---
This is a non-bug.  The transformation is ok and will never cause a pagefault.


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

* [Bug tree-optimization/44183] Vectorizer may generate invalid memory access
       [not found] <bug-44183-4@http.gcc.gnu.org/bugzilla/>
@ 2011-01-31 10:28 ` rguenth at gcc dot gnu.org
  2011-01-31 11:36 ` rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-01-31 10:28 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-01-31 10:06:27 UTC ---
(In reply to comment #6)
> It depends on the specific values of (a) array end alignment and (b) the number
> of bytes read. As long as the array end + number of bytes read can cross a page
> boundary, you're potentially causing SEGV or other errors.

I don't think this can happen.  The access to the out-of-bounds area only
happens if there are pieces inluded in the last (aligned) vector move.
That vector move will be aligned so it can't cross page-boundary.  As
it contains at least one allocated element the access may not trap.


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

end of thread, other threads:[~2011-01-31 10:51 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-18  1:22 [Bug tree-optimization/44183] New: Vectorizer may generate invalid memory access hjl dot tools at gmail dot com
2010-05-20  7:14 ` [Bug tree-optimization/44183] " irar at il dot ibm dot com
2010-05-20  8:51 ` hjl dot tools at gmail dot com
2010-05-20 10:05 ` irar at il dot ibm dot com
2010-05-20 10:18 ` mikpe at it dot uu dot se
2010-05-20 10:24 ` irar at il dot ibm dot com
2010-05-20 11:07 ` mikpe at it dot uu dot se
     [not found] <bug-44183-4@http.gcc.gnu.org/bugzilla/>
2011-01-31 10:28 ` rguenth at gcc dot gnu.org
2011-01-31 11:36 ` rguenth at gcc dot gnu.org

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