Skip to content

Commit 2ff315b

Browse files
committed
Show variable names and remove spurious type warning in typed ast.
Fixes #15714
1 parent b6cb2d6 commit 2ff315b

File tree

3 files changed

+63
-5
lines changed

3 files changed

+63
-5
lines changed

base/interactiveutil.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ function code_warntype(io::IO, f, t::ANY)
237237
print(emph_io, "\nBody:\n ")
238238
body = Expr(:body); body.args = uncompressed_ast(li)
239239
body.typ = li.rettype
240-
show_unquoted(emph_io, body, 2)
240+
# Fix slot names and types in function body
241+
show_unquoted(IOContext(emph_io, :LAMBDAINFO => li), body, 2)
241242
print(emph_io, '\n')
242243
end
243244
nothing

base/show.jl

+29-4
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,11 @@ end
210210

211211
function show(io::IO, l::LambdaInfo)
212212
println(io, "LambdaInfo for ", l.name)
213+
# Fix slot names and types in function body
214+
lambda_io = IOContext(io, :LAMBDAINFO => l)
213215
body = Expr(:body); body.args = uncompressed_ast(l)
214216
body.typ = l.rettype
215-
show(io, body)
217+
show(lambda_io, body)
216218
end
217219

218220
function show_delim_array(io::IO, itr::Union{AbstractArray,SimpleVector}, op, delim, cl, delim_one,
@@ -496,10 +498,33 @@ show_unquoted(io::IO, ex::TopNode, ::Int, ::Int) = print(io,"top(",ex.nam
496498
show_unquoted(io::IO, ex::GlobalRef, ::Int, ::Int) = print(io, ex.mod, '.', ex.name)
497499

498500
function show_unquoted(io::IO, ex::Slot, ::Int, ::Int)
499-
print(io, "_", ex.id)
501+
li = get(io, :LAMBDAINFO, false)
502+
typ = ex.typ
503+
slotid = ex.id
504+
name_printed = false
505+
if isa(li, LambdaInfo)
506+
li = li::LambdaInfo
507+
slotnames = li.slotnames
508+
if isa(slotnames, Array) && slotid <= length(slotnames::Array)
509+
name = li.slotnames[slotid]
510+
if name !== symbol("#temp#")
511+
print(io, name)
512+
name_printed = true
513+
end
514+
end
515+
slottypes = li.slottypes
516+
if isa(slottypes, Array) && slotid <= length(slottypes::Array)
517+
slottype = li.slottypes[slotid]
518+
# The Slot in assignment can somehow have a Any type
519+
slottype <: typ && (typ = slottype)
520+
end
521+
end
522+
if !name_printed
523+
print(io, "_", slotid)
524+
end
500525
emphstate = typeemphasize(io)
501-
if emphstate || ex.typ !== Any
502-
show_expr_type(io, ex.typ, emphstate)
526+
if emphstate || typ !== Any
527+
show_expr_type(io, typ, emphstate)
503528
end
504529
end
505530

test/reflection.jl

+32
Original file line numberDiff line numberDiff line change
@@ -278,3 +278,35 @@ let
278278
@test methods(m,Tuple{Int, Int})[1]==@which MacroTest.@macrotest 1 1
279279
@test functionloc(@which @macrotest 1 1) == @functionloc @macrotest 1 1
280280
end
281+
282+
# issue #15714
283+
# show variable names for slots and suppress spurious type warnings
284+
function f15714(array_var15714)
285+
for index_var15714 in eachindex(array_var15714)
286+
array_var15714[index_var15714] += 0
287+
end
288+
end
289+
290+
let str, li = code_typed(f15714, Tuple{Vector{Float32}})[1]
291+
for str in (sprint(io->code_warntype(io, f15714, Tuple{Vector{Float32}})),
292+
sprint(io->show(io, li)))
293+
@test contains(str, "index_var15714")
294+
@test contains(str, "array_var15714")
295+
@test !contains(str, "Any")
296+
@test !contains(str, "ANY")
297+
# Check that we are not printing the bare slot numbers
298+
for i in 1:length(li.slotnames)
299+
if li.slotnames[i] === symbol("#temp#")
300+
# Compiler temporaries show as slot number
301+
# This assumes none of the temporaries are eliminated, which
302+
# is at least true for this case.
303+
@test contains(str, "_$i")
304+
else
305+
# Normal variables show as name
306+
@test !contains(str, "_$i")
307+
end
308+
end
309+
end
310+
# Make sure printing an AST outside LambdaInfo still works.
311+
show(IOBuffer(), Base.uncompressed_ast(code_typed(f15714, Tuple{Vector{Float32}})[1]))
312+
end

0 commit comments

Comments
 (0)