< prev index next >

src/share/vm/interpreter/bytecodes.hpp

Print this page




 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     _vload                = 203, // 0xcb
 248     _vstore               = 204, // 0xcc
 249     _vaload               = 205, // 0xcd
 250     _vastore              = 206, // 0xce
 251     _vreturn              = 210, // 0xd2
 252     _vdefault             = 214, // 0xd6
 253     _vwithfield           = 215, // 0xd7
 254     _vbox                 = 216, // 0xd6
 255     _vunbox               = 217, // 0xd7
 256 
 257     number_of_java_codes,
 258 
 259     // JVM bytecodes
 260     _fast_agetfield       = number_of_java_codes,
 261     _fast_qgetfield       ,
 262     _fast_bgetfield       ,
 263     _fast_cgetfield       ,
 264     _fast_dgetfield       ,
 265     _fast_fgetfield       ,
 266     _fast_igetfield       ,
 267     _fast_lgetfield       ,
 268     _fast_sgetfield       ,
 269 
 270     _fast_aputfield       ,
 271     _fast_qputfield       ,
 272     _fast_bputfield       ,
 273     _fast_zputfield       ,
 274     _fast_cputfield       ,
 275     _fast_dputfield       ,




 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     _vload                = 203, // 0xcb
 248     _vstore               = 204, // 0xcc
 249     _vaload               = 205, // 0xcd
 250     _vastore              = 206, // 0xce
 251     _vreturn              = 207, // 0xcf
 252     _vdefault             = 208, // 0xd0
 253     _vwithfield           = 209, // 0xd1
 254     _vbox                 = 210, // 0xd2
 255     _vunbox               = 211, // 0xd3
 256 
 257     number_of_java_codes,
 258 
 259     // JVM bytecodes
 260     _fast_agetfield       = number_of_java_codes,
 261     _fast_qgetfield       ,
 262     _fast_bgetfield       ,
 263     _fast_cgetfield       ,
 264     _fast_dgetfield       ,
 265     _fast_fgetfield       ,
 266     _fast_igetfield       ,
 267     _fast_lgetfield       ,
 268     _fast_sgetfield       ,
 269 
 270     _fast_aputfield       ,
 271     _fast_qputfield       ,
 272     _fast_bputfield       ,
 273     _fast_zputfield       ,
 274     _fast_cputfield       ,
 275     _fast_dputfield       ,


< prev index next >