Read a little about microprocessor architecture and you'll see that 64 bit CPU's are nothing spectacular. In fact, they don't even improve performance.
All a CPU must do to be considered 64 bit is allow for 64 bit memory addressing. Now, that sounds great, but in reality it's overkill. Our current 32 bit CPU's can address up to 4 gigabytes of main memory. There are very, very few places where more than 4G of main memory is needed. A 64 bit CPU would simply square that number, extending addressable memory to an insane amount.
Now, the other property of most 64 bit CPU's is the width of their registers (tiny bits of temporary storage to hold small values as they are manipulated). Fortunately, modern 32 bit CPU's have allowed for 64 bit integer and floating point registers for a while now.
And as for bandwidth, all current CPU's have 64bit data paths to the chipset and main memory.
Modus