Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:LiveOut

263     BitVector LiveOut;
406 dumpBV("LIVE_OUT", BlockInfo.LiveOut);
640 // Compute LiveIn by unioning together the LiveOut sets of all preds.
646 LocalLiveIn |= I->second.LiveOut;
649 // Compute LiveOut by subtracting out lifetimes that end in this
666 // Update block LiveOut set, noting whether it has changed.
667 if (LocalLiveOut.test(BlockInfo.LiveOut)) {
669 BlockInfo.LiveOut |= LocalLiveOut;
714 for (int pos = MBBLiveness.LiveOut.find_first(); pos != -1;
715 pos = MBBLiveness.LiveOut.find_next(pos)) {