about summary refs log tree commit diff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Codegen: Fix verifier errors and ensure verifier runsBaitinq2025-02-041-7/+16
|
* Codegen: Prepare for module verifyingBaitinq2025-02-041-0/+3
|
* Codegen: Support recursive functionsBaitinq2025-02-041-12/+19
|
* Codegen: Add errdefers for debuggingBaitinq2025-02-021-0/+6
|
* Codegen: Support mul,div,sub and cmpBaitinq2025-02-021-3/+50
|
* Codegen: Support if statementsBaitinq2025-02-021-0/+23
|
* Codegen: Handle function parametersBaitinq2025-02-011-6/+24
|
* Codegen: Start handling global variablesBaitinq2025-01-311-3/+10
|
* Codegen: Fix function as variablesBaitinq2025-01-311-8/+75
|