cranelift-jit-demo VS lineiform

Compare cranelift-jit-demo vs lineiform and see what are their differences.

cranelift-jit-demo

JIT compiler and runtime for a toy language, using Cranelift (by bytecodealliance)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
cranelift-jit-demo lineiform
8 8
603 155
3.2% -
3.5 0.0
10 months ago about 1 year ago
Rust Rust
Apache License 2.0 -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

cranelift-jit-demo

Posts with mentions or reviews of cranelift-jit-demo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-19.
  • Allocating Heap with Cranelift
    3 projects | /r/rust | 19 Jan 2023
    I'm working on a small stack-based programming language. I'm currently at a stage where I'm trying to compile it using Cranelift. Altrough the Cranelift documentation is extensive, I'm lacking a broader picture on how to approach some things like heap-allocations and stack-management. The only example project I found are cranelift-jit-demo and this wonderful post.
  • JITting functions in Rust for runtime performance flexibility
    4 projects | /r/rust | 16 Dec 2022
    First, it's much easier than you think, I swear. I strongly suggest that you start with the cranelift JIT toy language demo, it has everything that you need to get started.
  • We're working on a new WASM/Rust scripting system. Here I'm playing around with a script that changes the day/night cycle.
    5 projects | /r/rust_gamedev | 29 Sep 2022
    Fyi I've checked a few (from here; https://github.com/appcypher/awesome-wasm-langs): - assembly script complier is written is typescript/javascript and in theory could be compiled to wasm, and hence could be embedded, but it is only theory as noone has managed to complete this flow - rust-driver requires the linker and calls it as an external tool to link the rustcore to the user code. without the core lib i could not manage to create anything usable. - zig (somewhat similar to rust): on discord some experr said it cannot be embedded and he see no option/plan for it. - lua: they have lua runtime running in wasm, but no transpiller to wasm I've also checked a few other without any success and closest I coild get was the example language for cranelift (https://github.com/bytecodealliance/cranelift-jit-demo)
  • Rust libraries to build a compiler for my language?
    3 projects | /r/rust | 21 Aug 2022
    JITs are somehow more tricky and differ in the a few points including: a) Codegen is much more time critical. b) JITs must know what's allready generated and what isn't. c) JITs often rely on informations only generated at runtime and must respond to that. See here for a JIT example witten with cranelift: https://github.com/bytecodealliance/cranelift-jit-demo.
  • What is a really cool thing you would want to write in Rust but don't have enough time, energy or bravery for?
    21 projects | /r/rust | 8 Jun 2022
    You could also try Cranelift. The resulting code isn't as optimized as with LLVM, but it's faster and pleasant to use (and is written in Rust).
  • How to write a compiler or interpreter in rust
    8 projects | /r/rust | 26 Dec 2021
    Backend IRs for code generation: - Cranelift (see https://github.com/bytecodealliance/cranelift-jit-demo as well as the messages on the Zulip chat if you get stuck)
  • So about the right way to write an interpreter
    5 projects | /r/rust | 10 May 2021
    As for LLVM, I'm not sure if there are any tutorials but I would really advise writing a bytecode interpreter first, unless you already have some grasp of assembly. However, this repository: https://github.com/bytecodealliance/cranelift-jit-demo is really great for learning cranelift which is essentially an LLVM alternative.
  • Cranelift, Part 2: Compiler Efficiency, CFGs, and a Branch Peephole Optimizer
    1 project | news.ycombinator.com | 20 Feb 2021
    It was mainly built for wasm compilation. So no it is not married to rust. https://github.com/bytecodealliance/cranelift-jit-demo

lineiform

Posts with mentions or reviews of lineiform. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-16.
  • JITting functions in Rust for runtime performance flexibility
    4 projects | /r/rust | 16 Dec 2022
    Sounds similar to lineiform. Which isn't all that stable or actively developed, but it is a cute approach to writing a meta-jit in rust. It's a weird approach, but IMO it's worth more experimentation.
  • What’s everyone working on this week (9/2022)?
    10 projects | /r/rust | 27 Feb 2022
    Working on Lineiform, my meta-JIT library, some more.
  • Lineiform, a meta-JIT library for Rust interpreters
    1 project | /r/rust | 17 Feb 2022
    In response to Cranelift, switching to my own Tangle IR won't be using Cranelift at all (it uses raw dynasm-rs for emitting instructions). I go into a bit in https://github.com/chc4/lineiform/issues/19, but Cranelift specifically has some rules about iflags, the type they use to conceptualize processor flags effects (e.g. add's carryout or overflow). You can only have one iflags value live at a time, and it can't overlap with any other math operation. This is a problem because the x86 we're lifting doesn't always follow that rule, so if we just emit Cranelift as we go it will panic and say we built an invalid function.
    2 projects | news.ycombinator.com | 15 Feb 2022
    I go into a bit in https://github.com/chc4/lineiform/issues/19, but it's less a problem with its optimizer and more a problem with its IR constraints. Cranelift specifically has some rules about `iflags`, the type they use to conceptualize processor flags effects (e.g. add's carryout or overflow). You can only have one `iflags` value live at a time, and it can't overlap with any other math operation. This is a problem because the x86 we're lifting doesn't always follow that rule, so if we just emit Cranelift as we go it will panic and say we built an invalid function.

    The iflags design in general is kinda awkward too, and was being rethought a few months ago when I was first getting this working; I think they're planning on redesigning the add carryout interface and things to be slightly more streamlined. I suspect that any redesigned interface will have similar problems with mismatch between what I want from Cranelift and what 90% of other uses of Cranelfit want, though, and so I decided to just make my own IR instead.

  • What's everyone working on this week (3/2022)?
    7 projects | /r/rust | 17 Jan 2022
    Working on the codegen backend for Lineiform again. I sketched out a plan on how to implement register allocation in a way that hopefully doesn't have horrible behavior in the majority of cases, and implemented ~half of it last week, and hopefully I'll implement the other half and instruction scheduling this week.
  • HN: == Happy New Year HN == (What is your “plans” for the new year?)
    2 projects | news.ycombinator.com | 31 Dec 2021
    Yup, https://github.com/chc4/lineiform. It's not usable at all yet - I was building it on top of Cranelift, which turned out to be a fairly bad idea, so I'm going to have to essentially rewrite all of it with my own codegen backend I think. I've been hacking on it on and off but it's been much slower progress due to work (and writing a codegen backend is hard...)
  • What's everyone working on this week (32/2021)?
    7 projects | /r/rust | 9 Aug 2021
    I got struck by either a very dumb or very good idea a few days ago, and finally have a working (minimal) proof-of-concept for it: Lineiform is a meta-JIT library to nearly automatically get an optimizing method JIT from a Rust interpreter. It does dynamic recompilation on closures by lifting from x86 to Cranelift IR for runtime function inlining and constant propagation.

What are some alternatives?

When comparing cranelift-jit-demo and lineiform you can also consider the following projects:

crafting-interpreters-rs - Crafting Interpreters in Rust

soundfingerprinting - Open source audio fingerprinting in .NET. An efficient algorithm for acoustic fingerprinting written purely in C#.

rustc_codegen_cranelift - Cranelift based backend for rustc

Nova - Implementation of "Ray Tracing in One Weekend": https://raytracing.github.io/books/RayTracingInOneWeekend.html

slang-v2 - Simple scripting language interpreter

augmented-audio - Rust - Augmented Audio Libraries

rust-langdev - Language development libraries for Rust

uom - Units of measurement -- type-safe zero-cost dimensional analysis

coq2rust - Coq to Rust program extraction. The whole tree is on the original Coq code base.

indicatif - A command line progress reporting library for Rust

wasmtime - A fast and secure runtime for WebAssembly

football-simulator - Football simulation engine (like Football Manager) written in pure Rust