LLVM 20.0.0git
|
Replaces repeated sequences of instructions with function calls. More...
#include "llvm/CodeGen/MachineOutliner.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Analysis/OptimizationRemarkEmitter.h"
#include "llvm/CodeGen/LivePhysRegs.h"
#include "llvm/CodeGen/MachineModuleInfo.h"
#include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
#include "llvm/CodeGen/Passes.h"
#include "llvm/CodeGen/TargetInstrInfo.h"
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/IR/DIBuilder.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/Mangler.h"
#include "llvm/IR/Module.h"
#include "llvm/InitializePasses.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/SuffixTree.h"
#include "llvm/Support/raw_ostream.h"
#include <functional>
#include <tuple>
#include <vector>
Go to the source code of this file.
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
Macros | |
#define | DEBUG_TYPE "machine-outliner" |
Functions | |
STATISTIC (NumOutlined, "Number of candidates outlined") | |
STATISTIC (FunctionsCreated, "Number of functions created") | |
STATISTIC (NumLegalInUnsignedVec, "Outlinable instructions mapped") | |
STATISTIC (NumIllegalInUnsignedVec, "Unoutlinable instructions mapped + number of sentinel values") | |
STATISTIC (NumSentinels, "Sentinel values inserted during mapping") | |
STATISTIC (NumInvisible, "Invisible instructions skipped during mapping") | |
STATISTIC (UnsignedVecSize, "Total number of instructions mapped and saved to mapping vector") | |
ModulePass * | llvm::createMachineOutlinerPass (bool RunOnAllFunctions=true) |
This pass performs outlining on machine instructions directly before printing assembly. | |
INITIALIZE_PASS (MachineOutliner, DEBUG_TYPE, "Machine Function Outliner", false, false) void MachineOutliner | |
Variables | |
static cl::opt< bool > | EnableLinkOnceODROutlining ("enable-linkonceodr-outlining", cl::Hidden, cl::desc("Enable the machine outliner on linkonceodr functions"), cl::init(false)) |
static cl::opt< unsigned > | OutlinerReruns ("machine-outliner-reruns", cl::init(0), cl::Hidden, cl::desc("Number of times to rerun the outliner after the initial outline")) |
Number of times to re-run the outliner. | |
static cl::opt< unsigned > | OutlinerBenefitThreshold ("outliner-benefit-threshold", cl::init(1), cl::Hidden, cl::desc("The minimum size in bytes before an outlining candidate is accepted")) |
static cl::opt< bool > | OutlinerLeafDescendants ("outliner-leaf-descendants", cl::init(true), cl::Hidden, cl::desc("Consider all leaf descendants of internal nodes of the suffix " "tree as candidates for outlining (if false, only leaf children " "are considered)")) |
Replaces repeated sequences of instructions with function calls.
This works by placing every instruction from every basic block in a suffix tree, and repeatedly querying that tree for repeated sequences of instructions. If a sequence of instructions appears often, then it ought to be beneficial to pull out into a function.
The MachineOutliner communicates with a given target using hooks defined in TargetInstrInfo.h. The target supplies the outliner with information on how a specific sequence of instructions should be outlined. This information is used to deduce the number of instructions necessary to
Targets must implement
in order to make use of the MachineOutliner.
This was originally presented at the 2016 LLVM Developers' Meeting in the talk "Reducing Code Size Using Outlining". For a high-level overview of how this pass works, the talk is available on YouTube at
https://www.youtube.com/watch?v=yorld-WSOeU
The slides for the talk are available at
http://www.llvm.org/devmtg/2016-11/Slides/Paquette-Outliner.pdf
The talk provides an overview of how the outliner finds candidates and ultimately outlines them. It describes how the main data structure for this pass, the suffix tree, is queried and purged for candidates. It also gives a simplified suffix tree construction algorithm for suffix trees based off of the algorithm actually used here, Ukkonen's algorithm.
For the original RFC for this pass, please see
http://lists.llvm.org/pipermail/llvm-dev/2016-August/104170.html
For more information on the suffix tree data structure, please see https://www.cs.helsinki.fi/u/ukkonen/SuffixT1withFigs.pdf
Definition in file MachineOutliner.cpp.
#define DEBUG_TYPE "machine-outliner" |
Definition at line 82 of file MachineOutliner.cpp.
INITIALIZE_PASS | ( | MachineOutliner | , |
DEBUG_TYPE | , | ||
"Machine Function Outliner" | , | ||
false | , | ||
false | |||
) |
Definition at line 523 of file MachineOutliner.cpp.
References llvm::CallingConv::C, DEBUG_TYPE, getDebugLoc(), and MORE.
STATISTIC | ( | FunctionsCreated | , |
"Number of functions created" | |||
) |
STATISTIC | ( | NumIllegalInUnsignedVec | , |
"Unoutlinable instructions mapped + number of sentinel values" | |||
) |
STATISTIC | ( | NumInvisible | , |
"Invisible instructions skipped during mapping" | |||
) |
STATISTIC | ( | NumLegalInUnsignedVec | , |
"Outlinable instructions mapped" | |||
) |
STATISTIC | ( | NumOutlined | , |
"Number of candidates outlined" | |||
) |
STATISTIC | ( | NumSentinels | , |
"Sentinel values inserted during mapping" | |||
) |
STATISTIC | ( | UnsignedVecSize | , |
"Total number of instructions mapped and saved to mapping vector" | |||
) |
|
static |
|
static |
|
static |
|
static |
Number of times to re-run the outliner.
This is not the total number of runs as the outliner will run at least one time. The default value is set to 0, meaning the outliner will run one time and rerun zero times after that.