NOTE: (previously named Javo/Jago
)
This project is not supposed to extend the features, more focus will be moved to its sister project zava - a rewrite in Zig
A simplified Java virtual machine written in Go language. One aim is to learn JVM specification in depth and try to understand the behind-the-scene behaviour when a Java program runs. This VM can be used for the educational purpose, for example, for a course about how to design a runtime for a language with the complete specification.
I only refer to "Java Virtual Machine Specification" and then look into how we should design one. Some production-level features are intentionally ignored and it is supposed to make it as simplified as possible so as to demonstrate the general idea. For the educational purpose, it is more than enough.
If you have no time to read OpenJDK source code or always guess the JVM behaviour when you need to tune your program, then your right here to be the lord of your universe.
A overview presentation can be found: https://drive.google.com/file/d/1gESJTwm_tJL8pA7WBxJfhz4iUW7KwihP/view?usp=sharing
Any thought is welcome and I am happy to be wrong.
- Java class file reader
- Interpreter engine
- Class loader delegation
- multi-threading support
- monitor,
sleep
,wait
,notify
support - JDK native methods
- GC
- JIT
β― cd ~/gava
β― ./build.sh
By default, gava will be installed to /usr/local/gava
/usr/local/gava
βββ bin
βΒ Β βββ gava
βββ jdk
βΒ Β βββ classes
βΒ Β βββ META-INF
βΒ Β βββ apple
βΒ Β βββ com
βΒ Β βββ java
βΒ Β βββ javax
βΒ Β βββ jdk
βΒ Β βββ org
βΒ Β βββ sun
βββ log
βββ classloader.log
βββ io.log
βββ misc.log
βββ thread-bootstrap.log
βββ thread-main.log
βββ threads.log
β― gava -h
NAME:
Gava - A simplified Java Virtual Machine for the educational purpose
USAGE:
gava [-options] class [args...]
VERSION:
1.0.0
DESCRIPTION:
A Java* Virtual Machine demonstrating the basic features of execution engine, class loading, type/value system, exception handling, native methods etc.
AUTHOR:
Chao Yang <[email protected]>
COMMANDS:
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--classpath value, --cp value application classpath separated by colon
--noLogo, --nl don't show logo
--debug, -d debug mode
--trace, -t trace mode
--log:thread value log level of instruction execution in a thread context, options: info, debug, trace
--log:classloader value log level of class loading, options: info, debug, trace
--profile, -p profile gava
--help, -h show help
--version, -v print the version
β― gava -nl -cp . Calendar 8 2018
β― gava -nl -cp . Pyramid
β― gava -nl -cp . TreeLevelOrderTraverse
β― gava -nl . test/test_athrow
- Print system properties
gava -d test.test_system_properties
- Multi-threading
gava -d test.test_thread
gava -d Multithread
- Thread sleep or
wait
/interrupt
gava -d SleepInterrupt
gava -d WaitInterrupt
- Java monitor lock with
synchronized
gava -d Counter
- Java wait() and
notify()
,notifyAll()
gava -d ProducerConsumer
This log file records the each instruction execution and method call hierarchy within a thread context. Set the log level to info to view call hierarchy more clearly.
The blue diamond symbol πΉ means pure Java methods while the yellow one πΈ means native methods which is implemented within Gava internally.
The fire symbol π₯ means exception throwing (thrown by athrow
bytecode, rethrown if uncaught or thrown by VM internally), while the blue water symbol π§ means an exception is caught by a method.
- TRACE: log all low level bytecode instructions, method call and exception thrown/caught
- DEBUG: only method call and exception thrown/caught
- INFO: only exception thrown/caught info
This log file records the class loading process, including what triggers a class loading and when its class initialization method <clinit> is invoked. The trigger reason can be viewed after a class name.
This log file records thread creation/exit information and object monitor enter/exit, thread sleep(), wait(), notify() etc.
This log file records I/O details around system interactions.
Other trivial logs
https://flaviocopes.com/golang-profiling/
- install Graphviz
- run gava with
-p
option go tool pprof --pdf /usr/local/bin/gava /var/../cpu.pprof > cpu.pdf
Really sorry, I have no time to write documentation but it is in my plan. The Ebook about how it works internally is in progress: https://www.gitbook.com/book/chaoyangnz/go-my-jvm
I am really keen to get missing tests done if I have time. Another reason I didn't enjoy writing tests in Go is that I cannot find an awesome unit test library like Jest. For some libraries I looked into, it requires me to change my code just for testing. I don't like the idea about breaking the encapsulation just for testing.