about summary refs log tree commit diff
path: root/src/codegen.zig (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Codegen: Initialize all llvm targetsBaitinq2025-03-041-5/+8
|
* Codegen: CleanupBaitinq2025-02-251-6/+5
|
* Codegen: Support functions as function paramsBaitinq2025-02-231-28/+89
|
* Misc: Fix llvm error message cleanupBaitinq2025-02-221-1/+1
|
* Parser: Add proper support for type parsingBaitinq2025-02-161-7/+23
|
* Codegen: support bool typeBaitinq2025-02-151-5/+7
|
* 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-151-1/+7
|
* 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
|
* 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
|
* Codegen: Fix bug calling printfBaitinq2025-01-301-7/+6
|
* Codegen: Get addition kind of workingBaitinq2025-01-301-6/+10
|
* Codegen: CleanupBaitinq2025-01-301-61/+55
|
* Examples: Fix example 2Baitinq2025-01-301-0/+1
|
* Codegen: Support function calls in return statementBaitinq2025-01-301-6/+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-291-37/+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-271-14/+71
|
* Codegen: Start working on actual AST codegenBaitinq2025-01-271-8/+46
|
* Codegen: PoC use _startBaitinq2025-01-271-1/+1
|
* Codegen: PoC hello worldBaitinq2025-01-261-0/+13
|
* Codegen: PoC cleanupBaitinq2025-01-261-28/+35
|