<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </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 --- - LLVM 3.8.1 compiles VMOVSD on Intel Skylake using EVEX"
   href="https://llvm.org/bugs/show_bug.cgi?id=29162">29162</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>LLVM 3.8.1 compiles VMOVSD on Intel Skylake using EVEX
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>new-bugs
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>3.8
          </td>
        </tr>

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

        <tr>
          <th>OS</th>
          <td>other
          </td>
        </tr>

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

        <tr>
          <th>Severity</th>
          <td>release blocker
          </td>
        </tr>

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

        <tr>
          <th>Component</th>
          <td>new bugs
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>atlaste@yahoo.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>I've written most of the details down here:
<a href="http://stackoverflow.com/questions/39149605/whats-the-proper-way-of-calling-a-win32-64-function-from-llvm/39190281">http://stackoverflow.com/questions/39149605/whats-the-proper-way-of-calling-a-win32-64-function-from-llvm/39190281</a>

To cut to the conclusion, here's what's basically happening: The moment you
compile a program that uses floating point (f.ex. call an external method and
load a floating point constant) using the MCJIT on an Intel Skylake, it will
generate a VMOVSD instruction (which is correct).

VMOVSD is actually an AVX instruction, and encoded with VEX, will give:

C5 FB 10 08          vmovsd      xmm1,qword ptr [rax] 

On Intel Skylake, the emitter incorrectly assumes that EVEX is supported,
generating the corresponding EVEX encoding:

62 f1 FF 08 ...      vmovsd      xmm1,qword ptr [rax] 

However, EVEX won't be supported until Skylake Purley in 2017, so this will
crash the program.

If you fix the issue, please let me know what code is affected.</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>