<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_ASSIGNED "
   title="ASSIGNED --- - [ppc] Shorter sequence to load 64bit constant with same hi/lo parts"
   href="https://llvm.org/bugs/show_bug.cgi?id=30640">30640</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[ppc] Shorter sequence to load 64bit constant with same hi/lo parts
          </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>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>ASSIGNED
          </td>
        </tr>

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

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

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

        <tr>
          <th>Assignee</th>
          <td>carrot@google.com
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>carrot@google.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>Compile following code with options

-m64 -O2 -mvsx -mcpu=power8 

unsigned long long foo()
{
  return 0xcdcdcdcdcdcdcdcdll;
}

LLVM generats:

# BB#0:                                 # %entry
    lis 3, -12851
    ori 3, 3, 52685
    sldi 3, 3, 32
    oris 3, 3, 52685
    ori 3, 3, 52685
    blr


Because the hi/lo parts are same, we can use rldimi to reduce the code
sequence:

    lis 3, -12851
    ori 3, 3, 52685
        rldimi 3, 3, 32, 0</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>