Module Inlining_cost
Measurement of the cost (including cost in space) of Flambda terms in the context of inlining.
module Threshold : sig ... endval can_inline : Flambda.t -> Threshold.t -> bonus:int -> boolval can_try_inlining : Flambda.t -> Threshold.t -> number_of_arguments:int -> size_from_approximation:int option -> Threshold.t
module Benefit : sig ... endmodule Whether_sufficient_benefit : sig ... endval scale_inline_threshold_by : intval default_toplevel_multiplier : intval direct_call_size : intval maximum_interesting_size_of_function_body : int -> intIf a function body exceeds this size, we can make a fast decision not to inline it (see
Inlining_decision).
val lambda_smaller' : Flambda.expr -> than:int -> int optionMeasure the given expression to determine whether its size is at or below the given threshold.
Noneis returned if it is too big; otherwiseSomeis returned with the measured size.
val lambda_size : Flambda.expr -> int