30 "Machine Cycle Info Analysis",
true,
true)
48 OS <<
"MachineCycleInfo for function: " << F->
getName() <<
"\n";
72 MachineCycleInfoPrinterLegacy();
79char MachineCycleInfoPrinterLegacy::ID = 0;
81MachineCycleInfoPrinterLegacy::MachineCycleInfoPrinterLegacy()
87 "Print Machine Cycle Info Analysis",
true,
true)
92void MachineCycleInfoPrinterLegacy::getAnalysisUsage(
AnalysisUsage &AU)
const {
98bool MachineCycleInfoPrinterLegacy::runOnMachineFunction(
MachineFunction &
F) {
99 auto &CI = getAnalysis<MachineCycleInfoWrapperPass>();
130 if (Reg.isPhysical()) {
137 if (!
MRI->isConstantPhysReg(Reg) &&
138 !(
TRI->isCallerPreservedPhysReg(Reg.asMCReg(), *
I.getMF())) &&
139 !
TII->isIgnorableUse(MO))
143 }
else if (!MO.isDead()) {
148 return Block->isLiveIn(Reg);
159 assert(
MRI->getVRegDef(Reg) &&
"Machine instr not mapped for this vreg?!");
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
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.
Register 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)
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
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...
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 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.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
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.
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.
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...