Lines Matching refs:node
16 #include "src/compiler/node-properties.h"
328 // Parameter for CheckClosure node.
680 // A single FastApiCall node can represent multiple overloaded functions.
1059 // Abort if the value does not match the node's computed type after
1082 explicit constexpr SimplifiedNodeWrapperBase(Node* node)
1083 : NodeWrapper(node) {}
1085 // Valid iff this node has a context input.
1089 NodeProperties::GetContextInput(node()));
1092 // Valid iff this node has exactly one effect input.
1094 DCHECK_EQ(node()->op()->EffectInputCount(), 1);
1095 return Effect{NodeProperties::GetEffectInput(node())};
1098 // Valid iff this node has exactly one control input.
1100 DCHECK_EQ(node()->op()->ControlInputCount(), 1);
1101 return Control{NodeProperties::GetControlInput(node())};
1104 // Valid iff this node has a frame state input.
1106 return FrameState{NodeProperties::GetFrameStateInput(node())};
1114 NodeProperties::GetValueInput(node(), TheIndex)); \
1119 explicit constexpr FastApiCallNode(Node* node)
1120 : SimplifiedNodeWrapperBase(node) {
1121 DCHECK_EQ(IrOpcode::kFastApiCall, node->opcode());
1125 return FastApiCallParametersOf(node()->op());
1168 NodeProperties::GetValueInput(node(), FastCallArgumentIndex(i)));
1178 NodeProperties::GetValueInput(node(), SlowCallArgumentIndex(i)));