Home
last modified time | relevance | path

Searched refs:GISelCSEInfo (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
DCSEInfo.cpp86 void GISelCSEInfo::setMF(MachineFunction &MF) { in setMF()
91 GISelCSEInfo::~GISelCSEInfo() {} in ~GISelCSEInfo()
93 bool GISelCSEInfo::isUniqueMachineInstValid( in isUniqueMachineInstValid()
102 void GISelCSEInfo::invalidateUniqueMachineInstr(UniqueMachineInstr *UMI) { in invalidateUniqueMachineInstr()
109 UniqueMachineInstr *GISelCSEInfo::getNodeIfExists(FoldingSetNodeID &ID, in getNodeIfExists()
125 void GISelCSEInfo::insertNode(UniqueMachineInstr *UMI, void *InsertPos) { in insertNode()
142 UniqueMachineInstr *GISelCSEInfo::getUniqueInstrForMI(const MachineInstr *MI) { in getUniqueInstrForMI()
148 void GISelCSEInfo::insertInstr(MachineInstr *MI, void *InsertPos) { in insertInstr()
156 MachineInstr *GISelCSEInfo::getMachineInstrIfExists(FoldingSetNodeID &ID, in getMachineInstrIfExists()
167 void GISelCSEInfo::countOpcodeHit(unsigned Opc) { in countOpcodeHit()
[all …]
DCSEMIRBuilder.cpp37 GISelCSEInfo *CSEInfo = getCSEInfo(); in getDominatingInstrForID()
59 const GISelCSEInfo *CSEInfo = getCSEInfo(); in canPerformCSEForOpc()
DCombiner.cpp99 GISelCSEInfo *CSEInfo) { in combineMachineInstrs()
DLegalizer.cpp334 GISelCSEInfo *CSEInfo = nullptr; in runOnMachineFunction()
DIRTranslator.cpp3096 GISelCSEInfo *CSEInfo = nullptr; in runOnMachineFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
DCSEInfo.h30 friend class GISelCSEInfo; variable
69 class GISelCSEInfo : public GISelChangeObserver {
115 GISelCSEInfo() = default;
117 virtual ~GISelCSEInfo();
203 GISelCSEInfo Info;
212 GISelCSEInfo &get(std::unique_ptr<CSEConfigBase> CSEOpt,
DCombiner.h23 class GISelCSEInfo; variable
34 bool combineMachineInstrs(MachineFunction &MF, GISelCSEInfo *CSEInfo);
DMachineIRBuilder.h55 GISelCSEInfo *CSEInfo = nullptr;
297 GISelCSEInfo *getCSEInfo() { return State.CSEInfo; } in getCSEInfo()
298 const GISelCSEInfo *getCSEInfo() const { return State.CSEInfo; } in getCSEInfo()
315 void setCSEInfo(GISelCSEInfo *Info) { State.CSEInfo = Info; } in setCSEInfo()