<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 - [AVX-512] Redundant instruction in Scatter sequence"
   href="https://bugs.llvm.org/show_bug.cgi?id=34542">34542</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[AVX-512] Redundant instruction in Scatter sequence
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libraries
          </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>normal
          </td>
        </tr>

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

        <tr>
          <th>Component</th>
          <td>Backend: X86
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>elena.demikhovsky@intel.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>This is the IR code, which stores the same i32 value in 16 random locations:
define void @foo(i32 %x, <16 x i32*> %addr) {
  %y = insertelement <16 x i32>undef, i32 %x, i32 0
  %y1 = shufflevector <16 x i32>%y, <16 x i32> undef, <16 x i32>zeroinitializer
  br label %L
  L:
  call void @llvm.masked.scatter.v16i32.v16p0i32(<16 x i32> %y1, <16 x i32*>
%addr, i32 4, <16 x i1> <i1 true, i1 true, i1 true, i1 true, i1 true, i1 true,
i1 true, i1 true, i1 true, i1 true, i1 true, i1 true, i1 true, i1 true, i1
true, i1 true>)
  ret void
}
declare void @llvm.masked.scatter.v16i32.v16p0i32(<16 x i32>, <16 x i32*>, i32,
<16 x i1>)

  vpbroadcastd    %edi, %zmm2
  kxnorw  %k0, %k0, %k1
  kxnorw  %k0, %k0, %k2
  vpscatterqd     %ymm2, (,%zmm0) {%k2}
  vextracti64x4   $1, %zmm2, %ymm0      <== This instruction is redundant.
  vpscatterqd     %ymm0, (,%zmm1) {%k1}

I checked the similar sequence with Store - it is ok, the problem is only in
the Scatter.</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>