vote up 4 vote down star
1

Will Java code built and compiled against a 32-bit JDK into 32-bit byte code work in a 64-bit JVM? Or does a 64-bit JVM require 64-bit byte code?

To give a little more detail, I have code that was working in a Solaris environment running a 32-bit JVM, but now I'm getting issues after upgrading the JDK and Weblogic Server to 64-bit.

flag

please clarify "issues". – Thorbjørn Ravn Andersen Apr 24 at 8:15
I'm having a similar issue - deploying a spring app on 64 bit weblogic server. We get various class not found exceptions, and other unhelpful errors. Furthermore, it deploys and runs on some 64 bit machines, but not others. We can't tell what's different however. Did you solve this? – nont Sep 15 at 18:22

5 Answers

vote up 11 vote down check

Yes, Java bytecode (and source code) is platform independent, assuming you use platform independent libraries. 32 vs. 64 bit shouldn't matter.

link|flag
vote up 3 vote down

No (to the second question; yes to the first), it's a virtual machine. Your problems are probably related to unspecified changes in library implementation between versions. Although it could be, say, a race condition.

There are some hoops the VM has to go through. Notably references are treated in class files as if they took the same space as ints on the stack. double and long take up two reference slots. For instance fields, there's some rearrangement the VM usually goes through anyway. This is all done (relatively) transparently.

Also some 64-bit JVMs use "compressed oops". Because data is aligned to around every 8 or 16 bytes, three or four bits of the address are useless (although a "mark" bit may be stolen for some algorithms). This allows 32-bit address data (therefore using half as much bandwidth, and therefore faster) to use heap sizes of 35- or 36-bits on a 64-bit platform.

link|flag
2  
You surprise me. I didn't think there was such a thing as 32-bit byte code or 64-bit byte code. – Jon Skeet Apr 23 at 21:57
2  
Rereading your answer - are you sure you didn't just mean it the other way round? (Yes then no.) – Jon Skeet Apr 23 at 21:57
+1 to Jon Skeet. I was writing the same comment but got called away. – mmyers Apr 23 at 22:01
I meant no then yes, but with the questions the other way around. Have rolled back an edit and edited (and put a bit more information in). – Tom Hawtin - tackline Apr 24 at 7:15
@Jon Skeet: there is no 32-bit and 64-bit bytecode, but when JITed the pointers in the JVM are (usually) 32 or 64 bit, depending on the platform. And with Compressed OOPS they can use 32bit pointers in many places, even on 64bit JVMs. That saves quite a bit of memory and increases code locality, thus leading to greater speed. – Joachim Sauer Apr 24 at 8:20
vote up 4 vote down

I accidentally ran our (largeish) application on a 64bit VM rather than a 32bit VM and didn't notice until some external libraries (called by JNI) started failing.

Data serialized on a 32bit platform was read in on the 64bit platform with no issues at all.

What sort of issues are you getting? Do some things work and not others? Have you tried attaching JConsole etc and have a peak around?

If you have a very big VM you may find that GC issues in 64 bit can affect you.

link|flag
vote up 1 vote down

All byte code is 8-bit based. (That's why its called BYTE code) All the instructions are a multiple of 8-bits in size. We develop on 32-bit machines and run our servers with 64-bit JVM.

Could you give some detail of the problem you are facing? Then we might have a chance of helping you. Otherwise we would just be guessing what the problem is you are having.

link|flag
vote up 2 vote down

Unless you have native code (machine code compiled for a specific arcitechture) your code will run equally well in a 32-bit and 64-bit JVM.

Note, however, that due to the larger adresses (32-bit is 4 bytes, 64-bit is 8 bytes) a 64-bit JVM will require more memory than a 32-bit JVM for the same task.

link|flag

Your Answer

Get an OpenID
or

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