Home
last modified time | relevance | path

Searched refs:OtherAddRec (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolution.cpp1771 if (const SCEVAddRecExpr *OtherAddRec = in getAddExpr() local
1773 if (OtherAddRec->getLoop() == AddRecLoop) { in getAddExpr()
1774 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); in getAddExpr()
1777 AddRecOps.append(OtherAddRec->op_begin()+i, in getAddExpr()
1778 OtherAddRec->op_end()); in getAddExpr()
1782 OtherAddRec->getOperand(i)); in getAddExpr()
2036 if (const SCEVAddRecExpr *OtherAddRec = in getMulExpr() local
2038 if (OtherAddRec->getLoop() == AddRecLoop) { in getMulExpr()
2044 OtherAddRec->getNumOperands() - 1; in getMulExpr()
2050 ze = std::min(x+1, (int)OtherAddRec->getNumOperands()); in getMulExpr()
[all …]
/external/llvm/lib/Analysis/
DScalarEvolution.cpp2339 if (const auto *OtherAddRec = dyn_cast<SCEVAddRecExpr>(Ops[OtherIdx])) in getAddExpr() local
2340 if (OtherAddRec->getLoop() == AddRecLoop) { in getAddExpr()
2341 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); in getAddExpr()
2344 AddRecOps.append(OtherAddRec->op_begin()+i, in getAddExpr()
2345 OtherAddRec->op_end()); in getAddExpr()
2349 OtherAddRec->getOperand(i)); in getAddExpr()
2602 const SCEVAddRecExpr *OtherAddRec = in getMulExpr() local
2604 if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop) in getMulExpr()
2612 OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) { in getMulExpr()
2617 ze = std::min(x+1, (int)OtherAddRec->getNumOperands()); in getMulExpr()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp2716 const auto *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]); in getAddExpr() local
2717 if (OtherAddRec->getLoop() == AddRecLoop) { in getAddExpr()
2718 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); in getAddExpr()
2721 AddRecOps.append(OtherAddRec->op_begin()+i, in getAddExpr()
2722 OtherAddRec->op_end()); in getAddExpr()
2726 AddRecOps[i], OtherAddRec->getOperand(i)}; in getAddExpr()
3031 const SCEVAddRecExpr *OtherAddRec = in getMulExpr() local
3033 if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop) in getMulExpr()
3038 if (AddRec->getNumOperands() + OtherAddRec->getNumOperands() - 1 > in getMulExpr()
3047 OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) { in getMulExpr()
[all …]