Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h183 Value *SimplifyXorInst(Value *LHS, Value *RHS, const SimplifyQuery &Q);
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp62 static Value *SimplifyXorInst(Value *, Value *, const SimplifyQuery &, unsigned);
468 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()), in ThreadCmpOverSelect()
616 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1)) in SimplifyAddInst()
826 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1)) in SimplifySubInst()
2055 static Value *SimplifyXorInst(Value *Op0, Value *Op1, const SimplifyQuery &Q, in SimplifyXorInst() function
2094 Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) { in SimplifyXorInst() function in llvm
2095 return ::SimplifyXorInst(Op0, Op1, Q, RecursionLimit); in SimplifyXorInst()
4755 return SimplifyXorInst(LHS, RHS, Q, MaxRecurse); in SimplifyBinOp()
5274 Result = SimplifyXorInst(I->getOperand(0), I->getOperand(1), Q); in SimplifyInstruction()
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp2663 if (Value *V = SimplifyXorInst(I.getOperand(0), I.getOperand(1), in visitXor()