Home | History | Annotate | Download | only in compiler

Lines Matching refs:graph

12 #include "src/compiler/graph.h"
21 // A common base class for anything that creates nodes in a graph.
24 explicit GraphBuilder(Graph* graph) : graph_(graph) {}
65 Graph* graph() const { return graph_; }
73 Graph* graph_;
77 // The StructuredGraphBuilder produces a high-level IR graph. It is used as the
82 StructuredGraphBuilder(Graph* graph, CommonOperatorBuilder* common);
126 Zone* zone() const { return graph()->zone(); }
137 // depends on the graph builder, but environments themselves are not virtual.
211 Zone* zone() const { return graph()->zone(); }
212 Graph* graph() const { return builder_->graph(); }