Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/ssa/back/
DIdenticalBlockCombiner.java33 private final RopMethod ropMethod; field in IdenticalBlockCombiner
43 ropMethod = rm; in IdenticalBlockCombiner()
44 blocks = ropMethod.getBlocks(); in IdenticalBlockCombiner()
69 IntList preds = ropMethod.labelToPredecessors(b.getLabel()); in process()
113 return new RopMethod(newBlocks, ropMethod.getFirstLabel()); in process()
141 IntList preds = ropMethod.labelToPredecessors(bb.getLabel()); in combineBlocks()
DSsaToRop.java123 RopMethod ropMethod = new RopMethod(convertBasicBlocks(), in convert() local
125 ropMethod = new IdenticalBlockCombiner(ropMethod).process(); in convert()
127 return ropMethod; in convert()
/dalvik/dx/src/com/android/dx/ssa/
DSsaMethod.java99 public static SsaMethod newFromRopMethod(RopMethod ropMethod, in newFromRopMethod() argument
101 SsaMethod result = new SsaMethod(ropMethod, paramWidth, isStatic); in newFromRopMethod()
103 result.convertRopToSsaBlocks(ropMethod); in newFromRopMethod()
118 private SsaMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) { in SsaMethod() argument
122 this.maxLabel = ropMethod.getBlocks().getMaxLabel(); in SsaMethod()
123 this.registerCount = ropMethod.getBlocks().getRegCount(); in SsaMethod()