about summary refs log tree commit diff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Misc: Fix incorrect codegen error logBaitinq2025-01-301-11/+13
|
* Codegen: Fix bug calling printfBaitinq2025-01-301-7/+6
|
* Codegen: Get addition kind of workingBaitinq2025-01-301-6/+10
|
* Codegen: CleanupBaitinq2025-01-302-62/+58
|
* Examples: Fix example 2Baitinq2025-01-301-0/+1
|
* Codegen: Support function calls in return statementBaitinq2025-01-303-10/+9
|
* Codegen: Get function declaration/calling kind of workingBaitinq2025-01-301-23/+38
|
* Codegen: Support identifiers in return expressionsBaitinq2025-01-291-3/+7
|
* Codegen: Support variable reassignmentBaitinq2025-01-292-39/+23
|
* Codegen: Get variable declarations kind of workingBaitinq2025-01-291-18/+37
|
* Codegen: Get printf workingBaitinq2025-01-281-5/+42
|
* Codegen: CleanupBaitinq2025-01-271-7/+6
|
* Codegen: Get the most basic ever example compilingBaitinq2025-01-272-16/+73
|
* Codegen: Start working on actual AST codegenBaitinq2025-01-272-14/+70
|
* Codegen: PoC use _startBaitinq2025-01-271-1/+1
|
* Codegen: PoC hello worldBaitinq2025-01-261-0/+13
|
* Codegen: PoC cleanupBaitinq2025-01-262-29/+38
|
* Misc: get llvm compilation kind of workingBaitinq2025-01-241-3/+35
|
* Misc: Add example llvm codeBaitinq2025-01-232-1/+41
|
* Misc: Create codegen stubBaitinq2025-01-231-0/+4
|
* Feature: Support calling funtion definitionsBaitinq2025-01-232-14/+39
|
* Sync grammarBaitinq2025-01-231-1/+1
|
* Parser: Add check so that we don't access arraylist out of boundsBaitinq2025-01-231-1/+1
|
* Tokenizer: Add initial version of location computationBaitinq2025-01-231-4/+27
|
* Parser: Improve error reportingBaitinq2025-01-231-15/+18
|
* Misc: Rename allocatorBaitinq2025-01-233-34/+32
|
* Parser: Better functions as valuesBaitinq2025-01-231-5/+6
|