2009-10-18 12:10:40 +08:00
|
|
|
//===- DomPrinter.cpp - DOT printer for the dominance trees ------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-10-18 12:10:40 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines '-dot-dom' and '-dot-postdom' analysis passes, which emit
|
|
|
|
// a dom.<fnname>.dot or postdom.<fnname>.dot file for each function in the
|
|
|
|
// program, with a graph of the dominance/postdominance tree of that
|
|
|
|
// function.
|
|
|
|
//
|
|
|
|
// There are also passes available to directly call dotty ('-view-dom' or
|
|
|
|
// '-view-postdom'). By appending '-only' like '-dot-dom-only' only the
|
|
|
|
// names of the bbs are printed, but the content is hidden.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/DomPrinter.h"
|
2010-01-16 18:56:41 +08:00
|
|
|
#include "llvm/Analysis/DOTGraphTraitsPass.h"
|
2009-10-18 12:10:40 +08:00
|
|
|
#include "llvm/Analysis/PostDominators.h"
|
Sink all InitializePasses.h includes
This file lists every pass in LLVM, and is included by Pass.h, which is
very popular. Every time we add, remove, or rename a pass in LLVM, it
caused lots of recompilation.
I found this fact by looking at this table, which is sorted by the
number of times a file was changed over the last 100,000 git commits
multiplied by the number of object files that depend on it in the
current checkout:
recompiles touches affected_files header
342380 95 3604 llvm/include/llvm/ADT/STLExtras.h
314730 234 1345 llvm/include/llvm/InitializePasses.h
307036 118 2602 llvm/include/llvm/ADT/APInt.h
213049 59 3611 llvm/include/llvm/Support/MathExtras.h
170422 47 3626 llvm/include/llvm/Support/Compiler.h
162225 45 3605 llvm/include/llvm/ADT/Optional.h
158319 63 2513 llvm/include/llvm/ADT/Triple.h
140322 39 3598 llvm/include/llvm/ADT/StringRef.h
137647 59 2333 llvm/include/llvm/Support/Error.h
131619 73 1803 llvm/include/llvm/Support/FileSystem.h
Before this change, touching InitializePasses.h would cause 1345 files
to recompile. After this change, touching it only causes 550 compiles in
an incremental rebuild.
Reviewers: bkramer, asbirlea, bollu, jdoerfert
Differential Revision: https://reviews.llvm.org/D70211
2019-11-14 05:15:01 +08:00
|
|
|
#include "llvm/InitializePasses.h"
|
2009-10-18 12:10:40 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2022-01-04 10:38:56 +08:00
|
|
|
|
2017-04-25 01:48:44 +08:00
|
|
|
void DominatorTree::viewGraph(const Twine &Name, const Twine &Title) {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
ViewGraph(this, Name, false, Title);
|
|
|
|
#else
|
|
|
|
errs() << "DomTree dump not available, build with DEBUG\n";
|
|
|
|
#endif // NDEBUG
|
|
|
|
}
|
|
|
|
|
|
|
|
void DominatorTree::viewGraph() {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
this->viewGraph("domtree", "Dominator Tree for function");
|
|
|
|
#else
|
|
|
|
errs() << "DomTree dump not available, build with DEBUG\n";
|
|
|
|
#endif // NDEBUG
|
|
|
|
}
|
|
|
|
|
2009-10-18 12:10:40 +08:00
|
|
|
namespace {
|
2022-05-17 03:12:50 +08:00
|
|
|
struct LegacyDominatorTreeWrapperPassAnalysisGraphTraits {
|
2014-01-13 21:07:17 +08:00
|
|
|
static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) {
|
|
|
|
return &DTWP->getDomTree();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct DomViewerWrapperPass
|
|
|
|
: public DOTGraphTraitsViewerWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, false, DominatorTree *,
|
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
DomViewerWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsViewerWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, false, DominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits>("dom", ID) {
|
|
|
|
initializeDomViewerWrapperPassPass(*PassRegistry::getPassRegistry());
|
2010-10-20 01:21:58 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct DomOnlyViewerWrapperPass
|
|
|
|
: public DOTGraphTraitsViewerWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, true, DominatorTree *,
|
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
DomOnlyViewerWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsViewerWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, true, DominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits>("domonly", ID) {
|
|
|
|
initializeDomOnlyViewerWrapperPassPass(*PassRegistry::getPassRegistry());
|
2010-10-20 01:21:58 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits {
|
2016-02-26 01:54:07 +08:00
|
|
|
static PostDominatorTree *getGraph(PostDominatorTreeWrapperPass *PDTWP) {
|
|
|
|
return &PDTWP->getPostDomTree();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct PostDomViewerWrapperPass
|
2022-05-10 02:38:16 +08:00
|
|
|
: public DOTGraphTraitsViewerWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, false, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
PostDomViewerWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsViewerWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, false, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits>("postdom",
|
|
|
|
ID) {
|
|
|
|
initializePostDomViewerWrapperPassPass(*PassRegistry::getPassRegistry());
|
2022-05-10 02:38:16 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct PostDomOnlyViewerWrapperPass
|
2022-05-10 02:38:16 +08:00
|
|
|
: public DOTGraphTraitsViewerWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, true, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
PostDomOnlyViewerWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsViewerWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, true, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits>(
|
|
|
|
"postdomonly", ID) {
|
|
|
|
initializePostDomOnlyViewerWrapperPassPass(
|
|
|
|
*PassRegistry::getPassRegistry());
|
2022-05-10 02:38:16 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char DomViewerWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(DomViewerWrapperPass, "view-dom",
|
2010-10-08 06:25:06 +08:00
|
|
|
"View dominance tree of function", false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char DomOnlyViewerWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(DomOnlyViewerWrapperPass, "view-dom-only",
|
2010-07-22 06:09:45 +08:00
|
|
|
"View dominance tree of function (with no function bodies)",
|
2010-10-08 06:25:06 +08:00
|
|
|
false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char PostDomViewerWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(PostDomViewerWrapperPass, "view-postdom",
|
2010-10-08 06:25:06 +08:00
|
|
|
"View postdominance tree of function", false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char PostDomOnlyViewerWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(PostDomOnlyViewerWrapperPass, "view-postdom-only",
|
2010-07-22 06:09:45 +08:00
|
|
|
"View postdominance tree of function "
|
|
|
|
"(with no function bodies)",
|
2010-10-08 06:25:06 +08:00
|
|
|
false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
|
|
|
namespace {
|
2022-05-17 03:12:50 +08:00
|
|
|
struct DomPrinterWrapperPass
|
|
|
|
: public DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, false, DominatorTree *,
|
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
DomPrinterWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, false, DominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits>("dom", ID) {
|
|
|
|
initializeDomPrinterWrapperPassPass(*PassRegistry::getPassRegistry());
|
2010-10-20 01:21:58 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct DomOnlyPrinterWrapperPass
|
|
|
|
: public DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, true, DominatorTree *,
|
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
DomOnlyPrinterWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
DominatorTreeWrapperPass, true, DominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyDominatorTreeWrapperPassAnalysisGraphTraits>("domonly", ID) {
|
|
|
|
initializeDomOnlyPrinterWrapperPassPass(*PassRegistry::getPassRegistry());
|
2010-10-20 01:21:58 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct PostDomPrinterWrapperPass
|
2022-05-10 02:38:16 +08:00
|
|
|
: public DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, false, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
PostDomPrinterWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, false, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits>("postdom",
|
|
|
|
ID) {
|
|
|
|
initializePostDomPrinterWrapperPassPass(*PassRegistry::getPassRegistry());
|
2022-05-10 02:38:16 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
struct PostDomOnlyPrinterWrapperPass
|
2022-05-10 02:38:16 +08:00
|
|
|
: public DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, true, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits> {
|
2009-10-18 12:10:40 +08:00
|
|
|
static char ID;
|
2022-05-17 03:12:50 +08:00
|
|
|
PostDomOnlyPrinterWrapperPass()
|
2022-05-10 02:38:16 +08:00
|
|
|
: DOTGraphTraitsPrinterWrapperPass<
|
|
|
|
PostDominatorTreeWrapperPass, true, PostDominatorTree *,
|
2022-05-17 03:12:50 +08:00
|
|
|
LegacyPostDominatorTreeWrapperPassAnalysisGraphTraits>(
|
|
|
|
"postdomonly", ID) {
|
|
|
|
initializePostDomOnlyPrinterWrapperPassPass(
|
|
|
|
*PassRegistry::getPassRegistry());
|
2022-05-10 02:38:16 +08:00
|
|
|
}
|
2009-10-18 12:10:40 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char DomPrinterWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(DomPrinterWrapperPass, "dot-dom",
|
|
|
|
"Print dominance tree of function to 'dot' file", false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char DomOnlyPrinterWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(DomOnlyPrinterWrapperPass, "dot-dom-only",
|
2010-07-22 06:09:45 +08:00
|
|
|
"Print dominance tree of function to 'dot' file "
|
|
|
|
"(with no function bodies)",
|
2010-10-08 06:25:06 +08:00
|
|
|
false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char PostDomPrinterWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(PostDomPrinterWrapperPass, "dot-postdom",
|
|
|
|
"Print postdominance tree of function to 'dot' file", false,
|
|
|
|
false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
char PostDomOnlyPrinterWrapperPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(PostDomOnlyPrinterWrapperPass, "dot-postdom-only",
|
2010-07-22 06:09:45 +08:00
|
|
|
"Print postdominance tree of function to 'dot' file "
|
|
|
|
"(with no function bodies)",
|
2010-10-08 06:25:06 +08:00
|
|
|
false, false)
|
2009-10-18 12:10:40 +08:00
|
|
|
|
2021-11-03 00:08:09 +08:00
|
|
|
// Create methods available outside of this file, to use them
|
|
|
|
// "include/llvm/LinkAllPasses.h". Otherwise the pass would be deleted by
|
|
|
|
// the link time optimization.
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createDomPrinterWrapperPassPass() {
|
|
|
|
return new DomPrinterWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createDomOnlyPrinterWrapperPassPass() {
|
|
|
|
return new DomOnlyPrinterWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createDomViewerWrapperPassPass() {
|
|
|
|
return new DomViewerWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createDomOnlyViewerWrapperPassPass() {
|
|
|
|
return new DomOnlyViewerWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createPostDomPrinterWrapperPassPass() {
|
|
|
|
return new PostDomPrinterWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createPostDomOnlyPrinterWrapperPassPass() {
|
|
|
|
return new PostDomOnlyPrinterWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createPostDomViewerWrapperPassPass() {
|
|
|
|
return new PostDomViewerWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|
|
|
|
|
2022-05-17 03:12:50 +08:00
|
|
|
FunctionPass *llvm::createPostDomOnlyViewerWrapperPassPass() {
|
|
|
|
return new PostDomOnlyViewerWrapperPass();
|
2009-10-18 12:10:40 +08:00
|
|
|
}
|