Actually, I would be interested. If you don't mind.
Sure. There's basically three additional factors beyond what applies on linux/windows that bring the gain for 64 bit Cocoa apps more towards the 10-20% range than the usual 0-15%*.
The first is the objective-c runtime. There's a new, backwards-incompatible version of it which is activated for 64 bit x86 apps (since there weren't any 64 bit x86 apps to be backwards compatible with). It has somewhat faster message sends (worth only maybe another couple % overall in speed, but still nice), C++ compatible exceptions, and avoids the
fragile base class problem.
The second is shared framework footprint. If all the Cocoa apps (for example) currently running are 64 bit, then only one copy of Cocoa need be loaded in memory. Same if all of them are 32 bit. If they're mixed, though, you need two copies of Cocoa loaded. Not a big overhead, but it'd be nice to get rid of.
The third and most obscure is kernel/app address ranges. 32 bits gives you 2^32 (~4GB) of available address space.
Windows by default runs the kernel in 2GB of that, and the current app in the other 2GB. This means that switching from app to kernel doesn't require re-mapping addresses.
OSX, for various historical PPC-related reasons, gives apps the full 4GB of address space. This is nice in the sense that it lets apps use all available ram, but it means that each time a switch to/from the kernel is needed (for example, memory allocations larger than 128 bytes), the mapping from virtual addresses to physical memory locations needs to be reloaded with the kernel's address space ("TLB flush"). With 64 bit apps**, the system just says "ok, everything 2^32 and below is the kernel's, and the app gets everything above", avoiding this.
*numbers involving the % sign in this post have not been verified with any particular rigor at all. I've pretty much just watched the wwdc presentation that mentioned %s, and benchmarked AutoHyperlinks.
**running the kernel 64 bit gets an additional speedup for these system calls. I'm not entirely clear on what the mechanism for that is.