Add a new SSA-based peephole optimizer which includes copy propagation and
authorChris Lattner <sabre@nondot.org>
Mon, 1 Dec 2003 05:15:28 +0000 (05:15 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Dec 2003 05:15:28 +0000 (05:15 +0000)
commit4537076ee83be9cfd5598ced23acabf2185afb8b
tree018189fe51be7b96bd8016aae44bf46f502dd8d2
parentf2d2925452b6f002361db4bb3a08b68ebcb8e8a7
Add a new SSA-based peephole optimizer which includes copy propagation and
folding of instructions into addressing modes.  This creates lots of dead
instructions, which are currently not deleted.  It also creates a lot of
instructions that the X86 backend currently cannot handle.  :(

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10275 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/PeepholeOptimizer.cpp
lib/Target/X86/X86PeepholeOpt.cpp