Home | History | Annotate | Download | only in InstCombine

Lines Matching full:newidx

1268           if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) {
1269 // Successfully decomposed Idx as NewIdx * Scale, form a new GEP.
1270 // If the multiplication NewIdx * Scale may overflow then the new
1273 Builder->CreateInBoundsGEP(StrippedPtr, NewIdx, GEP.getName()) :
1274 Builder->CreateGEP(StrippedPtr, NewIdx, GEP.getName());
1303 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) {
1304 // Successfully decomposed Idx as NewIdx * Scale, form a new GEP.
1305 // If the multiplication NewIdx * Scale may overflow then the new
1309 Off[1] = NewIdx;