Home | History | Annotate | Download | only in Analysis

Lines Matching refs:SimplifyOrInst

58 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
423 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
1454 /// SimplifyOrInst - Given operands for an Or, see if we can
1456 static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1569 Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *DL,
1572 return ::SimplifyOrInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
2920 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3132 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);