One thing you have to understand is that the Cocoa Classes, of CODE, that are now being implemented using Swift, are really patented and nailed down. There is quite a bit of overhead with the code, which some programmers, especially in the past, think is useless, and they were kinda right.
But now, with like what the previous poster said, "ASICs", or in other words smaller and smaller "hardwired extensions" to main cores, things can really get insane. Because imagine if you don't need to load as much code and calls are strictly processor calls, load data and branch. You start to get some really huge speed increases!
The beauty of Swift (cocoa libraries) with ARM is that back in the old days, like with AltiVec on PPC, you had to specifically break your code down, into the necessary means to utilize the features of the chip, or chips even, like for basic Intel chip features, you had directly code FOR the chips.
Now you just program in Swift and use the provided Frameworks and Apple has dedicated "asics pieces" ready to fire away and you didn't have to do that old heavy lifting! I mean sure METAL is still work, but with like Machine Learning you can take advantage of ML code/chips without having to directly format your code for the ML chips, you just use the frameworks and everything is under the hood, and screams. They are creating the CHIPS for the CODE, a reversal...
So in general they have three avenues, maybe even four:
Add cores
Add asics
and continue with decreasing the size and increasing the speed
oh and the fourth is our blessed Operating System Speed Increases 🙏
One other thing to meniton is, IDK how many people have a watch, a macbook, and homepod or even an iphone too, but when you say "Hey Siri", I get 3 devices trying to get the request completed, now I know this is nuts, but:
With Apple Silicon, they are making MORE DEVICES, around you! And if they all start sharing the loads of work, that helps in the long run too...
It's like T2 chip in MacBooks, it's extra but it does lifting...
So imagine you get:
Glasses
AirPods
Watch
iPhone
MacBook
HomePod
That's SIX devices (in your ecosystem) to help you do whatever it is you gotta do...
I know TL;DR
Laters...