/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 896 inline bool isTrueWhenEqual(CondCode Cond) { in isTrueWhenEqual() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 1093 inline bool isTrueWhenEqual(CondCode Cond) { in isTrueWhenEqual() function
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 1309 inline bool isTrueWhenEqual(CondCode Cond) { return ((int)Cond & 1) != 0; } in isTrueWhenEqual() function
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 1035 bool isTrueWhenEqual() const { 1036 return isTrueWhenEqual(getPredicate()); 1072 static bool isTrueWhenEqual(Predicate predicate);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | InstrTypes.h | 927 bool isTrueWhenEqual() const { 928 return isTrueWhenEqual(getPredicate()); 952 static bool isTrueWhenEqual(Predicate predicate);
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | InstrTypes.h | 986 bool isTrueWhenEqual() const { 987 return isTrueWhenEqual(getPredicate()); 1011 static bool isTrueWhenEqual(Predicate predicate);
|
/external/llvm/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 500 isProb = !FCmp->isTrueWhenEqual(); in calcFloatingPointHeuristics()
|
D | InstructionSimplify.cpp | 1986 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2070 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2081 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2132 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2176 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred)); in SimplifyICmpInst() 3201 if (CmpInst::isTrueWhenEqual(Pred)) in SimplifyFCmpInst()
|
D | ScalarEvolution.cpp | 7470 if (ICmpInst::isTrueWhenEqual(Pred)) in SimplifyICmpOperands() 7744 return ICmpInst::isTrueWhenEqual(Pred); in isKnownPredicateViaConstantRanges() 8112 return CmpInst::isTrueWhenEqual(Pred); in isImpliedCond() 8211 if (ICmpInst::isTrueWhenEqual(Pred)) in isImpliedCond() 8215 if (!ICmpInst::isTrueWhenEqual(FoundPred)) in isImpliedCond()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1566 (Pred0 == ICmpInst::ICMP_NE && ICmpInst::isTrueWhenEqual(Pred1)) || in simplifyOrOfICmpsWithSameOperands() 2355 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2442 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2453 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2504 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 3249 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred)); in SimplifyICmpInst() 3561 if (CmpInst::isTrueWhenEqual(Pred)) in SimplifyFCmpInst()
|
D | BranchProbabilityInfo.cpp | 817 isProb = !FCmp->isTrueWhenEqual(); in calcFloatingPointHeuristics()
|
D | ScalarEvolution.cpp | 9080 if (ICmpInst::isTrueWhenEqual(Pred)) in SimplifyICmpOperands() 9387 return ICmpInst::isTrueWhenEqual(Pred); in isKnownPredicateViaConstantRanges() 9804 return CmpInst::isTrueWhenEqual(Pred); in isImpliedCond() 9905 if (ICmpInst::isTrueWhenEqual(Pred)) in isImpliedCond() 9909 if (!ICmpInst::isTrueWhenEqual(FoundPred)) in isImpliedCond()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1560 (Pred0 == ICmpInst::ICMP_NE && ICmpInst::isTrueWhenEqual(Pred1)) || in simplifyOrOfICmpsWithSameOperands() 2414 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2501 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2512 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 2563 !CmpInst::isTrueWhenEqual(Pred)); in computePointerICmp() 3314 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred)); in SimplifyICmpInst() 3648 if (CmpInst::isTrueWhenEqual(Pred)) in SimplifyFCmpInst()
|
D | BranchProbabilityInfo.cpp | 994 isProb = !FCmp->isTrueWhenEqual(); in calcFloatingPointHeuristics()
|
D | ScalarEvolution.cpp | 9332 if (ICmpInst::isTrueWhenEqual(Pred)) in SimplifyICmpOperands() 9698 return ICmpInst::isTrueWhenEqual(Pred); in isKnownPredicateViaConstantRanges() 10177 return CmpInst::isTrueWhenEqual(Pred); in isImpliedCondBalancedTypes() 10294 if (ICmpInst::isTrueWhenEqual(Pred)) in isImpliedCondBalancedTypes() 10298 if (!ICmpInst::isTrueWhenEqual(FoundPred)) in isImpliedCondBalancedTypes()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantFold.cpp | 1839 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(Predicate)); in ConstantFoldCompareInstruction() 2041 Result = ICmpInst::isTrueWhenEqual((ICmpInst::Predicate)pred); in ConstantFoldCompareInstruction()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 1705 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(Predicate)); in ConstantFoldCompareInstruction() 1897 Result = ICmpInst::isTrueWhenEqual((ICmpInst::Predicate)pred); in ConstantFoldCompareInstruction()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 369 Not = ICmp->isTrueWhenEqual(); in getRegForI1Value()
|
/external/llvm-project/llvm/lib/IR/ |
D | ConstantFold.cpp | 1969 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(Predicate)); in ConstantFoldCompareInstruction() 2185 Result = ICmpInst::isTrueWhenEqual((ICmpInst::Predicate)pred); in ConstantFoldCompareInstruction()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 424 Not = ICmp->isTrueWhenEqual(); in getRegForI1Value()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 423 Not = ICmp->isTrueWhenEqual(); in getRegForI1Value()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1982 EqVal = ISD::isTrueWhenEqual(Cond); in SimplifySetCC() 1985 EqVal = ISD::isTrueWhenEqual(Cond) ? -1 : 0; in SimplifySetCC() 1996 if (UOF == unsigned(ISD::isTrueWhenEqual(Cond))) in SimplifySetCC()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1033 Builder->getInt1(ICmpInst::isTrueWhenEqual(Cond))); in FoldGEPICmp() 1133 ConstantInt::get(CmpTy, !CmpInst::isTrueWhenEqual(ICI.getPredicate()))); in FoldAllocaCmp()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 2005 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) in OptimizeMax() 2023 if (ICmpInst::isTrueWhenEqual(Pred)) { in OptimizeMax()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 2291 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) in OptimizeMax() 2309 if (ICmpInst::isTrueWhenEqual(Pred)) { in OptimizeMax()
|