The Sora project aims to create a compiled programming language with a "trust the programmer" kind of mindset but with a modern syntax and some features such as non-nullable references, built-in optional types, pattern matching and type inference.
Note: This is a personal project that I do for learning purposes. It is not intended for widespread or production use.
- Learn more about SSA/Basic-Block Intermediate Representations
- Learn more about LLVM IR generation
- Learn more about compilers (their internals and the compilation process) and compiler runtimes.
Currently, Sora is still in its infancy. Nothing is really working yet.
Note: For the actual language features roadmap see doc/roadmap
- ✅ Common (Note: This module grows as needed. It's a constant work in progress. This only enumerates the most important parts of this module)
- ✅ Diagnostic Engine
- ✅ Source Manager
- ✅ Lexer
- ✅ AST
- ✅ Parser
- ✅ Semantic Analysis (Sema)
- ⌛ IR
- ⌛ IR Generation (IRGen)
- ❌ IR Optimization & Analysis (advanced & flow-sensitive semantic analysis) (IROpt)
- ❌ IR Lowering to LLVM IR (LLVMGen)