summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/avx1-logical-load-folding.ll
Commit message (Collapse)AuthorAge
* X86: Tighten up test.Jim Grosbach2014-04-10
| | | | | | llc CPU autodection bites again. Speculative fix for bot failures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205940 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for load folding of avx1 logical instructionsJim Grosbach2014-04-09
AVX supports logical operations using an operand from memory. Unfortunately because integer operations were not added until AVX2 the AVX1 logical operation's types were preventing the isel from folding the loads. In a limited number of cases the peephole optimizer would fold the loads, but most were missed. This patch adds explicit patterns with appropriate casts in order for these loads to be folded. The included test cases run on reduced examples and disable the peephole optimizer to ensure the folds are being pattern matched. Patch by Louis Gerbarg <lgg@apple.com> rdar://16355124 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205938 91177308-0d34-0410-b5e6-96231b3b80d8