HomeSort by relevance Sort by last modified time
    Searched refs:NodeCount (Results 1 - 25 of 26) sorted by null

1 2

  /external/v8/src/compiler/
all-nodes.cc 14 : live(local_zone), is_live(graph->NodeCount(), false, local_zone) {
25 if (input->id() >= graph->NodeCount()) {
graph-trimmer.cc 15 live_.reserve(graph->NodeCount());
select-lowering.cc 68 BoolVector visited(graph()->NodeCount(), false, &zone);
control-equivalence.h 38 node_data_(graph->NodeCount(), EmptyData(), zone) {}
loop-analysis.cc 58 info_(graph->NodeCount(), {nullptr, nullptr}, zone),
60 loop_num_(graph->NodeCount(), -1, zone),
452 new (graph->zone()) LoopTree(graph->NodeCount(), graph->zone());
branch-elimination.cc 18 node_conditions_(zone, js_graph->graph()->NodeCount()),
graph-reducer.cc 130 NodeId const max_id = static_cast<NodeId>(graph()->NodeCount() - 1);
graph.h 97 size_t NodeCount() const { return next_node_id_; }
schedule.h 82 size_t NodeCount() const { return nodes_.size(); }
escape-analysis.cc 430 status_(graph->NodeCount(), kUnknown, zone),
466 status_.resize(graph()->NodeCount(), kUnknown);
732 replacements_.resize(graph()->NodeCount());
742 CHECK_LT(graph()->NodeCount(), kUntrackable);
743 aliases_.resize(graph()->NodeCount(), kNotReachable);
784 for (EscapeAnalysis::Alias id = 0; id < graph()->NodeCount(); ++id) {
797 virtual_states_.resize(graph()->NodeCount());
    [all...]
escape-analysis-reducer.cc 21 visited_(static_cast<int>(jsgraph->graph()->NodeCount()), zone) {}
verifier.cc     [all...]
osr.cc 50 const size_t original_count = graph->NodeCount();
scheduler.cc 36 node_data_(graph_->NodeCount(), DefaultSchedulerData(), zone) {}
41 Schedule(graph->zone(), static_cast<size_t>(graph->NodeCount()));
    [all...]
graph-visualizer.cc 614 ZoneVector<byte> state(ar.graph.NodeCount(), kUnvisited, &local_zone);
js-inlining.cc 84 copies_(source_graph->NodeCount(), sentinel_, temp_zone),
pipeline.cc 815 temp_zone, data->graph()->NodeCount(), linkage, data->sequence(),
    [all...]
simplified-lowering.cc 339 count_(jsgraph->graph()->NodeCount()),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wct.h 66 typedef VOID (CALLBACK *PWAITCHAINCALLBACK)(HWCT WctHandle,DWORD_PTR Context,DWORD CallbackStatus,LPDWORD NodeCount,PWAITCHAIN_NODE_INFO NodeInfoArray,LPBOOL IsCycle);
70 WINBOOL WINAPI GetThreadWaitChain(HWCT WctHandle,DWORD_PTR Context,DWORD Flags,DWORD ThreadId,LPDWORD NodeCount,PWAITCHAIN_NODE_INFO NodeInfoArray,LPBOOL IsCycle);
clusapi.h 216 DWORD WINAPI SetClusterGroupNodeList(HGROUP hGroup,DWORD NodeCount,HNODE NodeList[]);
    [all...]
  /external/v8/test/unittests/compiler/
graph-reducer-unittest.cc 529 size_t before = graph()->NodeCount();
531 EXPECT_EQ(before, graph()->NodeCount());
549 size_t before = graph()->NodeCount();
551 EXPECT_EQ(before, graph()->NodeCount());
574 size_t before = graph()->NodeCount();
577 EXPECT_NE(before, graph()->NodeCount());
579 EXPECT_EQ(before, graph()->NodeCount());
601 EXPECT_EQ(1U, graph()->NodeCount());
606 EXPECT_EQ(2U, graph()->NodeCount());
619 EXPECT_EQ(1U, graph()->NodeCount());
    [all...]
control-equivalence-unittest.cc 39 classes_.resize(graph()->NodeCount());
46 BitVector in_class(static_cast<int>(graph()->NodeCount()), zone());
instruction-selector-unittest.cc 34 size_t const node_count = graph()->NodeCount();
scheduler-unittest.cc 55 node_count += block->NodeCount();
    [all...]
  /external/v8/test/cctest/compiler/
test-js-constant-cache.cc 338 size_t count_before = T.graph()->NodeCount();
360 size_t count_before = T.graph()->NodeCount();
382 size_t count_before = T.graph()->NodeCount();
404 size_t count_before = T.graph()->NodeCount();
431 size_t count_before = T.graph()->NodeCount();

Completed in 8267 milliseconds

1 2