So, cmaier, what is your take on this news in general?
It's not much of a surprise - I'd been saying on here for awhile that there was no way PA Semi finished the thing it is working on so quickly. Personally, despite having designed microprocessors for years (mostly at AMD), I'm not big on a bunch of checklist features, mostly because I understand how every design decision is a tradeoff. So, while in practice an A9-based design might be slightly faster, I think the A8-based design will be plenty fast enough for most anything I'm likely to use an iPad for.
Pretty much I think it's like vegetables hidden in your meatloaf. Most of the whiners, if handed an iPad and not told what processor was in it, would assume that since it's so fast it must be an A9. It's only when they are told what the chip is that suddenly it's not good enough.
Huh? It's just dropped-that's no more penalty than on an in order CPU.
I'm "trolling" because I'm stating a well known fact?
You're trolling because a few pages back, when you though the A9 had more pipeline stages, you were of the opinion that MORE was better. Now that you know the A8 has more stages, you believe LESS is better.
As to your "it's just dropped," think about how much is "just dropped"! You speculatively perform a branch (incorrectly) and out-of-order perform additional instructions on top of the branch. You go much further down the wrong branches of the tree of possibilities, sometimes even multiple branches, before you find out you guessed wrong. Thus the penalty for guessing is higher - you've done much more speculative work for nought.
In an in-order machine, the branch penalty is only that you've done the wrong icache access, so you have to pay for another icache access. In an out-of-order machine, you've gone and executed a bunch of instructions that you shouldn't have, perhaps storing speculative state in the register file, and you need to unwind all that. Additionally, as a percentage of IPC (and from a power consumption perspective) you've done a lot more work that you didn't need to.