Hashlink bytecode disassembler, analyzer, decompiler and assembler.
This crate is a library, see hlbc-cli for an actual program to use.
See CHANGELOG.md.
The decompiler is currently incomplete (and will probably always be). See the wiki for examples of decompilation output.
A wiki detailing the specifics of Hashlink bytecode is available here. The wiki also details the inner workings of haxe to hashlink compilation and decompilation.
There are 98 different bytecode instructions, there is no way I manually write code for it each time. Most of the code for these opcodes is generated through a proc macro (see hlbc-derive). The only time I needed to write 98 different branches was for the formatting used when displaying the instructions (src/fmt.rs).
/
: hlbc (lib)hlbc-derive/
: hlbc-derive, helper proc macros for hlbchlbc-cli/
: CLI using hlbcdata/
: Haxe source files to test the decompilerDevelopment of this crate wouldn't be possible without the hashlink source code. Some algorithms are directly derived from the original C code reading bytecode files.
This library is made in Rust, a C API is in the works which could permit using this lib in many other projects, but for now it is only Rust friendly.
Other alternatives include :
Rust isn't a very good fit for this project, the whole bytecode is a large graph and self-references do not mix well with Rust. Further iterations of this crate could make use of an arena.