Searched refs:ropMethod (Results 1 - 4 of 4) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DIdenticalBlockCombiner.java38 private final RopMethod ropMethod; field in class:IdenticalBlockCombiner
48 ropMethod = rm;
49 blocks = ropMethod.getBlocks();
74 IntList preds = ropMethod.labelToPredecessors(b.getLabel());
118 return new RopMethod(newBlocks, ropMethod.getFirstLabel());
146 IntList preds = ropMethod.labelToPredecessors(bb.getLabel());
H A DSsaToRop.java124 RopMethod ropMethod = new RopMethod(convertBasicBlocks(),
126 ropMethod = new IdenticalBlockCombiner(ropMethod).process();
128 return ropMethod;
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaMethod.java94 * @param ropMethod rop-form method to convert from
100 public static SsaMethod newFromRopMethod(RopMethod ropMethod, argument
102 SsaMethod result = new SsaMethod(ropMethod, paramWidth, isStatic);
104 result.convertRopToSsaBlocks(ropMethod);
112 * @param ropMethod {@code non-null;} the original rop-form method that
119 private SsaMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) { argument
123 this.maxLabel = ropMethod.getBlocks().getMaxLabel();
124 this.registerCount = ropMethod.getBlocks().getRegCount();
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DDexMaker.java495 RopMethod ropMethod = new RopMethod(code.toBasicBlocks(), 0);
498 ropMethod, PositionList.NONE, locals, code.paramSize(), dexOptions);

Completed in 934 milliseconds