Lines Matching defs:BBLiveIn
571 VarFragMap BBLiveIn;
586 LLVM_DEBUG(dbgs() << "BBLiveIn = " << Pred->getName() << "\n");
587 BBLiveIn = PredLiveOut->second;
590 LLVM_DEBUG(dbgs() << "BBLiveIn = meet BBLiveIn, " << Pred->getName()
592 meetVars(BBLiveIn, PredLiveOut->second);
598 if (BBLiveIn.size() == 0)
607 LiveIn[&BB] = std::move(BBLiveIn);
613 if (!varFragMapsAreEqual(BBLiveIn, CurrentLiveInEntry->second)) {
615 CurrentLiveInEntry->second = std::move(BBLiveIn);
2073 BlockInfo BBLiveIn = joinBlockInfo(PredLiveOut0, PredLiveOut1);
2081 BBLiveIn = joinBlockInfo(std::move(BBLiveIn), PredLiveOut->second);
2089 LiveIn.try_emplace(&BB, std::move(BBLiveIn));
2090 else if (BBLiveIn != CurrentLiveInEntry->second)
2091 CurrentLiveInEntry->second = std::move(BBLiveIn);