Home
last modified time | relevance | path

Searched refs:InstrPostProcess (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DCustomBehaviour.h36 class InstrPostProcess {
42 InstrPostProcess(const MCSubtargetInfo &STI, const MCInstrInfo &MCII) in InstrPostProcess() function
45 virtual ~InstrPostProcess() = default;
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCA/
H A DX86CustomBehaviour.h26 class X86InstrPostProcess : public InstrPostProcess {
33 : InstrPostProcess(STI, MCII) {} in X86InstrPostProcess()
H A DX86CustomBehaviour.cpp52 static InstrPostProcess *createX86InstrPostProcess(const MCSubtargetInfo &STI, in createX86InstrPostProcess()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCA/
H A DAMDGPUCustomBehaviour.h27 class AMDGPUInstrPostProcess : public InstrPostProcess {
32 : InstrPostProcess(STI, MCII) {} in AMDGPUInstrPostProcess()
H A DAMDGPUCustomBehaviour.cpp346 static InstrPostProcess *
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DTargetRegistry.h63 class InstrPostProcess; variable
130 mca::InstrPostProcess *createInstrPostProcess(const MCSubtargetInfo &STI,
226 mca::InstrPostProcess *(*)(const MCSubtargetInfo &STI,
619 mca::InstrPostProcess *createInstrPostProcess(const MCSubtargetInfo &STI, in createInstrPostProcess()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp560 std::unique_ptr<mca::InstrPostProcess> IPP; in main()
566 IPP = std::unique_ptr<mca::InstrPostProcess>( in main()
572 IPP = std::make_unique<mca::InstrPostProcess>(*STI, *MCII); in main()