https://github.com/mathetake/yajvm
a JVM
https://github.com/mathetake/yajvm
Last synced: 10 months ago
JSON representation
a JVM
- Host: GitHub
- URL: https://github.com/mathetake/yajvm
- Owner: mathetake
- Created: 2023-08-15T10:57:32.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-09T08:22:42.000Z (over 2 years ago)
- Last Synced: 2025-08-16T09:55:18.758Z (10 months ago)
- Language: Rust
- Homepage:
- Size: 54.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is my attempt (but I stalled!) to implement the embeddable JVM in Rust + LLVM where the goals include
1. Make the interop Rust<>JVM as easy as possible,
2. Sandbox by default - all system calls are intercepted at Rust layer (implementing java/lang/system, etc),
3. Lightweight startup,
4. (Optional) Native image compilation.
Unfortunately, as life gets busy and my passion fades, I have to put this project on hold. I hope to come back to it one day.
For those curious, all the currently-working Java programs are located in [tests/cases](./tests/cases) directory.