Home | History | Annotate | Download | only in heap_snapshot_worker

Lines Matching refs:dominators

1509                 // Otherwise the dominators for the objects that also were retained by debugger would be affected.
1573 var dominators = new Uint32Array(nodesCount);
1575 dominators[i] = noEntry;
1576 dominators[rootPostOrderedIndex] = rootPostOrderedIndex;
1578 // The affected array is used to mark entries which dominators
1604 if (dominators[postOrderIndex] === rootPostOrderedIndex)
1620 // Otherwise the dominators for the objects that also were retained by debugger would be affected.
1624 if (dominators[retanerPostOrderIndex] !== noEntry) {
1630 retanerPostOrderIndex = dominators[retanerPostOrderIndex];
1632 newDominatorIndex = dominators[newDominatorIndex];
1641 if (newDominatorIndex !== noEntry && dominators[postOrderIndex] !== newDominatorIndex) {
1642 dominators[postOrderIndex] = newDominatorIndex;
1658 for (var postOrderIndex = 0, l = dominators.length; postOrderIndex < l; ++postOrderIndex) {
1660 dominatorsTree[nodeOrdinal] = postOrderIndex2NodeOrdinal[dominators[postOrderIndex]];
1693 // All nodes except the root have dominators.