OSDN Git Service

Revert r190764: PPC: Don't restrict lvsl generation to after type legalization
authorHal Finkel <hfinkel@anl.gov>
Sun, 15 Sep 2013 15:41:11 +0000 (15:41 +0000)
committerHal Finkel <hfinkel@anl.gov>
Sun, 15 Sep 2013 15:41:11 +0000 (15:41 +0000)
commit19b59e66afa8d19c35444e0a739b467d368725d3
tree96b483b8ef8e1b44db2cdb42344c37248445a9bc
parent55532adc687a87574fd79822c876b10db95cd9ee
Revert r190764: PPC: Don't restrict lvsl generation to after type legalization

This is causing test-suite failures.

Original commit message:

The PPC backend uses a target-specific DAG combine to turn unaligned Altivec
loads into a permutation-based sequence when possible. Unfortunately, the
target-specific DAG combine is not always called on all loads of interest
(sometimes the routines in DAGCombine call CombineTo such that the new node and
users are not added to the worklist); allowing the combine to trigger early
(before type legalization) mitigates this problem. Because the autovectorizers
only create legal vector types, I don't expect a lot of cases where this
optimization is enabled by type legalization in practice.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190765 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/PowerPC/PPCISelLowering.cpp
test/CodeGen/PowerPC/unal-altivec2.ll [deleted file]