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