Searched defs:callee_method (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp79 JavaCallWrapper(methodHandle callee_method, Handle receiver, JavaValue* result, TRAPS);
90 methodOop callee_method() { return _callee_method; } function in class:JavaCallWrapper
H A DjavaCalls.cpp58 JavaCallWrapper::JavaCallWrapper(methodHandle callee_method, Handle receiver, JavaValue* result, TRAPS) { argument
88 _callee_method = callee_method();
H A DsharedRuntime.cpp1108 methodHandle callee_method; local
1119 callee_method = methodHandle(THREAD, fr.entry_frame_call_wrapper()->callee_method());
1120 assert(fr.entry_frame_call_wrapper()->receiver() == NULL || !callee_method->is_static(), "non-null receiver for static call??");
1125 callee_method = callinfo.selected_method();
1127 assert(callee_method()->is_method(), "must be");
1128 return callee_method;
1135 methodHandle callee_method; local
1136 callee_method = resolve_sub_helper(thread, is_virtual, is_optimized, THREAD);
1139 while (!HAS_PENDING_EXCEPTION && callee_method
1185 methodHandle callee_method = call_info.selected_method(); local
1290 methodHandle callee_method; variable
1292 callee_method = SharedRuntime::handle_ic_miss_helper(thread, CHECK_NULL); variable
1334 methodHandle callee_method; variable
1337 callee_method = SharedRuntime::reresolve_call_site(thread, CHECK_NULL); variable
1348 methodHandle callee_method; variable
1350 callee_method = SharedRuntime::resolve_helper(thread, false, false, CHECK_NULL); variable
1361 methodHandle callee_method; variable
1363 callee_method = SharedRuntime::resolve_helper(thread, true, false, CHECK_NULL); variable
1375 methodHandle callee_method; variable
1377 callee_method = SharedRuntime::resolve_helper(thread, true, true, CHECK_NULL); variable
1409 methodHandle callee_method = SharedRuntime::reresolve_call_site(thread, CHECK_(methodHandle())); local
1422 methodHandle callee_method = call_info.selected_method(); local
1618 methodHandle callee_method = find_callee_method(thread, CHECK_(methodHandle())); local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp72 InlineTree::InlineTree(Compile* c, ciMethod* callee_method, JVMState* caller_jvms, argument
77 _method(callee_method),
87 static bool is_init_with_ea(ciMethod* callee_method, argument
92 ( callee_method->is_initializer() ||
95 caller_method->holder()->is_subclass_of(callee_method->holder()))
100 bool InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method, argument
104 if(callee_method->should_inline()) {
114 int size = callee_method->code_size_for_inlining();
117 if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
122 tty->print_cr("Inlined method with many throws (throws=%d):", callee_method
177 should_not_inline(ciMethod *callee_method, ciMethod* caller_method, WarmCallInfo* wci_result) argument
307 try_to_inline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result, bool& should_delay) argument
415 pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) argument
460 print_inlining(ciMethod* callee_method, int caller_bci, bool success) const argument
483 ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) argument
582 build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) argument
[all...]

Completed in 37 milliseconds