Home | History | Annotate | Download | only in Vectorize

Lines Matching defs:StartIdx

217   Value *getConsecutiveVector(Value* Val, unsigned StartIdx, bool Negate);
774 Value *InnerLoopVectorizer::getConsecutiveVector(Value* Val, unsigned StartIdx,
788 Indices.push_back(ConstantInt::get(ITy, StartIdx + Idx));
1200 Value *StartIdx = OldInduction ?
1243 Value *IdxEnd = BypassBuilder.CreateAdd(Count, StartIdx, "end.idx");
1249 Value *IdxEndRoundDown = BypassBuilder.CreateAdd(CountRoundDown, StartIdx,
1254 Value *Cmp = BypassBuilder.CreateICmpEQ(IdxEndRoundDown, StartIdx,
1377 ResumeIndex->addIncoming(StartIdx, LoopBypassBlocks[I]);
1398 Induction->addIncoming(StartIdx, VectorPH);
1904 Value *StartIdx = 0;
1910 StartIdx = OldII.StartValue;
1912 StartIdx = ConstantInt::get(Induction->getType(), 0);
1915 Value *NormalizedIdx = Builder.CreateSub(Induction, StartIdx,