• Home
  • Raw
  • Download

Lines Matching refs:Predicate

384 static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,  in ThreadCmpOverSelect()
484 static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS, in ThreadCmpOverPHI()
1382 static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred, in ExtractEquivalentCondition()
1401 static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, in SimplifyICmpInst() argument
1404 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate; in SimplifyICmpInst()
1893 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE; in SimplifyICmpInst()
1894 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B". in SimplifyICmpInst()
1943 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP); in SimplifyICmpInst()
2013 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP); in SimplifyICmpInst()
2094 Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, in SimplifyICmpInst() argument
2096 return ::SimplifyICmpInst(Predicate, LHS, RHS, TD, DT, RecursionLimit); in SimplifyICmpInst()
2101 static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, in SimplifyFCmpInst() argument
2104 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate; in SimplifyFCmpInst()
2189 Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, in SimplifyFCmpInst() argument
2191 return ::SimplifyFCmpInst(Predicate, LHS, RHS, TD, DT, RecursionLimit); in SimplifyFCmpInst()
2365 static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, in SimplifyCmpInst() argument
2368 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate)) in SimplifyCmpInst()
2369 return SimplifyICmpInst(Predicate, LHS, RHS, TD, DT, MaxRecurse); in SimplifyCmpInst()
2370 return SimplifyFCmpInst(Predicate, LHS, RHS, TD, DT, MaxRecurse); in SimplifyCmpInst()
2373 Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, in SimplifyCmpInst() argument
2375 return ::SimplifyCmpInst(Predicate, LHS, RHS, TD, DT, RecursionLimit); in SimplifyCmpInst()