/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
Instruction3rmi.java | 41 private byte regCount; 45 public Instruction3rmi(Opcode opcode, short regCount, int startReg, int inlineIndex) { 48 if (regCount >= 1 << 8) { 49 throw new RuntimeException("regCount must be less than 256"); 51 if (regCount < 0) { 52 throw new RuntimeException("regCount cannot be negative"); 66 this.regCount = (byte)regCount; 74 this.regCount = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]); 81 out.writeByte(regCount); [all...] |
Instruction3rms.java | 41 private byte regCount; 45 public Instruction3rms(Opcode opcode, short regCount, int startReg, int vtableIndex) { 48 if (regCount >= 1 << 8) { 49 throw new RuntimeException("regCount must be less than 256"); 51 if (regCount < 0) { 52 throw new RuntimeException("regCount cannot be negative"); 66 this.regCount = (byte)regCount; 74 this.regCount = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]); 81 out.writeByte(regCount); [all...] |
Instruction5rc.java | 49 private short regCount; 52 public Instruction5rc(Opcode opcode, int regCount, int startReg, Item referencedItem) { 55 if (regCount >= 1 << 16) { 56 throw new RuntimeException("regCount must be less than 65536"); 58 if (regCount < 0) { 59 throw new RuntimeException("regCount cannot be negative"); 69 this.regCount = (short)regCount; 72 checkItem(opcode, referencedItem, regCount); 78 this.regCount = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 6) [all...] |
Instruction35mi.java | 42 private byte regCount; 50 public Instruction35mi(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, 53 if (regCount > 5) { 54 throw new RuntimeException("regCount cannot be greater than 5"); 69 this.regCount = (byte)regCount; 81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); 92 out.writeByte((regCount << 4) | regA); 103 return regCount;
|
Instruction35ms.java | 42 private byte regCount; 50 public Instruction35ms(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, 53 if (regCount > 5) { 54 throw new RuntimeException("regCount cannot be greater than 5"); 69 this.regCount = (byte)regCount; 81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); 92 out.writeByte((regCount << 4) | regA); 103 return regCount;
|
Instruction3rc.java | 47 private byte regCount; 50 public Instruction3rc(Opcode opcode, short regCount, int startReg, Item referencedItem) { 53 if (regCount >= 1 << 8) { 54 throw new RuntimeException("regCount must be less than 256"); 56 if (regCount < 0) { 57 throw new RuntimeException("regCount cannot be negative"); 67 this.regCount = (byte)regCount; 70 checkItem(opcode, referencedItem, regCount); 76 this.regCount = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]) [all...] |
Instruction35c.java | 46 private byte regCount; 53 public Instruction35c(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, 57 if (regCount > 5) { 58 throw new RuntimeException("regCount cannot be greater than 5"); 69 checkItem(opcode, referencedItem, regCount); 71 this.regCount = (byte)regCount; 82 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); 90 throw new RuntimeException("regCount cannot be greater than 5"); 107 out.writeByte((regCount << 4) | regA) [all...] |
/dalvik/dexgen/src/com/android/dexgen/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/rop/code/ |
LocalVariableInfo.java | 30 private final int regCount; 62 this.regCount = blocks.getRegCount(); 63 this.emptySet = new RegisterSpecSet(regCount); 172 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; 315 private int regCount; [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
LocalVariableInfo.java | 32 private final int regCount; 63 this.regCount = method.getRegCount(); 64 this.emptySet = new RegisterSpecSet(regCount); 169 result.mutableCopy() : new RegisterSpecSet(regCount);
|
PhiTypeResolver.java | 67 int regCount = ssaMeth.getRegCount(); 69 for (int reg = 0; reg < regCount; reg++) {
|
DeadCodeRemover.java | 36 private final int regCount; 65 regCount = ssaMethod.getRegCount(); 66 worklist = new BitSet(regCount); 187 set = new BitSet(regCount);
|
SsaConverter.java | 289 int regCount; 294 regCount = ssaMeth.getRegCount() - threshold; 300 BitSet[] defsites = new BitSet[regCount]; 303 BitSet[] phisites = new BitSet[regCount]; 305 for (int i = 0; i < regCount; i++) { 329 for (int i = 0; i < regCount; i++) { 343 for (int reg = 0, s = regCount; reg < s; reg++) { 382 for (int i = 0; i < regCount; i++) {
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
LocalVariableInfo.java | 31 private final int regCount; 63 this.regCount = blocks.getRegCount(); 64 this.emptySet = new RegisterSpecSet(regCount); 173 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; 315 private int regCount; [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
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++) {
|
DeadCodeRemover.java | 43 private final int regCount; 72 regCount = ssaMethod.getRegCount(); 73 worklist = new BitSet(regCount); 194 set = new BitSet(regCount);
|
SsaConverter.java | 290 int regCount; 295 regCount = ssaMeth.getRegCount() - threshold; 301 BitSet[] defsites = new BitSet[regCount]; 304 BitSet[] phisites = new BitSet[regCount]; 306 for (int i = 0; i < regCount; i++) { 330 for (int i = 0; i < regCount; i++) { 344 for (int reg = 0, s = regCount; reg < s; reg++) { 383 for (int i = 0; i < regCount; i++) {
|
/dalvik/dexgen/src/com/android/dexgen/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;
|
/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;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
DalvInsnList.java | 44 private final int regCount; 51 * @param regCount count, in register-units, of the number of registers 57 int regCount) { 59 DalvInsnList result = new DalvInsnList(size, regCount); 74 public DalvInsnList(int size, int regCount) { 76 this.regCount = regCount; 177 return regCount;
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
InstructionMethodItem.java | 265 final int regCount = instruction.getRegCount(); 268 switch (regCount) { 311 int regCount = instruction.getRegCount(); 312 if (regCount == 0) { 316 RegisterFormatter.writeRegisterRange(writer, codeItem, startRegister, startRegister+regCount-1);
|