aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/stack_probe.zig
AgeCommit message (Collapse)Author
2025-07-22aarch64: add new from scratch self-hosted backendJacob Young
2025-07-17compiler_rt: export all the chkstk variations on MinGWkcbanner
2025-06-19x86_64: increase passing test coverage on windowsJacob Young
Now that codegen has no references to linker state this is much easier. Closes #24153
2025-05-19compiler-rt: Fix some exports to respect the common linkage and visibility.Alex Rønne Petersen
2025-03-05Remove uses of deprecated callconv aliasesLinus Groh
2024-08-28compiler_rt: Implement __chkstk() for thumb-windows-gnu.Alex Rønne Petersen
https://github.com/llvm/llvm-project/blob/ad435bcc14f42dc97286c717cd12446a0facb2ee/compiler-rt/lib/builtins/arm/chkstk.S
2024-08-27lib,test,tools,doc: update usages of @exportmlugg
2024-07-11Update `__chkstk_ms` to have weak linkage (#20138)Ryan Sepassi
* Update `__chkstk_ms` to have weak linkage `__chkstk_ms` was causing conflicts during linking in some circumstances (specifically with linking object files from Rust sources). This PR switches `__chkstk_ms` to have weak linkage. #15107 * Update stack_probe.zig to weak linkage for all symbols
2024-03-11std.builtin: make link mode fields lowercaseTristan Ross
2022-12-13update usages of `@call`Veikka Tuominen
2022-11-05Merge pull request #13101 from alichraghi/o4Andrew Kelley
2022-11-04all: rename i386 to x86Ali Chraghi
2022-11-03compiler_rt: fix duplicate symbol error when linking libc on arm64 WindowsJakub Konka
2022-06-17compiler_rt: compile each unit separately for improved archivingJakub Konka
2022-05-06flatten lib/std/special and improve "pkg inside another" logicAndrew 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"