comparison src/share/vm/interpreter/linkResolver.hpp @ 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 e5b0439ef4ae
children e66fd840cb6b
comparison
equal deleted inserted replaced
725:928912ce8438 726:be93aad57795
165 // runtime resolving from constant pool 165 // runtime resolving from constant pool
166 static void resolve_invokestatic (CallInfo& result, constantPoolHandle pool, int index, TRAPS); 166 static void resolve_invokestatic (CallInfo& result, constantPoolHandle pool, int index, TRAPS);
167 static void resolve_invokespecial (CallInfo& result, constantPoolHandle pool, int index, TRAPS); 167 static void resolve_invokespecial (CallInfo& result, constantPoolHandle pool, int index, TRAPS);
168 static void resolve_invokevirtual (CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS); 168 static void resolve_invokevirtual (CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS);
169 static void resolve_invokeinterface(CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS); 169 static void resolve_invokeinterface(CallInfo& result, Handle recv, constantPoolHandle pool, int index, TRAPS);
170 static void resolve_invokedynamic (CallInfo& result, constantPoolHandle pool, int index, TRAPS);
170 171
171 static void resolve_invoke (CallInfo& result, Handle recv, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS); 172 static void resolve_invoke (CallInfo& result, Handle recv, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS);
172 }; 173 };