2010-09-17 00:08:32 +02:00
|
|
|
//===- MemDepPrinter.cpp - Printer for MemoryDependenceAnalysis -----------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01: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
|
2010-09-17 00:08:32 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/ADT/SetVector.h"
|
2020-06-25 17:37:06 +02:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/Analysis/MemoryDependenceAnalysis.h"
|
2017-06-06 13:49:48 +02:00
|
|
|
#include "llvm/Analysis/Passes.h"
|
2014-03-04 11:30:26 +01:00
|
|
|
#include "llvm/IR/InstIterator.h"
|
2020-12-09 13:06:50 +01:00
|
|
|
#include "llvm/IR/Instructions.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/LLVMContext.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-13 22:15:01 +01:00
|
|
|
#include "llvm/InitializePasses.h"
|
2010-09-17 00:08:32 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-09-17 02:33:43 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2020-06-25 17:37:06 +02:00
|
|
|
|
2010-09-17 00:08:32 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct MemDepPrinter : public FunctionPass {
|
|
|
|
const Function *F;
|
|
|
|
|
2011-10-14 00:14:57 +02:00
|
|
|
enum DepType {
|
|
|
|
Clobber = 0,
|
|
|
|
Def,
|
|
|
|
NonFuncLocal,
|
|
|
|
Unknown
|
|
|
|
};
|
|
|
|
|
2012-05-24 08:35:32 +02:00
|
|
|
static const char *const DepTypeStr[];
|
2011-10-14 00:14:57 +02:00
|
|
|
|
|
|
|
typedef PointerIntPair<const Instruction *, 2, DepType> InstTypePair;
|
|
|
|
typedef std::pair<InstTypePair, const BasicBlock *> Dep;
|
2010-09-17 00:08:32 +02:00
|
|
|
typedef SmallSetVector<Dep, 4> DepSet;
|
|
|
|
typedef DenseMap<const Instruction *, DepSet> DepSetMap;
|
|
|
|
DepSetMap Deps;
|
|
|
|
|
|
|
|
static char ID; // Pass identifcation, replacement for typeid
|
2010-10-19 19:21:58 +02:00
|
|
|
MemDepPrinter() : FunctionPass(ID) {
|
|
|
|
initializeMemDepPrinterPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2010-09-17 00:08:32 +02:00
|
|
|
|
2014-03-05 08:30:04 +01:00
|
|
|
bool runOnFunction(Function &F) override;
|
2010-09-17 00:08:32 +02:00
|
|
|
|
2014-04-15 06:59:12 +02:00
|
|
|
void print(raw_ostream &OS, const Module * = nullptr) const override;
|
2010-09-17 00:08:32 +02:00
|
|
|
|
2014-03-05 08:30:04 +01:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatible
with the new pass manager, and no longer relying on analysis groups.
This builds essentially a ground-up new AA infrastructure stack for
LLVM. The core ideas are the same that are used throughout the new pass
manager: type erased polymorphism and direct composition. The design is
as follows:
- FunctionAAResults is a type-erasing alias analysis results aggregation
interface to walk a single query across a range of results from
different alias analyses. Currently this is function-specific as we
always assume that aliasing queries are *within* a function.
- AAResultBase is a CRTP utility providing stub implementations of
various parts of the alias analysis result concept, notably in several
cases in terms of other more general parts of the interface. This can
be used to implement only a narrow part of the interface rather than
the entire interface. This isn't really ideal, this logic should be
hoisted into FunctionAAResults as currently it will cause
a significant amount of redundant work, but it faithfully models the
behavior of the prior infrastructure.
- All the alias analysis passes are ported to be wrapper passes for the
legacy PM and new-style analysis passes for the new PM with a shared
result object. In some cases (most notably CFL), this is an extremely
naive approach that we should revisit when we can specialize for the
new pass manager.
- BasicAA has been restructured to reflect that it is much more
fundamentally a function analysis because it uses dominator trees and
loop info that need to be constructed for each function.
All of the references to getting alias analysis results have been
updated to use the new aggregation interface. All the preservation and
other pass management code has been updated accordingly.
The way the FunctionAAResultsWrapperPass works is to detect the
available alias analyses when run, and add them to the results object.
This means that we should be able to continue to respect when various
passes are added to the pipeline, for example adding CFL or adding TBAA
passes should just cause their results to be available and to get folded
into this. The exception to this rule is BasicAA which really needs to
be a function pass due to using dominator trees and loop info. As
a consequence, the FunctionAAResultsWrapperPass directly depends on
BasicAA and always includes it in the aggregation.
This has significant implications for preserving analyses. Generally,
most passes shouldn't bother preserving FunctionAAResultsWrapperPass
because rebuilding the results just updates the set of known AA passes.
The exception to this rule are LoopPass instances which need to preserve
all the function analyses that the loop pass manager will end up
needing. This means preserving both BasicAAWrapperPass and the
aggregating FunctionAAResultsWrapperPass.
Now, when preserving an alias analysis, you do so by directly preserving
that analysis. This is only necessary for non-immutable-pass-provided
alias analyses though, and there are only three of interest: BasicAA,
GlobalsAA (formerly GlobalsModRef), and SCEVAA. Usually BasicAA is
preserved when needed because it (like DominatorTree and LoopInfo) is
marked as a CFG-only pass. I've expanded GlobalsAA into the preserved
set everywhere we previously were preserving all of AliasAnalysis, and
I've added SCEVAA in the intersection of that with where we preserve
SCEV itself.
One significant challenge to all of this is that the CGSCC passes were
actually using the alias analysis implementations by taking advantage of
a pretty amazing set of loop holes in the old pass manager's analysis
management code which allowed analysis groups to slide through in many
cases. Moving away from analysis groups makes this problem much more
obvious. To fix it, I've leveraged the flexibility the design of the new
PM components provides to just directly construct the relevant alias
analyses for the relevant functions in the IPO passes that need them.
This is a bit hacky, but should go away with the new pass manager, and
is already in many ways cleaner than the prior state.
Another significant challenge is that various facilities of the old
alias analysis infrastructure just don't fit any more. The most
significant of these is the alias analysis 'counter' pass. That pass
relied on the ability to snoop on AA queries at different points in the
analysis group chain. Instead, I'm planning to build printing
functionality directly into the aggregation layer. I've not included
that in this patch merely to keep it smaller.
Note that all of this needs a nearly complete rewrite of the AA
documentation. I'm planning to do that, but I'd like to make sure the
new design settles, and to flesh out a bit more of what it looks like in
the new pass manager first.
Differential Revision: http://reviews.llvm.org/D12080
llvm-svn: 247167
2015-09-09 19:55:00 +02:00
|
|
|
AU.addRequiredTransitive<AAResultsWrapperPass>();
|
2016-03-10 01:55:30 +01:00
|
|
|
AU.addRequiredTransitive<MemoryDependenceWrapperPass>();
|
2010-09-17 00:08:32 +02:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:30:04 +01:00
|
|
|
void releaseMemory() override {
|
2010-09-17 00:08:32 +02:00
|
|
|
Deps.clear();
|
2014-04-15 06:59:12 +02:00
|
|
|
F = nullptr;
|
2010-09-17 00:08:32 +02:00
|
|
|
}
|
2011-10-14 00:14:57 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
static InstTypePair getInstTypePair(MemDepResult dep) {
|
|
|
|
if (dep.isClobber())
|
|
|
|
return InstTypePair(dep.getInst(), Clobber);
|
|
|
|
if (dep.isDef())
|
|
|
|
return InstTypePair(dep.getInst(), Def);
|
|
|
|
if (dep.isNonFuncLocal())
|
|
|
|
return InstTypePair(dep.getInst(), NonFuncLocal);
|
2013-12-05 00:55:09 +01:00
|
|
|
assert(dep.isUnknown() && "unexpected dependence type");
|
2011-10-14 00:14:57 +02:00
|
|
|
return InstTypePair(dep.getInst(), Unknown);
|
|
|
|
}
|
2010-09-17 00:08:32 +02:00
|
|
|
};
|
2015-06-23 11:49:53 +02:00
|
|
|
}
|
2010-09-17 00:08:32 +02:00
|
|
|
|
|
|
|
char MemDepPrinter::ID = 0;
|
2010-10-12 21:48:12 +02:00
|
|
|
INITIALIZE_PASS_BEGIN(MemDepPrinter, "print-memdeps",
|
|
|
|
"Print MemDeps of function", false, true)
|
2016-03-10 01:55:30 +01:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(MemoryDependenceWrapperPass)
|
2010-10-12 21:48:12 +02:00
|
|
|
INITIALIZE_PASS_END(MemDepPrinter, "print-memdeps",
|
|
|
|
"Print MemDeps of function", false, true)
|
2010-09-17 00:08:32 +02:00
|
|
|
|
|
|
|
FunctionPass *llvm::createMemDepPrinter() {
|
|
|
|
return new MemDepPrinter();
|
|
|
|
}
|
|
|
|
|
2012-05-24 08:35:32 +02:00
|
|
|
const char *const MemDepPrinter::DepTypeStr[]
|
2011-10-14 00:14:57 +02:00
|
|
|
= {"Clobber", "Def", "NonFuncLocal", "Unknown"};
|
|
|
|
|
2010-09-17 00:08:32 +02:00
|
|
|
bool MemDepPrinter::runOnFunction(Function &F) {
|
|
|
|
this->F = &F;
|
2016-03-10 01:55:30 +01:00
|
|
|
MemoryDependenceResults &MDA = getAnalysis<MemoryDependenceWrapperPass>().getMemDep();
|
2010-09-17 00:08:32 +02:00
|
|
|
|
|
|
|
// All this code uses non-const interfaces because MemDep is not
|
|
|
|
// const-friendly, though nothing is actually modified.
|
2015-08-06 21:10:45 +02:00
|
|
|
for (auto &I : instructions(F)) {
|
2015-02-09 20:49:54 +01:00
|
|
|
Instruction *Inst = &I;
|
2010-09-17 00:08:32 +02:00
|
|
|
|
|
|
|
if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
MemDepResult Res = MDA.getDependency(Inst);
|
|
|
|
if (!Res.isNonLocal()) {
|
2011-10-14 00:14:57 +02:00
|
|
|
Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
|
2014-04-15 06:59:12 +02:00
|
|
|
static_cast<BasicBlock *>(nullptr)));
|
2019-01-07 06:42:51 +01:00
|
|
|
} else if (auto *Call = dyn_cast<CallBase>(Inst)) {
|
2016-03-10 01:55:30 +01:00
|
|
|
const MemoryDependenceResults::NonLocalDepInfo &NLDI =
|
2019-01-07 06:42:51 +01:00
|
|
|
MDA.getNonLocalCallDependency(Call);
|
2010-09-17 00:08:32 +02:00
|
|
|
|
|
|
|
DepSet &InstDeps = Deps[Inst];
|
2016-06-26 19:27:42 +02:00
|
|
|
for (const NonLocalDepEntry &I : NLDI) {
|
|
|
|
const MemDepResult &Res = I.getResult();
|
|
|
|
InstDeps.insert(std::make_pair(getInstTypePair(Res), I.getBB()));
|
2010-09-17 00:08:32 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SmallVector<NonLocalDepResult, 4> NLDI;
|
2015-01-09 01:26:45 +01:00
|
|
|
assert( (isa<LoadInst>(Inst) || isa<StoreInst>(Inst) ||
|
2018-07-30 21:41:25 +02:00
|
|
|
isa<VAArgInst>(Inst)) && "Unknown memory instruction!");
|
2015-01-09 01:26:45 +01:00
|
|
|
MDA.getNonLocalPointerDependency(Inst, NLDI);
|
2010-09-17 00:08:32 +02:00
|
|
|
|
|
|
|
DepSet &InstDeps = Deps[Inst];
|
2016-06-26 19:27:42 +02:00
|
|
|
for (const NonLocalDepResult &I : NLDI) {
|
|
|
|
const MemDepResult &Res = I.getResult();
|
|
|
|
InstDeps.insert(std::make_pair(getInstTypePair(Res), I.getBB()));
|
2010-09-17 00:08:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MemDepPrinter::print(raw_ostream &OS, const Module *M) const {
|
2015-08-06 21:10:45 +02:00
|
|
|
for (const auto &I : instructions(*F)) {
|
2015-02-09 20:49:54 +01:00
|
|
|
const Instruction *Inst = &I;
|
2010-09-17 00:08:32 +02:00
|
|
|
|
2010-09-17 00:50:09 +02:00
|
|
|
DepSetMap::const_iterator DI = Deps.find(Inst);
|
|
|
|
if (DI == Deps.end())
|
2010-09-17 00:08:32 +02:00
|
|
|
continue;
|
|
|
|
|
2010-09-17 00:50:09 +02:00
|
|
|
const DepSet &InstDeps = DI->second;
|
2010-09-17 00:08:32 +02:00
|
|
|
|
2015-02-26 00:55:00 +01:00
|
|
|
for (const auto &I : InstDeps) {
|
2015-02-09 20:49:54 +01:00
|
|
|
const Instruction *DepInst = I.first.getPointer();
|
|
|
|
DepType type = I.first.getInt();
|
|
|
|
const BasicBlock *DepBB = I.second;
|
2010-09-17 00:08:32 +02:00
|
|
|
|
2011-06-15 02:47:34 +02:00
|
|
|
OS << " ";
|
2011-10-14 00:14:57 +02:00
|
|
|
OS << DepTypeStr[type];
|
2010-09-17 00:08:32 +02:00
|
|
|
if (DepBB) {
|
|
|
|
OS << " in block ";
|
2014-01-09 03:29:41 +01:00
|
|
|
DepBB->printAsOperand(OS, /*PrintType=*/false, M);
|
2010-09-17 00:08:32 +02:00
|
|
|
}
|
2011-06-15 02:47:34 +02:00
|
|
|
if (DepInst) {
|
|
|
|
OS << " from: ";
|
2011-10-14 00:14:57 +02:00
|
|
|
DepInst->print(OS);
|
2011-06-15 02:47:34 +02:00
|
|
|
}
|
2010-09-17 00:08:32 +02:00
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
Inst->print(OS);
|
|
|
|
OS << "\n\n";
|
|
|
|
}
|
|
|
|
}
|