| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix #1994 Returning to err: Maybe(Error) raises compiler assert | gingerBill | 2022-09-01 | 1 | -1/+1 |
| | | |||||
| * | Correct max alignment handling throughout the llvm backend | gingerBill | 2022-08-24 | 1 | -3/+3 |
| | | |||||
| * | Merge pull request #1955 from jaspergeer/fix-endian-type-conversion | gingerBill | 2022-08-24 | 1 | -3/+0 |
| |\ | | | | | fix #1759 endian float type conversion errors | ||||
| | * | Remove erroneous byte swap | Jasper Geer | 2022-08-16 | 1 | -3/+0 |
| | | | |||||
| * | | Fix #1963 | gingerBill | 2022-08-19 | 1 | -1/+1 |
| |/ | |||||
| * | Minor refactoring of `lb_build_addr` | gingerBill | 2022-08-11 | 1 | -403/+417 |
| | | |||||
| * | Clean up compound literal backend stuff some more | gingerBill | 2022-08-11 | 1 | -176/+48 |
| | | |||||
| * | Improve compound literal generation for array-like types | gingerBill | 2022-08-11 | 1 | -749/+617 |
| | | |||||
| * | Eliminate use of LLVMGetElementType for pointers | gingerBill | 2022-08-09 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #1933 from lerno/reduce_reliance_on_ptr_type | gingerBill | 2022-08-09 | 1 | -114/+116 |
| |\ | | | | | Removed use of deprecated functions. Cleaned up most deprecated use o… | ||||
| | * | Removed use of deprecated functions. Cleaned up most deprecated use of ↵ | Christoffer Lerno | 2022-08-07 | 1 | -114/+116 |
| | | | | | | | | | LLVMGetElementType. | ||||
| * | | Add `#soa` pointer type to aid with refactoring to `#soa` data types | gingerBill | 2022-08-08 | 1 | -4/+29 |
| |/ | | | | | | | | a: #soa[16]Foo p := &a[6] #assert(type_of(p) == #soa^#soa[16]Foo) p^.x = 123 p.x = 123 | ||||
| * | Fix #1930 | gingerBill | 2022-08-05 | 1 | -0/+3 |
| | | |||||
| * | Fix #1793 | gingerBill | 2022-07-24 | 1 | -1/+7 |
| | | |||||
| * | Fix and improve `x->y()` behaviour to minimize duplicate evaluation | gingerBill | 2022-07-24 | 1 | -3/+31 |
| | | |||||
| * | Integrate numerous debug fixes from #1877 | gingerBill | 2022-07-18 | 1 | -11/+0 |
| | | |||||
| * | Fix #1836 | gingerBill | 2022-07-16 | 1 | -3/+6 |
| | | |||||
| * | Fix #1880 | gingerBill | 2022-07-16 | 1 | -1/+9 |
| | | |||||
| * | Fix #1888 | gingerBill | 2022-07-16 | 1 | -10/+28 |
| | | |||||
| * | Improve vector comparison `==` `!=` for horizontal reduction | gingerBill | 2022-05-28 | 1 | -10/+29 |
| | | |||||
| * | Add arithmetic operator support for simd vectors; Add `intrinsics.simd_and_not` | gingerBill | 2022-05-26 | 1 | -1/+39 |
| | | |||||
| * | Remove need for `simd.splat` | gingerBill | 2022-05-26 | 1 | -27/+45 |
| | | |||||
| * | Correct casting between integer and boolean #simd | gingerBill | 2022-05-25 | 1 | -1/+4 |
| | | |||||
| * | Allow for non-constant simd vector compound types | gingerBill | 2022-05-25 | 1 | -0/+96 |
| | | |||||
| * | Allow basic casting of simd vectors | gingerBill | 2022-05-25 | 1 | -0/+32 |
| | | |||||
| * | Fix issue #1592 "LLVM code gen error when using a constant in an if" | gitlost | 2022-03-18 | 1 | -2/+2 |
| | | | | | | | | 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 | ||||
| * | Merge branch 'master' into freestanding_amd64 | gingerBill | 2022-03-14 | 1 | -0/+15 |
| |\ | |||||
| | * | Fix #1607 | gingerBill | 2022-03-09 | 1 | -0/+15 |
| | | | |||||
| * | | Commit rest of code for `-disallow-rtti` | gingerBill | 2022-02-28 | 1 | -3/+14 |
| |/ | |||||
| * | Correct pseudo selector code generation | gingerBill | 2022-02-15 | 1 | -4/+5 |
| | | |||||
| * | Add more objc attributes | gingerBill | 2022-02-11 | 1 | -1/+10 |
| | | |||||
| * | Support rank-2 arrays (matrix-like) for `transpose` | gingerBill | 2022-02-06 | 1 | -0/+21 |
| | | |||||
| * | Correct implicit union cast | gingerBill | 2022-02-05 | 1 | -0/+9 |
| | | |||||
| * | Add `#no_type_assert` and `#type_assert` to disable implicit type assertions ↵ | gingerBill | 2022-01-27 | 1 | -31/+41 |
| | | | | | with `x.(T)` | ||||
| * | Fix double map dereference indexing | gingerBill | 2022-01-26 | 1 | -2/+4 |
| | | |||||
| * | Rename architecture `386` to `i386` | gingerBill | 2022-01-15 | 1 | -1/+1 |
| | | |||||
| * | Fix conversion from float to quaternion | gingerBill | 2021-12-31 | 1 | -23/+7 |
| | | |||||
| * | Add lb_build_addr on `or_return` and `or_else` for sanity's sake | gingerBill | 2021-11-27 | 1 | -0/+10 |
| | | |||||
| * | Fix #1319 | gingerBill | 2021-11-19 | 1 | -2/+0 |
| | | |||||
| * | Correct `x in ptr` logic | gingerBill | 2021-11-17 | 1 | -1/+1 |
| | | |||||
| * | Improve matrix->matrix casting implementation | gingerBill | 2021-11-08 | 1 | -14/+19 |
| | | |||||
| * | Remove many LLVM optimization passes which were causes UB due to them ↵ | gingerBill | 2021-11-06 | 1 | -6/+6 |
| | | | | | assuming C-like behaviour incompatible with Odin | ||||
| * | Make llvm backend code use `PtrMap`; remove dead code | gingerBill | 2021-11-05 | 1 | -3/+3 |
| | | |||||
| * | Allow casting from floats to quaternions | gingerBill | 2021-11-03 | 1 | -0/+17 |
| | | |||||
| * | Correct `lb_emit_matrix_flatten` | gingerBill | 2021-11-03 | 1 | -1/+1 |
| | | |||||
| * | Correct index to offset calculation for matrix compound literalsdev-2021-11 | gingerBill | 2021-11-02 | 1 | -3/+3 |
| | | |||||
| * | Begin work on supporting `wasm64`; Correct `wasm32` compilation behaviour | gingerBill | 2021-10-30 | 1 | -0/+2 |
| | | |||||
| * | Merge branch 'master' into new-matrix-type | gingerBill | 2021-10-26 | 1 | -5/+1 |
| |\ | |||||
| | * | Add `llvm_get_inline_asm` for future compatibility | gingerBill | 2021-10-26 | 1 | -5/+1 |
| | | | |||||
| * | | Improve use of vector muladd operations | gingerBill | 2021-10-25 | 1 | -6/+4 |
| | | | |||||