HomeSort by relevance Sort by last modified time
    Searched defs:liveOut (Results 1 - 4 of 4) sorted by null

  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 178 IntSet liveOut = block.getLiveOutRegs();
179 IntIterator liveOutIter = liveOut.iterator();
FirstFitLocalCombiningAllocator.java 868 IntSet liveOut = insn.getBlock().getLiveOutRegs();
869 RegisterSpecList liveOutSpecs = ssaSetToSpecs(liveOut);
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 108 private IntSet liveOut;
768 if (liveOut == null) {
769 liveOut = SetFactory.makeLivenessSet(parent.getRegCount());
772 liveOut.add(regV);
809 if (liveOut == null) {
810 liveOut = SetFactory.makeLivenessSet(parent.getRegCount());
812 return liveOut;
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 18 milliseconds