#java #reader-writer #bytecode #asm #read #write #java-asm

java_asm_internal

Java bytecode reader & writer in rust

4 releases

new 0.0.4 May 10, 2024
0.0.3 May 4, 2024
0.0.2 May 4, 2024
0.0.1 May 4, 2024

#1782 in Development tools

Download history 367/week @ 2024-05-04

369 downloads per month
Used in java_asm

Apache-2.0

8KB
142 lines

java-asm

Crates.io Version

Java bytecode reader & writer, maybe a rust implementation for ASM

There are some similar projects in GitHub, but they didn't actually implement all JVM Bytecode format, and also not implements all ASM nodes/features in rust. So I want to build this library to fully read and write Java bytecode information.

This project supports much newer Java version(Java 21 currently) than other rust implementations. Only supports asm-tree api currently, not supports visitor api because Tree API is much easier to use than visitor api.

Current Stage

  • Implement Read Java class file with JVMS format
  • Implement Write Java class file with JVMS format
  • [WIP] Implement ASM nodes
  • [WIP] Implement ASM features (eg. auto calculate frame/stack etc.)

Some similar projects:

Dependencies

~1.5MB
~34K SLoC