I've been reading that 32bit Windows applications are limited to 2 GB RAM because the upper 2GB of addressing space is reserved for the Windows OS (and, iirc, VRAM). If you use the /3GB flag on 32-bit WinXp you might get up to 3 GB of RAM available for addressing, but usually you have to tweak with userva values. I've heard that on 64 bit editions of Windows, with a large address aware flag in the PE header and over 4 GB of RAM, it is possible for an application to use all 4 GB of addressing space for its own memory management.

On the other hand, I'm pretty sure that when you call the windows API, you have to call memory locations within the 32-bit address space you're provided. So, exactly how much RAM can a 32-bit large address aware application use for itself in a 64-bit environment, really? And why?

Thank you.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The virtual address space is extended to 4GB. If you don't use the Address Windowing Extension API, the maximum amount of memory you can access is 4GB. Some of that space will be taken up by the OS for .dlls and other such things, but it will be possible for you to get memory back that uses all 32-bits of a pointer.

Incidentally, if you aren't large address aware, all memory pointers will not be negative when cast to a INT_PTR. This is actually a source of more than a few subtle bugs when using the large address aware flag, as pointers are treated signed values.

link|improve this answer
Wait a moment, in that case, is it possible to use AWE on a 32-bit Windows Xp OS to properly take advantage of 4 GB of RAM instead of the /3GB silliness? – The Roll Mar 3 '11 at 20:01
2  
+1 If you are planning on running under /LARGEADDRESSAWARE then be warned that various software has bugs with 32 bit pointers >2GB. Even some MS API functions (I'm looking at you GetCursorPos on Vista!) The way to flush out these problems, and work around them if you need to is to use top down memory allocation which is enabled with a registry setting. – David Heffernan Mar 3 '11 at 20:04
Yes, but you have to explicitly map the physical memory pages to a virtual address space. It's similar to VESA bank switching from the good old DOS era. – MSN Mar 3 '11 at 20:07
@David, I thought that LargeAddressAware was only (or mainly) a problem for source code that subtracts two pointers (as they can now be further apart than -2GB or +2GB. Thanks for the reference to GetCursorPos. – Patrick Mar 3 '11 at 20:16
@Patrick I run with top down memory allocation enabled. I've had real problems finding a virus scanner that works under that setting - ended up with MSE after trying about 4 others. Very little code is still around that fails with >2GB pointers, but there are occasional glitches, GetCursorPos is the one that has bitten me. I can replace it with GetCursorInfo, but it's harder in 3rd party code that runs in my process, e.g. HTML help viewer! – David Heffernan Mar 3 '11 at 20:18
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.