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

1 2

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction3rms.java 41 private byte regCount;
45 public Instruction3rms(Opcode opcode, short regCount, int startReg, int methodIndex) {
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...]
Instruction3rc.java 46 private byte regCount;
49 public Instruction3rc(Opcode opcode, short regCount, int startReg, Item referencedItem) {
52 if (regCount >= 1 << 8) {
53 throw new RuntimeException("regCount must be less than 256");
55 if (regCount < 0) {
56 throw new RuntimeException("regCount cannot be negative");
66 this.regCount = (byte)regCount;
69 checkItem(opcode, referencedItem, regCount);
75 this.regCount = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1])
    [all...]
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;
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 this.regCount = (byte)regCount;
76 checkItem(opcode, referencedItem, regCount);
83 throw new RuntimeException("regCount cannot be greater than 5");
86 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
98 out.writeByte((regCount << 4) | regA)
    [all...]
Instruction35s.java 46 private byte regCount;
53 public Instruction35s(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;
83 throw new RuntimeException("regCount cannot be greater than 5");
88 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
98 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 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...]
  /dalvik/dx/src/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++) {
SCCP.java 48 private int regCount;
72 this.regCount = ssaMeth.getRegCount();
73 this.latticeValues = new int[this.regCount];
74 this.latticeConstants = new Constant[this.regCount];
81 for (int i = 0; i < this.regCount; i++) {
603 for (int reg = 0; reg < regCount; reg++) {
  /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 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/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 243 final int regCount = instruction.getRegCount();
246 switch (regCount) {
289 int regCount = instruction.getRegCount();
290 if (regCount == 0) {
294 RegisterFormatter.writeRegisterRange(writer, codeItem, startRegister, startRegister+regCount-1);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 102 int regCount = instruction.getRegCount();
103 switch (regCount) {

Completed in 274 milliseconds

1 2