Inlining is called 'the mother of all optimizations' because it unlocks everything else — LLVM's inliner with its cost model is among the most-tuned code in the project. C++'s zero-cost abstractions and Rust's iterator chains compile to tight loops only because inlining dissolves the function-call boundaries first.