RUE-1477: remove peer semantic CFG assembly - #2329
Merged
Merged
Conversation
steveklabnik
enabled auto-merge
August 12, 2026 22:30
steveklabnik
disabled auto-merge
August 12, 2026 22:35
steveklabnik
force-pushed
the
codex/rue-1477-single-compiler-path
branch
from
August 12, 2026 22:56
9e42c48 to
a3668be
Compare
steveklabnik
enabled auto-merge
August 12, 2026 22:56
steveklabnik
force-pushed
the
codex/rue-1477-single-compiler-path
branch
from
August 12, 2026 23:03
a3668be to
aa3965b
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
CompilerSession::semantic(), its stable semantic/CFG view family, and the park-aware semantic presentation entryEach CFG consumer now uses the owning record's exact type, interner, and string domains. No replacement whole-program state or conversion facade is constructed.
Why
The compiler had two ways to assemble semantic and CFG state, and the supported
semantic()API preserved a fictional phase boundary even after the duplicate computation was removed. That made architectural measurements ambiguous and left an attractive insertion point for a second pipeline. This change gives every production consumer one canonical computation path before ADR-0071 implementation begins.Validation
Fixes RUE-1477.