Skip to content

Commit

Permalink
sroa: Fix incorrect scope counting (JuliaLang#53630)
Browse files Browse the repository at this point in the history
Sroa was incorrectly assuming that every :leave leaves exactly one
scope. In reality, it leaves as many scopes as the corresponding :leave
references. Fix that to fix JuliaLang#53521.
  • Loading branch information
Keno authored and mkitti committed Apr 13, 2024
1 parent f5fec94 commit b98a870
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
17 changes: 14 additions & 3 deletions base/compiler/ssair/passes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1225,10 +1225,21 @@ function sroa_pass!(ir::IRCode, inlining::Union{Nothing,InliningState}=nothing)
bb = compact.active_result_bb - 1
bbs = scope_mapping[bb]
if isexpr(stmt, :leave) && bbs != SSAValue(0)
update_scope_mapping!(scope_mapping, bb+1, scope_mapping[block_for_inst(compact, bbs)])
else
update_scope_mapping!(scope_mapping, bb+1, bbs)
# Here we want to count the number of scopes that we're leaving,
# which is the same as the number of EnterNodes being referenced
# by `stmt.args`. Which have :scope set. In practice, the frontend
# does emit these in order, so we could simply go to the last one,
# but we want to avoid making that semantic assumption.
for i = 1:length(stmt.args)
scope = stmt.args[i]
scope === nothing && continue
enter = compact[scope][:inst]
@assert isa(enter, EnterNode)
isdefined(enter, :scope) || continue
bbs = scope_mapping[block_for_inst(compact, bbs)]
end
end
update_scope_mapping!(scope_mapping, bb+1, bbs)
end
# check whether this statement is `getfield` / `setfield!` (or other "interesting" statement)
is_setfield = is_isdefined = is_finalizer = is_keyvalue_get = false
Expand Down
19 changes: 19 additions & 0 deletions test/compiler/irpasses.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1801,3 +1801,22 @@ let n = 1000
end
end
@test f_1000_blocks() == 0

# https://github.com/JuliaLang/julia/issues/53521
# Incorrect scope counting in :leave
using Base.ScopedValues
function f53521()
VALUE = ScopedValue(1)
@with VALUE => 2 begin
for i = 1
@with VALUE => 3 begin
try
foo()
catch
nothing
end
end
end
end
end
@test code_typed(f53521)[1][2] === Nothing

0 comments on commit b98a870

Please sign in to comment.