Advantages of a 64 bit system

后端 未结 7 1950
粉色の甜心
粉色の甜心 2020-12-31 23:35

From a developer perspective i am trying to understand , what is the selling point of a 64-bit system ?

I understand that more registers are at your disposal , more

7条回答
  •  自闭症患者
    2020-12-31 23:55

    Sorry, I kept this a bit list style, and avoided not mentioning increased memory addressing and more which had already been mentioned.

    a) You'll have double the amount of registers, actually giving you three times the amount of registers at you disposal. b) General purpose registers are increased from 32 to 64 bit, meaning processing of 64 bit integers (i.e.) will be faster. c) More efficient position independent code since data can now be referenced relative to the RIP register. d) No-execute bit making the system more tolerant towards buffer overflows.

提交回复
热议问题