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;
427 // NewGEP = (char *)Candidate + RHS * sizeof(IndexedType)
448 // NewGEP = &Candidate[RHS * (sizeof(IndexedType) / sizeof(Candidate[0])));
456 GetElementPtrInst *NewGEP = cast<GetElementPtrInst>(
458 NewGEP->setIsInBounds(GEP->isInBounds());
459 NewGEP->takeName(GEP);
460 return NewGEP;