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);
490 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
924 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
1317 /// SimplifyAndInst - Given operands for an And, see if we can
1319 static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q, function
1410 Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD, function in class:llvm
1413 return ::SimplifyAndInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
2700 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
2823 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);

Completed in 67 milliseconds