LLVM 22.0.0git
MachineCycleAnalysis.cpp
Go to the documentation of this file.
1//===- MachineCycleAnalysis.cpp - Compute CycleInfo for Machine IR --------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
16
17using namespace llvm;
18
21
23
27}
28
30 "Machine Cycle Info Analysis", true, true)
33
34void MachineCycleInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
35 AU.setPreservesAll();
37}
38
40 CI.clear();
41
42 F = &Func;
43 CI.compute(Func);
44 return false;
45}
46
48 OS << "MachineCycleInfo for function: " << F->getName() << "\n";
49 CI.print(OS);
50}
51
53 CI.clear();
54 F = nullptr;
55}
56
57AnalysisKey MachineCycleAnalysis::Key;
58
63 MCI.compute(MF);
64 return MCI;
65}
66
67namespace {
68class MachineCycleInfoPrinterLegacy : public MachineFunctionPass {
69public:
70 static char ID;
71
72 MachineCycleInfoPrinterLegacy();
73
74 bool runOnMachineFunction(MachineFunction &F) override;
75 void getAnalysisUsage(AnalysisUsage &AU) const override;
76};
77} // namespace
78
79char MachineCycleInfoPrinterLegacy::ID = 0;
80
81MachineCycleInfoPrinterLegacy::MachineCycleInfoPrinterLegacy()
84}
85
86INITIALIZE_PASS_BEGIN(MachineCycleInfoPrinterLegacy, "print-machine-cycles",
87 "Print Machine Cycle Info Analysis", true, true)
89INITIALIZE_PASS_END(MachineCycleInfoPrinterLegacy, "print-machine-cycles",
90 "Print Machine Cycle Info Analysis", true, true)
91
92void MachineCycleInfoPrinterLegacy::getAnalysisUsage(AnalysisUsage &AU) const {
93 AU.setPreservesAll();
94 AU.addRequired<MachineCycleInfoWrapperPass>();
96}
97
98bool MachineCycleInfoPrinterLegacy::runOnMachineFunction(MachineFunction &F) {
99 auto &CI = getAnalysis<MachineCycleInfoWrapperPass>();
100 CI.print(errs());
101 return false;
102}
103
107 auto &MCI = MFAM.getResult<MachineCycleAnalysis>(MF);
108 MCI.print(OS);
109 return PreservedAnalyses::all();
110}
111
113 MachineFunction *MF = I.getParent()->getParent();
115 const TargetSubtargetInfo &ST = MF->getSubtarget();
116 const TargetRegisterInfo *TRI = ST.getRegisterInfo();
117 const TargetInstrInfo *TII = ST.getInstrInfo();
118
119 // The instruction is cycle invariant if all of its operands are.
120 for (const MachineOperand &MO : I.operands()) {
121 if (!MO.isReg())
122 continue;
123
124 Register Reg = MO.getReg();
125 if (Reg == 0)
126 continue;
127
128 // An instruction that uses or defines a physical register can't e.g. be
129 // hoisted, so mark this as not invariant.
130 if (Reg.isPhysical()) {
131 if (MO.isUse()) {
132 // If the physreg has no defs anywhere, it's just an ambient register
133 // and we can freely move its uses. Alternatively, if it's allocatable,
134 // it could get allocated to something with a def during allocation.
135 // However, if the physreg is known to always be caller saved/restored
136 // then this use is safe to hoist.
137 if (!MRI->isConstantPhysReg(Reg) &&
138 !(TRI->isCallerPreservedPhysReg(Reg.asMCReg(), *I.getMF())) &&
139 !TII->isIgnorableUse(MO))
140 return false;
141 // Otherwise it's safe to move.
142 continue;
143 } else if (!MO.isDead()) {
144 // A def that isn't dead can't be moved.
145 return false;
146 } else if (any_of(Cycle->getEntries(),
147 [&](const MachineBasicBlock *Block) {
148 return Block->isLiveIn(Reg);
149 })) {
150 // If the reg is live into any header of the cycle we can't hoist an
151 // instruction which would clobber it.
152 return false;
153 }
154 }
155
156 if (!MO.isUse())
157 continue;
158
159 assert(MRI->getVRegDef(Reg) && "Machine instr not mapped for this vreg?!");
160
161 // If the cycle contains the definition of an operand, then the instruction
162 // isn't cycle invariant.
163 if (Cycle->contains(MRI->getVRegDef(Reg)->getParent()))
164 return false;
165 }
166
167 // If we got this far, the instruction is cycle invariant!
168 return true;
169}
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
block Block Frequency Analysis
COFF::MachineTypes Machine
Definition: COFFYAML.cpp:390
cycles
This template implementation resides in a separate file so that it does not get injected into every ....
const HexagonInstrInfo * TII
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
This file declares a specialization of the GenericSSAContext<X> template class for Machine IR.
Register const TargetRegisterInfo * TRI
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:39
raw_pwrite_stream & OS
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:255
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:412
Represent the analysis usage information of a pass.
Cycle information for a function.
void print(raw_ostream &Out) const
Print the cycle info.
void clear()
Reset the object to its initial state.
void compute(FunctionT &F)
Compute the cycle info for a function.
A possibly irreducible generalization of a Loop.
const SmallVectorImpl< BlockT * > & getEntries() const
bool contains(const BlockT *Block) const
Return whether Block is contained in the cycle.
LLVM_ABI Result run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
Legacy analysis pass which computes a MachineCycleInfo.
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
void print(raw_ostream &OS, const Module *M=nullptr) const override
print - Print out the internal state of the pass.
bool runOnMachineFunction(MachineFunction &F) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Representation of each machine instruction.
Definition: MachineInstr.h:72
MachineOperand class - Representation of each machine instruction operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:67
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:118
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
TargetInstrInfo - Interface to description of machine instruction set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:53
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr, unsigned DynamicVGPRBlockSize=0)
LLVM_ABI bool isCycleInvariant(const MachineCycle *Cycle, MachineInstr &I)
LLVM_ABI void initializeMachineCycleInfoWrapperPassPass(PassRegistry &)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1751
MachineCycleInfo::CycleT MachineCycle
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI void initializeMachineCycleInfoPrinterLegacyPass(PassRegistry &)
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition: Analysis.h:29