Searched refs:ropMethod (Results 1 – 4 of 4) sorted by relevance
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
D | IdenticalBlockCombiner.java | 38 private final RopMethod ropMethod; field in IdenticalBlockCombiner 48 ropMethod = rm; in IdenticalBlockCombiner() 49 blocks = ropMethod.getBlocks(); in IdenticalBlockCombiner() 74 IntList preds = ropMethod.labelToPredecessors(b.getLabel()); in process() 118 return new RopMethod(newBlocks, ropMethod.getFirstLabel()); in process() 146 IntList preds = ropMethod.labelToPredecessors(bb.getLabel()); in combineBlocks()
|
D | SsaToRop.java | 124 RopMethod ropMethod = new RopMethod(convertBasicBlocks(), in convert() local 126 ropMethod = new IdenticalBlockCombiner(ropMethod).process(); in convert() 128 return ropMethod; in convert()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | SsaMethod.java | 100 public static SsaMethod newFromRopMethod(RopMethod ropMethod, in newFromRopMethod() argument 102 SsaMethod result = new SsaMethod(ropMethod, paramWidth, isStatic); in newFromRopMethod() 104 result.convertRopToSsaBlocks(ropMethod); in newFromRopMethod() 119 private SsaMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) { in SsaMethod() argument 123 this.maxLabel = ropMethod.getBlocks().getMaxLabel(); in SsaMethod() 124 this.registerCount = ropMethod.getBlocks().getRegCount(); in SsaMethod()
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
D | DexMaker.java | 495 RopMethod ropMethod = new RopMethod(code.toBasicBlocks(), 0); in toEncodedMethod() local 498 ropMethod, PositionList.NONE, locals, code.paramSize(), dexOptions); in toEncodedMethod()
|