>What does x86 mean?
I think this has already been answered.
>What is the difference betwen 32 and 64-bit CPU-s?
In general:
support for 64 bit long registers, therefore also:
support for 64 bit long pointers (>32 bit addressing)
What does this mean ? Well, a 64 bit cpu will be able to address more than 4 GB *virtual* memory per process. A 32 bit cpu is limited to 4 GB. Note, this does not have anything to do with being able to add more than 4GB *RAM*. Even a Pentium Pro could address 16 GB RAM, but using that requiers lots of individual processes, each using 2 GB.
Also note, in reality with a 32 bit cpu, you are limited to ~2GB per process, as the other half is reserved for the OS.
Another advantage of 64 bit cpu's is their ability to perform math on 64 bit integers. A 32 bit cpu can do this too, but is much slower, in theory 4x slower than a 64 bit wide cpu. However, 64 bit INTeger math is not common at all in software, its pretty much only used in encryption (SSL) or mathematical simulations, not general purpose software, and not games.
Specific advantages for AMD64 (or intel's "64 bit extended x86 clakamas technology, same thing) additional to what I noted above:
1) twice the number of registers (16 versus only 8 for traditional 32 bit x86)
2) twice the number of SSE2 registers
3) a new processor mode breaking old legay; with this I mean that any software designed to run in 64 bit mode will not have to be compatible with a 386 or 486, and will be compiled to take maximum advantage of modern cpu's since this code will not run on a 386 anyway.
4) NX bit. NX (No Execute) tags a chunk of memory as being data, not executable code. if the OS supports this (XP SP2 will), it can prevent common security holes like buffer underrun exploits, making your computer more secure against viruses/worms.
Combined, you can expect to see a performance increase anywhere from -5% to more than +100% running 64 bit code on a 64 bit OS. A small decrease is possible as 64 bit code is ~10% bigger than 32 bit code, thus reducing effective bandwith. Realistically, I think you'll see a ~15% speedup in general, with some specific apps gaining substantially more.
>Why are 64-bit systems called "64-bit extended"?0
Because intel has some issues calling it AMD64
= The views stated herein are my personal views, and not necessarily the views of my wife. =<P ID="edit"><FONT SIZE=-1><EM>Edited by P4Man on 03/10/04 06:08 AM.</EM></FONT></P>