-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
compiler/ssair: preserve negative NewSSAValue #60688
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
Conversation
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
4fe71de to
4a5e138
Compare
Keno
approved these changes
Jan 14, 2026
Member
Keno
left a comment
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.
I think the fix is probably correct.
Member
|
Could also use an IR-level test. |
43 tasks
Member
Author
julia> g = (acc, x) -> ifelse(x > acc[1], (x,), (acc[1],))
#2 (generic function with 1 method)
julia> rf = Base.BottomRF(g)
Base.BottomRF{var"#2#3"}(var"#2#3"())
julia> optimize_until = "CC: COMPACT_2";
# ok
julia> Base.code_ircode(Base._foldl_impl, (typeof(rf), Tuple{Float64}, Vector{Int64}); optimize_until)
1-element Vector{Any}:
54 1 ── %1 = intrinsic Base.sub_int(1, 1)::Int64 iterate
│ %2 = intrinsic Base.bitcast(Base.UInt, %1)::UInt64
...
julia> optimize_until = "CC: SROA";
# bad
julia> Base.code_ircode(Base._foldl_impl, (typeof(rf), Tuple{Float64}, Vector{Int64}); optimize_until)
ERROR: BoundsError: attempt to access 183-element Vector{Int64} at index [-13]
Stacktrace:
[1] throw_boundserror(A::Vector{Int64}, I::Tuple{Int64})
@ Base ./essentials.jl:13
[2] checkbounds
@ ./essentials.jl:385 [inlined]
[3] getindex
@ ./essentials.jl:964 [inlined]
[4] renumber_ssa2(val::Core.SSAValue, ssanums::Vector{…}, used_ssas::Vector{…}, new_new_used_ssas::Vector{…}, do_rename_ssa::Bool, mark_refined!::Compiler.Refiner) |
Member
Author
|
I didn't manage to produce a pure IR test, but I managed to isolate it into locally defined functions without Base dependencie,s which might be ok for now. |
During incremental compaction a forwarded NewSSAValue with a negative id was treated like an SSAValue, producing SSAValue(-n) and tripping renumber_ssa2 bounds checks. Only convert NewSSAValue to SSAValue when the id is positive so new_new_nodes references remain valid.
3a57167 to
c385510
Compare
aviatesk
approved these changes
Jan 29, 2026
aviatesk
pushed a commit
that referenced
this pull request
Jan 29, 2026
During incremental compaction a forwarded NewSSAValue with a negative id was treated like an SSAValue, producing SSAValue(-n) and tripping `renumber_ssa2` bounds checks. Only convert NewSSAValue to SSAValue when the id is positive, so new_new_nodes references remain valid. Fixes #57827.
aviatesk
pushed a commit
that referenced
this pull request
Jan 29, 2026
During incremental compaction a forwarded NewSSAValue with a negative id was treated like an SSAValue, producing SSAValue(-n) and tripping `renumber_ssa2` bounds checks. Only convert NewSSAValue to SSAValue when the id is positive, so new_new_nodes references remain valid. Fixes #57827.
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.
During incremental compaction a forwarded NewSSAValue with a negative id was treated like an SSAValue, producing SSAValue(-n) and tripping
renumber_ssa2bounds checks. Only convert NewSSAValue to SSAValue when the id is positive, so new_new_nodes references remain valid.🤖 AI fix for #57827. Putting up for consideration.