30 "Machine Cycle Info Analysis",
true,
true)
48 OS <<
"MachineCycleInfo for function: " << F->
getName() <<
"\n";
62 MachineCycleInfoPrinterPass();
69char MachineCycleInfoPrinterPass::ID = 0;
71MachineCycleInfoPrinterPass::MachineCycleInfoPrinterPass()
77 "Print Machine Cycle Info Analysis",
true,
true)
82void MachineCycleInfoPrinterPass::getAnalysisUsage(
AnalysisUsage &AU)
const {
89 auto &CI = getAnalysis<MachineCycleInfoWrapperPass>();
112 if (Reg.isPhysical()) {
119 if (!
MRI->isConstantPhysReg(Reg) &&
120 !(
TRI->isCallerPreservedPhysReg(Reg.asMCReg(), *
I.getMF())) &&
121 !
TII->isIgnorableUse(MO))
125 }
else if (!MO.isDead()) {
130 return Block->isLiveIn(Reg);
141 assert(
MRI->getVRegDef(Reg) &&
"Machine instr not mapped for this vreg?!");
unsigned const MachineRegisterInfo * MRI
block Block Frequency Analysis
COFF::MachineTypes Machine
This template implementation resides in a separate file so that it does not get injected into every ....
const HexagonInstrInfo * TII
This file declares a specialization of the GenericSSAContext<X> template class for Machine IR.
unsigned const TargetRegisterInfo * TRI
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
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.
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...
MachineCycleInfoWrapperPass()
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.
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.
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Wrapper class representing virtual and physical registers.
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
This is an optimization pass for GlobalISel generic memory operations.
bool isCycleInvariant(const MachineCycle *Cycle, MachineInstr &I)
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr)
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.
MachineCycleInfo::CycleT MachineCycle
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
void initializeMachineCycleInfoPrinterPassPass(PassRegistry &)