diff options
author | Duncan Sands <baldrick@free.fr> | 2011-01-14 15:26:10 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2011-01-14 15:26:10 +0000 |
commit | d6f1a9584d72d11e652adc34fc9f5d911eee8e8c (patch) | |
tree | f859e4dab89d939437f97f2c62d9679ab1c3a5fc /llvm/lib/Analysis | |
parent | 571fd9a60652c793c8bdcd7163cd8ee207dc2a84 (diff) | |
download | bcm5719-llvm-d6f1a9584d72d11e652adc34fc9f5d911eee8e8c.tar.gz bcm5719-llvm-d6f1a9584d72d11e652adc34fc9f5d911eee8e8c.zip |
Turn X-(X-Y) into Y. According to my auto-simplifier this is the most common
simplification present in fully optimized code (I think instcombine fails to
transform some of these when "X-Y" has more than one use). Fires here and
there all over the test-suite, for example it eliminates 8 subtractions in
the final IR for 445.gobmk, 2 subs in 447.dealII, 2 in paq8p etc.
llvm-svn: 123442
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/InstructionSimplify.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp index d5cf626e60f..1d4ff0fc9e0 100644 --- a/llvm/lib/Analysis/InstructionSimplify.cpp +++ b/llvm/lib/Analysis/InstructionSimplify.cpp @@ -593,11 +593,25 @@ static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, match(Op0, m_Add(m_Specific(Op1), m_Value(X)))) return X; - /// i1 sub -> xor. + // i1 sub -> xor. if (MaxRecurse && Op0->getType()->isIntegerTy(1)) if (Value *V = SimplifyXorInst(Op0, Op1, TD, DT, MaxRecurse-1)) return V; + // X - (X - Y) -> Y. More generally Z - (X - Y) -> (Z - X) + Y if everything + // simplifies. + Value *Y = 0, *Z = Op0; + if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y) + // See if "V === Z - X" simplifies. + if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, TD, DT, MaxRecurse-1)) + // It does! Now see if "W === V + Y" simplifies. + if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, TD, DT, + MaxRecurse-1)) { + // It does, we successfully reassociated! + ++NumReassoc; + return W; + } + // Mul distributes over Sub. Try some generic simplifications based on this. if (Value *V = FactorizeBinOp(Instruction::Sub, Op0, Op1, Instruction::Mul, TD, DT, MaxRecurse)) |