Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/ssa/
DSsaBasicBlock.java99 private IntSet liveIn; field in SsaBasicBlock
806 if (liveIn == null) { in addLiveIn()
807 liveIn = SetFactory.makeLivenessSet(parent.getRegCount()); in addLiveIn()
810 liveIn.add(regV); in addLiveIn()
820 if (liveIn == null) { in getLiveInRegs()
821 liveIn = SetFactory.makeLivenessSet(parent.getRegCount()); in getLiveInRegs()
823 return liveIn; in getLiveInRegs()