| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | lb_const_string -> lb_const_valuedev-2025-07 | Jeroen van Rijn | 2025-07-07 | 1 | -1/+1 |
| | | |||||
| * | Ensure `volatile` status for all atomic operations | Feoramund | 2025-06-20 | 1 | -16/+18 |
| | | | | | Fixes #2410 | ||||
| * | Push `context` onto stack before evaluating procedure parameters | Feoramund | 2025-06-20 | 1 | -3/+3 |
| | | | | | Fixes #4711 | ||||
| * | Add `@(no_sanitize_memory)` proc attribute with MSan additions to ↵ | Feoramund | 2025-06-05 | 1 | -1/+1 |
| | | | | | `base:sanitizer` | ||||
| * | Add `compress_values` | gingerBill | 2025-05-12 | 1 | -0/+62 |
| | | |||||
| * | Merge pull request #5117 from bogwi/bug/5024 | gingerBill | 2025-05-09 | 1 | -0/+12 |
| |\ | | | | | Bug/5024 | ||||
| | * | CHECK 1 done | bogwi | 2025-05-05 | 1 | -0/+12 |
| | | | | | | | | | | | | | | | Fix panic in LLVM backend when using generic procedure with default arguments - Fixed panic in `llvm_backend_proc.cpp` when using unspecialized polymorphic procedures as defaults. - Ensured correct type inference when generic procedures are used as default parameters. | ||||
| * | | Merge pull request #5064 from harold-b/hb/objc-classes | gingerBill | 2025-05-08 | 1 | -0/+1 |
| |\ \ | | | | | | | Add support for Objective-C class implementation | ||||
| | * | | Fix indentations | Harold Brenes | 2025-04-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | Fix Objective-C wrapper procs not forwarding return value | ||||
| | * | | Add initial support for Objective-C class implementation | Harold Brenes | 2025-04-20 | 1 | -0/+1 |
| | | | | |||||
| * | | | fix disposing builder when not created | Laytan Laats | 2025-05-07 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #5128 p->builder is created in lb_begin_procedure_body, but that isn't called if there is no body, and we were still calling dispose at that point. Moved it into lb_end_procedure_body to match. | ||||
| * | | | Merge pull request #5122 from Lperlind/asan-allocators | gingerBill | 2025-05-07 | 1 | -11/+13 |
| |\ \ \ | | | | | | | | | Add asan support for various allocators and stack unpoisoning | ||||
| | * | | | Add asan support for various allocators | Lucas Perlind | 2025-05-06 | 1 | -11/+13 |
| | | | | | |||||
| * | | | | Added alternate reduce-add/reduce-mul intrinsics. | Barinzaya | 2025-05-05 | 1 | -0/+66 |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new reduce_add/reduce_mul procs perform the corresponding arithmetic reduction in different orders than sequential order. These alternative orders can often offer better SIMD hardware utilization. Two different orders are added: pair-wise (operating on pairs of adjacent elements) or bisection-wise (operating element-wise on the first and last N/2 elements of the vector). | ||||
| * | / | Add `intrinsics.simd_indices` | gingerBill | 2025-05-05 | 1 | -0/+17 |
| | |/ |/| | |||||
| * | | Merge pull request #5098 from laytan/fix-nan-comparisons | gingerBill | 2025-05-02 | 1 | -1/+1 |
| |\ \ | | | | | | | fix variable NaN comparisons | ||||
| | * | | fix variable NaN comparisons | Laytan Laats | 2025-04-30 | 1 | -1/+1 |
| | |/ | |||||
| * / | Add attribute @(no_sanitize_address) | Lucas Perlind | 2025-05-01 | 1 | -1/+1 |
| |/ | | | | | | | | | | | The purposes of this attribute is to let procedures opt-out of being instrumented with asan. Typically an allocator that includes 'in-band' meta-data will be accessing poisoned values (such as tlsf). Making asan work with these allocators becomes very challenging so just being to ignore asan within specific allocator procedures makes it easier to reason and removes the need to temporarily poison and unpoison allocator data. | ||||
| * | Fix `syscall_bsd` on NetBSD ARM64 | Feoramund | 2025-04-06 | 1 | -8/+31 |
| | | |||||
| * | Merge pull request #4974 from harold-b/hb.fix-syscall-memory-dep | gingerBill | 2025-03-27 | 1 | -0/+10 |
| |\ | | | | | Add `~{memory}` clobber to syscall intrinsics for platforms where it was missing | ||||
| | * | Add `~{memory}` clobber to syscall intrinsics for platforms where it was not ↵ | Harold Brenes | 2025-03-26 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | yet added. This fixes #4972 and #4588. As laytan asserts, there is no guarantee that a syscall will not modify memory that it just obtained from the user, or held onto via a previous syscall. Therefore this constraint should be required for all syscalls. | ||||
| * | | Fix #4866 | gingerBill | 2025-03-07 | 1 | -0/+1 |
| |/ | |||||
| * | Improve global array index to be on a per module basis | gingerBill | 2025-02-25 | 1 | -1/+2 |
| | | |||||
| * | Try to make globally generated variables deterministic in name | gingerBill | 2025-02-25 | 1 | -3/+3 |
| | | |||||
| * | Fix #4822 | gingerBill | 2025-02-24 | 1 | -2/+2 |
| | | |||||
| * | Added simd_extract_lsbs intrinsic as well. | Barinzaya | 2025-02-24 | 1 | -3/+7 |
| | | | | | | Equivalent to the simd_extract_msbs intrinsic, except it extracts the least significant bit of each element instead. | ||||
| * | Added simd_extract_msbs intrinsic. | Barinzaya | 2025-02-24 | 1 | -0/+24 |
| | | |||||
| * | reorganize tests and handle endian | Laytan Laats | 2025-02-06 | 1 | -8/+5 |
| | | |||||
| * | apply abs fix to constant system too | Laytan Laats | 2025-02-06 | 1 | -3/+3 |
| | | |||||
| * | improve abs() on floats for more correct and faster results | Laytan Laats | 2025-02-05 | 1 | -0/+28 |
| | | |||||
| * | Add `#branch_location` | gingerBill | 2025-01-01 | 1 | -1/+5 |
| | | |||||
| * | compiler: remove viral `#force(_no)_inline` | Laytan Laats | 2024-12-09 | 1 | -4/+0 |
| | | | | | | | | | | | | | | If a procedure was marked `#force_no_inline`, any procedure calls within it would also implicitly be. This is not expected for multiple reasons: 1. `#force(_no)_inline` on a call expr works differently than on a procedure literal. 2. Adding the attribute on it and every called proc blows up the amount of work for the inliner pass and may increase the time it takes. 3. Putting `#force_no_inline` on a procedure to keep executable size down (like we do for some map procedures), benchmark it, or find it in asm/ir has the added effect of slowing those procedures down significantly and not representing truth. | ||||
| * | ABI change: for indirect parameters size_of <= 16, do callee stack copy | gingerBill | 2024-12-05 | 1 | -0/+19 |
| | | |||||
| * | check packed load and set alignment on all loads, not just lb_emit_load | Laytan Laats | 2024-10-25 | 1 | -3/+2 |
| | | |||||
| * | add '#caller_expression' | Laytan Laats | 2024-09-14 | 1 | -5/+57 |
| | | |||||
| * | add support for linux_riscv64 and freestanding_riscv64 | Laytan | 2024-08-20 | 1 | -0/+25 |
| | | |||||
| * | fix c_vararg bit_set | Laytan Laats | 2024-08-11 | 1 | -5/+5 |
| | | | | | Fixes #4051 | ||||
| * | Swap `reduce_any` and `reduce_all` | Feoramund | 2024-08-06 | 1 | -2/+2 |
| | | | | | | `llvm.vector.reduce.or` will return true if any lane is true. `llvm.vector.reduce.and` will return true if all lanes are true. | ||||
| * | Add `intrinsics.masked_expand_load` and `intrinsics.masked_compress_store` | gingerBill | 2024-08-05 | 1 | -6/+28 |
| | | |||||
| * | Remove dead code | gingerBill | 2024-08-05 | 1 | -1/+0 |
| | | |||||
| * | Add `intrinsics.simd_masked_load` and `intrinsics.simd_masked_store` | gingerBill | 2024-08-05 | 1 | -3/+15 |
| | | |||||
| * | Add `intrinsics.simd_gather` and ``intrinsics.simd_scatter` | gingerBill | 2024-08-05 | 1 | -0/+46 |
| | | |||||
| * | Rename `add_sat` -> `saturating_add` | gingerBill | 2024-08-05 | 1 | -10/+10 |
| | | |||||
| * | Add `simd_reduce_any` and `simd_reduce_all` | gingerBill | 2024-08-05 | 1 | -0/+17 |
| | | |||||
| * | type is never a tuple here | Laytan Laats | 2024-07-16 | 1 | -3/+0 |
| | | |||||
| * | fix `add_sat` and `sub_sat` intrinsics | Laytan Laats | 2024-07-16 | 1 | -6/+36 |
| | | |||||
| * | Add intrinsics `add_sat` and `sub_sat` | gingerBill | 2024-07-16 | 1 | -0/+6 |
| | | |||||
| * | Begin work for `bit_set[...; [N]T]` (not working) | gingerBill | 2024-07-15 | 1 | -0/+5 |
| | | |||||
| * | Generate backing array in the case where there is no `DeclInfo` for the ↵ | gingerBill | 2024-07-15 | 1 | -6/+10 |
| | | | | | procedure body | ||||
| * | Add `slice` variable if not exists | gingerBill | 2024-07-14 | 1 | -0/+4 |
| | | |||||