
12 Apr
2012
12 Apr
'12
5:04 p.m.
On Thu, Apr 12, 2012 at 6:08 PM, Tim Blechmann <tim@klingt.org> wrote:
I've heard of the JVM running in 64bit memory model, but compressing pointers into 32bits by taking advantage of word alignment and most of the address space starting around 0. It means they can access ~32GB memory while not having the memory footprint of all pointers double. UseCompressedOops
http://publib.boulder.ibm.com/infocenter/javasdk/v6r0/index.jsp?topic=%2Fcom...
i suppose the main difference is that c++ runs on a real machine, while java runs on a virtual machine?
It could work on real hardware too if the OS supports it. Olaf