Lines Matching defs:LiveIn
177 MapVector<BasicBlock *, SetVector<Value *>> LiveIn;
3200 // KILL/Def - Remove this definition from LiveIn
3208 // USE - Add to the LiveIn set for this instruction
3279 checkBasicSSA(DT, Data.LiveIn[&BB], BB.getTerminator());
3300 Data.LiveIn[&BB] = Data.LiveSet[&BB];
3301 Data.LiveIn[&BB].set_union(Data.LiveOut[&BB]);
3302 Data.LiveIn[&BB].set_subtract(Data.KillSet[&BB]);
3303 if (!Data.LiveIn[&BB].empty())
3316 assert(Data.LiveIn.count(Succ));
3317 LiveOut.set_union(Data.LiveIn[Succ]);
3322 // when unioning our successors LiveIn. Thus, the LiveIn of this block
3333 assert(Data.LiveIn.count(BB));
3334 const SetVector<Value *> &OldLiveIn = Data.LiveIn[BB];
3337 Data.LiveIn[BB] = LiveTmp;