blob: d88be575d56c72b0042a21ab04e9722d8b531e09 [file] [log] [blame]
Juergen Ributzkae8294752013-12-14 06:53:06 +00001//===-- StackMapLivenessAnalysis.cpp - StackMap live Out Analysis ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the StackMap Liveness analysis pass. The pass calculates
11// the liveness for each basic block in a function and attaches the register
12// live-out information to a stackmap or patchpoint intrinsic if present.
13//
14//===----------------------------------------------------------------------===//
15
Juergen Ributzkae8294752013-12-14 06:53:06 +000016#include "llvm/ADT/Statistic.h"
Benjamin Kramer722ff282015-03-24 13:20:54 +000017#include "llvm/CodeGen/LivePhysRegs.h"
Juergen Ributzkae8294752013-12-14 06:53:06 +000018#include "llvm/CodeGen/MachineFrameInfo.h"
19#include "llvm/CodeGen/MachineFunction.h"
20#include "llvm/CodeGen/MachineFunctionAnalysis.h"
Benjamin Kramer722ff282015-03-24 13:20:54 +000021#include "llvm/CodeGen/MachineFunctionPass.h"
Juergen Ributzkae8294752013-12-14 06:53:06 +000022#include "llvm/CodeGen/Passes.h"
Juergen Ributzkae8294752013-12-14 06:53:06 +000023#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/Debug.h"
Benjamin Kramerb85d3752015-03-23 18:45:56 +000025#include "llvm/Support/raw_ostream.h"
Eric Christopherd9134482014-08-04 21:25:23 +000026#include "llvm/Target/TargetSubtargetInfo.h"
Juergen Ributzkae8294752013-12-14 06:53:06 +000027
28using namespace llvm;
29
Chandler Carruth1b9dde02014-04-22 02:02:50 +000030#define DEBUG_TYPE "stackmaps"
31
Benjamin Kramer722ff282015-03-24 13:20:54 +000032static cl::opt<bool> EnablePatchPointLiveness(
33 "enable-patchpoint-liveness", cl::Hidden, cl::init(true),
34 cl::desc("Enable PatchPoint Liveness Analysis Pass"));
Juergen Ributzkae8294752013-12-14 06:53:06 +000035
36STATISTIC(NumStackMapFuncVisited, "Number of functions visited");
37STATISTIC(NumStackMapFuncSkipped, "Number of functions skipped");
38STATISTIC(NumBBsVisited, "Number of basic blocks visited");
39STATISTIC(NumBBsHaveNoStackmap, "Number of basic blocks with no stackmap");
40STATISTIC(NumStackMaps, "Number of StackMaps visited");
41
Benjamin Kramer722ff282015-03-24 13:20:54 +000042namespace {
43/// \brief This pass calculates the liveness information for each basic block in
44/// a function and attaches the register live-out information to a patchpoint
45/// intrinsic if present.
46///
47/// This pass can be disabled via the -enable-patchpoint-liveness=false flag.
48/// The pass skips functions that don't have any patchpoint intrinsics. The
49/// information provided by this pass is optional and not required by the
50/// aformentioned intrinsic to function.
51class StackMapLiveness : public MachineFunctionPass {
52 MachineFunction *MF;
53 const TargetRegisterInfo *TRI;
54 LivePhysRegs LiveRegs;
55
56public:
57 static char ID;
58
59 /// \brief Default construct and initialize the pass.
60 StackMapLiveness();
61
62 /// \brief Tell the pass manager which passes we depend on and what
63 /// information we preserve.
64 void getAnalysisUsage(AnalysisUsage &AU) const override;
65
66 /// \brief Calculate the liveness information for the given machine function.
67 bool runOnMachineFunction(MachineFunction &MF) override;
68
69private:
70 /// \brief Performs the actual liveness calculation for the function.
71 bool calculateLiveness();
72
73 /// \brief Add the current register live set to the instruction.
74 void addLiveOutSetToMI(MachineInstr &MI);
75
76 /// \brief Create a register mask and initialize it with the registers from
77 /// the register live set.
78 uint32_t *createRegisterMask() const;
79};
80} // namespace
81
Juergen Ributzkae8294752013-12-14 06:53:06 +000082char StackMapLiveness::ID = 0;
83char &llvm::StackMapLivenessID = StackMapLiveness::ID;
84INITIALIZE_PASS(StackMapLiveness, "stackmap-liveness",
85 "StackMap Liveness Analysis", false, false)
86
87/// Default construct and initialize the pass.
88StackMapLiveness::StackMapLiveness() : MachineFunctionPass(ID) {
89 initializeStackMapLivenessPass(*PassRegistry::getPassRegistry());
90}
91
92/// Tell the pass manager which passes we depend on and what information we
93/// preserve.
94void StackMapLiveness::getAnalysisUsage(AnalysisUsage &AU) const {
95 // We preserve all information.
96 AU.setPreservesAll();
97 AU.setPreservesCFG();
98 // Default dependencie for all MachineFunction passes.
99 AU.addRequired<MachineFunctionAnalysis>();
100}
101
102/// Calculate the liveness information for the given machine function.
David Blaikie9f380a32015-03-16 18:06:57 +0000103bool StackMapLiveness::runOnMachineFunction(MachineFunction &MF) {
Juergen Ributzka009bff22014-06-26 23:39:52 +0000104 if (!EnablePatchPointLiveness)
105 return false;
106
David Blaikie9f380a32015-03-16 18:06:57 +0000107 DEBUG(dbgs() << "********** COMPUTING STACKMAP LIVENESS: " << MF.getName()
108 << " **********\n");
109 this->MF = &MF;
110 TRI = MF.getSubtarget().getRegisterInfo();
Juergen Ributzkae8294752013-12-14 06:53:06 +0000111 ++NumStackMapFuncVisited;
112
Juergen Ributzka14871f72014-06-26 23:39:44 +0000113 // Skip this function if there are no patchpoints to process.
David Blaikie9f380a32015-03-16 18:06:57 +0000114 if (!MF.getFrameInfo()->hasPatchPoint()) {
Juergen Ributzkae8294752013-12-14 06:53:06 +0000115 ++NumStackMapFuncSkipped;
116 return false;
117 }
118 return calculateLiveness();
119}
120
121/// Performs the actual liveness calculation for the function.
122bool StackMapLiveness::calculateLiveness() {
123 bool HasChanged = false;
124 // For all basic blocks in the function.
125 for (MachineFunction::iterator MBBI = MF->begin(), MBBE = MF->end();
126 MBBI != MBBE; ++MBBI) {
127 DEBUG(dbgs() << "****** BB " << MBBI->getName() << " ******\n");
128 LiveRegs.init(TRI);
129 LiveRegs.addLiveOuts(MBBI);
130 bool HasStackMap = false;
131 // Reverse iterate over all instructions and add the current live register
Juergen Ributzka14871f72014-06-26 23:39:44 +0000132 // set to an instruction if we encounter a patchpoint instruction.
Juergen Ributzkae8294752013-12-14 06:53:06 +0000133 for (MachineBasicBlock::reverse_iterator I = MBBI->rbegin(),
134 E = MBBI->rend(); I != E; ++I) {
Juergen Ributzka009bff22014-06-26 23:39:52 +0000135 if (I->getOpcode() == TargetOpcode::PATCHPOINT) {
Juergen Ributzkae8294752013-12-14 06:53:06 +0000136 addLiveOutSetToMI(*I);
137 HasChanged = true;
138 HasStackMap = true;
139 ++NumStackMaps;
140 }
Andrew Trick326c1f682014-04-04 23:49:35 +0000141 DEBUG(dbgs() << " " << LiveRegs << " " << *I);
Juergen Ributzkae8294752013-12-14 06:53:06 +0000142 LiveRegs.stepBackward(*I);
143 }
144 ++NumBBsVisited;
145 if (!HasStackMap)
146 ++NumBBsHaveNoStackmap;
147 }
148 return HasChanged;
149}
150
151/// Add the current register live set to the instruction.
152void StackMapLiveness::addLiveOutSetToMI(MachineInstr &MI) {
153 uint32_t *Mask = createRegisterMask();
154 MachineOperand MO = MachineOperand::CreateRegLiveOut(Mask);
155 MI.addOperand(*MF, MO);
156}
157
158/// Create a register mask and initialize it with the registers from the
159/// register live set.
160uint32_t *StackMapLiveness::createRegisterMask() const {
161 // The mask is owned and cleaned up by the Machine Function.
162 uint32_t *Mask = MF->allocateRegisterMask(TRI->getNumRegs());
163 for (LivePhysRegs::const_iterator RI = LiveRegs.begin(), RE = LiveRegs.end();
164 RI != RE; ++RI)
165 Mask[*RI / 32] |= 1U << (*RI % 32);
Hal Finkeldf87f932015-01-13 17:47:59 +0000166
167 TRI->adjustStackMapLiveOutMask(Mask);
Juergen Ributzkae8294752013-12-14 06:53:06 +0000168 return Mask;
169}