<html>
    <head>
      <base href="http://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 --- - generate more efficient code for logical and operation"
   href="http://llvm.org/bugs/show_bug.cgi?id=17109">17109</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>generate more efficient code for logical and operation
          </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>kkhoo@perfwizard.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvmbugs@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>$ ./clang -v
clang version 3.4 (trunk 189776)
Target: x86_64-apple-darwin11.4.2
Thread model: posix

$ cat and.c 
#include <stdbool.h>

bool and(unsigned int x, unsigned int y) {
        return (x != 0 && y != 0);
}

$ ./clang -S -O3 -fomit-frame-pointer and.c -o /dev/stdout 
    .section    __TEXT,__text,regular,pure_instructions
    .globl    _and
    .align    4, 0x90
_and:                                   ## @and
    .cfi_startproc
## BB#0:                                ## %entry
    testl    %edi, %edi
    setne    %cl
    testl    %esi, %esi
    setne    %al
    andb    %cl, %al
    ret

...

I think this codegen can be improved in size and speed by taking advantage of
the fact that the x86 'test' instruction does a bitwise 'and' operation.
Something like this:

testl %edi, %esi
setne %al
ret</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>