vote up 6 vote down star
4

I know about BCEL, but this project seems to be dead, as it had no releases for two years. And the Java-world moves on. For example JDK 1.6 has a new class-file-format.

So what library can be used to create bytecode for the JVM. If no library, a program is ok too, if I can manipulate the generated code in detail, for example a bytecode-assembler.

Which software can you recommend? Is it easy too use? has good examples/tutorials?

EDIT: For all asking: Yes, the javac is fine. But for generating some classes at runtime, a path directly to bytecode would be cleaner.

flag

7 Answers

vote up 9 vote down check

ASM

http://asm.objectweb.org/

It is much faster than BCEL and supports generics and annotations. One point about its architecture: in order to ensure high performance ASM is built around a parser that throws events (in contrast to BCEL where the parser builds a data structure). This is somewhat similar to the difference between SAX and DOM parsers. It takes some practice to get used to this kind of thinking.

EDIT (Following McDowell's comment): Indeed visitors are heavily used in ASM, but it's more than plain visitors: the visited data structure is lazily built by the parser, so if you're not interested in certain parts of the classfile (for example, you want to know the names of the methods but you don't care about their body), you can return a null from the visitMethod() method. This will make the parser skip the method body sections thereby preventing the (expensive) construction of the net of objects fully describing the method.

link|flag
I think that by "throws events", Itay means it makes use of the visitor pattern. I'm trying ASM at the moment - it is pretty good and has good doc. If you want annotation support in BCEL, you need to build the latest sources. – McDowell Nov 14 '08 at 22:13
If you don't require fast performance, ASM also provides a DOM-like tree based interface. – Dave L. Nov 17 '08 at 0:58
vote up -1 vote down

I think my favorite java bytecode creator is called javac and you can find it at www.sun.com

link|flag
Beat me by 28 seconds! – S.Lott Nov 14 '08 at 21:26
I have a feeling that Mnementh is asking about something else and we have a clash of vocabulary problem. – Karl Nov 14 '08 at 21:40
vote up -1 vote down

Why not use the Java compiler, javac? What's wrong with using it to generate JVM byte code?

[Seriously. What stops you from taking your source, making Java and compiling it?]

link|flag
There are some cases where you want to programatically generate bytecode. If this is on a user's machine, you can't assume they have the full JDK installed. – James Van Huis Nov 14 '08 at 21:54
Having trouble imagining an application so cool that it requires the compiler, but not cool enough to include it in the download. While it's technically possible, it sounds unlikely. – S.Lott Nov 14 '08 at 21:57
An common application is compiling languages other than Java to Java bytecode. Scripts extending something like a game or a photo editor may need performance of compiled code. And, Java 7 is likely to include bytecode that can't be produced by a valid Java program (invokedynamic for dynamic langs). – sylvarking Nov 14 '08 at 22:16
1  
Another application: code obfuscation – James Van Huis Nov 14 '08 at 22:18
1  
Also, you run into legal issues with distributing the JDK. – James Van Huis Nov 14 '08 at 22:19
show 2 more comments
vote up 2 vote down

Javassist and cglib are two good code engineering libraries. They are used extensively in the j2ee world for generating proxies of objects and byte code engineering libraries at run time. Hibernate and Spring are two leading frameworks implementing these libraries.

link|flag
vote up 1 vote down

There are tecnologies like asm and cglib but I recomend Javaassist because is a very good library for do that, likewise you can find examples in tapestry5 framework.

link|flag
vote up 2 vote down

There is a fairly complete example of using ASM to generate byte code from a Java-like intermediate language in the implementation of CAL (a Haskell-like language for the JVM). If you download the sources at http://openquark.org/Open_Quark/Download.html then you can find the code in AsmJavaByteCodeGenerator.java, and the java model classes in the same folder. The code generated is basically what javac would do, minus debug annotations.

The CAL implementation originally used BCEL but switched to ASM because ASM was significantly faster (probably an order of magnitude), and just as significantly, ASM is thread safe, so that concurrent compilation is possible, which is needed by CAL.

link|flag
vote up 1 vote down

http://serp.sourceforge.net/ is a great library for more abstraction when editing the bytecode.

link|flag

Your Answer

Get an OpenID
or

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