diff options
author | Anna Zaks <ganna@apple.com> | 2011-12-05 19:17:04 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-12-05 19:17:04 +0000 |
commit | e15402f92b6949d2474cc82648239fe22e5a2209 (patch) | |
tree | 3a8d9b6a4490722e9480b6fba1c0617086a3fd45 /include/llvm/Support/CFG.h | |
parent | fef3f9aed38950877deff6c55331f42dfd852c1c (diff) | |
download | external_llvm-e15402f92b6949d2474cc82648239fe22e5a2209.tar.gz external_llvm-e15402f92b6949d2474cc82648239fe22e5a2209.tar.bz2 external_llvm-e15402f92b6949d2474cc82648239fe22e5a2209.zip |
Change the Dominators recalculate() function to only rely on GraphTraits
This is a patch by Guoping Long!
As part of utilizing LLVM Dominator computation in Clang, made two changes to LLVM dominators tree implementation:
- (1) Change the recalculate() template function to only rely on GraphTraits.
- (2) Add a size() method to GraphTraits template class to query the number of nodes in the graph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CFG.h')
-rw-r--r-- | include/llvm/Support/CFG.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 29313ef900..6e354f9a1e 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -314,6 +314,7 @@ template <> struct GraphTraits<Function*> : public GraphTraits<BasicBlock*> { typedef Function::iterator nodes_iterator; static nodes_iterator nodes_begin(Function *F) { return F->begin(); } static nodes_iterator nodes_end (Function *F) { return F->end(); } + static unsigned size (Function *F) { return F->size(); } }; template <> struct GraphTraits<const Function*> : public GraphTraits<const BasicBlock*> { @@ -323,6 +324,7 @@ template <> struct GraphTraits<const Function*> : typedef Function::const_iterator nodes_iterator; static nodes_iterator nodes_begin(const Function *F) { return F->begin(); } static nodes_iterator nodes_end (const Function *F) { return F->end(); } + static unsigned size (const Function *F) { return F->size(); } }; |