Content deleted Content added
Mention deprecation of jsr, jsr_w, and ret instructions |
→top: Fixed reference date error(s) (see CS1 errors: dates for details) and AWB general fixes |
||
(15 intermediate revisions by 12 users not shown) | |||
Line 1:
{{Short description|none}} <!-- This short description is INTENTIONALLY "none" - please see WP:SDNONE before you consider changing it! -->
{{Main|Java bytecode}}
This is a list of the instructions that make up the [[Java bytecode]], an abstract machine language that is ultimately executed by the [[Java virtual machine]].<ref>{{cite web|url=https://docs.oracle.com/javase/specs/jvms/se24/html/index.html |title=The Java® Virtual Machine Specification – Java SE 24 Edition |access-date=July 26, 2025}}</ref> The Java bytecode is generated from languages running on the [[Java Platform]], most notably the [[Java (programming language)|Java programming language]].
''Note that any referenced "value" refers to a 32-bit int as per the Java instruction set.''
Line 12 ⟶ 9:
|-
! scope="col" | Mnemonic
! scope="col" | Opcode<br>
!Opcode (in binary)
! scope="col" | Other bytes<br>[count]: [operand labels]
Line 946 ⟶ 943:
|1011 1010
|4: indexbyte1, indexbyte2, 0, 0
|[arg1,
|invokes a dynamic method and puts the result on the stack (might be void); the method is identified by method reference ''index'' in constant pool ({{mono|indexbyte1 << 8 {{pipe}} indexbyte2}})
|-
Line 1,462 ⟶ 1,459:
|}
{{Refbegin}}
{{note label|Deprecated|†||Deprecated in Java 7 (major class version 51).<ref>{{cite web|url=https://docs.oracle.com/javase/specs/jvms/
{{Refend}}
Line 1,468 ⟶ 1,465:
*[[Jazelle]] DBX (Direct Bytecode eXecution), a feature that executes some Java bytecodes in hardware, on some ARM9 CPUs
*[[Common Intermediate Language]] (CIL), a similar bytecode specification that runs on the CLR of the .NET Framework
== References ==
{{reflist}}
== External links ==
*[
{{Java (Sun)}}
|