Teach loop rotate to hoist trivially invariant instructions
authorChris Lattner <sabre@nondot.org>
Mon, 6 Sep 2010 01:10:22 +0000 (01:10 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 6 Sep 2010 01:10:22 +0000 (01:10 +0000)
commit50fb46983ccae116bdbda64471f4861108766135
tree37d2530f9bdaa937d848861d34ebd2bd584ece6a
parentadc799112dc180b3cd099038c05101b85d217716
Teach loop rotate to hoist trivially invariant instructions
in the duplicated block instead of duplicating them.

Duplicating them into the end of the loop and the preheader
means that we got a phi node in the header of the loop,
which prevented LICM from hoisting them.  GVN would
usually come around later and merge the duplicated
instructions so we'd get reasonable output... except that
anything dependent on the shoulda-been-hoisted value can't
be hoisted.  In PR5319 (which this fixes), a memory value
didn't get promoted.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113134 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/Scalar/LoopRotation.cpp
test/Transforms/LoopRotate/basic.ll [new file with mode: 0644]