Home
last modified time | relevance | path

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

/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;
/llvm-project/llvm/lib/Target/X86/MCA/
H A DX86CustomBehaviour.h26 class X86InstrPostProcess : public InstrPostProcess {
33 : InstrPostProcess(STI, MCII) {} in X86InstrPostProcess()
H A DX86CustomBehaviour.cpp51 static InstrPostProcess *createX86InstrPostProcess(const MCSubtargetInfo &STI,
/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 * in createAMDGPUCustomBehaviour()
/llvm-project/llvm/tools/llvm-mca/
H A DCMakeLists.txt3 AllTargetsMCAs # CustomBehaviour and InstrPostProcess
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()
/llvm-project/llvm/include/llvm/MC/
H A DTargetRegistry.h63 class InstrPostProcess;
130 mca::InstrPostProcess *createInstrPostProcess(const MCSubtargetInfo &STI,
226 mca::InstrPostProcess *(*)(const MCSubtargetInfo &STI,
336 /// InstrPostProcess, if registered (default = nullptr).
617 /// createInstrPostProcess - Create a target specific InstrPostProcess. in createMCObjectStreamer()
619 mca::InstrPostProcess *createInstrPostProcess(const MCSubtargetInfo &STI, in createMCObjectStreamer()
982 /// RegisterInstrPostProcess - Register an InstrPostProcess in RegisterMCDisassembler()
990 /// @param Fn - A function to construct an InstrPostProcess for the target.
62 class InstrPostProcess; global() variable
/llvm-project/llvm/docs/CommandGuide/
H A Dllvm-mca.rst225 Force usage of the generic CustomBehaviour and InstrPostProcess classes rather
1066 these flags set, it should be done within the target's InstrPostProcess class.