diff options
author | Eric Christopher <echristo@apple.com> | 2011-03-08 02:42:25 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-03-08 02:42:25 +0000 |
commit | 7c2cdb1c05cd94b494729f5e034aec0562165230 (patch) | |
tree | ae978bf809c0deef18d6faf6459c121c43e18f98 /test/CodeGen/X86/2008-07-19-movups-spills.ll | |
parent | 0bf56c821c454a960afc34cb5746006bc1f9e1a1 (diff) |
Turn on list-ilp scheduling by default on x86 and x86-64, fix up
testcases accordingly. Some are currently xfailed and will be filed
as bugs to be fixed or understood.
Performance results:
roughly neutral on SPEC
some micro benchmarks in the llvm suite are up between 100 and 150%, only
a pair of regressions that are due to be investigated
john-the-ripper saw:
10% improvement in traditional DES
8% improvement in BSDI DES
59% improvement in FreeBSD MD5
67% improvement in OpenBSD Blowfish
14% improvement in LM DES
Small compile time impact.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127208 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2008-07-19-movups-spills.ll')
-rw-r--r-- | test/CodeGen/X86/2008-07-19-movups-spills.ll | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/CodeGen/X86/2008-07-19-movups-spills.ll b/test/CodeGen/X86/2008-07-19-movups-spills.ll index cf04dcf0f1..368af6d8ab 100644 --- a/test/CodeGen/X86/2008-07-19-movups-spills.ll +++ b/test/CodeGen/X86/2008-07-19-movups-spills.ll @@ -1,7 +1,9 @@ -; RUN: llc < %s -mtriple=i686-pc-linux -realign-stack=1 -mattr=sse2 | grep movaps | count 75 -; RUN: llc < %s -mtriple=i686-pc-linux -realign-stack=0 -mattr=sse2 | grep movaps | count 75 +; RUN: llc < %s -mtriple=i686-pc-linux -realign-stack=1 -mattr=sse2 | grep movups | count 33 +; RUN: llc < %s -mtriple=i686-pc-linux -realign-stack=0 -mattr=sse2 | grep movups | count 33 ; PR2539 ; PR8969 - make 32-bit linux have a 16-byte aligned stack +; Verify that movups is still generated with an aligned stack for the globals +; that must be accessed unaligned external global <4 x float>, align 1 ; <<4 x float>*>:0 [#uses=2] external global <4 x float>, align 1 ; <<4 x float>*>:1 [#uses=1] |