comparison src/share/vm/interpreter/bytecodes.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 ad8c8ca4ab0f
children bd02caa94611
comparison
equal deleted inserted replaced
725:928912ce8438 726:be93aad57795
355 def(_putfield , "putfield" , "bjj" , NULL , T_ILLEGAL, -2, true ); 355 def(_putfield , "putfield" , "bjj" , NULL , T_ILLEGAL, -2, true );
356 def(_invokevirtual , "invokevirtual" , "bjj" , NULL , T_ILLEGAL, -1, true); 356 def(_invokevirtual , "invokevirtual" , "bjj" , NULL , T_ILLEGAL, -1, true);
357 def(_invokespecial , "invokespecial" , "bjj" , NULL , T_ILLEGAL, -1, true); 357 def(_invokespecial , "invokespecial" , "bjj" , NULL , T_ILLEGAL, -1, true);
358 def(_invokestatic , "invokestatic" , "bjj" , NULL , T_ILLEGAL, 0, true); 358 def(_invokestatic , "invokestatic" , "bjj" , NULL , T_ILLEGAL, 0, true);
359 def(_invokeinterface , "invokeinterface" , "bjj__", NULL , T_ILLEGAL, -1, true); 359 def(_invokeinterface , "invokeinterface" , "bjj__", NULL , T_ILLEGAL, -1, true);
360 def(_xxxunusedxxx , "xxxunusedxxx" , NULL , NULL , T_VOID , 0, false); 360 def(_invokedynamic , "invokedynamic" , "bjjjj", NULL , T_ILLEGAL, -1, true );
361 def(_new , "new" , "bii" , NULL , T_OBJECT , 1, true ); 361 def(_new , "new" , "bii" , NULL , T_OBJECT , 1, true );
362 def(_newarray , "newarray" , "bc" , NULL , T_OBJECT , 0, true ); 362 def(_newarray , "newarray" , "bc" , NULL , T_OBJECT , 0, true );
363 def(_anewarray , "anewarray" , "bii" , NULL , T_OBJECT , 0, true ); 363 def(_anewarray , "anewarray" , "bii" , NULL , T_OBJECT , 0, true );
364 def(_arraylength , "arraylength" , "b" , NULL , T_VOID , 0, true ); 364 def(_arraylength , "arraylength" , "b" , NULL , T_VOID , 0, true );
365 def(_athrow , "athrow" , "b" , NULL , T_VOID , -1, true ); 365 def(_athrow , "athrow" , "b" , NULL , T_VOID , -1, true );