All Projects → Vexu → Arocc

Vexu / Arocc

Licence: mit
A C compiler written in Zig.

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Arocc

Patchouli Compiler
An Oberon-07 compiler for Intel 64 (AMD64) architecture
Stars: ✭ 46 (-22.03%)
Mutual labels:  compiler
8cc.go
C compiler written in Go
Stars: ✭ 52 (-11.86%)
Mutual labels:  compiler
Elchemy
Write Elixir code using statically-typed Elm-like syntax (compatible with Elm tooling)
Stars: ✭ 1,080 (+1730.51%)
Mutual labels:  compiler
Trck
Query engine for TrailDB
Stars: ✭ 48 (-18.64%)
Mutual labels:  compiler
B2dpipe
2D Pipeline Compiler.
Stars: ✭ 51 (-13.56%)
Mutual labels:  compiler
Cva
从0实现一个JVM语言Cva及教程, 目前实现编译器;
Stars: ✭ 54 (-8.47%)
Mutual labels:  compiler
U6a
Implementation of Unlambda, an esoteric programming language.
Stars: ✭ 46 (-22.03%)
Mutual labels:  compiler
Tachyon
Experimental Programming Language Coded in Python!
Stars: ✭ 58 (-1.69%)
Mutual labels:  compiler
Ikea Sharp
📦The new groundbreaking programming language
Stars: ✭ 52 (-11.86%)
Mutual labels:  compiler
I8086.js
16bit Intel 8086 / 80186 + X87 emulator written in TypeScript with REPL assembly compiler and tiny C compiler
Stars: ✭ 54 (-8.47%)
Mutual labels:  compiler
Cymbal
Yet another Rust implementation of the Monkey language from "Writing an Interpreter in Go" and "Writing a Compiler in Go"
Stars: ✭ 49 (-16.95%)
Mutual labels:  compiler
Arithmetic Circuits
Arithmetic circuits for zero knowledge proof systems
Stars: ✭ 52 (-11.86%)
Mutual labels:  compiler
Fast ber
A C++11 ASN.1 BER Encoding and Decoding Library
Stars: ✭ 54 (-8.47%)
Mutual labels:  compiler
Min
Min: Crypto Token for Beautiful and Secure Code
Stars: ✭ 48 (-18.64%)
Mutual labels:  compiler
Jhc Components
JHC Haskell compiler split into reusable components
Stars: ✭ 55 (-6.78%)
Mutual labels:  compiler
Leekscript V2
A dynamically typed, compiled just-in-time programming language used in Leek Wars' AIs
Stars: ✭ 46 (-22.03%)
Mutual labels:  compiler
Manticore
Parallel ML compiler
Stars: ✭ 52 (-11.86%)
Mutual labels:  compiler
Tiny Lisp
A tiny lisp compiler written in JS
Stars: ✭ 58 (-1.69%)
Mutual labels:  compiler
Idris Elixir
A code-generator for Idris that targets Elixir
Stars: ✭ 56 (-5.08%)
Mutual labels:  compiler
Mir
A light-weight JIT compiler based on MIR (Medium Internal Representation)
Stars: ✭ 1,075 (+1722.03%)
Mutual labels:  compiler

Aro

A C compiler with the goal of providing fast compilation and low memory usage with good diagnostics.

Right now preprocessing and parsing is mostly done but anything beyond that is missing.

#define MAIN ma##in

#ifndef FOO
int *something[5];
#endif

#if defined MAIN
int MAIN(int argc, const char *argv[]) {
    return 0;
}
#endif
var: '[5]*int'
 name: something

fn_def: 'fn (argc: int, argv: []*const char) int'
 name: main
 body:
  compound_stmt_two: 'void'
    return_stmt: 'void'
     expr:
      int_32_literal: 'int'
       value: 0
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].