Question

With OS X 10.5.7 coming out, there's been a lot of talk about apps that are 64-bit vs. apps that are 32-bit... manufacturers that will have to convert apps, manufacturers that will not be able to any soon due to a lack of resources (it's apparently a huge deal), etc. What the benefits of converting a certain app (like iTunes) would be, etc....

I'm wondering if, when you run in a VM (I mean like the .Net Framework or the JVM) and code only in "managed code" (in Java, no JNI, not sure what this would be in Ruby):

  1. do you get the benefits when your VM becomes 64-bit without ever having to know about this stuff yourself? OR
  2. do you not really get the benefits (nor the hassle of converting), since your apps are pretty inefficient compared to what's possible (though perhaps fast enough to do what you need)?
Was it helpful?

Solution

The main reason I develop for 64bit is memory. Much more memory is addressable with 64 bit pointers, and for some problem domains, a theoretical 4GB limit at 32 bit (often less) is less than satisfactory.

For something like iTunes, the conversion is near pointless, as it is a low powered app with no need for large memory.

I'm not sure how 64bit OSX handles 32bit binaries, but in Windows, the emulation is near perfect, and for many apps, there's simply no need to upgrade.

OTHER TIPS

I can't speak for the CLR (I would assume its similar), but a 64 bit JVM will give you all the memory benefits of 64 bit with no conversion whatsoever.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top