Home | History | Annotate | Download | only in Analysis

Lines Matching refs:SimplifyAndInst

40 static Value *SimplifyAndInst(Value *, Value *, const TargetData *,
416 if (Value *V = SimplifyAndInst(Cond, TCmp, TD, DT, MaxRecurse))
748 if (Value *V = SimplifyAndInst(Op0, Op1, TD, DT, MaxRecurse-1))
1133 /// SimplifyAndInst - Given operands for an And, see if we can
1135 static Value *SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD,
1217 Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD,
1219 return ::SimplifyAndInst(Op0, Op1, TD, DT, RecursionLimit);
2325 case Instruction::And: return SimplifyAndInst(LHS, RHS, TD, DT, MaxRecurse);
2438 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), TD, DT);