Arx is a compiler built with llvm
Project description
ArxLang
Arx is a multi-purpose compiler that aims to provide Apache Arrow datatypes as native datatypes. It uses the power of LLVM to provide multi-architecture machine target code generation.
The language syntax is influenced by Python, C++, and YAML, featuring significant whitespace, static typing (planned), and a focus on data-oriented computing.
Quick Example
```
title: Quick average example
summary: Demonstrates a function with module and function docstrings.
```
fn average(x: f32, y: f32) -> f32:
```
title: average
summary: Returns the arithmetic mean of x and y.
```
return (x + y) * 0.5
arx --show-llvm-ir examples/average.x
See the Getting Started guide for installation and more examples. For language details, see the Library Reference.
Architecture Boundary
Arx is the surface-language front end. It owns source syntax, lexing, parsing,
CLI flow, tests, examples, and docs. IRx owns the AST model (irx.astx),
semantic analysis, lowering, and backend code generation. When a new feature
needs AST or lowering support, that support should be added in IRx first and
then consumed from Arx.
Key Features
- LLVM-powered -- compiles to native machine code via LLVM
- Python-like syntax -- indentation-based blocks, familiar keywords
- Apache Arrow datatypes -- native Arrow type support (planned)
- Multiple output modes -- inspect tokens, AST, LLVM IR, or compile to object files
Project Status
Arx is currently a prototype built on the
Kaleidoscope tutorial compiler. It supports
functions, control flow (if/else, for), variables, and extern
declarations. See the Roadmap for what's planned next.
Arx Enhancement Proposals
Any change to the language syntax should be done using an Enhancement Proposal via the arx-proposals repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arxlang-0.8.0.tar.gz.
File metadata
- Download URL: arxlang-0.8.0.tar.gz
- Upload date:
- Size: 37.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.4 CPython/3.10.20 Linux/6.17.0-1010-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daadfe85e7f722399e5a2cff63475c7fc0639fe738bd4a53feaa4bd9091137e5
|
|
| MD5 |
27448d8cfd5aa32d617f835be78864ca
|
|
| BLAKE2b-256 |
3b9c9128272ef8de8f592ba5d946abd8a3f4303d237fe8bab15372224cc36828
|
File details
Details for the file arxlang-0.8.0-py3-none-any.whl.
File metadata
- Download URL: arxlang-0.8.0-py3-none-any.whl
- Upload date:
- Size: 41.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.4 CPython/3.10.20 Linux/6.17.0-1010-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa2ac652c63e75c62408ef285a1038858f7c0e4b129ef39d266744518007807d
|
|
| MD5 |
2c55dbf28312d00ed1b0ec1e7bb9f062
|
|
| BLAKE2b-256 |
29d53cbb9c53792620c92a7e561bd897062e71cca2108e89989673c24e7e49e5
|