| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | | | | Correct a race condition when checking the procedure body | gingerBill | 2023-01-02 | 12 | -66/+260 | |
| * | | | | | | Multithread checker | gingerBill | 2023-01-02 | 1 | -59/+5 | |
| * | | | | | | Remove use of queues for procedure checking. | gingerBill | 2023-01-02 | 5 | -78/+52 | |
| * | | | | | | Multi thread `check_export_entities` | gingerBill | 2023-01-02 | 1 | -102/+88 | |
| * | | | | | | Remove `global_` prefix from `global_thread_pool_*` procedures | gingerBill | 2023-01-02 | 4 | -12/+12 | |
| * | | | | | | Multithread `check_collect_entities_all` using new thread pool | gingerBill | 2023-01-02 | 1 | -23/+48 | |
| * | | | | | | Minor style change | gingerBill | 2023-01-02 | 2 | -8/+2 | |
| * | | | | | | Replace condition+mutex with futex | gingerBill | 2023-01-02 | 3 | -40/+39 | |
| * | | | | | | Use C++ style `for` loop over `for_array` macro in parser.cpp where posible | gingerBill | 2023-01-01 | 1 | -45/+50 | |
| * | | | | | | Remove the synchronization primitive init/destroy calls | gingerBill | 2023-01-01 | 13 | -111/+1 | |
| * | | | | | | Get around the std::atomic issue | gingerBill | 2023-01-01 | 1 | -72/+88 | |
| * | | | | | | Begin work on futex-ifying the threading primitives | gingerBill | 2023-01-01 | 1 | -39/+133 | |
| * | | | | | | Unify compiler `Futex` interface | gingerBill | 2023-01-01 | 2 | -29/+20 | |
| |/ / / / / | ||||||
| * | | | | | Merge pull request #2283 from colrdavidson/threadpool-swap | gingerBill | 2023-01-01 | 3 | -162/+366 | |
| |\ \ \ \ \ | ||||||
| | * | | | | | rework openbsd futexes a little | Colin Davidson | 2022-12-29 | 1 | -6/+13 | |
| | * | | | | | cover openbsd too | Colin Davidson | 2022-12-29 | 1 | -0/+34 | |
| | * | | | | | oops if->elif | Colin Davidson | 2022-12-29 | 1 | -1/+1 | |
| | * | | | | | add freebsd support | Colin Davidson | 2022-12-29 | 1 | -0/+31 | |
| | * | | | | | fix ulock/uwait imports | Colin Davidson | 2022-12-28 | 1 | -2/+2 | |
| | * | | | | | fix build | Colin Davidson | 2022-12-28 | 1 | -1/+1 | |
| | * | | | | | move to work-stealing threadpool | Colin Davidson | 2022-12-28 | 3 | -162/+294 | |
| * | | | | | | Merge branch 'master' into compiler-improvements-2022-12 | gingerBill | 2023-01-01 | 1 | -2/+2 | |
| |\ \ \ \ \ \ | |/ / / / / |/| | | | | | ||||||
| | * | | | | | fixup are_types_identical for comparing procs and checking if parameter names... | Phil | 2022-12-29 | 1 | -2/+2 | |
| | | |/ / / | |/| | | | ||||||
| * | | | | | Remove a few `TODO`s | gingerBill | 2022-12-22 | 5 | -24/+7 | |
| * | | | | | Remove need the MPMC in single threaded case | gingerBill | 2022-12-22 | 3 | -13/+14 | |
| * | | | | | Clean up mutex usage in the parser | gingerBill | 2022-12-22 | 2 | -54/+59 | |
| * | | | | | Add minor comment | gingerBill | 2022-12-22 | 1 | -2/+2 | |
| * | | | | | Revert "Change `tav` to be a pointer internally" | gingerBill | 2022-12-22 | 11 | -140/+133 | |
| * | | | | | Change `tav` to be a pointer internally | gingerBill | 2022-12-22 | 11 | -133/+140 | |
| * | | | | | Merge branch 'master' into compiler-improvements-2022-12 | gingerBill | 2022-12-21 | 2 | -3/+3 | |
| |\| | | | | ||||||
| | * | | | | Change the order of the args and ret for Arm64 ABI | gingerBill | 2022-12-21 | 1 | -1/+1 | |
| | * | | | | Enable -out:<filepath> for build and runs with the attribute @(test) | Thomas Stibor | 2022-12-14 | 1 | -2/+2 | |
| | |/ / / | ||||||
| * | | | | Correct `type_ptr_set_update` and `type_ptr_set_exists` | gingerBill | 2022-12-20 | 1 | -0/+8 | |
| * | | | | Set the file's filename and directory in `init_ast_file` | gingerBill | 2022-12-20 | 3 | -7/+11 | |
| * | | | | Move `mutex` use around in thread pool | gingerBill | 2022-12-20 | 1 | -4/+3 | |
| * | | | | Use `*_set_update` where possible | gingerBill | 2022-12-20 | 6 | -39/+32 | |
| * | | | | Combine join and destroy for threads | gingerBill | 2022-12-20 | 2 | -15/+4 | |
| * | | | | Remove need for `semaphore` in `Thread` | gingerBill | 2022-12-20 | 2 | -33/+15 | |
| * | | | | Clarify ThreadPool interface; Move `import_mutex` guarding to just the string... | gingerBill | 2022-12-20 | 2 | -8/+18 | |
| * | | | | Fix minor race condition | gingerBill | 2022-12-19 | 2 | -10/+43 | |
| * | | | | Use `usize` for bounds checking in `Array` and `Slice` (compiler) | gingerBill | 2022-12-18 | 1 | -4/+4 | |
| * | | | | Use `fetch_add` rather than `+=` | gingerBill | 2022-12-18 | 2 | -3/+3 | |
| * | | | | Add missing `gb_internal` | gingerBill | 2022-12-18 | 1 | -1/+1 | |
| * | | | | Add `gb_internal` to path procedures | gingerBill | 2022-12-18 | 1 | -15/+15 | |
| * | | | | Remove dead code in the compiler | gingerBill | 2022-12-18 | 27 | -1661/+168 | |
| * | | | | `gb_internal` LLVM backend | gingerBill | 2022-12-18 | 12 | -628/+627 | |
| * | | | | `gb_internal` to docs and other auxiliary files | gingerBill | 2022-12-18 | 5 | -76/+75 | |
| * | | | | Add `gb_internal` to checker | gingerBill | 2022-12-18 | 7 | -468/+466 | |
| * | | | | Even more `gb_internal` everywhere | gingerBill | 2022-12-18 | 4 | -286/+286 | |
| * | | | | `gb_internal` a lot | gingerBill | 2022-12-18 | 25 | -1141/+1091 | |