Lines Matching defs:CEnd
722 // These chains are over the closed interval [CBegin, CEnd].
723 SmallVector<std::pair<unsigned /*CEnd*/, unsigned /*SizeBytes*/>, 8>
725 for (unsigned CEnd = CBegin + 1, Size = C.size(); CEnd < Size; ++CEnd) {
726 APInt Sz = C[CEnd].OffsetFromLeader +
727 DL.getTypeStoreSize(getLoadStoreType(C[CEnd].Inst)) -
731 CandidateChains.emplace_back(CEnd,
738 auto [CEnd, SizeBytes] = *It;
741 << *C[CBegin].Inst << " ... " << *C[CEnd].Inst << "]\n");
849 for (unsigned I = CBegin; I <= CEnd; ++I)
851 CBegin = CEnd; // Skip over the instructions we've added to the chain.