Searched defs:ropMethod (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/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());
/dalvik/dx/src/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();

Completed in 157 milliseconds