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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
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"
|
2014-03-04 11:45:46 +00:00
|
|
|
#include "llvm/IR/CFG.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instructions.h"
|
2016-02-25 17:54:07 +00:00
|
|
|
#include "llvm/IR/PassManager.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2014-03-04 10:07:28 +00:00
|
|
|
#include "llvm/Support/GenericDomTreeConstruction.h"
|
2003-12-07 00:35:42 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2014-04-22 02:48:03 +00:00
|
|
|
#define DEBUG_TYPE "postdomtree"
|
|
|
|
|
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
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-02-25 17:54:07 +00:00
|
|
|
char PostDominatorTreeWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(PostDominatorTreeWrapperPass, "postdomtree",
|
2010-10-07 22:25:06 +00:00
|
|
|
"Post-Dominator Tree Construction", true, true)
|
2006-03-11 02:20:46 +00:00
|
|
|
|
2016-02-25 17:54:07 +00:00
|
|
|
bool PostDominatorTreeWrapperPass::runOnFunction(Function &F) {
|
|
|
|
DT.recalculate(F);
|
2007-10-03 03:20:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-25 17:54:07 +00:00
|
|
|
void PostDominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const {
|
|
|
|
DT.print(OS);
|
2008-05-03 20:25:26 +00:00
|
|
|
}
|
|
|
|
|
2016-02-25 17:54:07 +00:00
|
|
|
FunctionPass* llvm::createPostDomTree() {
|
|
|
|
return new PostDominatorTreeWrapperPass();
|
2009-08-23 05:17:37 +00:00
|
|
|
}
|
|
|
|
|
2016-02-28 17:17:00 +00:00
|
|
|
template class llvm::AnalysisBase<PostDominatorTreeAnalysis>;
|
|
|
|
|
2016-02-25 17:54:07 +00:00
|
|
|
PostDominatorTree PostDominatorTreeAnalysis::run(Function &F) {
|
|
|
|
PostDominatorTree PDT;
|
|
|
|
PDT.recalculate(F);
|
|
|
|
return PDT;
|
2008-05-29 17:00:13 +00:00
|
|
|
}
|
|
|
|
|
2016-02-25 17:54:07 +00:00
|
|
|
PostDominatorTreePrinterPass::PostDominatorTreePrinterPass(raw_ostream &OS)
|
|
|
|
: OS(OS) {}
|
|
|
|
|
|
|
|
PreservedAnalyses
|
|
|
|
PostDominatorTreePrinterPass::run(Function &F, FunctionAnalysisManager *AM) {
|
|
|
|
OS << "PostDominatorTree for function: " << F.getName() << "\n";
|
|
|
|
AM->getResult<PostDominatorTreeAnalysis>(F).print(OS);
|
|
|
|
|
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|