Home | History | Annotate | Download | only in compiler

Lines Matching refs:Node

8 #include "src/compiler/node.h"
22 AllNodes(Zone* local_zone, Node* end, const Graph* graph,
25 // reachable from the End node.
28 bool IsLive(const Node* node) const {
30 return IsReachable(node);
33 bool IsReachable(const Node* node) const {
34 if (!node) return false;
35 size_t id = node->id();
42 void Mark(Zone* local_zone, Node* end, const Graph* graph);