Hashlink bytecode disassembler and analyzer.
This crate is a library, see hlbc-cli for an actual program to use.
See CHANGELOG.md.
The decompiler is present in the hlbc-decompiler
crate and 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).
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 makes it a joy to develop for the opcodes, with each its own enum variant I can generate most of what I need with a
macro or use that incredible match statement to process data the way I want to. But, since the Bytecode
structure is a
large graph and Rust doesn't like self-references, it is a bit cumbersome to pass the context and call resolve
each
time I need access to traverse the graph. Further iterations of this crate could make use an arena.