Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshuawills/x-compiler
Compiler for 'X' language, utilising LLVM IR as target code
https://github.com/joshuawills/x-compiler
compiler java llvm programming-languages
Last synced: 23 days ago
JSON representation
Compiler for 'X' language, utilising LLVM IR as target code
- Host: GitHub
- URL: https://github.com/joshuawills/x-compiler
- Owner: joshuawills
- License: mit
- Created: 2024-04-29T14:28:31.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-17T03:21:38.000Z (3 months ago)
- Last Synced: 2024-10-15T17:37:28.462Z (23 days ago)
- Topics: compiler, java, llvm, programming-languages
- Language: Java
- Homepage:
- Size: 3.5 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# The X-Compiler
https://x-compiler.com/
This is a revamped version of the [old XY Compiler](https://github.com/joshuawills/XY-Compiler) that I decided to
rewrite after learning more formal compiler development theory.The language is a mix of C and Rust syntax, taking features I like from both.
At the moment the language is quite primitive. However, it has a strong foundation, and I have a clear vision
of where to take it. Around 70% of compilation time is currently delegated to Clang's backend work on my
LLVM output. A significant future improvement I am considering is a port over to generating native assembly code, x86_64
to start with. However, I will continue generating LLVM IR for the time being given its simplicity.