How to increase intellij 32bit xmx more than 1GB?

Mohsen Kashi picture Mohsen Kashi · Nov 21, 2012 · Viewed 16.9k times · Source

I am using 32bit Intellij on my 32bit windows XP with 4 GB of RAM.
I am attempting to increase intellij xmx to 1.5GB : -Xmx1500m
So I know JVM support 1.5GB of RAM in 32bit systems.
But this error throws from JVM :

The JVM could not be started. The maximum heap size (-Xmx) might be too large ...

I can't increase intellij Xmx more than 900MB
Please help me!

Answer

CrazyCoder picture CrazyCoder · Nov 21, 2012

You can't do it as JVM needs to allocate all the heap in a single continuous chunk, which may not be possible because of the memory fragmentation. See my FAQ article for more details.

See also this picture:

JVM heap

As you can notice, total process memory is not just the heap size, making it much easier to hit the 2GB OS limit.

The actual heap that can be used varies on the OS configuration and on other applications that are running (DLLs with hooks inject into process space and cause additional fragmentation). Usually it's somewhere between 512M and 1G, but can be higher on a clean system.