Searched defs:call_method (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp69 class methodOopDesc* _callee; /* method to call during call_method request */
70 address _callee_entry_point; /* address to jump to for call_method request */
113 call_method, // request for new frame from interpreter, manager responds with method_entry enumerator in enum:BytecodeInterpreter::messages
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp280 bool Compile::should_delay_inlining(ciMethod* call_method, JVMState* jvms) { argument
283 if ((call_method->holder() == C->env()->StringBuilder_klass() ||
284 call_method->holder() == C->env()->StringBuffer_klass()) &&
291 switch (call_method->intrinsic_id()) {
H A DcallGenerator.cpp1007 void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) { argument
1009 int code_size = call_method->code_size();
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp1805 Label call_method; local
1811 __ cmpl(rdx, (int32_t)BytecodeInterpreter::call_method);
1812 __ jcc(Assembler::equal, call_method);
2130 __ bind(call_method);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp1631 Label call_method; local
1638 __ cmp(L1_scratch, (int)BytecodeInterpreter::call_method);
1639 __ br(Assembler::equal, false, Assembler::pt, call_method);
1947 __ bind(call_method);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1278 ciMethod *call_method = dest_method; local
1283 call_method = optimized_method;
1290 if (SharkInliner::attempt_inline(call_method, current_state()))
1299 int vtable_index = call_method->resolve_vtable_index(
1306 callee = get_interface_callee(receiver, call_method);
1310 callee = get_direct_callee(call_method);
1330 decache_for_Java_call(call_method);
1350 cache_after_Java_call(call_method);

Completed in 72 milliseconds