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

1 2

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction11n.java 41 private byte regA;
44 public Instruction11n(Opcode opcode, byte regA, byte litB) {
47 if (regA >= 1 << 4) {
56 this.regA = regA;
63 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
69 out.writeByte((litB << 4) | regA);
77 return regA;
Instruction11x.java 40 private byte regA;
42 public Instruction11x(Opcode opcode, short regA) {
45 if (regA >= 1 << 8) {
49 this.regA = (byte)regA;
55 this.regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
60 out.writeByte(regA);
68 return regA & 0xFF;
Instruction12x.java 40 private int regA;
43 public Instruction12x(Opcode opcode, byte regA, byte regB) {
46 if (regA >= 1 << 4 ||
51 this.regA = regA;
57 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
63 out.writeByte((regB << 4) | regA);
71 return regA;
Instruction21c.java 42 private byte regA;
44 public Instruction21c(Opcode opcode, short regA, Item referencedItem) {
47 if (regA >= 1 << 8) {
58 this.regA = (byte)regA;
70 this.regA = buffer[bufferIndex + 1];
79 out.writeByte(regA);
88 return regA & 0xFF;
Instruction21h.java 41 private byte regA;
44 public Instruction21h(Opcode opcode, short regA, short litB) {
47 if (regA >= 1 << 8) {
51 this.regA = (byte)regA;
58 this.regA = buffer[bufferIndex + 1];
64 out.writeByte(regA);
73 return regA & 0xFF;
Instruction21s.java 41 private byte regA;
44 public Instruction21s(Opcode opcode, short regA, short litB) {
47 if (regA >= 1 << 8) {
51 this.regA = (byte)regA;
58 this.regA = buffer[bufferIndex + 1];
64 out.writeByte(regA);
73 return regA & 0xFF;
Instruction22b.java 40 private byte regA;
44 public Instruction22b(Opcode opcode, short regA, short regB, byte litC) {
47 if (regA >= 1 << 8 ||
52 this.regA = (byte)regA;
60 this.regA = buffer[bufferIndex + 1];
67 out.writeByte(regA);
77 return regA & 0xFF;
Instruction22x.java 40 private byte regA;
43 public Instruction22x(Opcode opcode, short regA, int regB) {
46 if (regA >= 1 << 8) {
54 this.regA = (byte)regA;
61 this.regA = buffer[bufferIndex + 1];
67 out.writeByte(regA);
76 return regA & 0xFF;
Instruction23x.java 39 private byte regA;
43 public Instruction23x(Opcode opcode, short regA, short regB, short regC) {
46 if (regA >= 1 << 8 ||
52 this.regA = (byte)regA;
60 this.regA = buffer[bufferIndex + 1];
67 out.writeByte(regA);
77 return regA & 0xFF;
Instruction31c.java 42 private byte regA;
44 public Instruction31c(Opcode opcode, short regA, Item referencedItem) {
47 if (regA >= 1 << 8) {
51 this.regA = (byte)regA;
57 this.regA = buffer[bufferIndex + 1];
62 out.writeByte(regA);
75 return regA & 0xFF;
Instruction31i.java 41 private byte regA;
44 public Instruction31i(Opcode opcode, short regA, int litB) {
47 if (regA >= 1 << 8) {
51 this.regA = (byte)regA;
58 this.regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
64 out.writeByte(regA);
73 return regA & 0xFF;
Instruction31t.java 41 private byte regA;
44 public Instruction31t(Opcode opcode, short regA, int offB) {
47 if (regA >= 1 << 8) {
51 this.regA = (byte)regA;
58 this.regA = buffer[bufferIndex + 1];
64 out.writeByte(regA);
78 return regA & 0xFF;
Instruction32x.java 40 private short regA;
43 public Instruction32x(Opcode opcode, int regA, int regB) {
46 if (regA >= 1<<16 ||
51 this.regA = (short)regA;
58 this.regA = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
65 out.writeShort(regA);
74 return regA & 0xFFFF;
Instruction51l.java 41 private byte regA;
44 public Instruction51l(Opcode opcode, short regA, long litB) {
47 if (regA >= 1 << 8) {
51 this.regA = (byte)regA;
58 regA = (byte)NumberUtils.decodeUnsignedByte(buffer[bufferIndex + 1]);
64 out.writeByte(regA);
73 return regA & 0xFF;
Instruction21t.java 41 private byte regA;
44 public Instruction21t(Opcode opcode, short regA, short offB) {
47 if (regA >= 1 << 8) {
55 this.regA = (byte)regA;
64 regA = buffer[bufferIndex + 1];
71 out.writeByte(regA);
91 return regA & 0xFF;
Instruction22c.java 42 private byte regA;
45 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) {
48 if (regA >= 1 << 4 ||
53 this.regA = regA;
60 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
66 out.writeByte((regB << 4) | regA);
75 return regA;
Instruction22cs.java 41 private byte regA;
45 public Instruction22cs(Opcode opcode, byte regA, byte regB, int fieldOffset) {
48 if (regA >= 1 << 4 ||
57 this.regA = regA;
65 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
72 out.writeByte((regB << 4) | regA);
81 return regA;
Instruction22s.java 41 private byte regA;
45 public Instruction22s(Opcode opcode, byte regA, byte regB, short litC) {
48 if (regA >= 1 << 4 ||
53 this.regA = regA;
61 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
68 out.writeByte((regB << 4) | regA);
77 return regA;
Instruction22t.java 41 private byte regA;
45 public Instruction22t(Opcode opcode, byte regA, byte regB, short offC) {
48 if (regA >= 16 ||
57 this.regA = regA;
67 regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
76 out.writeByte((regB << 4) | regA);
96 return regA;
Instruction35ms.java 43 private byte regA;
51 byte regA, int methodIndex) {
61 regA >= 1 << 4) {
70 this.regA = regA;
82 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
92 out.writeByte((regCount << 4) | regA);
107 return regA;
Instruction35c.java 47 private byte regA;
54 byte regA, Item referencedItem) {
65 regA >= 1 << 4) {
70 this.regA = regA;
87 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
98 out.writeByte((regCount << 4) | regA);
113 return regA;
Instruction35s.java 47 private byte regA;
54 byte regA, Item referencedItem) {
65 regA >= 1 << 4) {
72 this.regA = regA;
89 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
98 out.writeByte((regCount << 4) | regA);
113 return regA;
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 254 int regA = specA.getReg();
256 latticeValues[regA] == CONSTANT) {
257 cA = latticeConstants[regA];
370 int regA = sources.get(0).getReg();
374 if (latticeValues[regA] != CONSTANT) {
377 cA = latticeConstants[regA];
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 254 int regA = specA.getReg();
256 latticeValues[regA] == CONSTANT) {
257 cA = latticeConstants[regA];
370 int regA = sources.get(0).getReg();
374 if (latticeValues[regA] != CONSTANT) {
377 cA = latticeConstants[regA];
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 113 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
118 unsigned RegA, unsigned RegB, unsigned Dist);
558 regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
559 if (RegA == RegB)
561 if (!RegA || !RegB)
563 return TRI->regsOverlap(RegA, RegB);
666 unsigned RegA = MI->getOperand(0).getReg();
667 SrcRegMap[RegA] = FromRegC;
676 TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA,unsigned RegB){
686 unsigned ToRegA = getMappedReg(RegA, DstRegMap)
    [all...]

Completed in 296 milliseconds

1 2