Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:NewIndices

735 /// the specified offset.  If so, fill them into NewIndices and return the
738 SmallVectorImpl<Value*> &NewIndices) {
760 NewIndices.push_back(ConstantInt::get(IntPtrTy, FirstIdx));
774 NewIndices.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
782 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
1085 SmallVector<Value*, 8> NewIndices;
1088 if (FindElementAtOffset(InTy, Offset, NewIndices)) {
1090 Builder->CreateInBoundsGEP(BCI->getOperand(0), NewIndices) :
1091 Builder->CreateGEP(BCI->getOperand(0), NewIndices);