Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/ssa/back/
DRegisterAllocator.java176 IntSet liveOut = block.getLiveOutRegs(); in insertMoveBefore() local
177 IntIterator liveOutIter = liveOut.iterator(); in insertMoveBefore()
DFirstFitLocalCombiningAllocator.java1033 IntSet liveOut = insn.getBlock().getLiveOutRegs(); in fitPlanForRange() local
1034 RegisterSpecList liveOutSpecs = ssaSetToSpecs(liveOut); in fitPlanForRange()
/dalvik/dx/src/com/android/dx/ssa/
DSsaBasicBlock.java111 private IntSet liveOut; field in SsaBasicBlock
791 if (liveOut == null) { in addLiveOut()
792 liveOut = SetFactory.makeLivenessSet(parent.getRegCount()); in addLiveOut()
795 liveOut.add(regV); in addLiveOut()
832 if (liveOut == null) { in getLiveOutRegs()
833 liveOut = SetFactory.makeLivenessSet(parent.getRegCount()); in getLiveOutRegs()
835 return liveOut; in getLiveOutRegs()