Home | History | Annotate | Download | only in compiler

Lines Matching refs:node

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