HomeSort by relevance Sort by last modified time
    Searched refs:regB (Results 1 - 14 of 14) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction12x.java 41 private int regB;
43 public Instruction12x(Opcode opcode, byte regA, byte regB) {
47 regB >= 1 << 4) {
52 this.regB = regB;
58 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
63 out.writeByte((regB << 4) | regA);
75 return regB;
Instruction22b.java 41 private byte regB;
44 public Instruction22b(Opcode opcode, short regA, short regB, byte litC) {
48 regB >= 1 << 8) {
53 this.regB = (byte)regB;
61 this.regB = buffer[bufferIndex + 2];
68 out.writeByte(regB);
81 return regB & 0xFF;
Instruction22s.java 42 private byte regB;
45 public Instruction22s(Opcode opcode, byte regA, byte regB, short litC) {
49 regB >= 1 << 4) {
54 this.regB = regB;
62 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
68 out.writeByte((regB << 4) | regA);
81 return regB;
Instruction22x.java 41 private short regB;
43 public Instruction22x(Opcode opcode, short regA, int regB) {
50 if (regB >= 1 << 16) {
55 this.regB = (short)regB;
62 this.regB = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
68 out.writeShort(regB);
80 return regB & 0xFFFF;
Instruction23x.java 40 private byte regB;
43 public Instruction23x(Opcode opcode, short regA, short regB, short regC) {
47 regB >= 1 << 8 ||
53 this.regB = (byte)regB;
61 this.regB = buffer[bufferIndex + 2];
68 out.writeByte(regB);
81 return regB & 0xFF;
Instruction32x.java 41 private short regB;
43 public Instruction32x(Opcode opcode, int regA, int regB) {
47 regB >= 1<<16) {
52 this.regB = (short)regB;
59 this.regB = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 4);
66 out.writeShort(regB);
78 return regB & 0xFFFF;
Instruction22c.java 43 private byte regB;
45 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) {
49 regB >= 1 << 4) {
54 this.regB = regB;
61 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
66 out.writeByte((regB << 4) | regA);
79 return regB;
Instruction22cs.java 42 private byte regB;
45 public Instruction22cs(Opcode opcode, byte regA, byte regB, int fieldOffset) {
49 regB >= 1 << 4) {
58 this.regB = regB;
66 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
72 out.writeByte((regB << 4) | regA);
85 return regB;
Instruction22t.java 42 private byte regB;
45 public Instruction22t(Opcode opcode, byte regA, byte regB, short offC) {
49 regB >= 16) {
58 this.regB = regB;
68 regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
76 out.writeByte((regB << 4) | regA);
100 return regB;
  /external/llvm/include/llvm/Target/
TargetRegisterInfo.h 331 bool regsOverlap(unsigned regA, unsigned regB) const {
332 if (regA == regB) return true;
333 if (isVirtualRegister(regA) || isVirtualRegister(regB))
336 if (*regList == regB) return true;
341 /// isSubRegister - Returns true if regB is a sub-register of regA.
343 bool isSubRegister(unsigned regA, unsigned regB) const {
344 return isSuperRegister(regB, regA);
347 /// isSuperRegister - Returns true if regB is a super-register of regA.
349 bool isSuperRegister(unsigned regA, unsigned regB) const {
351 if (*regList == regB) return true
    [all...]
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 105 bool isProfitableToCommute(unsigned regB, unsigned regC,
111 unsigned RegB, unsigned RegC, unsigned Dist);
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);
570 TwoAddressInstructionPass::isProfitableToCommute(unsigned regB, unsigned regC,
607 unsigned FromRegB = getMappedReg(regB, SrcRegMap)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 262 int regB = specB.getReg();
264 latticeValues[regB] == CONSTANT) {
265 cB = latticeConstants[regB];
384 int regB = sources.get(1).getReg();
385 if (latticeValues[regB] != CONSTANT) {
388 cB = latticeConstants[regB];
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 262 int regB = specB.getReg();
264 latticeValues[regB] == CONSTANT) {
265 cB = latticeConstants[regB];
384 int regB = sources.get(1).getReg();
385 if (latticeValues[regB] != CONSTANT) {
388 cB = latticeConstants[regB];
  /external/smali/smali/src/main/antlr3/org/jf/smali/
smaliTreeWalker.g     [all...]

Completed in 200 milliseconds