2002-08-02 16:43:03 +00:00
|
|
|
//===- PostDominators.cpp - Post-Dominator Calculation --------------------===//
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
2002-08-02 16:43:03 +00:00
|
|
|
// This file implements the post-dominator construction algorithms.
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-04-16 04:21:16 +00:00
|
|
|
#define DEBUG_TYPE "postdomtree"
|
|
|
|
|
2002-08-21 23:43:50 +00:00
|
|
|
#include "llvm/Analysis/PostDominators.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
|
|
#include "llvm/ADT/SetOperations.h"
|
2007-10-03 21:25:45 +00:00
|
|
|
#include "llvm/Analysis/DominatorInternals.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instructions.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/CFG.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
2003-12-07 00:35:42 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-03-11 02:20:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-04-15 08:47:27 +00:00
|
|
|
// PostDominatorTree Implementation
|
2006-03-11 02:20:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char PostDominatorTree::ID = 0;
|
2010-07-21 22:09:45 +00:00
|
|
|
INITIALIZE_PASS(PostDominatorTree, "postdomtree",
|
2010-10-07 22:25:06 +00:00
|
|
|
"Post-Dominator Tree Construction", true, true)
|
2006-03-11 02:20:46 +00:00
|
|
|
|
2007-10-03 03:20:17 +00:00
|
|
|
bool PostDominatorTree::runOnFunction(Function &F) {
|
2007-10-23 20:58:37 +00:00
|
|
|
DT->recalculate(F);
|
2007-10-03 03:20:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-23 05:17:37 +00:00
|
|
|
PostDominatorTree::~PostDominatorTree() {
|
2008-05-03 20:25:26 +00:00
|
|
|
delete DT;
|
|
|
|
}
|
|
|
|
|
2009-08-23 06:03:38 +00:00
|
|
|
void PostDominatorTree::print(raw_ostream &OS, const Module *) const {
|
|
|
|
DT->print(OS);
|
2009-08-23 05:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-29 17:00:13 +00:00
|
|
|
FunctionPass* llvm::createPostDomTree() {
|
|
|
|
return new PostDominatorTree();
|
|
|
|
}
|
|
|
|
|