| com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstruction |
TODO
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| int | INDEX_IS_FIELD_OFFSET | ||||||||||
| int | INDEX_IS_INLINE_OFFSET | ||||||||||
| int | INDEX_IS_VTABLE_OFFSET | ||||||||||
| int | INDEX_TO_FIELD | ||||||||||
| int | INDEX_TO_METHOD | ||||||||||
| int | INDEX_TO_STRING | ||||||||||
| int | INDEX_TO_TYPE | ||||||||||
| int | TYPE_BRA | Operand type for branch target. | |||||||||
| int | TYPE_IDX | Operand type for an index into a constant pool (which pool is instruction specific). | |||||||||
| int | TYPE_IMM | Operand type for an immediate. | |||||||||
| int | TYPE_REG | Operand type for a register. | |||||||||
| int | TYPE_RGR | Operand type for a register range. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract IDalvikInstructionArrayData | getArrayData() | ||||||||||
| abstract int |
getOpcode()
Get the Dalvik instruction opcode, as defined in
DalvikInstructionOpcodes. | ||||||||||
| abstract int |
getParameterIndexType()
If this instruction has a parameter which is of type
TYPE_IDX, retrieve the kind of
pool that is referenced by this parameter index value. | ||||||||||
| abstract IDalvikInstructionParameter[] |
getParameters()
Get the instruction operands typed as proper Dalvik parameters.
| ||||||||||
| abstract IDalvikInstructionSwitchData |
getSwitchData()
Get the instruction switch data.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.pnfsoftware.jeb.core.units.code.IInstruction
| |||||||||||
From interface
com.pnfsoftware.jeb.core.units.code.ILocatedInstruction
| |||||||||||
Operand type for branch target.
Value: signed int, relative displacement in code units (2 bytes) from current instruction
address
Operand type for an index into a constant pool (which pool is instruction specific).
Value: theoretically, an unsigned int
Operand type for an immediate.
Value: long, sign-extended, could be anything from a boolean to a double
Operand type for a register.
Value: int, the register index (or first register index , in case of a pair)
Operand type for a register range.
Value: long, made up of 2 ints as follows: low-int=first register index, high-int=last
register index (inclusive)
Get the Dalvik instruction opcode, as defined in DalvikInstructionOpcodes.
If this instruction has a parameter which is of type TYPE_IDX, retrieve the kind of
pool that is referenced by this parameter index value.
INDEX_xxx constant defined in this class, or 0 if the
instruction does not contain an index parameter
Get the instruction operands typed as proper Dalvik parameters.
This method is a convenience method, that does the same thing as getOperands() but
returns Dalvik-typed parameters instead of generic IInstructionOperand-typed object.
Get the instruction switch data.
packed-switch nor sparse-switch