Home
last modified time | relevance | path

Searched refs:node_data_ (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dcontrol-equivalence.h41 node_data_(graph->NodeCount(), zone) {} in NON_EXPORTED_BASE()
133 if (index >= node_data_.size()) node_data_.resize(index + 1); in NON_EXPORTED_BASE()
134 return node_data_[index]; in NON_EXPORTED_BASE()
138 if (index >= node_data_.size()) node_data_.resize(index + 1); in NON_EXPORTED_BASE()
139 node_data_[index] = zone_->New<NodeData>(zone_); in NON_EXPORTED_BASE()
177 Data node_data_; // Per-node data stored as a side-table. in NON_EXPORTED_BASE() local
Dscheduler.h90 ZoneVector<SchedulerData> node_data_; // Per-node data for all nodes. variable
Dscheduler.cc40 node_data_(zone), in Scheduler()
44 node_data_.reserve(node_count_hint); in Scheduler()
45 node_data_.resize(graph->NodeCount(), DefaultSchedulerData()); in Scheduler()
84 return &node_data_[node->id()]; in GetData()
1845 scheduler_->node_data_.resize(copy->id() + 1, in CloneNode()
1847 scheduler_->node_data_[copy->id()] = scheduler_->node_data_[node->id()]; in CloneNode()