Lines Matching defs:call

217         // This is the first use of this intrinsic as a virtual call.
371 CallNode* call = cg->call_node();
375 if (!useful.member(call)) {
764 // Any exceptions that escape from this call must be rethrown
1739 // If there is room, try to inline some more warm call sites.
1747 WarmCallInfo* call;
1748 while (amount_to_grow > 0 && (call = pop_warm_call()) != NULL) {
1749 int est_size = (int)call->size();
1752 call->make_cold();
1755 call->make_hot();
1773 WarmCallInfo* call;
1774 while ((call = pop_warm_call()) != NULL) {
1775 call->make_cold();
2227 tty->print_cr(" # Block is sole successor of call");
2464 // case Op_ConvL2D: // handled by leaf call
2465 // case Op_ConvD2L: // handled by leaf call
2478 frc.inc_java_call_count(); // Count java call site;
2483 CallNode *call = n->as_Call();
2484 // Count call sites where the FP mode bit would have to be flipped.
2488 if( !call->is_CallStaticJava() || !call->as_CallStaticJava()->_name ) {
2489 frc.inc_call_count(); // Count the call site
2491 Node *n = call->in(TypeFunc::Parms);
2501 call->set_req( TypeFunc::Parms, x );
3002 // and call sites. On Intel, we can get correct rounding either by
3005 // clearing the mode bit around call sites). The mode bit is only used
3051 CallNode *call = n->in(0)->in(0)->as_Call();
3052 if (call->entry_point() == OptoRuntime::rethrow_stub()) {
3054 } else if (call->req() > TypeFunc::Parms &&
3055 call->is_CallDynamicJava()) {
3057 // detected that the virtual call will always result in a null
3060 Node *arg0 = call->in(TypeFunc::Parms);
3065 } else if (call->entry_point() == OptoRuntime::new_array_Java() &&
3066 call->req() > TypeFunc::Parms+1 &&
3067 call->is_CallStaticJava()) {
3071 Node *arg1 = call->in(TypeFunc::Parms+1);
3525 CallNode* call = n->as_Call();
3526 CallGenerator* cg = call->generator();