Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/ssa/
DSsaBasicBlock.java105 private IntSet liveOut; field in SsaBasicBlock
792 if (liveOut == null) { in addLiveOut()
793 liveOut = SetFactory.makeLivenessSet(parent.getRegCount()); in addLiveOut()
796 liveOut.add(regV); in addLiveOut()
833 if (liveOut == null) { in getLiveOutRegs()
834 liveOut = SetFactory.makeLivenessSet(parent.getRegCount()); in getLiveOutRegs()
836 return liveOut; in getLiveOutRegs()
/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.java1036 IntSet liveOut = insn.getBlock().getLiveOutRegs(); in fitPlanForRange() local
1037 RegisterSpecList liveOutSpecs = ssaSetToSpecs(liveOut); in fitPlanForRange()