Lines Matching defs:BBLiveIn
572 VarFragMap BBLiveIn;
587 LLVM_DEBUG(dbgs() << "BBLiveIn = " << Pred->getName() << "\n");
588 BBLiveIn = PredLiveOut->second;
591 LLVM_DEBUG(dbgs() << "BBLiveIn = meet BBLiveIn, " << Pred->getName()
593 meetVars(BBLiveIn, PredLiveOut->second);
599 if (BBLiveIn.size() == 0)
608 LiveIn[&BB] = std::move(BBLiveIn);
614 if (!varFragMapsAreEqual(BBLiveIn, CurrentLiveInEntry->second)) {
616 CurrentLiveInEntry->second = std::move(BBLiveIn);
2074 BlockInfo BBLiveIn = joinBlockInfo(PredLiveOut0, PredLiveOut1);
2082 BBLiveIn = joinBlockInfo(std::move(BBLiveIn), PredLiveOut->second);
2090 LiveIn.try_emplace(&BB, std::move(BBLiveIn));
2091 else if (BBLiveIn != CurrentLiveInEntry->second)
2092 CurrentLiveInEntry->second = std::move(BBLiveIn);