Lines Matching defs:node
8 #include "src/compiler/node-properties.h"
38 bool IsRedundantCheckpoint(Node* node) {
39 FrameStateFunctionInfo const* function_info = GetFunctionInfo(node);
41 Node* effect = NodeProperties::GetEffectInput(node);
54 Reduction CheckpointElimination::ReduceCheckpoint(Node* node) {
55 DCHECK_EQ(IrOpcode::kCheckpoint, node->opcode());
56 if (IsRedundantCheckpoint(node)) {
57 return Replace(NodeProperties::GetEffectInput(node));
62 Reduction CheckpointElimination::Reduce(Node* node) {
64 switch (node->opcode()) {
66 return ReduceCheckpoint(node);