Home | History | Annotate | Download | only in IR

Lines Matching refs:Updates

30   // Discard updates by inspecting the current state of successors of From.
32 // altered we can determine if the update is unnecessary for batch updates
38 // 1. In batch updates, this update is unnecessary.
63 // Analyze pending updates to determine if the update is unnecessary.
69 // Only check duplicates in updates that are not applied by both trees.
78 return false; // Discard duplicate updates.
97 // Only apply updates not are applied by DomTree.
101 assert(I < E && "Iterator range invalid; there should be DomTree updates.");
118 // Only apply updates not are applied by PostDomTree.
123 "Iterator range invalid; there should be PostDomTree updates.");
212 // The DT and PDT require the nodes related to updates
270 void DomTreeUpdater::applyUpdates(ArrayRef<DominatorTree::UpdateType> Updates,
277 for (const auto U : Updates)
299 DT->applyUpdates(Updates);
301 PDT->applyUpdates(Updates);
416 // Drop all updates applied by both trees.