Lines Matching refs:opcode

632   Bytecodes::Code opcode;
637 opcode = bcs.raw_next();
664 tty->print_cr("offset = %d, opcode = %s", bci, Bytecodes::name(opcode));
670 if (opcode != Bytecodes::_iinc && opcode != Bytecodes::_iload &&
671 opcode != Bytecodes::_aload && opcode != Bytecodes::_lload &&
672 opcode != Bytecodes::_istore && opcode != Bytecodes::_astore &&
673 opcode != Bytecodes::_lstore && opcode != Bytecodes::_fload &&
674 opcode != Bytecodes::_dload && opcode != Bytecodes::_fstore &&
675 opcode != Bytecodes::_dstore) {
678 * opcode (not one of the ones listed above) */
684 switch (opcode) {
726 opcode, bcs.get_index_u1(), &current_frame,
732 opcode, bcs.get_index_u2(), &current_frame,
742 index = opcode - Bytecodes::_iload_0;
752 index = opcode - Bytecodes::_lload_0;
762 index = opcode - Bytecodes::_fload_0;
772 index = opcode - Bytecodes::_dload_0;
782 index = opcode - Bytecodes::_aload_0;
914 index = opcode - Bytecodes::_istore_0;
924 index = opcode - Bytecodes::_lstore_0;
934 index = opcode - Bytecodes::_fstore_0;
944 index = opcode - Bytecodes::_dstore_0;
954 index = opcode - Bytecodes::_astore_0;
1654 "Bad instruction: %02x", opcode);
1961 int opcode, u2 index, StackMapFrame* current_frame,
1966 if (opcode == Bytecodes::_ldc || opcode == Bytecodes::_ldc_w) {
1976 assert(opcode == Bytecodes::_ldc2_w, "must be ldc2_w");
2305 Bytecodes::Code opcode = bcs->raw_code();
2306 unsigned int types = (opcode == Bytecodes::_invokeinterface
2308 : opcode == Bytecodes::_invokedynamic
2326 if (opcode == Bytecodes::_invokedynamic) {
2381 if (opcode == Bytecodes::_invokeinterface) {
2399 if (opcode == Bytecodes::_invokedynamic) {
2410 if (opcode != Bytecodes::_invokespecial ||
2416 } else if (opcode == Bytecodes::_invokespecial
2434 if (opcode != Bytecodes::_invokestatic &&
2435 opcode != Bytecodes::_invokedynamic) {
2441 if (opcode == Bytecodes::_invokespecial) {
2443 } else if (opcode == Bytecodes::_invokevirtual) {
2478 assert(opcode == Bytecodes::_invokeinterface, "Unexpected opcode encountered");