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

1 2

  /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...]
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...]
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;
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/
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...]
LocalVariableInfo.java 31 private final int regCount;
63 this.regCount = blocks.getRegCount();
64 this.emptySet = new RegisterSpecSet(regCount);
169 result.mutableCopy() : new RegisterSpecSet(regCount);
  /dalvik/dx/src/com/android/dx/rop/code/
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...]
LocalVariableInfo.java 30 private final int regCount;
62 this.regCount = blocks.getRegCount();
63 this.emptySet = new RegisterSpecSet(regCount);
172 result.mutableCopy() : new RegisterSpecSet(regCount);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
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...]
LocalVariableInfo.java 31 private final int regCount;
63 this.regCount = blocks.getRegCount();
64 this.emptySet = new RegisterSpecSet(regCount);
173 result.mutableCopy() : new RegisterSpecSet(regCount);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputCollector.java 48 * @param regCount {@code >= 0;} register count for the method
51 int regCount) {
52 this.finisher = new OutputFinisher(initialCapacity, regCount);
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/
OutputCollector.java 50 * @param regCount {@code >= 0;} register count for the method
53 int regCount) {
54 this.finisher = new OutputFinisher(dexOptions, initialCapacity, regCount);
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/
OutputCollector.java 51 * @param regCount {@code >= 0;} register count for the method
54 int regCount) {
55 this.finisher = new OutputFinisher(dexOptions, initialCapacity, regCount);
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;
  /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);
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/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);
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/dx/src/com/android/dx/ssa/back/
SsaToRop.java 220 int regCount = ssaMeth.getRegCount();
222 for (int i = 0; i < regCount; i++) {
224 mapper.addMapping(i, regCount - paramWidth + i, 1);
232 paramWidth, regCount - paramWidth);
357 int regCount = ssaMeth.getRegCount();
358 Integer[] ret = new Integer[regCount];
360 for (int i = 0; i < regCount; i++) {
371 int result[] = new int[regCount];
373 for (int i = 0; i < regCount; i++) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
SsaToRop.java 221 int regCount = ssaMeth.getRegCount();
223 for (int i = 0; i < regCount; i++) {
225 mapper.addMapping(i, regCount - paramWidth + i, 1);
233 paramWidth, regCount - paramWidth);
358 int regCount = ssaMeth.getRegCount();
359 Integer[] ret = new Integer[regCount];
361 for (int i = 0; i < regCount; i++) {
372 int result[] = new int[regCount];
374 for (int i = 0; i < regCount; i++) {

Completed in 391 milliseconds

1 2