Searched defs:paramWidth (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
H A DSsaConverter.java37 * @param paramWidth the total width, in register-units, of the method's
44 int paramWidth, boolean isStatic) {
46 = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
81 * @param paramWidth width of all arguments in the method
86 public static SsaMethod testEdgeSplit (RopMethod rmeth, int paramWidth, argument
90 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
101 * @param paramWidth width of all arguments in the method
106 public static SsaMethod testPhiPlacement (RopMethod rmeth, int paramWidth, argument
110 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
43 convertToSsaMethod(RopMethod rmeth, int paramWidth, boolean isStatic) argument
H A DOptimizer.java61 * @param paramWidth the total width, in register-units, of this method's
69 public static RopMethod optimize(RopMethod rmeth, int paramWidth, argument
73 return optimize(rmeth, paramWidth, isStatic, inPreserveLocals, inAdvice,
82 * @param paramWidth the total width, in register-units, of this method's
91 public static RopMethod optimize(RopMethod rmeth, int paramWidth, argument
99 ssaMeth = SsaConverter.convertToSsaMethod(rmeth, paramWidth, isStatic);
107 resultMeth = optimizeMinimizeRegisters(rmeth, paramWidth, isStatic,
122 * @param paramWidth the total width, in register-units, of this method's
129 int paramWidth, boolean isStatic,
135 rmeth, paramWidth, isStati
128 optimizeMinimizeRegisters(RopMethod rmeth, int paramWidth, boolean isStatic, EnumSet<OptionalStep> steps) argument
195 debugEdgeSplit(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice) argument
205 debugPhiPlacement(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice) argument
215 debugRenaming(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice) argument
225 debugDeadCodeRemover(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice) argument
240 debugNoRegisterAllocation(RopMethod rmeth, int paramWidth, boolean isStatic, boolean inPreserveLocals, TranslationAdvice inAdvice, EnumSet<OptionalStep> steps) argument
[all...]
H A DSsaMethod.java67 private final int paramWidth; field in class:SsaMethod
95 * @param paramWidth the total width, in register-units, of the
101 int paramWidth, boolean isStatic) {
102 SsaMethod result = new SsaMethod(ropMethod, paramWidth, isStatic);
114 * @param paramWidth the total width, in register-units, of the
119 private SsaMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) { argument
120 this.paramWidth = paramWidth;
300 return paramWidth;
100 newFromRopMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) argument

Completed in 4 milliseconds