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

  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 31 private final int regCount;
63 this.regCount = blocks.getRegCount();
64 this.emptySet = new RegisterSpecSet(regCount);
169 result.mutableCopy() : new RegisterSpecSet(regCount);
BasicBlockList.java 33 private int regCount;
44 regCount = -1;
54 regCount = old.regCount;
79 // Reset regCount, since it will need to be recalculated.
80 regCount = -1;
92 if (regCount == -1) {
95 regCount = visitor.getRegCount();
98 return regCount;
317 private int regCount;
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
DeadCodeRemover.java 43 private final int regCount;
72 regCount = ssaMethod.getRegCount();
73 worklist = new BitSet(regCount);
149 set = new BitSet(regCount);
LocalVariableInfo.java 33 private final int regCount;
64 this.regCount = method.getRegCount();
65 this.emptySet = new RegisterSpecSet(regCount);
170 result.mutableCopy() : new RegisterSpecSet(regCount);
PhiTypeResolver.java 68 int regCount = ssaMeth.getRegCount();
70 for (int reg = 0; reg < regCount; reg++) {
SsaConverter.java 276 int regCount;
281 regCount = ssaMeth.getRegCount();
287 BitSet[] defsites = new BitSet[regCount];
290 BitSet[] phisites = new BitSet[regCount];
292 for (int i = 0; i < regCount; i++) {
316 for (int i = 0; i < regCount; i++) {
368 for (int i = 0; i < regCount; i++) {
SCCP.java 46 private int regCount;
66 this.regCount = ssaMeth.getRegCount();
67 this.latticeValues = new int[this.regCount];
68 this.latticeConstants = new Constant[this.regCount];
73 for (int i = 0; i < this.regCount; i++) {
441 for (int reg = 0; reg < regCount; reg++) {
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 43 private final int regCount;
50 * @param regCount count, in register-units, of the number of registers
56 int regCount) {
58 DalvInsnList result = new DalvInsnList(size, regCount);
73 public DalvInsnList(int size, int regCount) {
75 this.regCount = regCount;
176 return regCount;
RopTranslator.java 71 private final int regCount;
150 this.regCount = blocks.getRegCount()
153 this.output = new OutputCollector(maxInsns, bsz * 3, regCount);
593 RegisterSpec.make(regCount - paramSize + param,
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 227 int regCount = ssaMeth.getRegCount();
229 for (int i = 0; i < regCount; i++) {
231 mapper.addMapping(i, regCount - paramWidth + i, 1);
239 paramWidth, regCount - paramWidth);
363 int regCount = ssaMeth.getRegCount();
364 Integer[] ret = new Integer[regCount];
366 for (int i = 0; i < regCount; i++) {
377 int result[] = new int[regCount];
379 for (int i = 0; i < regCount; i++) {
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 321 int regCount = getNormalRegCount();
322 return isSynchronized() ? regCount + 1 : regCount;
    [all...]
  /dalvik/vm/analysis/
CodeVerify.c     [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 2032 milliseconds