wasm-opt has the --no-inline=<function-name-glob-pattern> argument which one can use to disallow inlining certain functions.
It would be great if we have a similar --prefer-inline=<function-name-glob-pattern> flag that tells binaryen to always inline certain functions irrespective of other flags (e.g. -Os may prevent it from being inlined as it would make size bigger, but do it nonetheless). Basically it would cause force inlining of those methods except in cases that would lead to issues (e.g. infinite recursive inlining)
From looking at wasm-opt --help --verbose it doesn't seem like there's such a flag atm.