Searched refs:SimplifyXorInst (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h195 /// SimplifyXorInst - Given operands for a Xor, see if we can
197 Value *SimplifyXorInst(Value *LHS, Value *RHS, const DataLayout &DL,
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp70 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
439 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
564 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
762 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
1853 static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q, function
1900 Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL, function in class:llvm
1904 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
3730 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
4023 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp2452 if (Value *V = SimplifyXorInst(Op0, Op1, DL, TLI, DT, AC))

Completed in 66 milliseconds