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

/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp53 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
418 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
918 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
1360 /// SimplifyAndInst - Given operands for an And, see if we can
1362 static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q, function
1448 Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout *DL, function in class:llvm
1451 return ::SimplifyAndInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
2919 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3129 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);

Completed in 588 milliseconds