NOTE: this project is very much a work in progress and not ready for prime time at this point. You're likely to run into bugs and missing features, but I am looking for collaborators who share the vision.
A minimalistic virtual machine designed to run self-contained applications. UVM is intended as a platform to distribute programs that will not break and to combat code rot. It also aims to be conceptually simple, easy to understand, fun to work with and approachable to newcomers. There is a short 4-minute overview of UVM on YouTube if you'd like to see a quick survey.
Contents:
- Features
- Build Instructions
- Codebase Organization
- Vision and Motivation
- Design and Architecture
- Subsystems and System Calls
- Planning and Evolution
Current features:
- Stack-based bytecode interpreter
- Variable-length instructions for compactness
- Untyped design for simplicity
- Little-endian byte ordering (like x86, ARM & RISC-V)
- 32-bit and 64-bit integer ops, 32-bit floating-point support
- Separate flat, linear address spaces for code and data
- Built-in, easy to use assembler with a simple syntax
- Easy to use frame buffer to draw RGB graphics with no boilerplate
- Event-driven event execution model compatible with async operations
Planned future features:
- Easy to use audio output API
- Async file and network I/O with callbacks
- Synchronous I/O possible as well
- Fast JIT compiler based on dynamic binary translation and basic block versioning
- Expected performance ~80% of native speed (maybe more?)
- Near-instant warmup
- Permission system to safely sandbox apps without granting access to entire computer
- Ability to compile without SDL and without graphics/audio for headless server-side use
- Ability to encode metadata such as author name and app icon into app image files
- Ability to suspend running programs and save them to a new app image file
Dependencies:
- The Rust toolchain
- The SDL2 libraries
Install the SDL2 package:
brew install sdl2
Add this to your ~/.zprofile
:
export LIBRARY_PATH="$LIBRARY_PATH:$(brew --prefix)/lib"
Install the Rust toolchain:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Install the SDL2 package:
sudo apt-get install libsdl2-dev
Install the Rust toolchain:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Follow the Windows-specific instructions to install the Rust toolchain.
Get SDL2.dll
from one of SDL2 Releases.
Copy SDL2.dll
(unzip) to the vm/
folder.
cd vm
cargo build
To run an asm file with UVM:
cargo run examples/fizzbuzz.asm
There is also a toy C compiler in the ncc
directory, along with some example C programs:
cd ncc
./build_and_run.sh examples/snake.c
Run cargo test
from the vm
, and ncc
directories.
The repository is organized into a 3 different subprojects, each of which is a Rust codebase which can be compiled with cargo
:
/vm
: The implementation of the UVM virtual machine itself/vm/examples/*
: Example assembly programs that can be run by UVM
/ncc
: An implementation of a toy C compiler that outputs UVM assembly/ncc/README.md
: documentation for the NCC compiler./ncc/examples/*
: Example C source files that can be compiled by NCC
/api
: A system to document and automatically export bindings for UVM system calls and constants./api/syscalls.json
: Declarative list of system calls exposed by UVM.
The ncc
compiler is, at the time of this writing, incomplete in that it lacks some C features and the error messages need improvement. This compiler
was implemented to serve as an example of how to write a compiler that targets UVM, and to write some library code to be used by other programs. Over
time, the ncc
compiler will be improved. Despite its limitations, it is still usable to write small programs. Contributions to it are welcome.
The api
directory contains JSON files that represent a declarative list of system calls, constants and the permission system that UVM exposes
to programs running on it. This is helpful for documentation purposes, or if you want to build a compiler that targets UVM. The directory also contains
code that automatically generates markdown documentation, Rust constants and C definitions for system calls.
The code for UVM, NCC and associated tools is shared under the Apache-2.0 license.
The examples under the vm/examples
and ncc/examples
directories are shared under the Creative Commons CC0 license.