Java bytecode specification. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:08:59Z http://stackoverflow.com/feeds/question/358121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/358121/java-bytecode-specification 6 Java bytecode specification. Gnarlydog 2008-12-11T00:39:20Z 2009-09-26T07:38:49Z <p>Is there a nice place for learning the JVM bytecode instruction set. The specification perhaps and maybe some tutorials?</p> <p>I ask because I would like to design a toy language and a compiler for it that generates JVM bytecode.</p> <p>Thanks for your knowledge and perhaps googling. </p> http://stackoverflow.com/questions/358121/java-bytecode-specification/358128#358128 3 Answer by Adam Rosenfield for Java bytecode specification. Adam Rosenfield 2008-12-11T00:41:50Z 2008-12-11T00:41:50Z <p>First Google hit for "Java bytecode specification": <a href="http://java.sun.com/docs/books/jvms/second_edition/html/VMSpecTOC.doc.html" rel="nofollow">http://java.sun.com/docs/books/jvms/second_edition/html/VMSpecTOC.doc.html</a>. See chapter 4, "The <code>class</code> file format" and chapter 6, "The Java Virtual Machine Instruction Set".</p> http://stackoverflow.com/questions/358121/java-bytecode-specification/358144#358144 2 Answer by McDowell for Java bytecode specification. McDowell 2008-12-11T00:50:03Z 2008-12-11T00:50:03Z <p>Also useful are the <a href="http://java.sun.com/javase/6/docs/technotes/tools/" rel="nofollow">javap</a> disassembler and bytecode manipulation frameworks like <a href="http://asm.objectweb.org/" rel="nofollow">ASM</a> and <a href="http://jakarta.apache.org/bcel/" rel="nofollow">BCEL</a>, even if all you want to do is verify your classes.</p> http://stackoverflow.com/questions/358121/java-bytecode-specification/358156#358156 4 Answer by Oscar Reyes for Java bytecode specification. Oscar Reyes 2008-12-11T00:56:55Z 2008-12-11T00:56:55Z <p>A little more "graphic" explanation.</p> <p><a href="http://www.ibm.com/developerworks/ibm/library/it-haggar_bytecode/" rel="nofollow">http://www.ibm.com/developerworks/ibm/library/it-haggar_bytecode/</a></p> http://stackoverflow.com/questions/358121/java-bytecode-specification/359584#359584 0 Answer by joel.neely for Java bytecode specification. joel.neely 2008-12-11T14:44:23Z 2008-12-11T14:44:23Z <p>This is a bit more specialized, but <a href="http://www.infoq.com/presentations/click-fast-bytecodes-funny-languages" rel="nofollow">here</a> is an on-line presentation on how to optimize generated bytecode for running on the JVM. It was presented at the recent <a href="http://openjdk.java.net/projects/mlvm/jvmlangsummit/" rel="nofollow">JVM Languages Summit</a> conferences. InfoQ has <a href="http://www.infoq.com/JVMLanguageSummit" rel="nofollow">a collection of presentations</a> from that conference which might be of help to someone wanting to bring up a language on the JVM (or to see what's already been done).</p> http://stackoverflow.com/questions/358121/java-bytecode-specification/405105#405105 2 Answer by Bala for Java bytecode specification. Bala 2009-01-01T16:26:39Z 2009-01-01T16:26:39Z <p>The book <a href="http://rads.stackoverflow.com/amzn/click/0201309726" rel="nofollow">Programming for the Java Virtual Machine</a> explains the JVM instruction set and how to write code for it. It also introduces a bytecode assembler called Oolong, which I have not been able to download. You can, however, use <a href="http://jasmin.sourceforge.net/" rel="nofollow">Jasmin</a>, the predecessor of Oolong. Essentially, you write a text file with instructions and Jasmin will spit out a .class file. The book was published in 1999, but it is still a good and gentle introduction to the VM.</p> http://stackoverflow.com/questions/358121/java-bytecode-specification/624047#624047 0 Answer by Maxim Veksler for Java bytecode specification. Maxim Veksler 2009-03-08T18:26:04Z 2009-03-08T18:26:04Z <p>Some resources I found useful when started to learn about JVM bytecode (Sorry for the self reference).</p> <p><a href="http://bytecoded.blogspot.com/2009/01/continuing-with-learning-path-good.html" rel="nofollow">http://bytecoded.blogspot.com/2009/01/continuing-with-learning-path-good.html</a></p> http://stackoverflow.com/questions/358121/java-bytecode-specification/624104#624104 0 Answer by Peter Lawrey for Java bytecode specification. Peter Lawrey 2009-03-08T19:06:32Z 2009-03-08T19:06:32Z <p>To start with, I suggest generating Java code from your language.</p> <p>This will make reading and debugging much simpler.</p> http://stackoverflow.com/questions/358121/java-bytecode-specification/624115#624115 1 Answer by TofuBeer for Java bytecode specification. TofuBeer 2009-03-08T19:13:31Z 2009-03-08T19:13:31Z <p>The VM spec is <a href="http://java.sun.com/docs/books/jvms/second%5Fedition/html/VMSpecTOC.doc.html" rel="nofollow">here</a>.</p> <p>The updated for chapter 4 are <a href="http://java.sun.com/docs/books/jvms/second%5Fedition/ClassFileFormat.pdf" rel="nofollow">here</a>. The updates cover new attributes added since the 2nd edition was made.</p> http://stackoverflow.com/questions/358121/java-bytecode-specification/1480699#1480699 0 Answer by Wilfred Springer for Java bytecode specification. Wilfred Springer 2009-09-26T07:38:49Z 2009-09-26T07:38:49Z <p>Perhaps check out <a href="http://fisheye3.atlassian.com/browse/preon/trunk/preon-samples/preon-sample-bytecode/src/main/java/nl/flotsam/preon/sample/bytecode/ClassFile.java?r=52" rel="nofollow">Preon's example on how to parse a Java class file</a>. It has a fairly complete representation of the bytecode in a Java object model. </p>