Searched refs:getSwappedPredicate (Results 1 – 19 of 19) sorted by relevance
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCPredicates.h | 72 Predicate getSwappedPredicate(Predicate Opcode);
|
D | PPCPredicates.cpp | 53 PPC::Predicate PPC::getSwappedPredicate(PPC::Predicate Opcode) { in getSwappedPredicate() function in PPC
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 99 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS && in isSameCompare() 379 Pred = CmpInst::getSwappedPredicate(Pred); in ThreadCmpOverSelect() 502 Pred = CmpInst::getSwappedPredicate(Pred); in ThreadCmpOverPHI() 1480 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred); in simplifyUnsignedRangeCheck() 1927 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) && in ExtractEquivalentCondition() 2143 Pred = CmpInst::getSwappedPredicate(Pred); in SimplifyICmpInst() 2863 P = CmpInst::getSwappedPredicate(Pred); in SimplifyICmpInst() 2870 P = CmpInst::getSwappedPredicate(Pred); in SimplifyICmpInst() 2933 P = CmpInst::getSwappedPredicate(Pred); in SimplifyICmpInst() 2940 P = CmpInst::getSwappedPredicate(Pred); in SimplifyICmpInst() [all …]
|
D | ScalarEvolution.cpp | 5472 Cond = ICmpInst::getSwappedPredicate(Cond); in computeExitLimitFromICmp() 6820 Pred = ICmpInst::getSwappedPredicate(Pred); in SimplifyICmpOperands() 6831 Pred = ICmpInst::getSwappedPredicate(Pred); in SimplifyICmpOperands() 7142 LHS, ICmpInst::getSwappedPredicate(Pred), IncreasingSwapped); in isMonotonicPredicate() 7219 Pred = ICmpInst::getSwappedPredicate(Pred); in isLoopInvariantPredicate() 7660 FoundPred = ICmpInst::getSwappedPredicate(FoundPred); in isImpliedCond() 7663 Pred = ICmpInst::getSwappedPredicate(Pred); in isImpliedCond() 7673 if (ICmpInst::getSwappedPredicate(FoundPred) == Pred) { in isImpliedCond() 7677 return isImpliedCondOperands(ICmpInst::getSwappedPredicate(Pred), in isImpliedCond()
|
D | ValueTracking.cpp | 3924 Pred = CmpInst::getSwappedPredicate(Pred); in matchSelectPattern()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 684 ICmpInst::getSwappedPredicate(Cond), I); in FoldGEPICmp() 968 Pred = ICmpInst::getSwappedPredicate(Pred); in FoldICmpDivCst() 1294 Pred = ICI.getSwappedPredicate(Pred); in visitICmpInstWithInstAndIntCst() 1589 ICmpInst::getSwappedPredicate(pred) : pred, in visitICmpInstWithInstAndIntCst() 3285 ICmpInst::getSwappedPredicate(I.getPredicate()), I)) in visitICmpInst() 3509 return new ICmpInst(I.getSwappedPredicate(), X, in visitICmpInst() 3525 switch (SRem == BO0 ? ICmpInst::getSwappedPredicate(Pred) : Pred) { in visitICmpInst() 3567 Pred = I.getSwappedPredicate(Pred); in visitICmpInst() 3832 return FoldICmpAddOpCst(I, X, Cst, I.getSwappedPredicate()); in visitICmpInst() 4192 return new FCmpInst(I.getSwappedPredicate(), Op, in visitFCmpInst() [all …]
|
D | InstCombineAndOrXor.cpp | 854 Pred1 = ICmpInst::getSwappedPredicate(Pred1); in simplifyRangeCheck() 1156 Op1CC = FCmpInst::getSwappedPredicate(Op1CC); in FoldAndOfFCmps() 2144 Op1CC = FCmpInst::getSwappedPredicate(Op1CC); in FoldOrOfFCmps()
|
D | InstCombineSelect.cpp | 481 Pred = ICmpInst::getSwappedPredicate(Pred); in visitSelectInstWithICmp()
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 118 Pred = CI->getSwappedPredicate(); in getHashValue() 187 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
|
D | GVN.cpp | 192 Predicate = CmpInst::getSwappedPredicate(Predicate); in create_expression() 217 Predicate = CmpInst::getSwappedPredicate(Predicate); in create_cmp_expression()
|
D | InductiveRangeCheckElimination.cpp | 710 Pred = ICmpInst::getSwappedPredicate(Pred); in parseLoopStructure()
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 999 Predicate getSwappedPredicate() const { 1000 return getSwappedPredicate(getPredicate()); 1006 static Predicate getSwappedPredicate(Predicate pred);
|
D | PatternMatch.h | 975 LHS == TrueVal ? Cmp->getPredicate() : Cmp->getSwappedPredicate(); in match()
|
D | Instructions.h | 1228 setPredicate(getSwappedPredicate()); 1343 setPredicate(getSwappedPredicate());
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 1361 return FCmpInst::getSwappedPredicate(SwappedRelation); in evaluateFCmpRelation() 1452 return ICmpInst::getSwappedPredicate(SwappedRelation); in evaluateICmpRelation() 1459 return ICmpInst::getSwappedPredicate(SwappedRelation); in evaluateICmpRelation() 1482 return ICmpInst::getSwappedPredicate(SwappedRelation); in evaluateICmpRelation() 1975 pred = ICmpInst::getSwappedPredicate((ICmpInst::Predicate)pred); in ConstantFoldCompareInstruction()
|
D | Instructions.cpp | 3484 CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) { in getSwappedPredicate() function in CmpInst
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyIndVar.cpp | 160 Pred = ICmpInst::getSwappedPredicate(Pred); in eliminateIVComparison()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.cpp | 1711 PPC::getSwappedPredicate(Pred))); in optimizeCompareInstr()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 1781 pre = I.getSwappedPredicate(); in handleSignedRelationalComparison()
|