<html>
    <head>
      <base href="https://bugs.freedesktop.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 - [swrast] piglit glsl-array-bounds-05 regression"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=96698">96698</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[swrast] piglit glsl-array-bounds-05 regression
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>Mesa
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>git
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>x86-64 (AMD64)
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux (All)
          </td>
        </tr>

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

        <tr>
          <th>Keywords</th>
          <td>bisected, regression
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>medium
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Mesa core
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>mesa-dev@lists.freedesktop.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>vlee@freedesktop.org
          </td>
        </tr>

        <tr>
          <th>QA Contact</th>
          <td>mesa-dev@lists.freedesktop.org
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>kenneth@whitecape.org, t_arceri@yahoo.com.au
          </td>
        </tr></table>
      <p>
        <div>
        <pre>mesa: 6e4cf937f8e742433a4320b1b847454a06dacf03 (12.1.0-devel)

$ ./bin/shader_runner tests/shaders/glsl-array-bounds-05.shader_test -auto
Probe color at (15,15)
  Expected: 0.000000 1.000000 0.000000
  Observed: 1.000000 0.000000 0.000000
PIGLIT: {"result": "fail" }


c264fdbc073a0dfc393f53a8be880f535fd4b988 is the first bad commit
commit c264fdbc073a0dfc393f53a8be880f535fd4b988
Author: Kenneth Graunke <<a href="mailto:kenneth@whitecape.org">kenneth@whitecape.org</a>>
Date:   Mon Jun 20 11:20:51 2016 -0700

    glsl: Split arrays even in the presence of whole-array copies.

    Previously, we failed to split constant arrays.  Code such as

       int[2] numbers = int[](1, 2);

    would generates a whole-array assignment:

      (assign () (var_ref numbers)
                 (constant (array int 4) (constant int 1) (constant int 2)))

    opt_array_splitting generally tried to visit ir_dereference_array nodes,
    and avoid recursing into the inner ir_dereference_variable.  So if it
    ever saw a ir_dereference_variable, it assumed this was a whole-array
    read and bailed.  However, in the above case, there's no array deref,
    and we can totally handle it - we just have to "unroll" the assignment,
    creating assignments for each element.

    This was mitigated by the fact that we constant propagate whole arrays,
    so a dereference of a single component would usually get the desired
    single value anyway.  However, I plan to stop doing that shortly;
    early experiments with disabling constant propagation of arrays
    revealed this shortcoming.

    This patch causes some arrays in Gl32GSCloth's geometry shaders to be
    split, which allows other optimizations to eliminate unused GS inputs.
    The VS then doesn't have to write them, which eliminates the entire VS
    (5 -> 2 instructions).  It still renders correctly.

    No other change in shader-db.

    v2: Drop !AOA check and improve a comment (feedback from Tim Arceri).

    Cc: <a href="mailto:mesa-stable@lists.freedesktop.org">mesa-stable@lists.freedesktop.org</a>
    Signed-off-by: Kenneth Graunke <<a href="mailto:kenneth@whitecape.org">kenneth@whitecape.org</a>>
    Reviewed-by: Timothy Arceri <<a href="mailto:timothy.arceri@collabora.com">timothy.arceri@collabora.com</a>>

:040000 040000 5d96cd8ba322e2ac1857baf9e401b5d494a85ab2
2b920fe841296c89251cca630f51060de413cbb3 M      src
bisect run success</pre>
        </div>
      </p>


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

      <ul>
          <li>You are the assignee for the bug.</li>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>