Home
last modified time | relevance | path

Searched refs:NodeCount (Results 1 – 14 of 14) sorted by relevance

/external/v8/test/cctest/compiler/
Dtest-graph-reducer.cc247 int before = graph.NodeCount(); in TEST()
249 CHECK_EQ(before, graph.NodeCount()); in TEST()
272 int before = graph.NodeCount(); in TEST()
274 CHECK_EQ(before, graph.NodeCount()); in TEST()
302 int before = graph.NodeCount(); in TEST()
305 CHECK_NE(before, graph.NodeCount()); in TEST()
307 CHECK_EQ(before, graph.NodeCount()); in TEST()
331 CHECK_EQ(1, graph.NodeCount()); in TEST()
338 CHECK_EQ(2, graph.NodeCount()); in TEST()
353 CHECK_EQ(1, graph.NodeCount()); in TEST()
[all …]
Dinstruction-selector-tester.h61 CHECK_NE(0, graph()->NodeCount());
Dtest-instruction.cc115 CHECK_EQ(R.graph.NodeCount(), R.code->ValueCount()); in TEST()
/external/v8/src/compiler/
Dgeneric-algorithm-inl.h27 static int max_id(GenericGraphBase* graph) { return graph->NodeCount(); } in max_id()
40 static int max_id(GenericGraphBase* graph) { return graph->NodeCount(); } in max_id()
Dgeneric-graph.h24 NodeId NodeCount() const { return next_node_id_; } in NodeCount() function
Djs-inlining.cc165 : copies_(source_graph->NodeCount(), NULL, temp_zone), in CopyVisitor()
166 sentinels_(source_graph->NodeCount(), NULL, temp_zone), in CopyVisitor()
207 for (NodeId id = 0; id < source_graph_->NodeCount(); ++id) { in ReplaceSentinels()
Dgraph-reducer.cc31 int before = graph_->NodeCount(); in ReduceNode()
Dschedule.h184 int BasicBlockCount() const { return NodeCount(); } in BasicBlockCount()
Dpipeline.cc387 int node_count = graph->NodeCount(); in GenerateCode()
Dinstruction.h808 next_virtual_register_(graph->NodeCount()), in InstructionSequence()
818 int ValueCount() const { return graph_->NodeCount(); } in ValueCount()
Dinstruction-selector.cc25 defined_(graph()->NodeCount(), false, zone()), in InstructionSelector()
26 used_(graph()->NodeCount(), false, zone()) {} in InstructionSelector()
Dinstruction-selector-unittest.cc35 EXPECT_NE(0, graph()->NodeCount()); in Build()
Dsimplified-lowering.cc65 count_(jsgraph->graph()->NodeCount()), in RepresentationSelector()
Dscheduler.cc233 node_data_(graph_->NodeCount(), DefaultSchedulerData(), zone), in Scheduler()