Java bytecode specification. - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T12:08:59Zhttp://stackoverflow.com/feeds/question/358121http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/358121/java-bytecode-specification6Java bytecode specification.Gnarlydog2008-12-11T00:39:20Z2009-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#3581283Answer by Adam Rosenfield for Java bytecode specification.Adam Rosenfield2008-12-11T00:41:50Z2008-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#3581442Answer by McDowell for Java bytecode specification.McDowell2008-12-11T00:50:03Z2008-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#3581564Answer by Oscar Reyes for Java bytecode specification.Oscar Reyes2008-12-11T00:56:55Z2008-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#3595840Answer by joel.neely for Java bytecode specification.joel.neely2008-12-11T14:44:23Z2008-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#4051052Answer by Bala for Java bytecode specification.Bala2009-01-01T16:26:39Z2009-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#6240470Answer by Maxim Veksler for Java bytecode specification.Maxim Veksler2009-03-08T18:26:04Z2009-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#6241040Answer by Peter Lawrey for Java bytecode specification.Peter Lawrey2009-03-08T19:06:32Z2009-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#6241151Answer by TofuBeer for Java bytecode specification.TofuBeer2009-03-08T19:13:31Z2009-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#14806990Answer by Wilfred Springer for Java bytecode specification.Wilfred Springer2009-09-26T07:38:49Z2009-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>