Lines Matching refs:DstConst
1231 const SCEV *DstConst, const Loop *CurLoop, in strongSIVtest() argument
1239 LLVM_DEBUG(dbgs() << "\t DstConst = " << *DstConst); in strongSIVtest()
1240 LLVM_DEBUG(dbgs() << ", " << *DstConst->getType() << "\n"); in strongSIVtest()
1245 const SCEV *Delta = SE->getMinusSCEV(SrcConst, DstConst); in strongSIVtest()
1367 const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, in weakCrossingSIVtest() argument
1373 LLVM_DEBUG(dbgs() << "\t DstConst = " << *DstConst << "\n"); in weakCrossingSIVtest()
1378 const SCEV *Delta = SE->getMinusSCEV(DstConst, SrcConst); in weakCrossingSIVtest()
1567 const SCEV *SrcConst, const SCEV *DstConst, in exactSIVtest() argument
1575 LLVM_DEBUG(dbgs() << "\t DstConst = " << *DstConst << "\n"); in exactSIVtest()
1580 const SCEV *Delta = SE->getMinusSCEV(DstConst, SrcConst); in exactSIVtest()
1761 const SCEV *DstConst, in weakZeroSrcSIVtest() argument
1771 LLVM_DEBUG(dbgs() << "\t DstConst = " << *DstConst << "\n"); in weakZeroSrcSIVtest()
1776 const SCEV *Delta = SE->getMinusSCEV(SrcConst, DstConst); in weakZeroSrcSIVtest()
1780 if (isKnownPredicate(CmpInst::ICMP_EQ, SrcConst, DstConst)) { in weakZeroSrcSIVtest()
1871 const SCEV *DstConst, in weakZeroDstSIVtest() argument
1880 LLVM_DEBUG(dbgs() << "\t DstConst = " << *DstConst << "\n"); in weakZeroDstSIVtest()
1885 const SCEV *Delta = SE->getMinusSCEV(DstConst, SrcConst); in weakZeroDstSIVtest()
1889 if (isKnownPredicate(CmpInst::ICMP_EQ, DstConst, SrcConst)) { in weakZeroDstSIVtest()
1955 const SCEV *SrcConst, const SCEV *DstConst, in exactRDIVtest() argument
1962 LLVM_DEBUG(dbgs() << "\t DstConst = " << *DstConst << "\n"); in exactRDIVtest()
1965 const SCEV *Delta = SE->getMinusSCEV(DstConst, SrcConst); in exactRDIVtest()
2235 const SCEV *DstConst = DstAddRec->getStart(); in testSIV() local
2244 disproven = strongSIVtest(SrcCoeff, SrcConst, DstConst, CurLoop, in testSIV()
2247 disproven = weakCrossingSIVtest(SrcCoeff, SrcConst, DstConst, CurLoop, in testSIV()
2250 disproven = exactSIVtest(SrcCoeff, DstCoeff, SrcConst, DstConst, CurLoop, in testSIV()
2254 symbolicRDIVtest(SrcCoeff, DstCoeff, SrcConst, DstConst, CurLoop, CurLoop); in testSIV()
2259 const SCEV *DstConst = Dst; in testSIV() local
2262 return weakZeroDstSIVtest(SrcCoeff, SrcConst, DstConst, CurLoop, in testSIV()
2267 const SCEV *DstConst = DstAddRec->getStart(); in testSIV() local
2272 return weakZeroSrcSIVtest(DstCoeff, SrcConst, DstConst, in testSIV()
2302 const SCEV *SrcConst, *DstConst; in testRDIV() local
2314 DstConst = DstAddRec->getStart(); in testRDIV()
2324 DstConst = Dst; in testRDIV()
2334 DstConst = tmpAddRec->getStart(); in testRDIV()
2347 SrcConst, DstConst, in testRDIV()
2352 SrcConst, DstConst, in testRDIV()
2445 const SCEV *DstConst = Coefficients; in gcdMIVtest() local
2448 const SCEV *Delta = SE->getMinusSCEV(DstConst, SrcConst); in gcdMIVtest()