Lines Matching defs:node
9 #include "src/compiler/node-marker.h"
18 // Trims dead nodes from the node graph.
34 Node* const node = *begin++;
35 if (!node->IsDead()) MarkAsLive(node);
41 V8_INLINE bool IsLive(Node* const node) { return is_live_.Get(node); }
42 V8_INLINE void MarkAsLive(Node* const node) {
43 DCHECK(!node->IsDead());
44 if (!IsLive(node)) {
45 is_live_.Set(node, true);
46 live_.push_back(node);