/external/v8/src/compiler/ |
D | graph-reducer.cc | 18 enum class GraphReducer::State : uint8_t { 29 GraphReducer::GraphReducer(Zone* zone, Graph* graph, Node* dead) in GraphReducer() function in v8::internal::compiler::GraphReducer 38 GraphReducer::~GraphReducer() {} in ~GraphReducer() 41 void GraphReducer::AddReducer(Reducer* reducer) { in AddReducer() 46 void GraphReducer::ReduceNode(Node* node) { in ReduceNode() 76 void GraphReducer::ReduceGraph() { ReduceNode(graph()->end()); } in ReduceGraph() 79 Reduction GraphReducer::Reduce(Node* const node) { in Reduce() 109 void GraphReducer::ReduceTop() { in ReduceTop() 165 void GraphReducer::Replace(Node* node, Node* replacement) { in Replace() 170 void GraphReducer::Replace(Node* node, Node* replacement, NodeId max_id) { in Replace() [all …]
|
D | graph-reducer.h | 122 class GraphReducer : public AdvancedReducer::Editor { 124 GraphReducer(Zone* zone, Graph* graph, Node* dead = nullptr); 125 ~GraphReducer(); 177 DISALLOW_COPY_AND_ASSIGN(GraphReducer);
|
D | osr.cc | 316 GraphReducer graph_reducer(tmp_zone, graph); in Deconstruct()
|
D | pipeline.cc | 486 class JSGraphReducer final : public GraphReducer { 489 : GraphReducer(zone, jsgraph->graph(), jsgraph->Dead()) {} in JSGraphReducer() 494 void AddReducer(PipelineData* data, GraphReducer* graph_reducer, in AddReducer()
|
D | typer.cc | 305 GraphReducer graph_reducer(zone(), graph()); in Run()
|
/external/v8/test/unittests/compiler/ |
D | graph-reducer-unittest.cc | 297 GraphReducer graph_reducer(zone(), graph(), nullptr); in TEST_F() 314 GraphReducer graph_reducer(zone(), graph(), nullptr); in TEST_F() 333 GraphReducer graph_reducer(zone(), graph(), nullptr); in TEST_F() 354 GraphReducer graph_reducer(zone(), graph(), dead); in TEST_F() 378 GraphReducer graph_reducer(zone(), graph(), dead); in TEST_F() 408 GraphReducer reducer(zone(), graph()); in ReduceNode() 414 GraphReducer reducer(zone(), graph()); in ReduceNode() 421 GraphReducer reducer(zone(), graph()); in ReduceNode() 429 GraphReducer reducer(zone(), graph()); in ReduceGraph() 435 GraphReducer reducer(zone(), graph()); in ReduceGraph() [all …]
|
D | load-elimination-unittest.cc | 23 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
D | js-create-lowering-unittest.cc | 40 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
D | branch-elimination-unittest.cc | 30 GraphReducer graph_reducer(zone(), graph(), jsgraph.Dead()); in Reduce()
|
D | js-intrinsic-lowering-unittest.cc | 40 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
D | js-type-feedback-unittest.cc | 48 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
D | simplified-operator-reducer-unittest.cc | 35 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
D | escape-analysis-unittest.cc | 37 GraphReducer graph_reducer(zone(), graph()); in Transformation()
|
D | js-typed-lowering-unittest.cc | 88 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
D | js-builtin-reducer-unittest.cc | 35 GraphReducer graph_reducer(zone(), graph()); in Reduce()
|
/external/v8/test/cctest/compiler/ |
D | test-js-context-specialization.cc | 47 GraphReducer reducer_;
|
D | test-js-typed-lowering.cc | 85 GraphReducer graph_reducer(main_zone(), &graph); in reduce()
|