reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
62 : Probs(std::move(Arg.Probs)), LastF(Arg.LastF), 71 Probs = std::move(RHS.Probs); 71 Probs = std::move(RHS.Probs);lib/Analysis/BranchProbabilityInfo.cpp
833 Probs.clear(); 884 auto I = Probs.find(std::make_pair(Src, IndexInSuccessors)); 886 if (I != Probs.end()) 907 auto MapI = Probs.find(std::make_pair(Src, I.getSuccessorIndex())); 908 if (MapI != Probs.end()) { 922 Probs[std::make_pair(Src, IndexInSuccessors)] = Prob; 942 for (auto I = Probs.begin(), E = Probs.end(); I != E; ++I) { 942 for (auto I = Probs.begin(), E = Probs.end(); I != E; ++I) { 945 Probs.erase(Key);