diff --git a/src/flags/flag-definitions.h b/src/flags/flag-definitions.h index 2aad4d7951..fe02df2121 100644 --- a/src/flags/flag-definitions.h +++ b/src/flags/flag-definitions.h @@ -665,9 +665,10 @@ DEFINE_INT(max_inlined_bytecode_size, 500, DEFINE_INT(max_inlined_bytecode_size_cumulative, 1000, "maximum cumulative size of bytecode considered for inlining") DEFINE_INT(max_inlined_bytecode_size_absolute, 5000, - "maximum cumulative size of bytecode considered for inlining") -DEFINE_FLOAT(reserve_inline_budget_scale_factor, 1.2, - "maximum cumulative size of bytecode considered for inlining") + "maximum absolute size of bytecode considered for inlining") +DEFINE_FLOAT( + reserve_inline_budget_scale_factor, 1.2, + "scale factor of bytecode size used to calculate the inlining budget") DEFINE_INT(max_inlined_bytecode_size_small, 30, "maximum size of bytecode considered for small function inlining") DEFINE_INT(max_optimized_bytecode_size, 60 * KB,