mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Check immediate dominators first while searching for nearset common dominator.
Fix 80 col violations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37547 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3726b82a55
commit
87f05a2416
@ -23,7 +23,6 @@
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
#include <algorithm>
|
||||
#include <set>
|
||||
using namespace llvm;
|
||||
|
||||
namespace llvm {
|
||||
@ -363,7 +362,8 @@ bool DominatorTreeBase::dominates(Instruction *A, Instruction *B) {
|
||||
// DominatorTreeBase::reset - Free all of the tree node memory.
|
||||
//
|
||||
void DominatorTreeBase::reset() {
|
||||
for (DomTreeNodeMapType::iterator I = DomTreeNodes.begin(), E = DomTreeNodes.end(); I != E; ++I)
|
||||
for (DomTreeNodeMapType::iterator I = DomTreeNodes.begin(),
|
||||
E = DomTreeNodes.end(); I != E; ++I)
|
||||
delete I->second;
|
||||
DomTreeNodes.clear();
|
||||
IDoms.clear();
|
||||
@ -374,10 +374,13 @@ void DominatorTreeBase::reset() {
|
||||
|
||||
/// findNearestCommonDominator - Find nearest common dominator basic block
|
||||
/// for basic block A and B. If there is no such block then return NULL.
|
||||
BasicBlock *DominatorTreeBase::findNearestCommonDominator(BasicBlock *A, BasicBlock *B) {
|
||||
BasicBlock *DominatorTreeBase::findNearestCommonDominator(BasicBlock *A,
|
||||
BasicBlock *B) {
|
||||
|
||||
assert (!isPostDominator() && "This is not implemented for post dominators");
|
||||
assert (A->getParent() == B->getParent() && "Two blocks are not in same function");
|
||||
assert (!isPostDominator()
|
||||
&& "This is not implemented for post dominators");
|
||||
assert (A->getParent() == B->getParent()
|
||||
&& "Two blocks are not in same function");
|
||||
|
||||
// If either A or B is a entry block then it is nearest common dominator.
|
||||
BasicBlock &Entry = A->getParent()->getEntryBlock();
|
||||
@ -391,7 +394,16 @@ BasicBlock *DominatorTreeBase::findNearestCommonDominator(BasicBlock *A, BasicBl
|
||||
|
||||
DomTreeNode *NodeB = getNode(B);
|
||||
|
||||
// If B immediately dominates A then B is nearest common dominator.
|
||||
if (NodeA->getIDom() == NodeB)
|
||||
return B;
|
||||
|
||||
// If A immediately dominates B then A is nearest common dominator.
|
||||
if (NodeB->getIDom() == NodeA)
|
||||
return A;
|
||||
|
||||
// Collect NodeA dominators set.
|
||||
// SmallPtrSet<DomTreeNode*, 16> NodeADoms;
|
||||
std::set<DomTreeNode*> NodeADoms;
|
||||
NodeADoms.insert(NodeA);
|
||||
DomTreeNode *IDomA = NodeA->getIDom();
|
||||
|
Loading…
Reference in New Issue
Block a user