No description
Find a file
2023-11-06 19:06:18 +01:00
jmods broke through the wall. most unsafe gone. internal mutability gone. better design for classloading 2023-11-05 07:51:47 +01:00
src fixed some bugs 2023-11-06 19:06:18 +01:00
tests bug fix array arg 2023-11-05 09:09:44 +01:00
.gitignore reads complete class file 2023-09-19 21:21:32 +02:00
Cargo.lock jvm properties 2023-10-27 21:33:10 +02:00
Cargo.toml jvm properties 2023-10-27 21:33:10 +02:00
LICENSE renamed and reformatted 2023-09-30 08:34:16 +02:00
README.md Update README.md 2023-10-14 07:36:33 +02:00

So you wanted to build a JVM

as in why not???

actually: System.out.println("Hello World") would be a major achievement. It's nowhere near that level...

so far

  • starts a main class (TODO cmdline args)
  • loads classes from a classpath, including jar/jmod files
  • instantiates classes
  • runs bytecode (TODO more opcodes)
  • has INVOKEVIRTUAL and INVOKESPECIAL, including stackframes (TODO more invokes)
  • has a heap

more TODO's

  • native methods
  • stacktraces
  • check visibility
  • IO
  • garbage collection

Ultimate goal

  • Hello world domination