Lines Matching defs:call_
52 explicit JSCallAccessor(Node* call) : call_(call) {
58 return call_->InputAt(JSCallOrConstructNode::TargetIndex());
62 return JSCallNode{call_}.receiver();
65 Node* new_target() const { return JSConstructNode{call_}.new_target(); }
68 return FrameState{NodeProperties::GetFrameStateInput(call_)};
72 return (call_->opcode() == IrOpcode::kJSCall)
73 ? JSCallNode{call_}.ArgumentCount()
74 : JSConstructNode{call_}.ArgumentCount();
78 return (call_->opcode() == IrOpcode::kJSCall)
79 ? JSCallNode{call_}.Parameters().frequency()
80 : JSConstructNode{call_}.Parameters().frequency();
84 Node* call_;