Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7926163

Browse files
committedJul 10, 2017
Inlining cost model: don't count :invokes that throw
The throw is not typically part of the standard runtime cost of the function.
1 parent f2f0a75 commit 7926163

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎base/inference.jl

+6-1
Original file line numberDiff line numberDiff line change
@@ -4649,7 +4649,12 @@ function statement_cost(ex::Expr, src::CodeInfo, mod::Module, params::InferenceP
46494649
end
46504650
return plus_saturate(argcost, params.inline_nonleaf_penalty)
46514651
elseif head == :foreigncall || ex.head == :invoke
4652-
return plus_saturate(20, argcost)
4652+
# Calls whose "return type" is Union{} do not actually return:
4653+
# they are errors. Since these are not part of the typical
4654+
# run-time of the function, we omit them from
4655+
# consideration. This way, non-inlined error branches do not
4656+
# prevent inlining.
4657+
return ex.typ == Union{} ? 0 : plus_saturate(20, argcost)
46534658
elseif head == :llvmcall
46544659
return plus_saturate(10, argcost) # a wild guess at typical cost
46554660
elseif (head == :&)

0 commit comments

Comments
 (0)
Please sign in to comment.