Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dgraph-reducer.cc18 enum class GraphReducer::State : uint8_t {
28 GraphReducer::GraphReducer(Zone* zone, Graph* graph, Node* dead) in GraphReducer() function in v8::internal::compiler::GraphReducer
40 GraphReducer::~GraphReducer() {} in ~GraphReducer()
43 void GraphReducer::AddReducer(Reducer* reducer) { in AddReducer()
48 void GraphReducer::ReduceNode(Node* node) { in ReduceNode()
78 void GraphReducer::ReduceGraph() { ReduceNode(graph()->end()); } in ReduceGraph()
81 Reduction GraphReducer::Reduce(Node* const node) { in Reduce()
111 void GraphReducer::ReduceTop() { in ReduceTop()
176 void GraphReducer::Replace(Node* node, Node* replacement) { in Replace()
181 void GraphReducer::Replace(Node* node, Node* replacement, NodeId max_id) { in Replace()
[all …]
Dgraph-reducer.h124 class V8_EXPORT_PRIVATE GraphReducer
127 GraphReducer(Zone* zone, Graph* graph, Node* dead = nullptr); in NON_EXPORTED_BASE()
128 ~GraphReducer(); in NON_EXPORTED_BASE()
180 DISALLOW_COPY_AND_ASSIGN(GraphReducer); in NON_EXPORTED_BASE()
Dosr.cc343 GraphReducer graph_reducer(tmp_zone, graph); in Deconstruct()
Dpipeline.cc475 class JSGraphReducer final : public GraphReducer {
478 : GraphReducer(zone, jsgraph->graph(), jsgraph->Dead()) {} in JSGraphReducer()
483 void AddReducer(PipelineData* data, GraphReducer* graph_reducer, in AddReducer()
Dtyper.cc341 GraphReducer graph_reducer(zone(), graph()); in Run()