1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/Transforms/LoopStrengthReduce/X86
Chandler Carruth 0e84971ae2 Switch the SCEV expander and LoopStrengthReduce to use
TargetTransformInfo rather than TargetLowering, removing one of the
primary instances of the layering violation of Transforms depending
directly on Target.

This is a really big deal because LSR used to be a "special" pass that
could only be tested fully using llc and by looking at the full output
of it. It also couldn't run with any other loop passes because it had to
be created by the backend. No longer is this true. LSR is now just
a normal pass and we should probably lift the creation of LSR out of
lib/CodeGen/Passes.cpp and into the PassManagerBuilder. =] I've not done
this, or updated all of the tests to use opt and a triple, because
I suspect someone more familiar with LSR would do a better job. This
change should be essentially without functional impact for normal
compilations, and only change behvaior of targetless compilations.

The conversion required changing all of the LSR code to refer to the TTI
interfaces, which fortunately are very similar to TargetLowering's
interfaces. However, it also allowed us to *always* expect to have some
implementation around. I've pushed that simplification through the pass,
and leveraged it to simplify code somewhat. It required some test
updates for one of two things: either we used to skip some checks
altogether but now we get the default "no" answer for them, or we used
to have no information about the target and now we do have some.

I've also started the process of removing AddrMode, as the TTI interface
doesn't use it any longer. In some cases this simplifies code, and in
others it adds some complexity, but I think it's not a bad tradeoff even
there. Subsequent patches will try to clean this up even further and use
other (more appropriate) abstractions.

Yet again, almost all of the formatting changes brought to you by
clang-format. =]

llvm-svn: 171735
2013-01-07 14:41:08 +00:00
..
2008-08-14-ShadowIV.ll Switch the SCEV expander and LoopStrengthReduce to use 2013-01-07 14:41:08 +00:00
2009-11-10-LSRCrash.ll
2011-07-20-DoubleIV.ll Switch the SCEV expander and LoopStrengthReduce to use 2013-01-07 14:41:08 +00:00
2011-11-29-postincphi.ll Move llc + target triple tests into X86 2012-03-10 19:03:51 +00:00
2011-12-04-loserreg.ll Move llc + target triple tests into X86 2012-03-10 19:03:51 +00:00
2012-01-13-phielim.ll Add a much more conservative strategy for aligning branch targets. 2012-08-07 09:45:24 +00:00
ivchain-stress-X86.ll
ivchain-X86.ll Enable LSR IV Chains with sufficient heuristics. 2012-01-10 01:45:08 +00:00
lit.local.cfg Continue cleanup of LIT, getting rid of the remaining artifacts from dejagnu 2012-03-25 09:02:19 +00:00