Searched refs:GraphReducer (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
D | graph-reducer.cc | 22 enum class GraphReducer::State : uint8_t { 42 GraphReducer::GraphReducer(Zone* zone, Graph* graph, TickCounter* tick_counter, in GraphReducer() function in v8::internal::compiler::GraphReducer 59 GraphReducer::~GraphReducer() = default; 62 void GraphReducer::AddReducer(Reducer* reducer) { in AddReducer() 67 void GraphReducer::ReduceNode(Node* node) { in ReduceNode() 97 void GraphReducer::ReduceGraph() { ReduceNode(graph()->end()); } in ReduceGraph() 100 Reduction GraphReducer::Reduce(Node* const node) { in Reduce() 148 void GraphReducer::ReduceTop() { in ReduceTop() 212 void GraphReducer::Replace(Node* node, Node* replacement) { in Replace() 217 void GraphReducer::Replace(Node* node, Node* replacement, NodeId max_id) { in Replace() [all …]
|
D | graph-reducer.h | 139 class V8_EXPORT_PRIVATE GraphReducer 142 GraphReducer(Zone* zone, Graph* graph, TickCounter* tick_counter, in NON_EXPORTED_BASE() 145 ~GraphReducer() override; in NON_EXPORTED_BASE() 147 GraphReducer(const GraphReducer&) = delete; in NON_EXPORTED_BASE() 148 GraphReducer& operator=(const GraphReducer&) = delete; in NON_EXPORTED_BASE()
|
D | pipeline.cc | 982 void AddReducer(PipelineData* data, GraphReducer* graph_reducer, in AddReducer() 1336 GraphReducer graph_reducer(temp_zone, data->graph(), &info->tick_counter(), in DECL_PIPELINE_PHASE_CONSTANTS() 1404 GraphReducer graph_reducer(temp_zone, data->graph(), &info->tick_counter(), in DECL_PIPELINE_PHASE_CONSTANTS() 1478 GraphReducer graph_reducer( in DECL_PIPELINE_PHASE_CONSTANTS() 1499 GraphReducer graph_reducer( in DECL_PIPELINE_PHASE_CONSTANTS() 1546 GraphReducer reducer(temp_zone, data->graph(), in DECL_PIPELINE_PHASE_CONSTANTS() 1569 GraphReducer graph_reducer( in DECL_PIPELINE_PHASE_CONSTANTS() 1628 GraphReducer graph_reducer( in DECL_PIPELINE_PHASE_CONSTANTS() 1720 GraphReducer graph_reducer( in DECL_PIPELINE_PHASE_CONSTANTS() 1738 GraphReducer graph_reducer( in DECL_PIPELINE_PHASE_CONSTANTS() [all …]
|
D | typer.cc | 328 GraphReducer graph_reducer(zone(), graph(), tick_counter_, broker()); in Run()
|