Lines Matching refs:PredLiveOut
581 auto PredLiveOut = LiveOut.find(Pred); in meet() local
582 assert(PredLiveOut != LiveOut.end()); in meet()
586 BBLiveIn = PredLiveOut->second; in meet()
591 meetVars(BBLiveIn, PredLiveOut->second); in meet()
2048 const BlockInfo &PredLiveOut = LiveOut.find(VisitedPreds[0])->second; in join() local
2054 LiveIn.insert(std::make_pair(&BB, PredLiveOut)); in join()
2055 else if (PredLiveOut != CurrentLiveInEntry->second) in join()
2056 CurrentLiveInEntry->second = PredLiveOut; in join()
2071 const auto &PredLiveOut = LiveOut.find(Pred); in join() local
2072 assert(PredLiveOut != LiveOut.end() && in join()
2074 BBLiveIn = joinBlockInfo(std::move(BBLiveIn), PredLiveOut->second); in join()