Lines Matching defs:nodes
42 // Represents a loop in the tree of loops, including the header nodes,
110 // Return a range which can iterate over the header nodes of {loop}.
119 // Return a range which can iterate over the body nodes of {loop}.
125 // Return a range which can iterate over the body nodes of {loop}.
131 // Return a range which can iterate over the nodes of {loop}.
183 // Find all nodes in the loop headed by {loop_header} if it contains no nested
186 // marked with LoopExit, LoopExitEffect, LoopExitValue, or End nodes.
188 // 1) the loop size (in graph nodes) exceeds {max_size},
197 // Copies a range of nodes any number of times.
200 // {max}: The maximum number of nodes that this copier will track, including
201 // the original nodes and all copies.
202 // {p}: A vector that holds the original nodes and all copies.
203 // {copy_count}: How many times the nodes should be copied.
224 base::iterator_range<InputIterator> nodes,
227 // Copy all the nodes first.
228 for (Node* original : nodes) {
231 NodeOriginTable::Scope origin_scope(node_origins, "copy nodes", original);
241 for (Node* original : nodes) {
256 // The vector which contains the mapped nodes.
258 // How many copies of the nodes should be generated.