6 ms·
Can anyone recommend a good source (book, articles) to learn Java Bytecode?
by playing_colours 4y ago
Can anyone recommend a good source (book, articles) to learn Java Bytecode?
- topbanana 4y agohttps://docs.oracle.com/javase/specs/jvms/se17/html/index.html https://docs.oracle.com/javase/specs/jvms/se17/html/index.ht... and for .Net CIL https://www.ecma-international.org/publications-and-standards/standards/ecma-335/ https://www.ecma-international.org/publications-and-standard...
- rzzzt 4y agoThe JVM spec is a bit dry but readable: https://docs.oracle.com/javase/specs/jvms/se17/html/index.html https://docs.oracle.com/javase/specs/jvms/se17/html/index.ht...
- noone_youknow 4y agoThere's a "cookbook" document in the repo, but it's not very comprehensive - I'd be more than happy to take PRs :) https://github.com/roscopeco/jasm/blob/develop/docs/cookbook.md https://github.com/roscopeco/jasm/blob/develop/docs/cookbook...
- jfengel 4y agoThere's a very old but still pretty effective book called Programming for the Java Virtual Machine. Byte code is remarkably stable. (Disclaimer: author)