reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
203 if (I == Ranges.end() || End < I->Start) { 203 if (I == Ranges.end() || End < I->Start) { 204 MemsetRange &R = *Ranges.insert(I, MemsetRange()); 214 I->TheStores.push_back(Inst); 218 if (I->Start <= Start && I->End >= End) 218 if (I->Start <= Start && I->End >= End) 227 if (Start < I->Start) { 228 I->Start = Start; 229 I->StartPtr = Ptr; 230 I->Alignment = Alignment; 236 if (End > I->End) { 237 I->End = End; 238 range_iterator NextI = I; 241 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); 242 if (NextI->End > I->End) 243 I->End = NextI->End; 245 NextI = I;