Lines Matching refs:call_
43 explicit JSCallAccessor(Node* call) : call_(call) { in JSCallAccessor()
50 return call_->InputAt(0); in target()
54 DCHECK_EQ(IrOpcode::kJSCall, call_->opcode()); in receiver()
55 return call_->InputAt(1); in receiver()
59 DCHECK_EQ(IrOpcode::kJSConstruct, call_->opcode()); in new_target()
60 return call_->InputAt(formal_arguments() + 1); in new_target()
65 return NodeProperties::GetFrameStateInput(call_); in frame_state()
72 return call_->op()->ValueInputCount() - 2; in formal_arguments()
76 return (call_->opcode() == IrOpcode::kJSCall) in frequency()
77 ? CallParametersOf(call_->op()).frequency() in frequency()
78 : ConstructParametersOf(call_->op()).frequency(); in frequency()
82 Node* call_; member in v8::internal::compiler::JSCallAccessor