< prev index next >

src/hotspot/share/interpreter/bytecodes.hpp

Print this page




 226     _invokestatic         = 184, // 0xb8
 227     _invokeinterface      = 185, // 0xb9
 228     _invokedynamic        = 186, // 0xba
 229     _new                  = 187, // 0xbb
 230     _newarray             = 188, // 0xbc
 231     _anewarray            = 189, // 0xbd
 232     _arraylength          = 190, // 0xbe
 233     _athrow               = 191, // 0xbf
 234     _checkcast            = 192, // 0xc0
 235     _instanceof           = 193, // 0xc1
 236     _monitorenter         = 194, // 0xc2
 237     _monitorexit          = 195, // 0xc3
 238     _wide                 = 196, // 0xc4
 239     _multianewarray       = 197, // 0xc5
 240     _ifnull               = 198, // 0xc6
 241     _ifnonnull            = 199, // 0xc7
 242     _goto_w               = 200, // 0xc8
 243     _jsr_w                = 201, // 0xc9
 244     _breakpoint           = 202, // 0xca
 245 




 246     number_of_java_codes,
 247 
 248     // JVM bytecodes
 249     _fast_agetfield       = number_of_java_codes,

 250     _fast_bgetfield       ,
 251     _fast_cgetfield       ,
 252     _fast_dgetfield       ,
 253     _fast_fgetfield       ,
 254     _fast_igetfield       ,
 255     _fast_lgetfield       ,
 256     _fast_sgetfield       ,
 257 
 258     _fast_aputfield       ,

 259     _fast_bputfield       ,
 260     _fast_zputfield       ,
 261     _fast_cputfield       ,
 262     _fast_dputfield       ,
 263     _fast_fputfield       ,
 264     _fast_iputfield       ,
 265     _fast_lputfield       ,
 266     _fast_sputfield       ,
 267 
 268     _fast_aload_0         ,
 269     _fast_iaccess_0       ,
 270     _fast_aaccess_0       ,
 271     _fast_faccess_0       ,
 272 
 273     _fast_iload           ,
 274     _fast_iload2          ,
 275     _fast_icaload         ,
 276 
 277     _fast_invokevfinal    ,
 278     _fast_linearswitch    ,




 226     _invokestatic         = 184, // 0xb8
 227     _invokeinterface      = 185, // 0xb9
 228     _invokedynamic        = 186, // 0xba
 229     _new                  = 187, // 0xbb
 230     _newarray             = 188, // 0xbc
 231     _anewarray            = 189, // 0xbd
 232     _arraylength          = 190, // 0xbe
 233     _athrow               = 191, // 0xbf
 234     _checkcast            = 192, // 0xc0
 235     _instanceof           = 193, // 0xc1
 236     _monitorenter         = 194, // 0xc2
 237     _monitorexit          = 195, // 0xc3
 238     _wide                 = 196, // 0xc4
 239     _multianewarray       = 197, // 0xc5
 240     _ifnull               = 198, // 0xc6
 241     _ifnonnull            = 199, // 0xc7
 242     _goto_w               = 200, // 0xc8
 243     _jsr_w                = 201, // 0xc9
 244     _breakpoint           = 202, // 0xca
 245 
 246     // value-type bytecodes
 247     _defaultvalue         = 203, // 0xcb
 248     _withfield            = 204, // 0xcc
 249 
 250     number_of_java_codes,
 251 
 252     // JVM bytecodes
 253     _fast_agetfield       = number_of_java_codes,
 254     _fast_qgetfield       ,
 255     _fast_bgetfield       ,
 256     _fast_cgetfield       ,
 257     _fast_dgetfield       ,
 258     _fast_fgetfield       ,
 259     _fast_igetfield       ,
 260     _fast_lgetfield       ,
 261     _fast_sgetfield       ,
 262 
 263     _fast_aputfield       ,
 264     _fast_qputfield       ,
 265     _fast_bputfield       ,
 266     _fast_zputfield       ,
 267     _fast_cputfield       ,
 268     _fast_dputfield       ,
 269     _fast_fputfield       ,
 270     _fast_iputfield       ,
 271     _fast_lputfield       ,
 272     _fast_sputfield       ,
 273 
 274     _fast_aload_0         ,
 275     _fast_iaccess_0       ,
 276     _fast_aaccess_0       ,
 277     _fast_faccess_0       ,
 278 
 279     _fast_iload           ,
 280     _fast_iload2          ,
 281     _fast_icaload         ,
 282 
 283     _fast_invokevfinal    ,
 284     _fast_linearswitch    ,


< prev index next >