Home
last modified time | relevance | path

Searched refs:getFormat (Results 1 – 18 of 18) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
DFixedSizeInsn.java53 return getOpcode().getFormat().codeSize(); in codeSize()
59 getOpcode().getFormat().writeTo(out, this); in writeTo()
71 return getOpcode().getFormat().listingString(this, noteIndices); in listingString0()
DDop.java115 public InsnFormat getFormat() { in getFormat() method in Dop
DOutputFinisher.java490 BitSet compatRegs = expandedOp.getFormat().compatibleRegs(insn); in calculateReservedCount()
528 if (guess.getFormat().isCompatible(insn)) { in findOpcodeForInsn()
643 currentOpcode.getFormat().compatibleRegs(insn); in performExpansion()
741 if (opcode.getFormat().branchFits(target)) { in fixBranches()
DSwitchData.java104 int defaultTarget = Dops.PACKED_SWITCH.getFormat().codeSize(); in writeTo()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DFixedSizeInsn.java52 return getOpcode().getFormat().codeSize(); in codeSize()
58 getOpcode().getFormat().writeTo(out, this); in writeTo()
70 return getOpcode().getFormat().listingString(this, noteIndices); in listingString0()
DOutputFinisher.java369 result[i] = insns.get(i).getOpcode().getFormat(); in makeFormatsArray()
548 if (format != dop.getFormat()) { in massageInstructions()
579 InsnFormat originalFormat = dop.getFormat(); in performExpansion()
598 originalFormat = insn.getOpcode().getFormat(); in performExpansion()
673 InsnFormat format = dop.getFormat(); in fixBranches()
DDop.java104 public InsnFormat getFormat() { in getFormat() method in Dop
DSwitchData.java103 int defaultTarget = Dops.PACKED_SWITCH.getFormat().codeSize(); in writeTo()
DDops.java1214 (dop.getFormat() == format)) { in getOrNull()
/dalvik/dx/src/com/android/dx/io/instructions/
DZeroRegisterDecodedInstruction.java41 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DOneRegisterDecodedInstruction.java52 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DRegisterRangeDecodedInstruction.java57 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DTwoRegisterDecodedInstruction.java61 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DThreeRegisterDecodedInstruction.java70 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFourRegisterDecodedInstruction.java79 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFiveRegisterDecodedInstruction.java88 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DDecodedInstruction.java72 InstructionCodec format = OpcodeInfo.getFormat(opcode); in decode()
119 public final InstructionCodec getFormat() { in getFormat() method in DecodedInstruction
/dalvik/dx/src/com/android/dx/io/
DOpcodeInfo.java1211 public static InstructionCodec getFormat(int opcode) { in getFormat() method in OpcodeInfo
1212 return get(opcode).getFormat(); in getFormat()
1257 public InstructionCodec getFormat() { in getFormat() method in OpcodeInfo.Info