1 रिपॉजिटरी
The process of translating high-level source code into an intermediate bytecode representation.
Distinct from Source-to-Bytecode Compilers: Focuses on the resulting architectural representation rather than the specific compiler implementation details.
Explore 1 awesome GitHub repository matching programming languages & runtimes · Bytecode Compilation. Refine with filters or upvote what's useful.
Tengo is a dynamic, embeddable scripting language for Go applications that allows for the execution of custom scripts without requiring the host binary to be recompiled. It operates as a bytecode-compiled virtual machine, transforming source code into a compact intermediate representation for execution on a stack-based engine. The system is designed as a secure scripting sandbox, enforcing strict limits on memory allocation and execution time to safely run untrusted code. It supports concurrent script execution by cloning compiled bytecode and using recursive immutability conversion to share
Transforms source code into a compact intermediate representation to enable efficient execution on a virtual machine.