Searched defs:call (Results 101 - 105 of 105) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp118 // skip over a call which does not affect this memory slice
124 CallNode *call = proj_in->as_Call(); local
125 if (!call->may_modify(t_adr, phase)) {
126 result = call->in(TypeFunc::Memory);
146 // Otherwise skip it (the call updated 'result' value).
290 // Note: C++ will not remove it since the call has side effect.
585 CallNode *call = mem->in(0)->as_Call(); local
586 if (!call->may_modify(addr_t, phase)) {
587 mem = call->in(TypeFunc::Memory);
588 continue; // (a) advance through independent call memor
831 const Node* call = adr->in(0); local
[all...]
H A DgraphKit.cpp140 assert(!map()->has_exceptions(), "call add_exception_states_from 1st");
141 assert(!is_hidden_merge(control()), "call use_exception_state, not set_map");
251 // We check sp also because call bytecodes can generate exceptions
332 assert(ex_jvms->same_calls_as(phi_map->_jvms), "consistent call chains");
628 // of in-edges on the call to the uncommon trap.
679 assert(!kit->stopped(), "must call stopped() before");
733 // This call is made from many of the bytecode handling
744 // We are building a graph for a call to a native method.
828 void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) { argument
829 // Add the safepoint edges to the call (o
1414 set_all_memory_call(Node* call, bool separate_io_proj) argument
1636 set_arguments_for_java_call(CallJavaNode* call) argument
1648 set_edges_for_java_call(CallJavaNode* call, bool must_throw, bool separate_io_proj) argument
1676 set_results_for_java_call(CallJavaNode* call, bool separate_io_proj) argument
1711 set_predefined_input_for_runtime_call(SafePointNode* call) argument
1732 set_predefined_output_for_runtime_call(Node* call, Node* keep_mem, const TypePtr* hook_mem) argument
1762 replace_call(CallNode* call, Node* result) argument
1972 Node* call = make_runtime_call(RC_NO_LEAF | RC_UNCOMMON | local
2156 CallNode* call; local
2261 make_slow_call_ex(Node* call, ciInstanceKlass* ex_klass, bool separate_io_proj) argument
[all...]
H A Dlibrary_call.cpp1548 // Slow path - non-blocking leaf call
1549 Node* call = NULL; local
1552 call = make_runtime_call(RC_LEAF, OptoRuntime::Math_D_D_Type(),
1557 call = make_runtime_call(RC_LEAF, OptoRuntime::Math_D_D_Type(),
1562 call = make_runtime_call(RC_LEAF, OptoRuntime::Math_D_D_Type(),
1567 assert(control()->in(0) == call, "");
1568 Node* slow_result = _gvn.transform(new (C) ProjNode(call, TypeFunc::Parms));
1594 // The pow or exp intrinsic returned a NaN, which requires a call
1595 // to the runtime. Recompile with the runtime call.
1601 // If this inlining ever returned NaN in the past, we compile a call
5240 Node* call = make_runtime_call(RC_NO_LEAF | RC_UNCOMMON, local
5279 Node* call = make_runtime_call(RC_LEAF|RC_NO_FP, local
5306 Node* call = make_runtime_call(RC_LEAF|RC_NO_FP, local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp487 // Set flag if return address is a method handle call site.
599 // The interpreter code to call this tracing function is only
606 assert(RC_TRACE_IN_RANGE(0x00001000, 0x00002000), "wrong call");
619 guarantee(false, "faulting at call to an obsolete method.");
714 // These errors occur only at call sites
719 // These errors occur only at call sites
733 // cache sites (when the callee activation is not yet set up) so we are at a call site
786 // the caller was at a call site, it's safe to destroy all
890 * the interpreter's native entries call NativeLookup::lookup() which
892 * caught and forwarded on the return from NativeLookup::lookup() call
1709 NativeCall *call = nativeCall_before(return_pc); variable
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp98 // Should have been handled higher up the call chain.
426 // If "which" is call32_operand, selects the displacement of a call or jump.
483 case 0xFF: // pushq a; decl a; incl a; call a; jmp a
717 case 0xE8: // call rdisp32
720 assert(which == call32_operand, "call has no disp32 or imm");
761 assert(which != call32_operand, "instruction is not a call, jmp, or jcc");
1127 void Assembler::call(Label& L, relocInfo::relocType rtype) { function in class:Assembler
1149 void Assembler::call(Register dst) { function in class:Assembler
1156 void Assembler::call(Address adr) { function in class:Assembler
1164 assert(entry != NULL, "call mos
6806 void MacroAssembler::call(Label& L, relocInfo::relocType rtype) { function in class:MacroAssembler
6810 void MacroAssembler::call(Register entry) { function in class:MacroAssembler
6814 void MacroAssembler::call(AddressLiteral entry) { function in class:MacroAssembler
[all...]

Completed in 66 milliseconds

12345