Lines Matching refs:LiveIn
243 MapVector<BasicBlock *, SetVector<Value *>> LiveIn; member
3042 checkBasicSSA(DT, Data.LiveIn[&BB], BB.getTerminator()); in checkBasicSSA()
3063 Data.LiveIn[&BB] = Data.LiveSet[&BB]; in computeLiveInValues()
3064 Data.LiveIn[&BB].set_union(Data.LiveOut[&BB]); in computeLiveInValues()
3065 Data.LiveIn[&BB].set_subtract(Data.KillSet[&BB]); in computeLiveInValues()
3066 if (!Data.LiveIn[&BB].empty()) in computeLiveInValues()
3079 assert(Data.LiveIn.count(Succ)); in computeLiveInValues()
3080 LiveOut.set_union(Data.LiveIn[Succ]); in computeLiveInValues()
3096 assert(Data.LiveIn.count(BB)); in computeLiveInValues()
3097 const SetVector<Value *> &OldLiveIn = Data.LiveIn[BB]; in computeLiveInValues()
3100 Data.LiveIn[BB] = LiveTmp; in computeLiveInValues()