HomeSort by relevance Sort by last modified time
    Searched defs:GraphReducer (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/
graph-reducer.cc 18 enum class GraphReducer::State : uint8_t {
28 GraphReducer::GraphReducer(Zone* zone, Graph* graph, Node* dead)
40 GraphReducer::~GraphReducer() {}
43 void GraphReducer::AddReducer(Reducer* reducer) {
48 void GraphReducer::ReduceNode(Node* node) {
78 void GraphReducer::ReduceGraph() { ReduceNode(graph()->end()); }
81 Reduction GraphReducer::Reduce(Node* const node) {
111 void GraphReducer::ReduceTop()
    [all...]
graph-reducer.h 52 // Invoked by the {GraphReducer} when all nodes are done. Can be used to
124 class V8_EXPORT_PRIVATE GraphReducer
127 GraphReducer(Zone* zone, Graph* graph, Node* dead = nullptr);
128 ~GraphReducer();
180 DISALLOW_COPY_AND_ASSIGN(GraphReducer);

Completed in 65 milliseconds