| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-11-12 | compiler-rt: remove dead code | Matthew Lugg | |
| `__addosi4`, `__addodi4`, `__addoti4`, `__subosi4`, `__subodi4`, and `__suboti4` were all functions which we invented for no apparent reason. Neither LLVM, nor GCC, nor the Zig compiler use these functions. It appears the functions were created in a kind of misunderstanding of an old language proposal; see https://github.com/ziglang/zig/pull/10824. There is no benefit to these functions existing; if a Zig compiler backend needs this operation, it is trivial to implement, and *far* simpler than calling a compiler-rt routine. Therefore, this commit deletes them. A small amount of that code was used by other parts of compiler-rt; the logic is trivial so has just been inlined where needed. I also chose to quickly implement `__addvdi3` (a standard function) because it is trivial and we already implement the `sub` parallel. | |||
| 2025-07-22 | aarch64: add new from scratch self-hosted backend | Jacob Young | |
| 2025-03-05 | Remove uses of deprecated callconv aliases | Linus Groh | |
| 2024-08-27 | lib,test,tools,doc: update usages of @export | mlugg | |
| 2024-03-14 | chore: Fix some typos | Ahmed | |
| 2023-11-19 | lib: correct unnecessary uses of 'var' | mlugg | |
| 2022-12-28 | compiler-rt: Set the symbol visibility | Luuk de Gram | |
| When we're compiling compiler_rt for any WebAssembly target, we do not want to expose all the compiler-rt functions to the host runtime. By setting the visibility of all exports to `hidden`, we allow the linker to resolve the symbols during linktime, while not expose the functions to the host runtime. This also means the linker can properly garbage collect any compiler-rt function that does not get resolved. The symbol visibility for all target remains the same as before: `default`. | |||
| 2022-06-17 | compiler_rt: compile each unit separately for improved archiving | Jakub Konka | |
| 2022-05-06 | flatten lib/std/special and improve "pkg inside another" logic | Andrew Kelley | |
| stage2: change logic for detecting whether the main package is inside the std package. Previously it relied on realpath() which is not portable. This uses resolve() which is how imports already work. * stage2: fix cleanup bug when creating Module * flatten lib/std/special/* to lib/* - this was motivated by making main_pkg_is_inside_std false for compiler_rt & friends. * rename "mini libc" to "universal libc" | |||
