about summary refs log tree commit diff
path: root/src/bootstrap (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bootstrap: Support additionBaitinq2025-07-112-0/+50
|
* Bootstrap: Support variable assignmentBaitinq2025-07-111-3/+48
|
* Bootstrap: Support while loopsBaitinq2025-07-092-2/+92
|
* Bootstrap: Support unary expressionsBaitinq2025-07-092-0/+50
|
* Bootstrap: Support equality expressionsBaitinq2025-07-093-6/+170
|
* Bootstrap: Support if statementBaitinq2025-07-093-1/+94
|
* Bootstrap: Codegen: Support char typesBaitinq2025-07-072-1/+23
|
* Bootstrap: Codegen: Support bool typesBaitinq2025-07-073-0/+36
|
* Boostrap: Codegen function definition argumentsBaitinq2025-07-063-9/+47
|
* Boostrap: Improve codegen for function declaration (starting to work on params)Baitinq2025-07-061-1/+32
|
* Boostrap: Improve parser and codegen function calls valuesBaitinq2025-07-062-3/+98
|
* Boostrap: Get printf workingBaitinq2025-07-051-1/+1
|
* Boostrap: Codegen for stringsBaitinq2025-07-053-1/+40
|
* Boostrap: Support basic function callsBaitinq2025-07-053-7/+74
|
* Boostrap: Support adding variables to environmentBaitinq2025-07-052-9/+48
|
* Bootstrap: Codegen: start working on function callsBaitinq2025-06-281-0/+24
|
* Bootstrap: Parser: Parse function callsBaitinq2025-06-271-3/+77
|
* boostrap: implement support for declaring extern functionsBaitinq2025-06-263-14/+230
|
* boostrap: implement enough for first example to workBaitinq2025-06-233-23/+224
|
* Misc: Rename langBaitinq2025-06-115-8/+8
|
* stdlib: Remove printlnBaitinq2025-06-114-22/+22
| | | | | varargs forwarding is platform specific with llvm, so we cannot easily have this function
* Boostrap: fix aarch64 linkingBaitinq2025-06-101-8/+0
|
* Bootstrap: Start parsing and codegen of more statementsBaitinq2025-06-102-29/+208
|
* Bootstrap: Codegen: Generate number literalsBaitinq2025-06-072-1/+67
|
* Feature: Typecheck on struct field assignmentBaitinq2025-06-063-4/+4
|
* Bootstrap: Codegen: Create bindings for llvm typesBaitinq2025-06-062-15/+21
|
* Feature: Support declaring type aliasesBaitinq2025-06-061-0/+8
|
* Bootstrap: Codegen: Continue implementationBaitinq2025-06-053-10/+42
|
* Bootstrap: Codegen: Initialize all targetsBaitinq2025-06-042-6/+260
|
* Bootstrap: Codegen: Fix memory leaksBaitinq2025-06-042-0/+3
|
* Boostrap: Codegen: Generate object fileBaitinq2025-06-042-0/+55
|
* Bootstrap: Codegen: Start implementationBaitinq2025-06-033-0/+63
|
* Bootstrap: Parser: Add enough implementation to parse example -2Baitinq2025-06-031-4/+120
|
* Bootstrap: Parser: Start implementationBaitinq2025-06-032-0/+250
|
* Bootstrap: Tokenizer: Fix tokenizing '\0' charsBaitinq2025-06-031-4/+0
|
* Codegen: Fix sizeofBaitinq2025-06-021-2/+1
|
* Bootstrap: Tokenizer: Cleanup using slicesBaitinq2025-06-022-61/+67
|
* Bootstrap: Tokenizer: Support missing token typesBaitinq2025-06-011-1/+18
|
* Boostrap: Tokenizer: Fix allocationBaitinq2025-05-312-6/+4
|
* Bootstrap: Tokenizer: Start rewriting with token typeBaitinq2025-05-311-70/+234
|
* Bootstrap: Tokenizer: Rewrite using struct instead of global valuesBaitinq2025-05-311-114/+121
|
* Bootstrap: Use arena for tokenizerBaitinq2025-05-312-16/+20
|
* Feature: Start adding structs supportBaitinq2025-05-251-0/+3
|
* Codegen: Typecheck binary expressionsBaitinq2025-05-232-22/+22
|
* Codegen: Typecheck function return types and change null typeBaitinq2025-05-221-10/+10
|
* Feature: Add more type checksBaitinq2025-05-202-23/+15
|
* Codegen: Implement proper type comparisonsBaitinq2025-05-191-1/+7
|
* Feature: Add support for !=Baitinq2025-05-191-3/+3
|
* Bootstra: Tokenizer: Allocate more memory for tokensBaitinq2025-05-181-1/+1
|
* Misc: Use println instead of printfBaitinq2025-05-182-8/+7
|