Searched refs:liveOut (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/back/
H A DRegisterAllocator.java178 IntSet liveOut = block.getLiveOutRegs();
179 IntIterator liveOutIter = liveOut.iterator();
H A DFirstFitLocalCombiningAllocator.java920 IntSet liveOut = insn.getBlock().getLiveOutRegs();
921 RegisterSpecList liveOutSpecs = ssaSetToSpecs(liveOut);
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java112 private IntSet liveOut; field in class:SsaBasicBlock
792 if (liveOut == null) {
793 liveOut = SetFactory.makeLivenessSet(parent.getRegCount());
796 liveOut.add(regV);
833 if (liveOut == null) {
834 liveOut = SetFactory.makeLivenessSet(parent.getRegCount());
836 return liveOut;

Completed in 47 milliseconds