2017-02-14 18:21:09 +01:00
|
|
|
///===- LazyMachineBlockFrequencyInfo.cpp - Lazy Machine Block Frequency --===//
|
|
|
|
///
|
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
|
2017-02-14 18:21:09 +01:00
|
|
|
///
|
|
|
|
///===---------------------------------------------------------------------===//
|
|
|
|
/// \file
|
|
|
|
/// This is an alternative analysis pass to MachineBlockFrequencyInfo. The
|
|
|
|
/// difference is that with this pass the block frequencies are not computed
|
|
|
|
/// when the analysis pass is executed but rather when the BFI result is
|
|
|
|
/// explicitly requested by the analysis client.
|
|
|
|
///
|
|
|
|
///===---------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/LazyMachineBlockFrequencyInfo.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"
|
2017-02-14 18:21:09 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "lazy-machine-block-freq"
|
|
|
|
|
|
|
|
INITIALIZE_PASS_BEGIN(LazyMachineBlockFrequencyInfoPass, DEBUG_TYPE,
|
|
|
|
"Lazy Machine Block Frequency Analysis", true, true)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
|
|
|
|
INITIALIZE_PASS_END(LazyMachineBlockFrequencyInfoPass, DEBUG_TYPE,
|
|
|
|
"Lazy Machine Block Frequency Analysis", true, true)
|
|
|
|
|
|
|
|
char LazyMachineBlockFrequencyInfoPass::ID = 0;
|
|
|
|
|
|
|
|
LazyMachineBlockFrequencyInfoPass::LazyMachineBlockFrequencyInfoPass()
|
|
|
|
: MachineFunctionPass(ID) {
|
|
|
|
initializeLazyMachineBlockFrequencyInfoPassPass(
|
|
|
|
*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
void LazyMachineBlockFrequencyInfoPass::print(raw_ostream &OS,
|
|
|
|
const Module *M) const {
|
2017-02-23 18:30:01 +01:00
|
|
|
getBFI().print(OS, M);
|
2017-02-14 18:21:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LazyMachineBlockFrequencyInfoPass::getAnalysisUsage(
|
|
|
|
AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<MachineBranchProbabilityInfo>();
|
|
|
|
AU.setPreservesAll();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LazyMachineBlockFrequencyInfoPass::releaseMemory() {
|
2017-02-23 18:30:01 +01:00
|
|
|
OwnedMBFI.reset();
|
|
|
|
OwnedMLI.reset();
|
|
|
|
OwnedMDT.reset();
|
2017-02-14 18:21:09 +01:00
|
|
|
}
|
|
|
|
|
2017-02-23 18:30:01 +01:00
|
|
|
MachineBlockFrequencyInfo &
|
|
|
|
LazyMachineBlockFrequencyInfoPass::calculateIfNotAvailable() const {
|
|
|
|
auto *MBFI = getAnalysisIfAvailable<MachineBlockFrequencyInfo>();
|
|
|
|
if (MBFI) {
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(dbgs() << "MachineBlockFrequencyInfo is available\n");
|
2017-02-23 18:30:01 +01:00
|
|
|
return *MBFI;
|
|
|
|
}
|
2017-02-14 18:21:09 +01:00
|
|
|
|
2017-02-23 18:30:01 +01:00
|
|
|
auto &MBPI = getAnalysis<MachineBranchProbabilityInfo>();
|
|
|
|
auto *MLI = getAnalysisIfAvailable<MachineLoopInfo>();
|
|
|
|
auto *MDT = getAnalysisIfAvailable<MachineDominatorTree>();
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(dbgs() << "Building MachineBlockFrequencyInfo on the fly\n");
|
|
|
|
LLVM_DEBUG(if (MLI) dbgs() << "LoopInfo is available\n");
|
2017-02-23 18:30:01 +01:00
|
|
|
|
|
|
|
if (!MLI) {
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(dbgs() << "Building LoopInfo on the fly\n");
|
2017-02-23 18:30:01 +01:00
|
|
|
// First create a dominator tree.
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(if (MDT) dbgs() << "DominatorTree is available\n");
|
2017-02-23 18:30:01 +01:00
|
|
|
|
|
|
|
if (!MDT) {
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(dbgs() << "Building DominatorTree on the fly\n");
|
2019-08-15 17:54:37 +02:00
|
|
|
OwnedMDT = std::make_unique<MachineDominatorTree>();
|
2017-02-23 18:30:01 +01:00
|
|
|
OwnedMDT->getBase().recalculate(*MF);
|
|
|
|
MDT = OwnedMDT.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate LoopInfo from it.
|
2019-08-15 17:54:37 +02:00
|
|
|
OwnedMLI = std::make_unique<MachineLoopInfo>();
|
2017-02-23 18:30:01 +01:00
|
|
|
OwnedMLI->getBase().analyze(MDT->getBase());
|
|
|
|
MLI = OwnedMLI.get();
|
|
|
|
}
|
|
|
|
|
2019-08-15 17:54:37 +02:00
|
|
|
OwnedMBFI = std::make_unique<MachineBlockFrequencyInfo>();
|
2017-02-23 18:30:01 +01:00
|
|
|
OwnedMBFI->calculate(*MF, MBPI, *MLI);
|
|
|
|
return *OwnedMBFI.get();
|
2017-02-14 18:21:09 +01:00
|
|
|
}
|
|
|
|
|
2017-02-23 18:30:01 +01:00
|
|
|
bool LazyMachineBlockFrequencyInfoPass::runOnMachineFunction(
|
|
|
|
MachineFunction &F) {
|
|
|
|
MF = &F;
|
|
|
|
return false;
|
2017-02-14 18:21:09 +01:00
|
|
|
}
|