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 99 int paramWidth = computeParamWidth(meth, isStatic);
103 paramWidth, isStatic, true, advice,
106 ssaMeth = Optimizer.debugEdgeSplit(rmeth, paramWidth,
110 rmeth, paramWidth, isStatic, true, advice);
113 rmeth, paramWidth, isStatic, true, advice);
116 rmeth, paramWidth, isStatic,true, advice);
BlockDumper.java 296 int paramWidth = computeParamWidth(meth, isStatic);
297 rmeth = Optimizer.optimize(rmeth, paramWidth, isStatic, true,
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 224 int paramWidth = ssaMeth.getParamWidth();
230 if (i < paramWidth) {
231 mapper.addMapping(i, regCount - paramWidth + i, 1);
233 mapper.addMapping(i, i - paramWidth, 1);
239 paramWidth, regCount - paramWidth);
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 682 milliseconds