Skip to content

A type-agnostic virtual machine built for simplicity of targeting

License

Notifications You must be signed in to change notification settings

MoxyFoxy/BreezeVM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BreezeVM

BreezeVM is a virtual machine built for simplicity of targeting, specifically for dynamic languages.

Additional Features

  • Assembler for turning BreezeVM Assembly (BVMAsm) into Breeze Bytecode (BBC, or a .bbc file).
  • Has a type-agnostic stack.
  • Can declare types at runtime.
  • Dynamic amount of "registers" through prepared values.
  • Instrinsic procedures.

Portfolio, Design, and User Guide

Main portfolio for the project can be found here.

Design can be found here.

User guide can be found here.

Planned Features (after graduation)

  • Flags and full CLI.
  • Shared library imports.
  • Standardized interface for shared libraries.
  • Compile-time and runtime number type.

.bbc File Format

The BreezeVM depends on a very specific format that .bbc files have to conform to. The assembler conforms to this, but the format will be described here for any potential third-party applications. Note that this file format may be subject to change, especially after my graduation.

64 bits => Length of the entire header in bytes.

64 bits => Amount of procedure descriptors.

64 bits => Length of the procedure descriptors in bytes.

N bits => An array of procedure descriptors. Code here. Name must be followed by a null terminator.

64 bits => Amount of foreign imports.

64 bits => Length of the foreign imports in bytes.

N bits => An array of foreign import names. The names are null-terminated strings.

64 bits => Amount of data descriptors.

64 bits => Length of the data descriptors in bytes.

N bits => An array of data descriptors. Code here.

64 bits => Length of read-only data in bytes. Though this CAN be computed by subtracted an offset from the header length and a u64, this is kept here for consistency and ease of use.

N bits => An array of bytes for the read-only data.

64 bits => Length of the binary.

N bits => The executable binary.

Instructions

This will be done after the instructions have been finalized, but the instructions with full documentation can be found here!

About

A type-agnostic virtual machine built for simplicity of targeting

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published