Do 64bit software/applications require more RAM than their 32bit counterparts?

5,636

The short answer is yes, 64-bit operating systems almost always require more RAM than corresponding 32-bit operating systems and 64-bit applications often do require a bit more RAM than corresponding 32-bit applications. There are a number of reasons, but the most basic is that pointers take up twice as much space on a 64-bit operating system as they do on a 32-bit operating system.

Share:
5,636

Related videos on Youtube

MegaNairda
Author by

MegaNairda

Updated on September 18, 2022

Comments

  • MegaNairda
    MegaNairda over 1 year

    I just saw these minimum requirements for a game:

    Memory: 2GB for 32-bit OS or 4GB for 64-bit OS

    Why does the 64bit OS require more RAM than its 32bit counterpart?

  • Keltari
    Keltari over 11 years
    I do want to add that the machine doesnt necessarily need more RAM, just the software.
  • Rich Homolka
    Rich Homolka over 11 years
    Another component would be "because they can". In the early days of DOS, programs would do massive tricks to stay under tight memory constraints. Under 64 bit, you don't have to. The same program may load more into cache/maps, trading memory for speed.
  • Isaac Rabinovitch
    Isaac Rabinovitch over 11 years
    Good answer, but it's worth remembering that memory is less of an issue on 64-bit systems. The limitations are complicated, but many 32-bit systems can handle only 3 or 4 GB, which is puny in an era when 1GB DIMMs sell for less than ten bucks. On a 64-bit system, you can double or quadruple that for a reasonable cost.
  • mg.
    mg. over 11 years
    For what I know the x32 abi architecture try to exceed this. Here a thought of Donald Knuth. (Look at the middle of the page)