Managing outdated pull requests is time-consuming. Mergify's Merge Queue automates your pull request management & merging. It's fully integrated to GitHub & coordinated with any CI. Start focusing on code. Try Mergify for free. Learn more →
Cwerg Alternatives
Similar projects and alternatives to Cwerg
-
mir
A lightweight JIT compiler based on MIR (Medium Internal Representation) and C11 JIT compiler and interpreter based on MIR
-
-
Sonar
Write Clean Python Code. Always.. Sonar helps you commit clean code every time. With over 225 unique rules to find Python bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.
-
bluebird
A work-in-progess programming language modeled after Ada and C++ (by csb6)
-
-
asmdb
Instructions database and utilities for X86/X64 and ARM (THUMB/A32/A64) architectures.
-
-
InfluxDB
Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
-
mass
A compiler for a new language focusing on compile-time execution and no LLVM dependency.
-
-
-
-
-
The-Spiral-Language
Functional language with intensional polymorphism and first-class staging.
-
ric-script
A modern scripting language; implemented in old school C, yacc & flex
-
-
-
-
-
awesome-low-level-programming-languages
A curated list of low level programming languages (i.e. suitable for OS and game programming)
-
star
An experimental programming language that's made to be powerful, productive, and predictable (by ALANVF)
-
Mergify
Tired of breaking your main and manually rebasing outdated pull requests?. Managing outdated pull requests is time-consuming. Mergify's Merge Queue automates your pull request management & merging. It's fully integrated to GitHub & coordinated with any CI. Start focusing on code. Try Mergify for free.
Cwerg reviews and mentions
-
Where can I find resources and guides on how to build compiler backends?
Cwerg has backend that can be used as JIT and is written with readability in mind. Additional documentation can be found here: https://github.com/robertmuth/Cwerg/tree/master/Docs
- Most important language features not touched in the book "Crafting Interpreters"?
-
How do you design a compiler and a language?
entire compiler front end ast nodes
-
Syntax Design
I was also going down the path of bike shedding concrete syntax for my language Cwerg before pulling the plug on that effort and just using s-exprs. I managed to make the s-expr quite succinct by carefully choosing the order of arguments so I can omit optional ones. Also very helpful was to use square brackets for list, e.g. (call fun-name [arg1 arg2]). This simplifies parsing a little bit and is easier on the eye. Here are some Code Examples
-
November 2022 monthly "What are you working on?" thread
I am iterating over the languages features for Cwerg's Frontend which aims to be a low level language with about the complexity of C but with some of the comforts of modern languages. I am especially happy with the choice of adding sum types. Relative to C the current feature set looks like this: Removed: * arrays decay to pointers * bitfields * separate compilation (more of a backend issue) * pre-processor * varargs * implcit type conversions * (untagged) unions * ++/-- * comma operator * implicitly nullable pointers * goto
- Features Compendium
-
October 2022 monthly "What are you working on?" thread
Current work is focused on finding the right feature set. After spending way too much time on thinking about a concrete syntax I decided to instead work on the AST and use S-Expr to serialize it. I plan on sticking with the S-Expr as the "file format" and offer tooling to go back and forth to the yet to be defined concrete syntax.
-
How hard is it to add JIT to an interpreter?
Shameless plug: Cwerg can be used as a JIT for x86-64, Aarch64 and Arm32.
-
Assemblers and linkers resources
You can find the code at Cwerg
-
Is Optimisation Overrated?
Shameless plug: Cwerg is aiming for that niche
-
A note from our sponsor - Mergify
blog.mergify.com | 24 Sep 2023
Stats
robertmuth/Cwerg is an open source project licensed under Apache License 2.0 which is an OSI approved license.
The primary programming language of Cwerg is Python.