Searched refs:simplifyAndInst (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | InstructionSimplify.h | 147 Value *simplifyAndInst(Value *LHS, Value *RHS, const SimplifyQuery &Q);
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InstructionSimplify.cpp | 56 static Value *simplifyAndInst(Value *, Value *, const SimplifyQuery &, 199 if (Value *V = simplifyAndInst(Cond, TCmp, Q, MaxRecurse)) in handleOtherCmpSelSimplifications() 964 if (Value *V = simplifyAndInst(Op0, Op1, Q, MaxRecurse - 1)) in simplifyMulInst() 2071 static Value *simplifyAndInst(Value *Op0, Value *Op1, const SimplifyQuery &Q, in simplifyAndInst() function 2250 Value *llvm::simplifyAndInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) { in simplifyAndInst() function in llvm 2251 return ::simplifyAndInst(Op0, Op1, Q, RecursionLimit); in simplifyAndInst() 6040 return simplifyAndInst(LHS, RHS, Q, MaxRecurse); in simplifyBinOp() 7130 return simplifyAndInst(NewOps[0], NewOps[1], Q, MaxRecurse); in simplifyInstructionWithOperands()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 4008 if (Value *V = simplifyAndInst(CondVal, Mask, SQ.getWithInstruction(&SI))) in visitSelectInst()
|
H A D | InstCombineAndOrXor.cpp | 2312 if (Value *V = simplifyAndInst(I.getOperand(0), I.getOperand(1), in visitAnd()
|