Lines Matching refs:LiveIn
150 DenseMap<BasicBlock *, DenseSet<Value *>> LiveIn; member
2776 checkBasicSSA(DT, Data.LiveIn[&BB], BB.getTerminator()); in checkBasicSSA()
2807 Data.LiveIn[&BB] = Data.LiveSet[&BB]; in computeLiveInValues()
2808 set_union(Data.LiveIn[&BB], Data.LiveOut[&BB]); in computeLiveInValues()
2809 set_subtract(Data.LiveIn[&BB], Data.KillSet[&BB]); in computeLiveInValues()
2810 if (!Data.LiveIn[&BB].empty()) in computeLiveInValues()
2823 assert(Data.LiveIn.count(Succ)); in computeLiveInValues()
2824 set_union(LiveOut, Data.LiveIn[Succ]); in computeLiveInValues()
2840 assert(Data.LiveIn.count(BB)); in computeLiveInValues()
2841 const DenseSet<Value *> &OldLiveIn = Data.LiveIn[BB]; in computeLiveInValues()
2844 Data.LiveIn[BB] = LiveTmp; in computeLiveInValues()