I need to run Java applications on top of Linux on my Beaglebone. I know that ARM cores do have support for Jazelle technology to execute Java bytecode in hardware. Anyway it is not clear to me what I need to exploit this technology. Do I need to "activate" Jazelle in some way? Do I need a Jazelle aware Java Virtual Machine? What is the flow for deploying and running Java software which exploits Jazelle technology? Is a license required for using Jazelle?
Thanks.
Jazelle is an execution mode in ARM architecture which "provides architectural support for hardware acceleration of bytecode execution by a Java Virtual Machine (JVM)" - quoted from ARM Architecture Manual.
It also looks like there are two flavours of Jazelle; DBX and RCT. Following text is from Cortex-A Series Programmer’s Guide (v3).
To my knowledge most of Jazelle-DBX's use is in Java Card implementations where you really want to have lots of performance supplied by a tiny chip. This really restricted domain can take advantage of some extra boost by executing bytecode on cpu directly.
However most of the modern embedded systems like your Beaglebone already have more memory and cpu power than when Java made its debut on typical desktops of those times which renders Jazelle-DBX not necessary. That's mostly because you get JIT compilation to native host. (JIT implementations would be too big for Java Cards.)
ThumbEE / Jazelle-RCT's usefulness is also questionable. Quoting from an android-porting discussion:
To conclude, I am not aware of any Java VM implementation utilizing any Jazelle flavour including Dalvik of Android. If I had to run Java on an embedded device, I would choose between; Dalvik, JamVM or Java SE Embedded.