Searched refs:appendix (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp270 Handle appendix, Handle method_type) {
272 set_method_handle_common(cpool, Bytecodes::_invokehandle, adapter, appendix, method_type);
277 Handle appendix, Handle method_type) {
279 set_method_handle_common(cpool, Bytecodes::_invokedynamic, adapter, appendix, method_type);
285 Handle appendix, Handle method_type) {
301 const bool has_appendix = appendix.not_null();
307 appendix = Universe::void_mirror();
319 tty->print_cr("set_method_handle bc=%d appendix="PTR_FORMAT"%s method_type="PTR_FORMAT"%s method="PTR_FORMAT" ",
321 (intptr_t)appendix(), (has_appendix ? "" : " (unused)"),
325 if (has_appendix) appendix()
268 set_method_handle(constantPoolHandle cpool, methodHandle adapter, Handle appendix, Handle method_type) argument
275 set_dynamic_call(constantPoolHandle cpool, methodHandle adapter, Handle appendix, Handle method_type) argument
282 set_method_handle_common(constantPoolHandle cpool, Bytecodes::Code invoke_code, methodHandle adapter, Handle appendix, Handle method_type) argument
[all...]
H A DcpCacheOop.hpp100 // for invokedynamic, f1 contains a site-specific CallSite object (as an appendix)
101 // for invokehandle, f1 contains a site-specific MethodType object (as an appendix)
102 // (upcoming metadata changes will move the appendix to a separate array)
228 Handle appendix, // stored in f1; could be a java.lang.invoke.MethodType
235 Handle appendix, // stored in f1; could be a java.lang.invoke.CallSite
241 // The "appendix" is an optional call-site-specific parameter which is
247 // null appendix, the argument is not passed at all.
249 // The appendix is *not* represented in the signature of the symbolic
258 Handle appendix, // appendix suc
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.cpp281 Handle appendix; local
286 &appendix,
292 tty->print(" lookup_polymorphic_method => appendix = ");
293 if (appendix.is_null()) tty->print_cr("(none)");
294 else appendix->print_on(tty);
306 if (appendix.not_null()) expected_size_of_params += 1;
317 (*appendix_result_or_null) = appendix;
1252 Handle appendix( THREAD, cpce->appendix_if_resolved(pool));
1254 result.set_handle(method, appendix, method_type, CHECK);
1274 // The appendix argumen
[all...]
H A Dbytecode.cpp159 Handle Bytecode_invoke::appendix(TRAPS) { function in class:Bytecode_invoke
H A Dbytecode.hpp226 Handle appendix(TRAPS); // if CPCE::has_appendix (from constant pool)
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp2279 oop appendix = appendix_box->obj_at(0); local
2284 if (appendix != NULL) { tty->print("appendix = "); appendix->print(); }
2288 (*appendix_result) = Handle(THREAD, appendix);
2508 // call java.lang.invoke.MethodHandleNatives::linkCallSite(caller, bsm, name, mtype, info, &appendix)
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp1704 // Push appendix argument (MethodType, CallSite, etc.), if one.
1706 ciObject* appendix = stream()->get_appendix();
1707 Value arg = append(new Constant(new ObjectConstant(appendix)));

Completed in 69 milliseconds