Searched refs:NodeCount (Results 1 – 14 of 14) sorted by relevance
/external/v8/test/cctest/compiler/ |
D | test-graph-reducer.cc | 247 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 …]
|
D | instruction-selector-tester.h | 61 CHECK_NE(0, graph()->NodeCount());
|
D | test-instruction.cc | 115 CHECK_EQ(R.graph.NodeCount(), R.code->ValueCount()); in TEST()
|
/external/v8/src/compiler/ |
D | generic-algorithm-inl.h | 27 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()
|
D | generic-graph.h | 24 NodeId NodeCount() const { return next_node_id_; } in NodeCount() function
|
D | js-inlining.cc | 165 : 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()
|
D | graph-reducer.cc | 31 int before = graph_->NodeCount(); in ReduceNode()
|
D | schedule.h | 184 int BasicBlockCount() const { return NodeCount(); } in BasicBlockCount()
|
D | pipeline.cc | 387 int node_count = graph->NodeCount(); in GenerateCode()
|
D | instruction.h | 808 next_virtual_register_(graph->NodeCount()), in InstructionSequence() 818 int ValueCount() const { return graph_->NodeCount(); } in ValueCount()
|
D | instruction-selector.cc | 25 defined_(graph()->NodeCount(), false, zone()), in InstructionSelector() 26 used_(graph()->NodeCount(), false, zone()) {} in InstructionSelector()
|
D | instruction-selector-unittest.cc | 35 EXPECT_NE(0, graph()->NodeCount()); in Build()
|
D | simplified-lowering.cc | 65 count_(jsgraph->graph()->NodeCount()), in RepresentationSelector()
|
D | scheduler.cc | 233 node_data_(graph_->NodeCount(), DefaultSchedulerData(), zone), in Scheduler()
|