diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-21 06:51:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-21 06:51:29 +0000 |
commit | e86c91f5b25427fc5d19cb6b6ec8df63835b467b (patch) | |
tree | 330eb705e8f8263fc57a76c134fa6ea37722bf50 | |
parent | 95528943e9abf1308d285276f0aba1f0414e6a9e (diff) | |
download | bcm5719-llvm-e86c91f5b25427fc5d19cb6b6ec8df63835b467b.tar.gz bcm5719-llvm-e86c91f5b25427fc5d19cb6b6ec8df63835b467b.zip |
Dan implemented one multiply issue. Replace it with another. :)
llvm-svn: 47431
-rw-r--r-- | llvm/lib/Target/X86/README.txt | 45 |
1 files changed, 33 insertions, 12 deletions
diff --git a/llvm/lib/Target/X86/README.txt b/llvm/lib/Target/X86/README.txt index f6a0b7831ba..736e299ad80 100644 --- a/llvm/lib/Target/X86/README.txt +++ b/llvm/lib/Target/X86/README.txt @@ -1392,23 +1392,44 @@ _foo: //===---------------------------------------------------------------------===// -We're missing an obvious fold of a load into imul: +We're codegen'ing multiply of long longs inefficiently: -int test(long a, long b) { return a * b; } +unsigned long long LLM(unsigned long long arg1, unsigned long long arg2) { + return arg1 * arg2; +} -LLVM produces: -_test: - movl 4(%esp), %ecx - movl 8(%esp), %eax - imull %ecx, %eax - ret +We compile to (fomit-frame-pointer): -vs: -_test: - movl 8(%esp), %eax - imull 4(%esp), %eax +_LLM: + pushl %esi + movl 8(%esp), %ecx + movl 16(%esp), %esi + movl %esi, %eax + mull %ecx + imull 12(%esp), %esi + addl %edx, %esi + imull 20(%esp), %ecx + movl %esi, %edx + addl %ecx, %edx + popl %esi + ret + +This looks like a scheduling deficiency and lack of remat of the load from +the argument area. ICC apparently produces: + + movl 8(%esp), %ecx + imull 12(%esp), %ecx + movl 16(%esp), %eax + imull 4(%esp), %eax + addl %eax, %ecx + movl 4(%esp), %eax + mull 12(%esp) + addl %ecx, %edx ret +Note that it remat'd loads from 4(esp) and 12(esp). See this GCC PR: +http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17236 + //===---------------------------------------------------------------------===// We can fold a store into "zeroing a reg". Instead of: |