Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Index

204 bool RuntimePointerChecking::CheckingPtrGroup::addPointer(unsigned Index) {
205 const SCEV *Start = RtCheck.Pointers[Index].Start;
206 const SCEV *End = RtCheck.Pointers[Index].End;
227 Members.push_back(Index);
286 for (unsigned Index = 0; Index < Pointers.size(); ++Index)
287 PositionMap[Pointers[Index].PointerValue] = Index;
793 // Make sure there is only one non-const index and analyze that.
795 for (auto Index = GEP->idx_begin(); Index != GEP->idx_end(); ++Index)
796 if (!isa<ConstantInt>(*Index)) {
799 NonConstIndex = *Index;
805 // The index in GEP is signed. It is non-wrapping if it's derived from a NSW
1497 // pointer. This only works if the index of A[i] is consecutive.