Lines Matching refs:LiveIn
243 MapVector<BasicBlock *, SetVector<Value *>> LiveIn; member
3171 checkBasicSSA(DT, Data.LiveIn[&BB], BB.getTerminator()); in checkBasicSSA()
3192 Data.LiveIn[&BB] = Data.LiveSet[&BB]; in computeLiveInValues()
3193 Data.LiveIn[&BB].set_union(Data.LiveOut[&BB]); in computeLiveInValues()
3194 Data.LiveIn[&BB].set_subtract(Data.KillSet[&BB]); in computeLiveInValues()
3195 if (!Data.LiveIn[&BB].empty()) in computeLiveInValues()
3208 assert(Data.LiveIn.count(Succ)); in computeLiveInValues()
3209 LiveOut.set_union(Data.LiveIn[Succ]); in computeLiveInValues()
3225 assert(Data.LiveIn.count(BB)); in computeLiveInValues()
3226 const SetVector<Value *> &OldLiveIn = Data.LiveIn[BB]; in computeLiveInValues()
3229 Data.LiveIn[BB] = LiveTmp; in computeLiveInValues()