Skip to content

Commit fef1fb8

Browse files
simonstertkelman
authored andcommitted
Fix inference heuristic hacks
These were broken by #11274 but no one noticed. Fixes #13350. (cherry picked from commit 7dfcf70) ref #13355
1 parent 457071c commit fef1fb8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

base/inference.jl

+5-3
Original file line numberDiff line numberDiff line change
@@ -2251,11 +2251,13 @@ function inlineable(f::ANY, e::Expr, atype::ANY, sv::StaticVarInfo, enclosing_as
22512251
if incompletematch
22522252
cost *= 4
22532253
end
2254-
if is(f, next) || is(f, done) || is(f, unsafe_convert) || is(f, cconvert)
2254+
if istopfunction(topmod, f, :next) || istopfunction(topmod, f, :done) ||
2255+
istopfunction(topmod, f, :unsafe_convert) || istopfunction(topmod, f, :cconvert)
22552256
cost ÷= 4
22562257
end
2257-
inline_op = (f===(+) || f===(*) || f===min || f===max) && (3 <= length(argexprs) <= 9) &&
2258-
meth[3].sig == Tuple{Any,Any,Any,Vararg{Any}}
2258+
inline_op = (istopfunction(topmod, f, :+) || istopfunction(topmod, f, :*) ||
2259+
istopfunction(topmod, f, :min) || istopfunction(topmod, f, :max)) &&
2260+
(3 <= length(argexprs) <= 9) && meth[3].sig == Tuple{Any,Any,Any,Vararg{Any}}
22592261
if !inline_op && !inline_worthy(body, cost)
22602262
if incompletematch
22612263
# inline a typeassert-based call-site, rather than a

0 commit comments

Comments
 (0)