-
Notifications
You must be signed in to change notification settings - Fork 0
Fix case-arm shadowing UB, tail-loop preemption, and OOM diagnostics #1
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
2301d97
fix(codegen): P0 — case-arm rebinding the scrutinee's name emitted C …
claude 31208a0
fix(codegen): P0 — compiled tail loops never yielded; spawn storms di…
claude 273cd78
fix(runtime): P1 — allocation failure now panics loud instead of SIGS…
claude 9c0a409
docs: Round-7 audit report (Fable, June 2026) + two new known issues …
claude d8bf46f
fix(lang): converge the two execution paths + make every failure loud
claude 47e2015
test: dual-path conformance gate — every conform program must agree a…
claude bb52969
docs: error-model + new-surface reference; KNOWN_ISSUES — clear try/c…
claude 48bd46f
feat(std): Std.map / Std.filter / Std.join — make the Elixir-shaped g…
claude fda588a
docs: README — conformance gate + current test counts + Std aliases; …
claude a47f14d
feat(gc): Phase 2.1 — LeakSanitizer lifecycle gate (make lsan-gate + …
claude 2239288
feat(diag+lang): real source paths, module-qualified did-you-mean, st…
claude 0e4337e
test+docs: Phase 2.2 scheduler-count matrix — bounded tests, S<3 skip…
claude 76c44e0
perf(sched): O4 — bounded spin-before-park; cross-scheduler ping-pong…
claude df57d3c
docs: roadmap — Phase 2.1 + 2.2 DONE with findings; Round-7 table — O…
claude 3f3b2bf
perf(boot): O5 — watchdog shutdown via condvar; hello wall time 110-1…
claude 35283f6
test: spin-wedge reproducer + gc_slope probe timeout armor
claude 78931d0
docs: P1 spin-gated deadlock entry; roadmap 2.2 amended; README start…
claude 8603514
fix(runtime): three C11 data races flagged by TSan — volatile flags b…
claude 92813f0
test: Phase 2.3 — make tsan-gate (msg ping-pong, msg+spin, 80k storm …
claude 831d6ce
docs: roadmap — Phase 2.3 (TSan) DONE: gate + findings + the no-fiber…
claude 437adc1
test+docs: O8 host-limit prints in the stress gate; Phase 2.4 audit r…
claude e8ddea1
fix(sched): P1 deadlock root-caused — Dekker StoreLoad bug in the rec…
claude 4d2a692
docs: P1 deadlock -> Recently cleared with the full Dekker story; roa…
claude c635b5e
fix(parser): untrusted .sw can no longer OOM swc — receive-clause spi…
claude 38a817a
fix(runtime): Phase 2.4 — race-free proc->state, timer peek, monitor-…
claude 30e5497
fix(runtime): Phase 2.4 COMPLETE — supervisor/registry/monitor races …
claude f98288d
feat(gc): Phase 2.5 — allocation-failure injection gate (make alloc-f…
claude a72e32a
feat(soak): Phase 2.6 — mixed-workload soak harness (make soak); Phas…
claude ec1ded6
fix(json): Phase 3 — fuzz the JSON decoder; fix two heap-overflows + …
claude 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
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.
Fix loop wording to avoid contradicting supported syntax.
Line 106 says there is no
for/while, butforis supported and documented in this reference. Please narrow this to “nowhile” (or equivalent) so users don’t get incorrect guidance.🤖 Prompt for AI Agents