/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
D | Instruction11x.java | 40 private byte regA; field in Instruction11x 42 public Instruction11x(Opcode opcode, short regA) { in Instruction11x() argument 45 if (regA >= 1 << 8) { in Instruction11x() 49 this.regA = (byte)regA; in Instruction11x() 55 this.regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]); in Instruction11x() 60 out.writeByte(regA); in writeInstruction() 68 return regA & 0xFF; in getRegisterA()
|
D | Instruction22x.java | 40 private byte regA; field in Instruction22x 43 public Instruction22x(Opcode opcode, short regA, int regB) { in Instruction22x() argument 46 if (regA >= 1 << 8) { in Instruction22x() 54 this.regA = (byte)regA; in Instruction22x() 61 this.regA = buffer[bufferIndex + 1]; in Instruction22x() 67 out.writeByte(regA); in writeInstruction() 76 return regA & 0xFF; in getRegisterA()
|
D | Instruction32x.java | 40 private short regA; field in Instruction32x 43 public Instruction32x(Opcode opcode, int regA, int regB) { in Instruction32x() argument 46 if (regA >= 1<<16 || in Instruction32x() 51 this.regA = (short)regA; in Instruction32x() 58 this.regA = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2); in Instruction32x() 65 out.writeShort(regA); in writeInstruction() 74 return regA & 0xFFFF; in getRegisterA()
|
D | Instruction12x.java | 40 private int regA; field in Instruction12x 43 public Instruction12x(Opcode opcode, byte regA, byte regB) { in Instruction12x() argument 46 if (regA >= 1 << 4 || in Instruction12x() 51 this.regA = regA; in Instruction12x() 57 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction12x() 63 out.writeByte((regB << 4) | regA); in writeInstruction() 71 return regA; in getRegisterA()
|
D | Instruction31c.java | 42 private byte regA; field in Instruction31c 44 public Instruction31c(Opcode opcode, short regA, Item referencedItem) { in Instruction31c() argument 47 if (regA >= 1 << 8) { in Instruction31c() 51 this.regA = (byte)regA; in Instruction31c() 57 this.regA = buffer[bufferIndex + 1]; in Instruction31c() 62 out.writeByte(regA); in writeInstruction() 71 return regA & 0xFF; in getRegisterA()
|
D | Instruction22b.java | 40 private byte regA; field in Instruction22b 44 public Instruction22b(Opcode opcode, short regA, short regB, byte litC) { in Instruction22b() argument 47 if (regA >= 1 << 8 || in Instruction22b() 52 this.regA = (byte)regA; in Instruction22b() 60 this.regA = buffer[bufferIndex + 1]; in Instruction22b() 67 out.writeByte(regA); in writeInstruction() 77 return regA & 0xFF; in getRegisterA()
|
D | Instruction31i.java | 41 private byte regA; field in Instruction31i 44 public Instruction31i(Opcode opcode, short regA, int litB) { in Instruction31i() argument 47 if (regA >= 1 << 8) { in Instruction31i() 51 this.regA = (byte)regA; in Instruction31i() 58 this.regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]); in Instruction31i() 64 out.writeByte(regA); in writeInstruction() 73 return regA & 0xFF; in getRegisterA()
|
D | Instruction51l.java | 41 private byte regA; field in Instruction51l 44 public Instruction51l(Opcode opcode, short regA, long litB) { in Instruction51l() argument 47 if (regA >= 1 << 8) { in Instruction51l() 51 this.regA = (byte)regA; in Instruction51l() 58 regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]); in Instruction51l() 64 out.writeByte(regA); in writeInstruction() 73 return regA & 0xFF; in getRegisterA()
|
D | Instruction23x.java | 39 private byte regA; field in Instruction23x 43 public Instruction23x(Opcode opcode, short regA, short regB, short regC) { in Instruction23x() argument 46 if (regA >= 1 << 8 || in Instruction23x() 52 this.regA = (byte)regA; in Instruction23x() 60 this.regA = buffer[bufferIndex + 1]; in Instruction23x() 67 out.writeByte(regA); in writeInstruction() 77 return regA & 0xFF; in getRegisterA()
|
D | Instruction21s.java | 41 private byte regA; field in Instruction21s 44 public Instruction21s(Opcode opcode, short regA, short litB) { in Instruction21s() argument 47 if (regA >= 1 << 8) { in Instruction21s() 51 this.regA = (byte)regA; in Instruction21s() 58 this.regA = buffer[bufferIndex + 1]; in Instruction21s() 64 out.writeByte(regA); in writeInstruction() 73 return regA & 0xFF; in getRegisterA()
|
D | Instruction11n.java | 41 private byte regA; field in Instruction11n 44 public Instruction11n(Opcode opcode, byte regA, byte litB) { in Instruction11n() argument 47 if (regA >= 1 << 4) { in Instruction11n() 56 this.regA = regA; in Instruction11n() 63 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction11n() 69 out.writeByte((litB << 4) | regA); in writeInstruction() 77 return regA; in getRegisterA()
|
D | Instruction31t.java | 41 private byte regA; field in Instruction31t 44 public Instruction31t(Opcode opcode, short regA, int offB) { in Instruction31t() argument 47 if (regA >= 1 << 8) { in Instruction31t() 51 this.regA = (byte)regA; in Instruction31t() 58 this.regA = buffer[bufferIndex + 1]; in Instruction31t() 64 out.writeByte(regA); in writeInstruction() 78 return regA & 0xFF; in getRegisterA()
|
D | Instruction21h.java | 41 private byte regA; field in Instruction21h 44 public Instruction21h(Opcode opcode, short regA, short litB) { in Instruction21h() argument 47 if (regA >= 1 << 8) { in Instruction21h() 51 this.regA = (byte)regA; in Instruction21h() 58 this.regA = buffer[bufferIndex + 1]; in Instruction21h() 64 out.writeByte(regA); in writeInstruction() 73 return regA & 0xFF; in getRegisterA()
|
D | Instruction22s.java | 41 private byte regA; field in Instruction22s 45 public Instruction22s(Opcode opcode, byte regA, byte regB, short litC) { in Instruction22s() argument 48 if (regA >= 1 << 4 || in Instruction22s() 53 this.regA = regA; in Instruction22s() 61 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22s() 68 out.writeByte((regB << 4) | regA); in writeInstruction() 77 return regA; in getRegisterA()
|
D | Instruction22cs.java | 41 private byte regA; field in Instruction22cs 45 public Instruction22cs(Opcode opcode, byte regA, byte regB, int fieldOffset) { in Instruction22cs() argument 48 if (regA >= 1 << 4 || in Instruction22cs() 57 this.regA = regA; in Instruction22cs() 65 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22cs() 72 out.writeByte((regB << 4) | regA); in writeInstruction() 81 return regA; in getRegisterA()
|
D | Instruction21t.java | 41 private byte regA; field in Instruction21t 44 public Instruction21t(Opcode opcode, short regA, short offB) { in Instruction21t() argument 47 if (regA >= 1 << 8) { in Instruction21t() 55 this.regA = (byte)regA; in Instruction21t() 64 regA = buffer[bufferIndex + 1]; in Instruction21t() 71 out.writeByte(regA); in writeInstruction() 91 return regA & 0xFF; in getRegisterA()
|
D | Instruction22t.java | 41 private byte regA; field in Instruction22t 45 public Instruction22t(Opcode opcode, byte regA, byte regB, short offC) { in Instruction22t() argument 48 if (regA >= 16 || in Instruction22t() 57 this.regA = regA; in Instruction22t() 67 regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22t() 76 out.writeByte((regB << 4) | regA); in writeInstruction() 96 return regA; in getRegisterA()
|
D | Instruction22c.java | 43 private byte regA; field in Instruction22c 46 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) { in Instruction22c() argument 49 if (regA >= 1 << 4 || in Instruction22c() 54 this.regA = regA; in Instruction22c() 61 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22c() 76 out.writeByte((regB << 4) | regA); in writeInstruction() 85 return regA; in getRegisterA()
|
D | Instruction52c.java | 44 private short regA; field in Instruction52c 47 public Instruction52c(Opcode opcode, int regA, int regB, Item referencedItem) { in Instruction52c() argument 50 if (regA >= 1 << 16) { in Instruction52c() 58 this.regA = (short)regA; in Instruction52c() 65 this.regA = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 6); in Instruction52c() 82 return regA & 0xFFFF; in getRegisterA()
|
D | Instruction35mi.java | 43 private byte regA; field in Instruction35mi 51 byte regA, int inlineIndex) { in Instruction35mi() argument 61 regA >= 1 << 4) { in Instruction35mi() 70 this.regA = regA; in Instruction35mi() 82 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35mi() 92 out.writeByte((regCount << 4) | regA); in writeInstruction() 107 return regA; in getRegisterA()
|
D | Instruction21c.java | 43 private byte regA; field in Instruction21c 45 public Instruction21c(Opcode opcode, short regA, Item referencedItem) { in Instruction21c() argument 48 if (regA >= 1 << 8) { in Instruction21c() 59 this.regA = (byte)regA; in Instruction21c() 71 this.regA = buffer[bufferIndex + 1]; in Instruction21c() 85 out.writeByte(regA); in writeInstruction() 94 return regA & 0xFF; in getRegisterA()
|
D | Instruction35ms.java | 43 private byte regA; field in Instruction35ms 51 byte regA, int vtableIndex) { in Instruction35ms() argument 61 regA >= 1 << 4) { in Instruction35ms() 70 this.regA = regA; in Instruction35ms() 82 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35ms() 92 out.writeByte((regCount << 4) | regA); in writeInstruction() 107 return regA; in getRegisterA()
|
D | Instruction41c.java | 46 private short regA; field in Instruction41c 48 public Instruction41c(Opcode opcode, int regA, Item referencedItem) { in Instruction41c() argument 51 if (regA >= 1 << 16) { in Instruction41c() 62 this.regA = (short)regA; in Instruction41c() 74 this.regA = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 6); in Instruction41c() 89 return regA & 0xFFFF; in getRegisterA()
|
D | Instruction35c.java | 47 private byte regA; field in Instruction35c 54 byte regA, Item referencedItem) { in Instruction35c() argument 65 regA >= 1 << 4) { in Instruction35c() 72 this.regA = regA; in Instruction35c() 83 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35c() 107 out.writeByte((regCount << 4) | regA); in writeInstruction() 122 return regA; in getRegisterA()
|
/external/smali/smali/src/main/antlr3/ |
D | smaliTreeWalker.g | 983 …byte regA = parseRegister_nibble($REGISTER.text, $totalMethodRegisters, $methodParameterRegisters); 988 $instructions.add(new Instruction11n(opcode, regA, (byte)litB)); 996 … short regA = parseRegister_byte($REGISTER.text, $totalMethodRegisters, $methodParameterRegisters); 998 $instructions.add(new Instruction11x(opcode, regA)); 1006 …byte regA = parseRegister_nibble($registerA.text, $totalMethodRegisters, $methodParameterRegisters… 1009 $instructions.add(new Instruction12x(opcode, regA, regB)); 1040 … short regA = parseRegister_byte($REGISTER.text, $totalMethodRegisters, $methodParameterRegisters); 1044 $instructions.add(new Instruction21c(opcode, regA, fieldIdItem)); 1052 … short regA = parseRegister_byte($REGISTER.text, $totalMethodRegisters, $methodParameterRegisters); 1056 instructions.add(new Instruction21c(opcode, regA, stringIdItem)); [all …]
|