comparison src/share/vm/opto/parse2.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 98cb887364d3
children c96bf21b756f
comparison
equal deleted inserted replaced
725:928912ce8438 726:be93aad57795
2154 case Bytecodes::_lookupswitch: 2154 case Bytecodes::_lookupswitch:
2155 do_lookupswitch(); 2155 do_lookupswitch();
2156 break; 2156 break;
2157 2157
2158 case Bytecodes::_invokestatic: 2158 case Bytecodes::_invokestatic:
2159 case Bytecodes::_invokedynamic:
2159 case Bytecodes::_invokespecial: 2160 case Bytecodes::_invokespecial:
2160 case Bytecodes::_invokevirtual: 2161 case Bytecodes::_invokevirtual:
2161 case Bytecodes::_invokeinterface: 2162 case Bytecodes::_invokeinterface:
2162 do_call(); 2163 do_call();
2163 break; 2164 break;