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

/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h147 /// SimplifyAndInst - Given operands for an And, see if we can
149 Value *SimplifyAndInst(Value *LHS, Value *RHS, const DataLayout *TD = 0,
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp53 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
490 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
1007 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
1428 /// SimplifyAndInst - Given operands for an And, see if we can
1430 static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q, function
1521 Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout *TD, function in class:llvm
1524 return ::SimplifyAndInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
2897 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3107 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1102 if (Value *V = SimplifyAndInst(Op0, Op1, TD))

Completed in 94 milliseconds