Home
last modified time | relevance | path

Searched refs:matchSimpleRecurrence (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h783 bool matchSimpleRecurrence(const PHINode *P, BinaryOperator *&BO,
787 bool matchSimpleRecurrence(const BinaryOperator *I, PHINode *&P,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1397 if (matchSimpleRecurrence(P, BO, R, L)) { in computeKnownBitsFromOperator()
2250 if (!matchSimpleRecurrence(PN, BO, Start, Step) || in isNonZeroRecurrence()
2650 !matchSimpleRecurrence(PN1, BO1, Start1, Step1) || in getInvertibleOperands()
2651 !matchSimpleRecurrence(PN2, BO2, Start2, Step2)) in getInvertibleOperands()
6306 bool llvm::matchSimpleRecurrence(const PHINode *P, BinaryOperator *&BO, in matchSimpleRecurrence() function in llvm
6362 bool llvm::matchSimpleRecurrence(const BinaryOperator *I, PHINode *&P, in matchSimpleRecurrence() function in llvm
6368 return P && matchSimpleRecurrence(P, BO, Start, Step) && BO == I; in matchSimpleRecurrence()
H A DScalarEvolution.cpp5890 if (!matchSimpleRecurrence(P, BO, Start, Step)) in getRangeForUnknownRecurrence()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp1007 if (!matchSimpleRecurrence(Phi, IncInstruction, Start, IncrementPerRound) || in optimiseOffsets()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp2090 if (matchSimpleRecurrence(&I, PN, Start, Step) && DT.dominates(Step, PN)) in visitAnd()
2974 if (matchSimpleRecurrence(&I, PN, Start, Step) && DT.dominates(Step, PN)) in visitOr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp5620 if (!matchSimpleRecurrence(&PN, BO, Start, Step)) in ImplementSolution()