Lines Matching refs:Bytecodes

108     Bytecodes::Code opcode = bcs.raw_next();
110 case Bytecodes::_return: *bcs.bcp() = Bytecodes::_return_register_finalizer; break;
112 case Bytecodes::_istore:
113 case Bytecodes::_lstore:
114 case Bytecodes::_fstore:
115 case Bytecodes::_dstore:
116 case Bytecodes::_astore:
120 case Bytecodes::_istore_0:
121 case Bytecodes::_lstore_0:
122 case Bytecodes::_fstore_0:
123 case Bytecodes::_dstore_0:
124 case Bytecodes::_astore_0:
155 if ((*opc) == (u1)Bytecodes::_invokevirtual ||
157 (*opc) == (u1)Bytecodes::_invokespecial) {
180 (*opc) = (u1)Bytecodes::_invokehandle;
185 if ((*opc) == (u1)Bytecodes::_invokehandle) {
186 (*opc) = (u1)Bytecodes::_invokevirtual;
197 assert(p[-1] == Bytecodes::_invokedynamic, "not invokedynamic bytecode");
234 assert((*bcp) == (is_wide ? Bytecodes::_ldc_w : Bytecodes::_ldc), "not ldc bytecode");
241 (*bcp) = Bytecodes::_fast_aldc_w;
245 (*bcp) = Bytecodes::_fast_aldc;
251 Bytecodes::Code rewritten_bc =
252 (is_wide ? Bytecodes::_fast_aldc_w : Bytecodes::_fast_aldc);
258 (*bcp) = Bytecodes::_ldc_w;
262 (*bcp) = Bytecodes::_ldc;
282 Bytecodes::Code c;
284 // Bytecodes and their length
292 c = (Bytecodes::Code)(*bcp);
298 bc_length = Bytecodes::length_for(c);
300 bc_length = Bytecodes::length_at(method, bcp);
305 if (c == Bytecodes::_wide) {
307 c = (Bytecodes::Code)bcp[1];
314 case Bytecodes::_lookupswitch : {
319 ? Bytecodes::_fast_linearswitch
320 : Bytecodes::_fast_binaryswitch
325 case Bytecodes::_fast_linearswitch:
326 case Bytecodes::_fast_binaryswitch: {
328 (*bcp) = Bytecodes::_lookupswitch;
332 case Bytecodes::_getstatic : // fall through
333 case Bytecodes::_putstatic : // fall through
334 case Bytecodes::_getfield : // fall through
335 case Bytecodes::_putfield : // fall through
336 case Bytecodes::_invokevirtual : // fall through
337 case Bytecodes::_invokespecial : // fall through
338 case Bytecodes::_invokestatic :
339 case Bytecodes::_invokeinterface:
340 case Bytecodes::_invokehandle : // if reverse=true
343 case Bytecodes::_invokedynamic:
346 case Bytecodes::_ldc:
347 case Bytecodes::_fast_aldc: // if reverse=true
350 case Bytecodes::_ldc_w:
351 case Bytecodes::_fast_aldc_w: // if reverse=true
354 case Bytecodes::_jsr : // fall through
355 case Bytecodes::_jsr_w : nof_jsrs++; break;
356 case Bytecodes::_monitorenter : // fall through
357 case Bytecodes::_monitorexit : has_monitor_bytecodes = true; break;
387 *bcp = (u1)Bytecodes::_shouldnotreachhere;