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