forked from ziglang/zig
-
Notifications
You must be signed in to change notification settings - Fork 13
psema/shard: enable Windows COFF sharded build-obj + cut allocator/condvar contention #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dylan-conway
wants to merge
15
commits into
upgrade-0.15.2-fast
Choose a base branch
from
claude/windows-parallel-shards
base: upgrade-0.15.2-fast
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
24c0804
shard sema and codegen across N llvm modules
alii 09c8f59
psema: fix 14 races and correctness bugs found via adversarial sweep
alii a293e78
test: thread -Dllvm-codegen-threads through behavior matrix; std.mem.…
alii 5ba55ca
shard: fix COFF anon dups, module-asm routing, cross-shard @export al…
alii e116b29
psema: fix self-ref global false-positive cycle + cross-thread field_…
alii 3298e3f
test/behavior/cast: check error-set membership not @typeInfo order
alii 51433bc
psema: shard unit_claims, drop sema_lock under non-incremental; misc …
bf19f0a
std.Build.Step.Compile: add getEmittedBinShards()
6666f32
build: link mimalloc into the compiler; -Dmimalloc-obj option
4f58f6e
ci: gate mimalloc splice to linux-musl targets only
af6e006
psema: split claimOrWait .recursed/.cycle; resolveNavType seqlock; na…
4ec9d2c
shard: emit COFF shards with .obj extension; cache key + msvc bootstr…
dylan-conway 4c5f7f5
psema: cut Windows allocator + condvar contention; mimalloc new/delete
dylan-conway fc09100
shard: key navShard on (file, fqn) instead of file alone
dylan-conway 125866c
build: shard the build-runner compile
dylan-conway File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick | 🔵 Trivial
WindowsImpllooks unreachable after this selection change.Since
Implno longer selectsWindowsImpl, consider removing it (or clearly parking it behind an explicit fallback gate) to reduce maintenance and avoid bit-rot.🤖 Prompt for AI Agents