OSDN Git Service

SLPVectorizer: Instead of just performing CSE on dead blocks ignore them completely.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sun, 11 May 2014 10:28:58 +0000 (10:28 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sun, 11 May 2014 10:28:58 +0000 (10:28 +0000)
commit4db3f410121b1026d47a8de4b79f4a3f4cf9f088
treee3f71c37ec8592dfbad60eac44b59b8fa283241e
parentf5e04c38cd1eb48ea1cd68bbc7aa59e0d5ad141f
SLPVectorizer: Instead of just performing CSE on dead blocks ignore them completely.

Turns out that there is a very cheap way of testing whether a block is dead,
just look it up in the DomTree. We have to do this anyways so just ignore
unreachable blocks before sorting by domination. This restores a proper
ordering for std::stable_sort when dead code is present.

Covered by existing tests & buildbots running in STL debug mode (MSVC).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208492 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/Vectorize/SLPVectorizer.cpp