]> granicus.if.org Git - llvm/commit
Transform (X/Y)*Y into X if the division is exact. Instcombine already knows how
authorDuncan Sands <baldrick@free.fr>
Sun, 30 Jan 2011 18:03:50 +0000 (18:03 +0000)
committerDuncan Sands <baldrick@free.fr>
Sun, 30 Jan 2011 18:03:50 +0000 (18:03 +0000)
commit1895e98ef38afbe011575cc25f4889d96e37421b
tree19f30e63e5aa7c09797f0d200d8e5935b9616bed
parent9b108a338d544a6baf2ff087055326e301e6815d
Transform (X/Y)*Y into X if the division is exact.  Instcombine already knows how
to do this and more, but would only do it if X/Y had only one use.  Spotted as the
most common missed simplification in SPEC by my auto-simplifier, now that it knows
about nuw/nsw/exact flags.  This removes a bunch of multiplications from 447.dealII
and 483.xalancbmk.  It also removes a lot from tramp3d-v4, which results in much
more inlining.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124560 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Analysis/InstructionSimplify.cpp
test/Transforms/InstSimplify/2010-12-20-Reassociate.ll