Go to file
Bruno Cardoso Lopes 0a1c126684 [PeepholeOptimizer] Look through PHIs to find additional register sources
Reapply r243486.

- Teaches the ValueTracker in the PeepholeOptimizer to look through PHI
instructions.
- Add findNextSourceAndRewritePHI method to lookup into multiple sources
returnted by the ValueTracker and rewrite PHIs with new sources.

With these changes we can find more register sources and rewrite more
copies to allow coaslescing of bitcast instructions. Hence, we eliminate
unnecessary VR64 <-> GR64 copies in x86, but it could be extended to
other archs by marking "isBitcast" on target specific instructions. The
x86 example follows:

A:
  psllq %mm1, %mm0
  movd  %mm0, %r9
  jmp C

B:
  por %mm1, %mm0
  movd  %mm0, %r9
  jmp C

C:
  movd  %r9, %mm0
  pshufw  $238, %mm0, %mm0

Becomes:

A:
  psllq %mm1, %mm0
  jmp C

B:
  por %mm1, %mm0
  jmp C

C:
  pshufw  $238, %mm0, %mm0

Differential Revision: http://reviews.llvm.org/D11197
rdar://problem/20404526

llvm-svn: 245442
2015-08-19 14:34:41 +00:00
clang [OPENMP] Link libomp.lib on Windows 2015-08-19 04:49:01 +00:00
clang-tools-extra clang-tools-extra/test/clang-tidy/readability-identifier-naming.cpp: Appease targeting msvc. 2015-08-19 13:22:58 +00:00
compiler-rt Fix typo in lib/safestack/CMakeLists.txt that prevents safestack static library from being built on OS X. 2015-08-19 14:03:51 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc Remove files accidentally not removed in r244310 2015-08-13 23:43:12 +00:00
libcxx Fix warnings about pessimizing return moves for C++11 and higher 2015-08-19 06:43:33 +00:00
libcxxabi Revert r243752, it broke running tests on OS X (PR24491). 2015-08-18 18:29:33 +00:00
libunwind Enable zero-cost exceptions on non-Apple arm64 platforms 2015-08-13 14:21:03 +00:00
lld COFF: Use ErrorOr::operator* instead of ErrorOr::get. 2015-08-18 09:18:15 +00:00
lldb Add TestCrashDuringStep 2015-08-19 14:15:45 +00:00
llgo Update to new lists.llvm.org 2015-08-05 04:03:05 +00:00
llvm [PeepholeOptimizer] Look through PHIs to find additional register sources 2015-08-19 14:34:41 +00:00
openmp D11990: Lock-free start of serialized parallel regions 2015-08-18 10:08:27 +00:00
polly Fix typo 2015-08-19 14:22:48 +00:00