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

  /dalvik/dx/src/com/android/dx/ssa/
Optimizer.java 60 * @param paramWidth the total width, in register-units, of this method's
68 public static RopMethod optimize(RopMethod rmeth, int paramWidth,
72 return optimize(rmeth, paramWidth, isStatic, inPreserveLocals, inAdvice,
81 * @param paramWidth the total width, in register-units, of this method's
90 public static RopMethod optimize(RopMethod rmeth, int paramWidth,
98 ssaMeth = SsaConverter.convertToSsaMethod(rmeth, paramWidth, isStatic);
106 resultMeth = optimizeMinimizeRegisters(rmeth, paramWidth, isStatic,
121 * @param paramWidth the total width, in register-units, of this method's
128 int paramWidth, boolean isStatic,
134 rmeth, paramWidth, isStatic)
    [all...]
SsaConverter.java 36 * @param paramWidth the total width, in register-units, of the method's
43 int paramWidth, boolean isStatic) {
45 = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
80 * @param paramWidth width of all arguments in the method
85 public static SsaMethod testEdgeSplit (RopMethod rmeth, int paramWidth,
89 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
100 * @param paramWidth width of all arguments in the method
105 public static SsaMethod testPhiPlacement (RopMethod rmeth, int paramWidth,
109 result = SsaMethod.newFromRopMethod(rmeth, paramWidth, isStatic);
SsaMethod.java 66 private final int paramWidth;
94 * @param paramWidth the total width, in register-units, of the
100 int paramWidth, boolean isStatic) {
101 SsaMethod result = new SsaMethod(ropMethod, paramWidth, isStatic);
113 * @param paramWidth the total width, in register-units, of the
118 private SsaMethod(RopMethod ropMethod, int paramWidth, boolean isStatic) {
119 this.paramWidth = paramWidth;
299 return paramWidth;
  /external/dexmaker/src/dx/java/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 96 int paramWidth = computeParamWidth(meth, isStatic);
100 paramWidth, isStatic, true, advice,
103 ssaMeth = Optimizer.debugEdgeSplit(rmeth, paramWidth,
107 rmeth, paramWidth, isStatic, true, advice);
110 rmeth, paramWidth, isStatic, true, advice);
113 rmeth, paramWidth, isStatic,true, advice);
BlockDumper.java 293 int paramWidth = computeParamWidth(meth, isStatic);
295 Optimizer.optimize(rmeth, paramWidth, isStatic, true, advice);
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 217 int paramWidth = ssaMeth.getParamWidth();
223 if (i < paramWidth) {
224 mapper.addMapping(i, regCount - paramWidth + i, 1);
226 mapper.addMapping(i, i - paramWidth, 1);
232 paramWidth, regCount - paramWidth);
  /external/dexmaker/src/dx/java/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);
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/sdk/tools/darwin/lib/
dx.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 312 milliseconds