Lines Matching defs:NewGEP
343 if (auto *NewGEP = tryReassociateGEPAtIndex(GEP, I - 1,
345 return NewGEP;
382 if (auto *NewGEP = tryReassociateGEPAtIndex(GEP, I, LHS, RHS, IndexedType))
383 return NewGEP;
386 if (auto *NewGEP =
388 return NewGEP;
430 // NewGEP = (char *)Candidate + RHS * sizeof(IndexedType)
451 // NewGEP = &Candidate[RHS * (sizeof(IndexedType) / sizeof(Candidate[0])));
459 GetElementPtrInst *NewGEP = cast<GetElementPtrInst>(
461 NewGEP->setIsInBounds(GEP->isInBounds());
462 NewGEP->takeName(GEP);
463 return NewGEP;