You have anything to back that up? The ESRAM is much much lower latency than GDDR5 RAM, and iirc, you can read/write to the ESRAM simultaneously.
You're a big boy. I'm sure you can find "proof" if you don't believe me. From memory it's like 68 GB/sec and 109 GB/sec to the GDDR5's 176 GB/sec or something like that.
You only have 32 MB of it. 1920x1080x4x3 (front, back, and depth all 32 bit) gives you 24 MB. Plus AA and it's obvious it used as the active texture cache too leaving you 8 MB.
Strictly speaking as a programmer for maximum performance, and to actually get close to that theoretical bandwidth you'd want to halve it so you could double buffer from external RAM to keep DMA flying ALL THE TIME with no stalling, and this + FSAA is why you can't get 1080p from it very easily.
The 32 MB ESRAM is primarily used as a frame buffer and texture source cache, both of which are predictably linear and heavily pipelined from raster to raster and thus benefit more from sustained throughput than latency, unlike a CPU's random access. This is precisely why graphics cards use GDDR5.
And as for reading and writing at the same time, there are only two places this does anything:
1) the DMA transfers writing from main RAM for the n+1 data so that you have the full 109 GB/sec on the read port for n active rendering which still means you're only rendering at 109 GB/sec from the read port, and you won't get 109 GB/sec on the write port because it's limited by the read speed of the DDR3 which is also interleaving access with the CPU and other DMA channels for audio streaming, storage streaming, etc. So in this way you can be getting close to 177 GB/s but the fidelity of the rendering itself can only ever be within the constraints of 109 GB/sec and the 68 GB/sec from DDR3 to ESRAM write port is pretty much "wasted" as you wouldn't need to do that if you could just access it in place faster. And I've only talked about reading... rendering is typically reading from multiple streams and then writing a very small bit of final data back and this will be competing with 68 GB/s of the 109 GB/s on the write port. You can kinda come close in theory but as you can see it's a pain in the ass if you managed to read and understand this mess. And now I'm kinda crosseyed because I shouldn't be trying to articulate advanced programming techniques having been up for 24 hours.
2) heavy source/dest alpha blending which isn't often performed much if it can be helped due to single pass multi texture that's been in use a loooong time now. Read/modify/write is still a very expensive operation for video to be used sparingly even with ESRAM.
While the PS4 is my platform of choice this gen, you can probably tell I'd have more fun programming the XBO provided I had direct metal access which I wouldn't sigh.
Like I said I'm about the game genres, I don't care about the specs. If I seem biased or fanboyish of Sony it's because I grew tired of MS constantly drumming to the shooter+NFL crowd and I've ALWAYS preferred RPGs and adventure games and games that make no apologies for being fiction and fantasy video games instead of trying to be realistic football, racing, or gulf war simulators.
But to constantly hear people continue to downplay a significant advantage to sell their preferred box is tiring. It's more that just "slightly" and "a few shaders".