comparison src/share/vm/interpreter/templateTable.cpp @ 726:be93aad57795

6655646: dynamic languages need dynamically linked call sites Summary: invokedynamic instruction (JSR 292 RI) Reviewed-by: twisti, never
author jrose
date Tue, 21 Apr 2009 23:21:04 -0700
parents 37f87013dfd8
children bd02caa94611
comparison
equal deleted inserted replaced
725:928912ce8438 726:be93aad57795
440 def(Bytecodes::_putfield , ubcp|____|clvm|____, vtos, vtos, putfield , 2 ); 440 def(Bytecodes::_putfield , ubcp|____|clvm|____, vtos, vtos, putfield , 2 );
441 def(Bytecodes::_invokevirtual , ubcp|disp|clvm|____, vtos, vtos, invokevirtual , 2 ); 441 def(Bytecodes::_invokevirtual , ubcp|disp|clvm|____, vtos, vtos, invokevirtual , 2 );
442 def(Bytecodes::_invokespecial , ubcp|disp|clvm|____, vtos, vtos, invokespecial , 1 ); 442 def(Bytecodes::_invokespecial , ubcp|disp|clvm|____, vtos, vtos, invokespecial , 1 );
443 def(Bytecodes::_invokestatic , ubcp|disp|clvm|____, vtos, vtos, invokestatic , 1 ); 443 def(Bytecodes::_invokestatic , ubcp|disp|clvm|____, vtos, vtos, invokestatic , 1 );
444 def(Bytecodes::_invokeinterface , ubcp|disp|clvm|____, vtos, vtos, invokeinterface , 1 ); 444 def(Bytecodes::_invokeinterface , ubcp|disp|clvm|____, vtos, vtos, invokeinterface , 1 );
445 def(Bytecodes::_invokedynamic , ubcp|disp|clvm|____, vtos, vtos, invokedynamic , 1 );
445 def(Bytecodes::_new , ubcp|____|clvm|____, vtos, atos, _new , _ ); 446 def(Bytecodes::_new , ubcp|____|clvm|____, vtos, atos, _new , _ );
446 def(Bytecodes::_newarray , ubcp|____|clvm|____, itos, atos, newarray , _ ); 447 def(Bytecodes::_newarray , ubcp|____|clvm|____, itos, atos, newarray , _ );
447 def(Bytecodes::_anewarray , ubcp|____|clvm|____, itos, atos, anewarray , _ ); 448 def(Bytecodes::_anewarray , ubcp|____|clvm|____, itos, atos, anewarray , _ );
448 def(Bytecodes::_arraylength , ____|____|____|____, atos, itos, arraylength , _ ); 449 def(Bytecodes::_arraylength , ____|____|____|____, atos, itos, arraylength , _ );
449 def(Bytecodes::_athrow , ____|disp|____|____, atos, vtos, athrow , _ ); 450 def(Bytecodes::_athrow , ____|disp|____|____, atos, vtos, athrow , _ );
501 def(Bytecodes::_fast_iload2 , ubcp|____|____|____, vtos, itos, fast_iload2 , _ ); 502 def(Bytecodes::_fast_iload2 , ubcp|____|____|____, vtos, itos, fast_iload2 , _ );
502 def(Bytecodes::_fast_icaload , ubcp|____|____|____, vtos, itos, fast_icaload , _ ); 503 def(Bytecodes::_fast_icaload , ubcp|____|____|____, vtos, itos, fast_icaload , _ );
503 504
504 def(Bytecodes::_fast_invokevfinal , ubcp|disp|clvm|____, vtos, vtos, fast_invokevfinal , 2 ); 505 def(Bytecodes::_fast_invokevfinal , ubcp|disp|clvm|____, vtos, vtos, fast_invokevfinal , 2 );
505 506
506
507 def(Bytecodes::_fast_linearswitch , ubcp|disp|____|____, itos, vtos, fast_linearswitch , _ ); 507 def(Bytecodes::_fast_linearswitch , ubcp|disp|____|____, itos, vtos, fast_linearswitch , _ );
508 def(Bytecodes::_fast_binaryswitch , ubcp|disp|____|____, itos, vtos, fast_binaryswitch , _ ); 508 def(Bytecodes::_fast_binaryswitch , ubcp|disp|____|____, itos, vtos, fast_binaryswitch , _ );
509 509
510 def(Bytecodes::_return_register_finalizer , ____|disp|clvm|____, vtos, vtos, _return , vtos ); 510 def(Bytecodes::_return_register_finalizer , ____|disp|clvm|____, vtos, vtos, _return , vtos );
511 511