I have a VC++ project (2005) that generates both 32-bit and 64-bit dlls. The 32-bit dll is 1044 KB whereas the 64-bit version is 1620 KB. I'm curious why the size is so large. Is it just because of the larger address size, or is there a compiler option that I'm missing?
|
2
|
|||||||||
|
|
|
Maybe your code contains a lot of pointers.
|
||||
|
|
|
Your pointer size has doubled, so if you have lots of pointers in your code, your executable can grow easily by 50%. |
||
|
|
|
|
x86-64 has more registers. As a result, opcodes need more bits to specify them. Also, per x86 tradition you can specify parts of a register, and you now have a 32 bit partial register. Instructions that don't use registers are rare, so these change affects almost every instruction. Since x86-64 is still a CISC variable-length ISA, it doesn't mean that each instructions grew from 32 to 64 bits, but there is a definite growth. Another change is that |
||
|
|
