boomanaiden154 wrote: > But disregard the PGO use case mentioned above, I think having the extension > just for perf critical path is enough of a justification.
This is going to be significantly worse at optimizing a hot function than the default inliner is going to be when using profile data. You're also inlining all of the cold call sites here, significantly increasing icache pressure, which will decrease performance. https://github.com/llvm/llvm-project/pull/165777 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
