Crate dalvik

Source
Expand description

Dalvik bytecode instruction decoding and basic block analysis.

The lifted Instruction type implements Display for printing the instruction mnemonics, however the best disassembly (closely matching baksmali) is possible only with dex metadata available, which can be provided through the PrettyPrint trait.

Modules§

blocks
Basic block lifting
decode
Dalvik bytecode instruction decoding

Enums§

ControlFlow
Describes the possible control flow effects of an Instruction
Instruction
Dalvik Instruction

Traits§

PrettyPrint
Trait for pretty printing dalvik instructions such that they include method names, string literals, field names, etc.