Lines Matching defs:node
8 #include "src/compiler/node-properties.h"
14 Reduction WasmEscapeAnalysis::Reduce(Node* node) {
15 switch (node->opcode()) {
17 return ReduceAllocateRaw(node);
23 Reduction WasmEscapeAnalysis::ReduceAllocateRaw(Node* node) {
24 DCHECK_EQ(node->opcode(), IrOpcode::kAllocateRaw);
27 // Collect all value edges of {node} in this vector.
29 for (Edge edge : node->use_edges()) {
48 // The value stored by this StoreToObject node might be another allocation
51 // of former inputs of the replaced node.
60 ReplaceWithValue(node, mcgraph_->Dead(), NodeProperties::GetEffectInput(node),
61 NodeProperties::GetControlInput(node));
63 return Changed(node);