Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NewIndices

760 /// the specified offset.  If so, fill them into NewIndices and return the
763 SmallVectorImpl<Value*> &NewIndices) {
785 NewIndices.push_back(ConstantInt::get(IntPtrTy, FirstIdx));
799 NewIndices.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
807 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
1356 SmallVector<Value*, 8> NewIndices;
1359 if (FindElementAtOffset(InTy, Offset.getSExtValue(), NewIndices)) {
1361 Builder->CreateInBoundsGEP(BCI->getOperand(0), NewIndices) :
1362 Builder->CreateGEP(BCI->getOperand(0), NewIndices);