Yes, some applications may benefit from 64bit code - but I somehow doubt TC is one of them; it doesn't perform any heavy computations, its speed is usually limited either by disk access, or by the userScyphe wrote:In 64-bit mode the CPU have twice the size of the registers (64 bits instead of 32), there are a few new instructions as well as some other things that can(!) make 64-bit code more efficient and faster than the 32-bit equivalent.

So, the main advantage of 64bit platform here would probably be bigger addressable memory.
No, there's no emulation on x64 platform, the CPU executes the 32-bit code directly. (I think the emulation is performed on IA-64 architecture, i.e. Itanium CPU, but that's rather out-of-question here, I believe.)Scyphe wrote:Another reason for running native 64-bit code instead of through WoW64 is that WoW64 is an emulating layer translating 32-bit code to 64-bit code (I think).