mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Optimize a common case in the Lengauer-Tarjan dominators algorithm. This gives a
9.7% speedup running domtree on test-suite. Reviewed by Chris Lattner. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120003 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f9bd8e4af
commit
2974b6ffbc
@ -278,9 +278,16 @@ void Calculate(DominatorTreeBase<typename GraphTraits<NodeT>::NodeType>& DT,
|
||||
}
|
||||
}
|
||||
|
||||
typename GraphT::NodeType* WParent = DT.Vertex[WInfo.Parent];
|
||||
|
||||
// If V is a non-root vertex and sdom(V) = parent(V), then idom(V) is
|
||||
// necessarily parent(V). In this case, set idom(V) here and avoid placing
|
||||
// V into a bucket.
|
||||
if (WInfo.Semi == WInfo.Parent)
|
||||
DT.IDoms[W] = WParent;
|
||||
else
|
||||
DT.Info[DT.Vertex[WInfo.Semi]].Bucket.push_back(W);
|
||||
|
||||
typename GraphT::NodeType* WParent = DT.Vertex[WInfo.Parent];
|
||||
Link<GraphT>(DT, WInfo.Parent, W, WInfo);
|
||||
|
||||
// Step #3: Implicitly define the immediate dominator of vertices
|
||||
|
Loading…
Reference in New Issue
Block a user