]> granicus.if.org Git - llvm/commit
Merging r243361:
authorHans Wennborg <hans@hanshq.net>
Tue, 28 Jul 2015 16:20:00 +0000 (16:20 +0000)
committerHans Wennborg <hans@hanshq.net>
Tue, 28 Jul 2015 16:20:00 +0000 (16:20 +0000)
commitd6482ace16581765386a949ad412e67daa201d81
tree44a83d956c64dce16ed52d6a11956901a39c576c
parent8e267d85ff27247c75b371c1a6a039b5d1351bfc
Merging r243361:
------------------------------------------------------------------------
r243361 | spatel | 2015-07-27 17:48:32 -0700 (Mon, 27 Jul 2015) | 17 lines

fix invalid load folding with SSE/AVX FP logical instructions (PR22371)

This is a follow-up to the FIXME that was added with D7474 ( http://reviews.llvm.org/rL229531 ).
I thought this load folding bug had been made hard-to-hit, but it turns out to be very easy
when targeting 32-bit x86 and causes a miscompile/crash in Wine:
https://bugs.winehq.org/show_bug.cgi?id=38826
https://llvm.org/bugs/show_bug.cgi?id=22371#c25

The quick fix is to simply remove the scalar FP logical instructions from the load folding table
in X86InstrInfo, but that causes us to miss load folds that should be possible when lowering fabs,
fneg, fcopysign. So the majority of this patch is altering those lowerings to use *vector* FP
logical instructions (because that's all x86 gives us anyway). That lets us do the load folding
legally.

Differential Revision: http://reviews.llvm.org/D11477

------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_37@243435 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86ISelLowering.cpp
lib/Target/X86/X86InstrInfo.cpp
lib/Target/X86/X86InstrSSE.td
test/CodeGen/X86/pr2656.ll
test/CodeGen/X86/sse-fcopysign.ll
test/CodeGen/X86/vec_fabs.ll