List of Java bytecode instructions: Difference between revisions

Content deleted Content added
Mhyee (talk | contribs)
Correct description of lcmp (see http://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.lcmp)
m replaced index1/2 with indexbyte1/2 in 4 cases to increase consistency
Line 596:
|b4
|1011 0100
|2: index1indexbyte1, index2indexbyte2
|objectref → value
|get a field ''value'' of an object ''objectref'', where the field is identified by field reference in the constant pool ''index'' (''index1indexbyte1 << 8 + index2indexbyte2'')
|-
|getstatic
|b2
|1011 0010
|2: index1indexbyte1, index2indexbyte2
|→ value
|get a static field ''value'' of a class, where the field is identified by field reference in the constant pool ''index'' (''index1indexbyte1 << 8 + index2indexbyte2'')
|-
|goto