Lines Matching refs:CurrentLiveInEntry
601 auto CurrentLiveInEntry = LiveIn.find(&BB); in meet() local
603 if (CurrentLiveInEntry == LiveIn.end()) { in meet()
612 if (!varFragMapsAreEqual(BBLiveIn, CurrentLiveInEntry->second)) { in meet()
614 CurrentLiveInEntry->second = std::move(BBLiveIn); in meet()
2049 auto CurrentLiveInEntry = LiveIn.find(&BB); in join() local
2053 if (CurrentLiveInEntry == LiveIn.end()) in join()
2055 else if (PredLiveOut != CurrentLiveInEntry->second) in join()
2056 CurrentLiveInEntry->second = PredLiveOut; in join()
2078 auto CurrentLiveInEntry = LiveIn.find(&BB); in join() local
2081 if (CurrentLiveInEntry == LiveIn.end()) in join()
2083 else if (BBLiveIn != CurrentLiveInEntry->second) in join()
2084 CurrentLiveInEntry->second = std::move(BBLiveIn); in join()