HomeSort by relevance Sort by last modified time
    Searched refs:paramWidth (Results 1 - 7 of 7) sorted by null

  /dalvik/dx/src/com/android/dx/ssa/
Optimizer.java 61 * @param paramWidth the total width, in register-units, of this method's
69 public static RopMethod optimize(RopMethod rmeth, int paramWidth,
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,
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, isStatic)
    [all...]
SsaConverter.java 37 * @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,
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,
110 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
SsaMethod.java 67 private final int paramWidth;
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) {
120 this.paramWidth = paramWidth;
300 return paramWidth;
  /dalvik/dx/src/com/android/dx/command/dump/
SsaDumper.java 104 int paramWidth = computeParamWidth(meth, isStatic);
108 paramWidth, isStatic, true, advice,
111 ssaMeth = Optimizer.debugEdgeSplit(rmeth, paramWidth,
115 rmeth, paramWidth, isStatic, true, advice);
118 rmeth, paramWidth, isStatic, true, advice);
121 rmeth, paramWidth, isStatic,true, advice);
BlockDumper.java 295 int paramWidth = computeParamWidth(meth, isStatic);
297 Optimizer.optimize(rmeth, paramWidth, isStatic, true, advice);
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 218 int paramWidth = ssaMeth.getParamWidth();
224 if (i < paramWidth) {
225 mapper.addMapping(i, regCount - paramWidth + i, 1);
227 mapper.addMapping(i, i - paramWidth, 1);
233 paramWidth, regCount - paramWidth);
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 92 milliseconds