You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 8, 2021. It is now read-only.
First pipeline is intended for users who want to instantly run program or want to embed Waffle into their programs.
Second one is for mobile devices and when you want to have executable file instead of bytecode file.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Current execution pipeline looks like this:
AST->Bytecode->Interpreter->FullCodegen JIT
In new pipeline we should try to create size optimized bytecode and new fast interpreter:
AST->Bytecode->Interpreter->FullCodegen JIT->MIR->LIR-> Fusion JIT
AST->Bytecode->MIR->LIR->CraneliftIR->Binary output
First pipeline is intended for users who want to instantly run program or want to embed Waffle into their programs.
Second one is for mobile devices and when you want to have executable file instead of bytecode file.
The text was updated successfully, but these errors were encountered: