Home
last modified time | relevance | path

Searched refs:GraphReducer (Results 1 – 17 of 17) sorted by relevance

/external/v8/src/compiler/
Dgraph-reducer.cc18 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 …]
Dgraph-reducer.h122 class GraphReducer : public AdvancedReducer::Editor {
124 GraphReducer(Zone* zone, Graph* graph, Node* dead = nullptr);
125 ~GraphReducer();
177 DISALLOW_COPY_AND_ASSIGN(GraphReducer);
Dosr.cc316 GraphReducer graph_reducer(tmp_zone, graph); in Deconstruct()
Dpipeline.cc486 class JSGraphReducer final : public GraphReducer {
489 : GraphReducer(zone, jsgraph->graph(), jsgraph->Dead()) {} in JSGraphReducer()
494 void AddReducer(PipelineData* data, GraphReducer* graph_reducer, in AddReducer()
Dtyper.cc305 GraphReducer graph_reducer(zone(), graph()); in Run()
/external/v8/test/unittests/compiler/
Dgraph-reducer-unittest.cc297 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 …]
Dload-elimination-unittest.cc23 GraphReducer graph_reducer(zone(), graph()); in Reduce()
Djs-create-lowering-unittest.cc40 GraphReducer graph_reducer(zone(), graph()); in Reduce()
Dbranch-elimination-unittest.cc30 GraphReducer graph_reducer(zone(), graph(), jsgraph.Dead()); in Reduce()
Djs-intrinsic-lowering-unittest.cc40 GraphReducer graph_reducer(zone(), graph()); in Reduce()
Djs-type-feedback-unittest.cc48 GraphReducer graph_reducer(zone(), graph()); in Reduce()
Dsimplified-operator-reducer-unittest.cc35 GraphReducer graph_reducer(zone(), graph()); in Reduce()
Descape-analysis-unittest.cc37 GraphReducer graph_reducer(zone(), graph()); in Transformation()
Djs-typed-lowering-unittest.cc88 GraphReducer graph_reducer(zone(), graph()); in Reduce()
Djs-builtin-reducer-unittest.cc35 GraphReducer graph_reducer(zone(), graph()); in Reduce()
/external/v8/test/cctest/compiler/
Dtest-js-context-specialization.cc47 GraphReducer reducer_;
Dtest-js-typed-lowering.cc85 GraphReducer graph_reducer(main_zone(), &graph); in reduce()