Lines Matching refs:LiveIn
178 MapVector<BasicBlock *, SetVector<Value *>> LiveIn; member
3271 checkBasicSSA(DT, Data.LiveIn[&BB], BB.getTerminator()); in checkBasicSSA()
3292 Data.LiveIn[&BB] = Data.LiveSet[&BB]; in computeLiveInValues()
3293 Data.LiveIn[&BB].set_union(Data.LiveOut[&BB]); in computeLiveInValues()
3294 Data.LiveIn[&BB].set_subtract(Data.KillSet[&BB]); in computeLiveInValues()
3295 if (!Data.LiveIn[&BB].empty()) in computeLiveInValues()
3308 assert(Data.LiveIn.count(Succ)); in computeLiveInValues()
3309 LiveOut.set_union(Data.LiveIn[Succ]); in computeLiveInValues()
3325 assert(Data.LiveIn.count(BB)); in computeLiveInValues()
3326 const SetVector<Value *> &OldLiveIn = Data.LiveIn[BB]; in computeLiveInValues()
3329 Data.LiveIn[BB] = LiveTmp; in computeLiveInValues()