Home
last modified time | relevance | path

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

/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.java1224 (dop.getFormat() == format)) { in getOrNull()
/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.java532 BitSet compatRegs = expandedOp.getFormat().compatibleRegs(insn); in calculateReservedCount()
570 if (guess.getFormat().isCompatible(insn)) { in findOpcodeForInsn()
685 currentOpcode.getFormat().compatibleRegs(insn); in performExpansion()
783 if (opcode.getFormat().branchFits(target)) { in fixBranches()
DSwitchData.java104 int defaultTarget = Dops.PACKED_SWITCH.getFormat().codeSize(); in writeTo()
/dalvik/dx/src/com/android/dx/io/instructions/
DZeroRegisterDecodedInstruction.java43 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DOneRegisterDecodedInstruction.java55 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DRegisterRangeDecodedInstruction.java60 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DTwoRegisterDecodedInstruction.java65 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DInvokePolymorphicRangeDecodedInstruction.java58 getFormat(), in withProtoIndex()
DThreeRegisterDecodedInstruction.java75 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFourRegisterDecodedInstruction.java85 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DInvokePolymorphicDecodedInstruction.java57 getFormat(), getOpcode(), newIndex, getIndexType(), newProtoIndex, registers); in withProtoIndex()
DFiveRegisterDecodedInstruction.java95 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.java1241 public static InstructionCodec getFormat(int opcode) { in getFormat() method in OpcodeInfo
1242 return get(opcode).getFormat(); in getFormat()
1287 public InstructionCodec getFormat() { in getFormat() method in OpcodeInfo.Info