| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Revert "Change `tav` to be a pointer internally" | gingerBill | 2022-12-22 | 1 | -17/+17 |
| | | | | | This reverts commit e98f1a28e68e82753728f58b3465793192b74f9d. | ||||
| * | Change `tav` to be a pointer internally | gingerBill | 2022-12-22 | 1 | -17/+17 |
| | | |||||
| * | Remove dead code in the compiler | gingerBill | 2022-12-18 | 1 | -10/+0 |
| | | |||||
| * | `gb_internal` LLVM backend | gingerBill | 2022-12-18 | 1 | -45/+45 |
| | | |||||
| * | Fix type for split returns code | gingerBill | 2022-11-24 | 1 | -1/+1 |
| | | |||||
| * | Basic copy elision support for multiple return values | gingerBill | 2022-11-24 | 1 | -24/+24 |
| | | |||||
| * | Clean up `return` logic for split multiple return ABI experiment | gingerBill | 2022-11-23 | 1 | -37/+57 |
| | | |||||
| * | Basic support for new ABI experiment on Win64 | gingerBill | 2022-11-23 | 1 | -3/+21 |
| | | |||||
| * | Remove copy elision code | gingerBill | 2022-11-22 | 1 | -33/+0 |
| | | |||||
| * | Add minor optimization for `lb_map_cell_index_static` | gingerBill | 2022-11-11 | 1 | -3/+11 |
| | | |||||
| * | Fix `for in` for `map` | gingerBill | 2022-11-08 | 1 | -2/+2 |
| | | |||||
| * | Allow for `-use-static-map-calls` which generates a get procedure per `map`; ↵ | gingerBill | 2022-11-08 | 1 | -10/+16 |
| | | | | | add `runtime.map_get` | ||||
| * | Support `for in` loops for `map` | gingerBill | 2022-11-08 | 1 | -7/+23 |
| | | |||||
| * | General modifications | gingerBill | 2022-11-08 | 1 | -13/+94 |
| | | |||||
| * | Fix #1435 type switch statements of empty union types | gingerBill | 2022-09-17 | 1 | -3/+14 |
| | | |||||
| * | Fix #2000 - allow #soa array iteration by pointer | gingerBill | 2022-09-01 | 1 | -1/+1 |
| | | |||||
| * | Fix #2002 (allow `array *= matrix`) | gingerBill | 2022-09-01 | 1 | -1/+11 |
| | | |||||
| * | Correct max alignment handling throughout the llvm backend | gingerBill | 2022-08-24 | 1 | -1/+1 |
| | | |||||
| * | using correct type for val1 | Ian Lilley | 2022-08-15 | 1 | -1/+1 |
| | | |||||
| * | removed unnecessary ternary | Ian Lilley | 2022-08-11 | 1 | -2/+2 |
| | | |||||
| * | fixed debug symbols for range interval | Ian Lilley | 2022-08-03 | 1 | -11/+14 |
| | | |||||
| * | Force memset instead of store zeroinitializer when the value is large | gingerBill | 2022-07-24 | 1 | -1/+2 |
| | | |||||
| * | Fix debug info for type switch variable to be only visible in correct switch ↵ | Fabian Sperber | 2022-07-19 | 1 | -2/+7 |
| | | | | | | | case - use correct scopes for type switch | ||||
| * | Fix loop var (init) becoming hidden while stepping on the for-line | Fabian Sperber | 2022-07-19 | 1 | -2/+8 |
| | | | | | | - set debug location of jumps between block (similar to clang to the location of 'for') - extend scope range to include all parts of the for-stmt | ||||
| * | Integrate numerous debug fixes from #1877 | gingerBill | 2022-07-18 | 1 | -5/+3 |
| | | |||||
| * | Fix issue #1592 "LLVM code gen error when using a constant in an if" | gitlost | 2022-03-18 | 1 | -1/+4 |
| | | | | | | | | Changes lb_build_if_stmt() to return null lbValue if condition is cmpAnd, cmpOr or non-const neg and check in lb_build_if_stmt() to avoid short circuiting if that's the case Adds test to "tests/issues" and adds step in CI to check this dir | ||||
| * | Add `#no_type_assert` and `#type_assert` to disable implicit type assertions ↵ | gingerBill | 2022-01-27 | 1 | -0/+7 |
| | | | | | with `x.(T)` | ||||
| * | Remove unused lbDefer kind | gingerBill | 2022-01-15 | 1 | -4/+0 |
| | | |||||
| * | Remove dead code | gingerBill | 2022-01-15 | 1 | -48/+0 |
| | | |||||
| * | Fix swizzle logic within `lb_build_assign_stmt_array` | gingerBill | 2022-01-15 | 1 | -2/+2 |
| | | |||||
| * | Fix #1344 | gingerBill | 2022-01-03 | 1 | -0/+1 |
| | | |||||
| * | Fix #1319 | gingerBill | 2021-11-19 | 1 | -1/+8 |
| | | |||||
| * | Remove `scope` field from `Ast` | gingerBill | 2021-11-14 | 1 | -8/+8 |
| | | |||||
| * | Begin minimizing `Ast` size | gingerBill | 2021-11-14 | 1 | -2/+3 |
| | | |||||
| * | Increase usage of `PtrMap` | gingerBill | 2021-11-05 | 1 | -1/+1 |
| | | |||||
| * | Make llvm backend code use `PtrMap`; remove dead code | gingerBill | 2021-11-05 | 1 | -5/+5 |
| | | |||||
| * | LLVM Code Generator: Add explicitly padding between fields in LLVM struct types | gingerBill | 2021-09-13 | 1 | -2/+1 |
| | | |||||
| * | Begin minimize `Type` size by replacing `Array` with `Slice` etc | gingerBill | 2021-09-13 | 1 | -3/+3 |
| | | |||||
| * | Add extra message to assert | gingerBill | 2021-08-23 | 1 | -1/+2 |
| | | |||||
| * | Remove unused code | gingerBill | 2021-08-19 | 1 | -6/+0 |
| | | |||||
| * | Extra sanity check around `static` | gingerBill | 2021-08-18 | 1 | -4/+11 |
| | | |||||
| * | Unify semantics of the built-in `swizzle` procedure with the selector ↵ | gingerBill | 2021-08-09 | 1 | -0/+45 |
| | | | | | expression semantics e.g. `.xyz` | ||||
| * | Reorganize llvm_backend.cpp into separate files for easier maintenance | gingerBill | 2021-08-07 | 1 | -0/+2233 |