This repository hosts a dynamically typed language, its compiler, and VM.
Everything is still in flux, and many interesting features are not yet implemented (see issues), but it can already execute some basic code:
```rust use hebi::Hebi;
let hebi = Hebi::new();
// prints 2
println!("{}", hebi.eval::
hebi.eval::<()>( r#" class Test: v = 10 fn test(self): print self.v
t := Test(v=100) t.test() # prints 100 t.v = 20 t.test() # prints 20 "#, ) .unwrap(); ```
A general overview of the language's currently implemented syntax and semantics is available in the design file. To see more examples, visit src/tests or samples[^1].
The language also has a REPL at cli:
``` $ cargo run -p cli Hebi REPL v0.0.0 Press CTRL-D to exit
```
All you need to contribute is a recent version of the Rust compiler. See Getting Started for how to obtain it.
Other tooling that is highly recommended: - rust-analyzer, a Rust language server for your editor of choice - clippy, a helpful linter - just, which is used to run various commands
src
- The core crate, containing the runtime (bytecode compiler, register allocator, value representation, virtual machine).
op
- Bytecode instruction definitions, which define the fine-grained operations that the virtual machine may perform.isolate
- The virtual machine, which implements the operations defined by op
.value
- Hebi's Value implementation, which is how the virtual machine represents values at runtime.emit
- The bytecode compiler, which transforms an AST to executable bytecode.tests
- End-to-end tests of the full evaluation pipeline (Code -> AST -> Bytecode -> Output
).crates
- Parts of the compiler which may be useful for building other tools, such as formatters, linters, and language servers.
span
- Span implementation. Spans are how the compiler represents locations in code.syntax
- The lexer, parser, and AST. This crate accepts some text input, and outputs a structured representation of valid code, or some syntax errors.diag
- Diagnostic tools for reporting useful errors to users.derive
- (WIP) Derive macros for easily exposing Rust functions and objects to the runtime.The main goal is to have a reasonably feature-full language with simple (as in, can fit in a single person's head), unsurprising semantics that's easily embeddable within a Rust program. It isn't a priority for it to be a standalone, general-purpose language, but it isn't out of the question.
The language design is heavily inspired by Python. Hebi blatantly copies most of Python's syntax, and a lot of the semantics, but some parts have been removed, or changed. Python is very difficult to optimize, and has many quirks which make it unsuitable for embedding within another program.
The implementation borrows a lot of ideas from V8. Ideas shamelessly stolen include: - Bytecode encoded with variable-width operands using a prefix opcode. This means there is no limit to the number of variables or constants in a function, the maximum distance of a jump, etc. It also results in very compact bytecode. - An implicit accumulator to store temporary values. This greatly reduces call frame sizes and the number of register moves. It also helps make the bytecode more compact, because every instruction operating on two or more registers now needs one less register operand. - Function calling convention which copies arguments into the new call frame, instead of referencing them directly. This opens up the implementation space for stackless coroutines. - Module variables on top of globals. This allows for a clear separation of concerns into different modules, as functions declared in different modules may not access the variables in each others' global scopes, unless they are explicitly imported.
Currently, the VM uses reference counting as its garbage collection strategy, but the plan is to implement a tracing garbage collector at some point. Some possible approaches are described in LuaJIT's wiki.
I thought it was appropritate, because the language is in the Python family, and Hebi (蛇) means snake in Japanese.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.