Searched defs:SimplifyOrInst (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp58 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, function
1569 Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *DL, function in class:llvm
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);

Completed in 84 milliseconds