ravi-compiler VS pl0c

Compare ravi-compiler vs pl0c and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
ravi-compiler pl0c
2 5
63 122
- -
0.0 0.0
over 1 year ago over 2 years ago
C C
GNU General Public License v3.0 or later ISC License
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.

ravi-compiler

Posts with mentions or reviews of ravi-compiler. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-12-16.

pl0c

Posts with mentions or reviews of pl0c. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-02.
  • The Super Tiny Compiler
    3 projects | news.ycombinator.com | 2 Mar 2023
    > Some compilers tokenize while parsing, but for a different reason: it's faster and uses less memory to generate the AST

    And some don't even generate an AST. :) Just read in and emit or interpret.

    https://briancallahan.net/blog/20210814.html

  • single pass compilers (basic questions)
    3 projects | /r/Compilers | 20 Feb 2022
    Single-pass compiler tutorial
  • Compiler tutorials.
    4 projects | /r/C_Programming | 9 Feb 2022
    Let's Write a Compiler
  • Let's write a compiler, part 3: A parser
    4 projects | news.ycombinator.com | 16 Aug 2021
    I don’t think there will be an AST. https://briancallahan.net/blog/20210814.html: “We will be writing a single-pass compiler for a simple language and immediately output our final output code as soon as our compiler has enough information to do so”

    That “as soon as” implies code will be generated before the entire program has been parsed.

    Also, for me single-pass implies “no AST”, as you would need at least one pass to construct one, and iterating over an AST counts as another pass for me.

What are some alternatives?

When comparing ravi-compiler and pl0c you can also consider the following projects:

lua-aot-5.4 - An ahead-of-time compiler for Lua 5.4

cproc - C11 compiler (mirror)

mir - A lightweight JIT compiler based on MIR (Medium Internal Representation) and C11 JIT compiler and interpreter based on MIR

pegasus - A parser generator for C and Crystal.

ocean - Programming language that compiles into a x86 ELF executable.

honey-potion - Writing eBPF programs with Elixir!

ExprTK - C++ Mathematical Expression Parsing And Evaluation Library https://www.partow.net/programming/exprtk/index.html

Understanding-Unix-Linux-Programming - Source code of Understanding Unix/Linux Programming. The book provides example code in C, I would like to replicate it in Rust.

stutter - Implement a Lisp, in C, from scratch, no libs

swifties - a custom language construction kit

ravi - Ravi is a dialect of Lua, featuring limited optional static typing, JIT and AOT compilers

mini-c - Dr Strangehack, or: how to write a self-hosting C compiler in 10 hours