diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-07-08 10:31:30 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-07-08 10:31:30 +0000 |
commit | 9960a25006d9907a93aae39a8bfbc478a3518a72 (patch) | |
tree | a5341813eea6e9935e646dbf87a2c605020c8121 /llvm/cmake | |
parent | 491f56d41ec7b3120d27801f1174c3f523c33551 (diff) | |
download | bcm5719-llvm-9960a25006d9907a93aae39a8bfbc478a3518a72.tar.gz bcm5719-llvm-9960a25006d9907a93aae39a8bfbc478a3518a72.zip |
Emit a more efficient magic number multiplication for exact sdivs.
We have to do this in DAGBuilder instead of DAGCombiner, because the exact bit is lost after building.
struct foo { char x[24]; };
long bar(struct foo *a, struct foo *b) { return a-b; }
is now compiled into
movl 4(%esp), %eax
subl 8(%esp), %eax
sarl $3, %eax
imull $-1431655765, %eax, %eax
instead of
movl 4(%esp), %eax
subl 8(%esp), %eax
movl $715827883, %ecx
imull %ecx
movl %edx, %eax
shrl $31, %eax
sarl $2, %edx
addl %eax, %edx
movl %edx, %eax
llvm-svn: 134695
Diffstat (limited to 'llvm/cmake')
0 files changed, 0 insertions, 0 deletions