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

/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h153 /// SimplifyOrInst - Given operands for an Or, see if we can
155 Value *SimplifyOrInst(Value *LHS, Value *RHS, const DataLayout *TD = 0,
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp58 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
495 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
1527 /// SimplifyOrInst - Given operands for an Or, see if we can
1529 static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q, function
1615 Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *TD, function in class:llvm
1618 return ::SimplifyOrInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
2898 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3110 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1920 if (Value *V = SimplifyOrInst(Op0, Op1, TD))

Completed in 118 milliseconds