Home | History | Annotate | Download | only in Analysis

Lines Matching refs:SimplifyXorInst

59 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
429 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
556 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
755 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
1575 /// SimplifyXorInst - Given operands for a Xor, see if we can
1577 static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1624 Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout *DL,
1627 return ::SimplifyXorInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
2921 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
3135 Result = SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);