<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - __restrict on struct member has no effect"
   href="https://bugs.llvm.org/show_bug.cgi?id=45863">45863</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>__restrict on struct member has no effect
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>enhancement
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>C++
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>dsharlet@google.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>blitzrakete@gmail.com, dgregor@apple.com, erik.pilkington@gmail.com, llvm-bugs@lists.llvm.org, richard-llvm@metafoo.co.uk
          </td>
        </tr></table>
      <p>
        <div>
        <pre>The following code demonstrates the issue:

const int N = 8;

void add1(const float* __restrict a, const float* __restrict b, float*
__restrict c) {
  for (int i = 0; i < N; i++) {
    c[i] = a[i] + b[i];
  }
}

struct A {
  float * __restrict x;
};

void add2(const A& a, const A& b, A& c) {
  for (int i = 0; i < N; i++) {
    c.x[i] = a.x[i] + b.x[i];
  }
}

When compiling this with clang -S -O2 -march=native, I see a vectorized loop
for add1, but not for add2. When I look at the generated LLVM assembly, there's
no indication that the noalias attribute was applied to any of the pointers.
Adding __restrict to the function argument references does not help either (but
I wouldn't expect it to).

As far as I can tell, this is supposed to work to indicate that none of the x
pointers in add2 alias, at least in C.

I just tried this on a recently updated trunk Clang+LLVM and see the same
behavior (commit 57fb56b30e8).</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>