1 repository
Interpreters that use abstract syntax trees which evolve and specialize over time to enable JIT optimization.
Distinct from Tree-Walking Interpreters: Focuses on the self-modifying nature of the AST for optimization, rather than simple tree-walking execution.
Explore 1 awesome GitHub repository matching software engineering & architecture · Self-Modifying ASTs. Refine with filters or upvote what's useful.
GraalVM is a polyglot virtual machine and high-performance runtime designed to execute multiple programming languages within a single environment. It functions as a JVM language toolkit for building language implementations, a native image compiler for transforming bytecode into standalone binaries, and an execution environment for LLVM bitcode and WebAssembly modules. The project is distinguished by its polyglot interoperability framework, which allows different languages to share data and execution state with low overhead. It utilizes self-modifying abstract syntax trees to optimize languag
Uses self-modifying abstract syntax trees to optimize language interpreters into high-performance machine code.