loading REPL causes Compiler code to invalidate due to custom REPLInterpreter
#58000
Labels
latency
Latency
REPLInterpreter
#58000
Using the following script (run from outside a REPL):
we can see that loading the REPL causes a lot of invalidations from defining functions on a new
AbstractInterpreter
(REPLInterpreter
) used for the REPL tab completions:The root cause seems to be a type instability in the Compiler code:
Looking with code_warntype:
This comes from the access at
julia/Compiler/src/abstractinterpretation.jl
Line 4385 in f211a77
where is is accessing the untyped field defined at
julia/Compiler/src/inferencestate.jl
Lines 317 to 319 in f211a77
The comment here about "Not looked at by NativeInterpreter" is a bit odd since this is indeed code for a
NativeInterpreter
.Is there anything that can be said about this interpreter from the code? Is it guaranteed to be the same type as the
interp
argument?The text was updated successfully, but these errors were encountered: