Lines Matching defs:LiveIn
178 MapVector<BasicBlock *, SetVector<Value *>> LiveIn;
3193 // KILL/Def - Remove this definition from LiveIn
3201 // USE - Add to the LiveIn set for this instruction
3272 checkBasicSSA(DT, Data.LiveIn[&BB], BB.getTerminator());
3293 Data.LiveIn[&BB] = Data.LiveSet[&BB];
3294 Data.LiveIn[&BB].set_union(Data.LiveOut[&BB]);
3295 Data.LiveIn[&BB].set_subtract(Data.KillSet[&BB]);
3296 if (!Data.LiveIn[&BB].empty())
3309 assert(Data.LiveIn.count(Succ));
3310 LiveOut.set_union(Data.LiveIn[Succ]);
3315 // when unioning our successors LiveIn. Thus, the LiveIn of this block
3326 assert(Data.LiveIn.count(BB));
3327 const SetVector<Value *> &OldLiveIn = Data.LiveIn[BB];
3330 Data.LiveIn[BB] = LiveTmp;