Searched refs:dyn_castNegVal (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1004 if (Value *LHSV = dyn_castNegVal(LHS)) {
1006 if (Value *RHSV = dyn_castNegVal(RHS)) {
1016 if (Value *V = dyn_castNegVal(RHS))
1364 if (Value *V = dyn_castNegVal(Op1)) {
1459 if (Value *XNeg = dyn_castNegVal(X))
H A DInstCombine.h214 Value *dyn_castNegVal(Value *V) const;
H A DInstCombineMulDivRem.cpp206 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
207 if (Value *Op1v = dyn_castNegVal(Op1))
221 Value *Neg = dyn_castNegVal(Op1C);
1187 if (Value *RHSNeg = dyn_castNegVal(Op1))
H A DInstCombineCompares.cpp1653 if (Value *NegVal = dyn_castNegVal(BOp1))
1655 if (Value *NegVal = dyn_castNegVal(BOp0))
2117 if (Value *V = dyn_castNegVal(SelectTrue)) {
2121 else if (Value *V = dyn_castNegVal(SelectFalse)) {
H A DInstructionCombining.cpp512 // dyn_castNegVal - Given a 'sub' instruction, return the RHS of the instruction
515 Value *InstCombiner::dyn_castNegVal(Value *V) const { function in class:InstCombiner

Completed in 139 milliseconds