about summary refs log tree commit diff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* Feature: Add basic support for pointer references and dereferencesBaitinq2025-03-293-15/+56
* Codegen: Support void typeBaitinq2025-03-261-0/+1
* Tokenizer: Support newlines and tabs for stringsBaitinq2025-03-262-5/+23
* Feature: Add basic support for varargsBaitinq2025-03-251-1/+6
* Feature: Add "proper" pointer typesBaitinq2025-03-242-1/+16
* Feature: Add initial support for pointersBaitinq2025-03-242-21/+6
* Feature: Add support for stringsBaitinq2025-03-244-89/+83
* Parser: Fix ambiguity with symbol declarationBaitinq2025-03-232-13/+27
* Feature: Add initial support for linking external symbolsBaitinq2025-03-222-1/+35
* Misc: Improve error handlingBaitinq2025-03-212-5/+5
* Codegen: Support functions as return valuesBaitinq2025-03-201-11/+62
* Codegen: Fix printing of llvm error messagesBaitinq2025-03-121-8/+11
* simplifyBaitinq2025-03-121-133/+126
* Merge branch 'master' into native-llvmBaitinq2025-03-124-132/+120
|\
| * Codegen: Fix bug with functions without nameBaitinq2025-03-111-2/+3
| * Codegen: Fix bug with if statements inside while loopsBaitinq2025-03-091-5/+3
| * Feature: Add support for mod operatorBaitinq2025-03-094-14/+41
| * Feature: Add support for GT and LT operatorsBaitinq2025-03-083-78/+45
| * Codegen: Fix bug with recursive functions as variablesBaitinq2025-03-081-19/+15
| * Codegen: Use alternative way of knowing if we should load function before callBaitinq2025-03-081-3/+1
| * Codegen: Fix llvm codegen in macosBaitinq2025-03-041-2/+1
| * Codegen: Fix llvm compilation in macosBaitinq2025-03-041-10/+12
* | Codegen: add bundled llvmBaitinq2025-03-041-14/+22
|/
* Codegen: Initialize all llvm targetsBaitinq2025-03-041-5/+8
* Codegen: CleanupBaitinq2025-02-251-6/+5
* Codegen: Support functions as function paramsBaitinq2025-02-232-29/+90
* Misc: Fix llvm error message cleanupBaitinq2025-02-221-1/+1
* Parser: Add proper support for type parsingBaitinq2025-02-162-16/+91
* Codegen: support bool typeBaitinq2025-02-151-5/+7
* Codegen: start supporting types for function paramsBaitinq2025-02-152-1/+9
* Codegen: depend on libc for entrypointBaitinq2025-02-151-21/+0
* Codegen: print verification messageBaitinq2025-02-151-1/+4
* Feature: Introduce initial support for function return typesBaitinq2025-02-152-2/+14
* Codegen: Fix bug when reassigning variablesBaitinq2025-02-141-2/+8
* Codegen: CleanupBaitinq2025-02-131-62/+42
* Misc: Cleanup commentsBaitinq2025-02-121-3/+0
* Codegen: Properly support global varsBaitinq2025-02-121-2/+18
* Codegen: Fix bug with function as variablesBaitinq2025-02-121-2/+0
* Codegen: Dont alloca for function definitionsBaitinq2025-02-121-1/+1
* Codegen: Fix generating function paramsBaitinq2025-02-121-7/+21
* Misc: Add TODOsBaitinq2025-02-111-0/+3
* Codegen: Fix generating binop expressionsBaitinq2025-02-111-12/+16
* Codegen: Fix generating unary expressionsBaitinq2025-02-111-10/+24
* Codegen: Fix generating equality expressionsBaitinq2025-02-111-4/+11
* Evaluator: Add "printb" functionBaitinq2025-02-101-1/+1
* Codegen: Implement while statement and fix additionBaitinq2025-02-101-8/+41
* Codegen: Fix SSA variable declarationBaitinq2025-02-101-15/+35
* Codegen: Random fixesBaitinq2025-02-051-4/+2
* Codegen: "Support" booleansBaitinq2025-02-041-27/+95
* Codegen: Support anonymous functionsBaitinq2025-02-041-8/+14